difftreelog
fix turns out, indicatif is still broken for some reason
in: trunk
2 files changed
cmds/fleet/Cargo.tomldiffbeforeafterboth1[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.17", optional = true }47nom = "8.0.0"48tracing-indicatif = { version = "0.3", optional = true }4950[features]51default = ["indicatif"]52# Not quite stable53indicatif = [54 "dep:tracing-indicatif",55 "dep:indicatif",56 "dep:human-repr",57 "better-command/indicatif",58]cmds/install-secrets/Cargo.tomldiffbeforeafterboth--- a/cmds/install-secrets/Cargo.toml
+++ b/cmds/install-secrets/Cargo.toml
@@ -5,13 +5,13 @@
rust-version.workspace = true
[dependencies]
-clap.workspace = true
-fleet-shared.workspace = true
age.workspace = true
anyhow.workspace = true
-tracing.workspace = true
-tracing-subscriber.workspace = true
+clap.workspace = true
+fleet-shared.workspace = true
+nix.workspace = true
serde.workspace = true
serde_json.workspace = true
tempfile.workspace = true
-nix.workspace = true
+tracing.workspace = true
+tracing-subscriber.workspace = true