git.delta.rocks / jrsonnet / refs/commits / 453e81eb3dff

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 = true12clap.workspace = true13clap_complete.workspace = true14age = { workspace = true, features = ["armor"] }15anyhow.workspace = true16tracing.workspace = true17tracing-subscriber.workspace = true18serde.workspace = true19serde_json.workspace = true20tempfile.workspace = true21time = { version = "0.3", features = ["serde"] }22once_cell = "1.19"23hostname = "0.4.0"24age-core = "0.10"25peg = "0.8"26base64 = "0.22.1"27chrono = { version = "0.4", features = ["serde"] }28tokio-util = { version = "0.7", features = ["codec"] }29async-trait = "0.1"30futures = "0.3"31itertools = "0.13"32shlex = "1.3"33tabled = { version = "0.15" }34owo-colors = { version = "4.0", features = [35	"supports-color",36	"supports-colors",37] }38abort-on-drop = "0.2"39regex = "1.10"40openssh = "0.10"41crossterm = { version = "0.27.0", features = ["use-dev-tty"] }42fleet-shared.workspace = true4344tracing-indicatif = { version = "0.3", optional = true }45human-repr = { version = "1.1", optional = true }46indicatif = { version = "0.17", optional = true }47nix-eval.workspace = true4849[features]50# Not quite stable51indicatif = [52	"dep:tracing-indicatif",53	"dep:indicatif",54	"dep:human-repr",55	"better-command/indicatif",56]