git.delta.rocks / jrsonnet / refs/commits / 3627c6c6df00

difftreelog

source

Cargo.toml944 Bsourcehistory
1[workspace]2members = ["crates/*", "cmds/*"]3resolver = "2"4package.version = "0.1.0"5package.edition = "2021"6package.rust-version = "1.82.0"78[workspace.dependencies]9nixlike = { path = "./crates/nixlike" }10better-command = { path = "./crates/better-command" }11fleet-shared = { path = "./crates/fleet-shared" }12nix-eval = { path = "./crates/nix-eval" }1314tokio = { version = "1.36.0", features = [15	"fs",16	"rt",17	"macros",18	"sync",19	"time",20	"rt-multi-thread",21] }22tokio-util = { version = "0.7.11", features = ["codec"] }23clap = { version = "4.5", features = ["derive", "env", "wrap_help", "unicode"] }24clap_complete = "4.5"25age = { version = "0.11", features = ["ssh"] }26anyhow = "1.0"27tracing = "0.1"28tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }29serde = { version = "1.0", features = ["derive"] }30serde_json = "1.0"31tempfile = "3.10"32nix = { version = "0.29.0", features = ["user", "fs"] }33thiserror = "2.0.3"