git.delta.rocks / jrsonnet / refs/commits / 3f5aab0a99c7

difftreelog

source

cmds/fleet/Cargo.toml1.5 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.22.1"23chrono = { version = "0.4", features = ["serde"] }24# Using fixed version for rust on stable nixos branches.25clap = { version = ">=4.4, <4.5", features = [26	"derive",27	"env",28	"wrap_help",29	"unicode",30] }31tracing = "0.1"32tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }33tokio-util = { version = "0.7", features = ["codec"] }34async-trait = "0.1"35futures = "0.3"36itertools = "0.12"37shlex = "1.3"38tabled = { version = "0.15" }39owo-colors = { version = "4.0", features = [40	"supports-color",41	"supports-colors",42] }43r2d2 = "0.8.10"44abort-on-drop = "0.2"45unindent = "0.2"46regex = "1.10"47openssh = "0.10"48crossterm = { version = "0.27.0", features = ["use-dev-tty"] }49fleet-shared.workspace = true5051tracing-indicatif = { version = "0.3", optional = true }52human-repr = { version = "1.1", optional = true }53indicatif = { version = "0.17", optional = true }5455[features]56# Not quite stable57indicatif = [58	"tracing-indicatif",59	"dep:indicatif",60	"human-repr",61	"better-command/indicatif",62]