radomctld/daemon/Cargo.toml

27 lines
732 B
TOML
Raw Normal View History

2024-07-28 21:41:42 +02:00
[package]
name = "radomctld"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.83"
axum = { version = "0.7.5", features = ["macros"] }
fern = { version = "0.6.2", features = ["colored"] }
humantime = "2.1.0"
log = "0.4.21"
nom = "7.1.3"
serde_json = "1.0.118"
2024-10-03 22:54:05 +02:00
serialport = "4.5.1"
2024-07-28 21:41:42 +02:00
tokio = {version = "1.37.0", features = ["full"]}
tokio-macros = { version = "0.2.0-alpha.6" }
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2024-10-03 22:54:05 +02:00
radomctl-protocol = { path = "../protocol" }
postcard = {version = "1.0.10", features = ["use-std"]}
2024-10-04 16:20:36 +02:00
dfu-libusb = "0.3.0"
libusb1-sys = "0.6"
rusb = "0.9"
2024-10-06 13:39:07 +02:00
clap = { version = "4.5.19", features = ["derive"] }
indicatif = "0.17.8"