1[workspace]2members = ["crates/*", "cmds/*"]3resolver = "2"4package.version = "0.1.0"56[workspace.dependencies]7nixlike = { path = "./crates/nixlike" }8better-command = { path = "./crates/better-command" }9fleet-shared = { path = "./crates/fleet-shared" }10nix-eval = { path = "./crates/nix-eval" }1112tokio = { version = "1.36.0", features = [13 "fs",14 "rt",15 "macros",16 "sync",17 "time",18 "rt-multi-thread",19] }20tokio-util = { version = "0.7.11", features = ["codec"] }21clap = { version = "4.5", features = ["derive", "env", "wrap_help", "unicode"] }22clap_complete = "4.5"23age = { version = "0.10", features = ["ssh"] }24anyhow = "1.0"25tracing = "0.1"26tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }27serde = { version = "1.0", features = ["derive"] }28serde_json = "1.0"29tempfile = "3.10"30nix = { version = "0.29.0", features = ["user", "fs"] }31thiserror = "2.0.3"