git.delta.rocks / jrsonnet / refs/commits / d8bac4e1b3aa

difftreelog

source

Cargo.toml814 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" }10tokio = { version = "1.36.0", features = [11	"fs",12	"rt",13	"macros",14	"sync",15	"time",16	"rt-multi-thread",17] }18# Using fixed version for rust on stable nixos branches.19clap = { version = ">=4.4, <4.5", features = [20	"derive",21	"env",22	"wrap_help",23	"unicode",24] }25age = { version = "0.10", 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.27.1", features = ["user", "fs"]}