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

difftreelog

source

cmds/fleet/Cargo.toml1.6 KiBsourcehistory
1[package]2name = "fleet"3description = "NixOS configuration management"4version = "0.2.0"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6edition.workspace = true7rust-version.workspace = true8default-run = "fleet"910[dependencies]11age = { workspace = true, features = ["armor"] }12anyhow.workspace = true13better-command.workspace = true14clap.workspace = true15clap_complete.workspace = true16fleet-shared.workspace = true17nix-eval.workspace = true18nixlike.workspace = true19serde.workspace = true20serde_json.workspace = true21tempfile.workspace = true22tokio.workspace = true23tracing.workspace = true24tracing-subscriber.workspace = true2526abort-on-drop = "0.2"27age-core = "0.11"28async-trait = "0.1"29base64 = "0.22.1"30chrono = { version = "0.4", features = ["serde"] }31crossterm = { version = "0.29.0", features = ["use-dev-tty"] }32futures = "0.3"33hostname = "0.4.1"34itertools = "0.14"35openssh = "0.11"36owo-colors = { version = "4.2", features = ["supports-color", "supports-colors"] }37peg = "0.8"38regex = "1.11"39shlex = "1.3"40tabled = { version = "0.20" }41time = { version = "0.3", features = ["serde"] }42tokio-util = { version = "0.7", features = ["codec"] }4344fleet-base = { version = "0.1.0", path = "../../crates/fleet-base" }45human-repr = { version = "1.1", optional = true }46indicatif = { version = "0.18", optional = true }47nom = "8.0.0"48opentelemetry = "0.30.0"49opentelemetry_sdk = "0.30.0"50thiserror.workspace = true51tracing-indicatif = { version = "0.3", optional = true }52tracing-opentelemetry = "0.31.0"5354[features]55default = []56# Not quite stable57indicatif = [58	"dep:tracing-indicatif",59	"dep:indicatif",60	"dep:human-repr",61	"better-command/indicatif",62	"nix-eval/indicatif",63]