git.delta.rocks / jrsonnet / refs/commits / 505f82ed3097

difftreelog

source

Cargo.toml816 Bsourcehistory
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] }20clap = { version = "4.5", features = [21	"derive",22	"env",23	"wrap_help",24	"unicode",25] }26clap_complete = "4.5"27age = { version = "0.10", features = ["ssh"] }28anyhow = "1.0"29tracing = "0.1"30tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }31serde = { version = "1.0", features = ["derive"] }32serde_json = "1.0"33tempfile = "3.10"34nix = { version = "0.29.0", features = ["user", "fs"] }