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

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 = true13age = { workspace = true, features = ["armor"] }14anyhow.workspace = true15tracing.workspace = true16tracing-subscriber.workspace = true17serde.workspace = true18serde_json.workspace = true19tempfile.workspace = true20time = { version = "0.3", features = ["serde"] }21once_cell = "1.19"22hostname = "0.3"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.12"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 = { version = "0.1.0", path = "../../crates/nix-eval" }4748[features]49# Not quite stable50indicatif = [51	"dep:tracing-indicatif",52	"dep:indicatif",53	"dep:human-repr",54	"better-command/indicatif",55]