-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (20 loc) · 959 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "hostapd-api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.3"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.12", features = ["derive", "env"] }
linemux = "0.3.0"
nom = "7.1.3"
reqwest = { version = "0.11.23", default-features = false, features = ["tokio-rustls", "rustls", "hyper-rustls", "rustls-tls", "serde_json", "json"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = { version = "1.0.109", features = ["indexmap", "preserve_order"] }
thiserror = "1.0.53"
tokio = { version = "1.35.1", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["rt"] }
tower-http = { version = "0.5.0", features = ["trace"] }
tracing = { version = "0.1.40", features = ["log", "async-await"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }