git.delta.rocks / jrsonnet / refs/commits / 2c5a4bd2d3da

difftreelog

source

cmds/fleet/Cargo.toml1.4 KiBsourcehistory
1[package]2name = "fleet"3description = "NixOS configuration management"4version = "0.2.0"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6edition = "2021"78[dependencies]9nixlike.workspace = true10better-command.workspace = true11tokio.workspace = true12anyhow = "1.0"13serde = { version = "1.0", features = ["derive"] }14serde_json = "1.0"15time = { version = "0.3", features = ["serde"] }16tempfile = "3.10"17once_cell = "1.19"18hostname = "0.3"19age-core = "0.10"20peg = "0.8"21age = { version = "0.10", features = ["ssh", "armor"] }22base64 = "0.21"23chrono = { version = "0.4", features = ["serde"] }24z85 = "3.0"25clap = { version = ">=4.4, <4.5", features = ["derive", "env", "wrap_help", "unicode"] }26tracing = "0.1"27tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }28tokio-util = { version = "0.7", features = ["codec"] }29async-trait = "0.1"30futures = "0.3"31itertools = "0.12"32shlex = "1.3"33tabled = { version = "0.15" }34owo-colors = { version = "4.0", features = [35	"supports-color",36	"supports-colors",37] }38r2d2 = "0.8.10"39abort-on-drop = "0.2"40unindent = "0.2"41regex = "1.10"42openssh = "0.10"43crossterm = "0.27"4445tracing-indicatif = { version = "0.3", optional = true }46human-repr = { version = "1.1", optional = true }47indicatif = { version = "0.17", optional = true }4849[features]50# Not quite stable51indicatif = ["tracing-indicatif", "dep:indicatif", "human-repr", "better-command/indicatif"]