From c6d548433a70c44ddd9a38f133b0cd93174d8304 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 17 Jul 2025 20:32:11 +0000 Subject: [PATCH] fix: turns out, indicatif is still broken for some reason --- --- a/cmds/fleet/Cargo.toml +++ b/cmds/fleet/Cargo.toml @@ -48,7 +48,7 @@ tracing-indicatif = { version = "0.3", optional = true } [features] -default = ["indicatif"] +default = [] # Not quite stable indicatif = [ "dep:tracing-indicatif", --- 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 -- gitstuff