-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 994 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
23
24
25
26
27
28
29
[package]
name = "minidialer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
async-channel = "2.2.0"
axum = { version = "0.7.5", features = ["query", "ws", "tokio", "tracing", "http1", "tower-log", "macros"], default-features = false }
clap = { version = "4.5.4", features = ["derive"] }
futures = "0.3.30"
libc = "0.2.153"
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls"] }
serde = { version = "1.0.198", features = ["derive"] }
tokio = { version = "1.36.0", features = ["sync", "rt-multi-thread", "process"] }
tokio-util = { version = "0.7.11", features = ["io"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = { version = "1.8.0", features = ["v4"] }
[features]
default = ["curl"]
curl = []
[dev-dependencies]
tracing-test = "0.2.4"
tokio = { version = "*", features = ["io-util"] }