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

difftreelog

source

Cargo.toml1.2 KiBsourcehistory
1[workspace]2members = ["crates/*", "cmds/*"]3resolver = "2"4package.version = "0.1.0"5package.edition = "2024"6package.rust-version = "1.89.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"] }24tracing = "0.1"25# 0.3.20 breaks ansi coloring of log output, which looks very bad with nix.26# Freezing version until better solution (possibly other console log pretty-printer) is implemented.27# https://github.com/tokio-rs/tracing/issues/336928tracing-subscriber = { version = "=0.3.19", features = ["env-filter", "fmt"] }2930[profile.dev]31panic = "abort"32[profile.release]33panic = "abort"