radomctld/Cargo.toml

19 lines
482 B
TOML
Raw Normal View History

2024-05-03 16:16:24 +02:00
[package]
name = "radomctld"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-06-22 23:19:04 +02:00
anyhow = "1.0.83"
2024-06-29 16:01:40 +02:00
axum = { version = "0.7.5", features = ["macros"] }
2024-06-22 23:19:04 +02:00
fern = { version = "0.6.2", features = ["colored"] }
humantime = "2.1.0"
log = "0.4.21"
2024-05-03 16:16:24 +02:00
nom = "7.1.3"
2024-06-29 16:01:40 +02:00
serde_json = "1.0.118"
2024-05-05 14:42:25 +02:00
tokio = {version = "1.37.0", features = ["full"]}
2024-06-22 23:19:04 +02:00
tokio-macros = { version = "0.2.0-alpha.6" }
2024-06-29 16:01:40 +02:00
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"