Cargo.toml
1 [package] 2 name = "acdc-fleet" 3 version = "0.1.0" 4 edition = "2021" 5 authors = ["ALPHA/DELTA Network Developers"] 6 description = "Fleet management for AC/DC unified installer" 7 license = "Apache-2.0" 8 repository = "https://github.com/Alpha-Delta-Network/ac-dc" 9 10 [dependencies] 11 acdc-core = { workspace = true } 12 13 # Async runtime 14 tokio = { workspace = true, features = ["full"] } 15 16 # SSH client 17 russh = "0.44" 18 russh-keys = "0.44" 19 20 # Serialization 21 serde = { workspace = true } 22 serde_json = { workspace = true } 23 toml = { workspace = true } 24 25 # Utilities 26 async-trait = "0.1" 27 futures = "0.3" 28 tracing = { workspace = true } 29 thiserror = { workspace = true } 30 chrono = { workspace = true } 31 dirs = { workspace = true }