git.delta.rocks / jrsonnet / refs/commits / 966948d5e34b

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"] }22hostname = "0.4.0"23age-core = "0.10"24peg = "0.8"25base64 = "0.22.1"26chrono = { version = "0.4", features = ["serde"] }27tokio-util = { version = "0.7", features = ["codec"] }28async-trait = "0.1"29futures = "0.3"30itertools = "0.13"31shlex = "1.3"32tabled = { version = "0.15" }33owo-colors = { version = "4.0", features = [34	"supports-color",35	"supports-colors",36] }37abort-on-drop = "0.2"38regex = "1.10"39openssh = "0.10"40crossterm = { version = "0.27.0", features = ["use-dev-tty"] }41fleet-shared.workspace = true4243tracing-indicatif = { version = "0.3", optional = true }44human-repr = { version = "1.1", optional = true }45indicatif = { version = "0.17", optional = true }46nix-eval.workspace = true47nom = "7.1.3"48fleet-base = { version = "0.1.0", path = "../../crates/fleet-base" }4950[features]51# Not quite stable52indicatif = [53	"dep:tracing-indicatif",54	"dep:indicatif",55	"dep:human-repr",56	"better-command/indicatif",57]