1[workspace]2members = ["crates/*", "cmds/*"]3resolver = "2"4package.version = "0.1.0"5package.edition = "2024"6package.rust-version = "1.86.0"78[workspace.dependencies]9better-command = { path = "./crates/better-command" }10fleet-shared = { path = "./crates/fleet-shared" }11nix-eval = { path = "./crates/nix-eval" }12nixlike = { path = "./crates/nixlike" }1314age = { version = "0.11", features = ["plugin", "ssh"] }15anyhow = "1.0"16clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] }17clap_complete = "4.5"18nix = { version = "0.30.1", features = ["fs", "user"] }19serde = { version = "1.0", features = ["derive"] }20serde_json = "1.0"21tempfile = "3.20"22thiserror = "2.0.12"23tokio = { version = "1.45.1", features = ["fs", "macros", "rt", "rt-multi-thread", "sync", "time"] }24tokio-util = { version = "0.7.15", features = ["codec"] }25tracing = "0.1"26tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }