diff --git a/Cargo.lock b/Cargo.lock index 8caa45e..0eadfde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1140,6 +1140,19 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "console" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width 0.2.2", + "windows-sys 0.61.2", +] + [[package]] name = "const-oid" version = "0.9.6" @@ -1543,7 +1556,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" dependencies = [ - "console", + "console 0.15.11", "shell-words", "tempfile", "thiserror 1.0.69", @@ -2550,11 +2563,24 @@ version = "0.17.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" dependencies = [ - "console", + "console 0.15.11", "number_prefix", "portable-atomic", + "unicode-width 0.2.2", + "web-time", +] + +[[package]] +name = "indicatif" +version = "0.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88" +dependencies = [ + "console 0.16.1", + "portable-atomic", "tokio", "unicode-width 0.2.2", + "unit-prefix", "web-time", ] @@ -2970,7 +2996,7 @@ dependencies = [ "colored 2.2.0", "comfy-table", "config", - "console", + "console 0.15.11", "dashmap 5.5.3", "dialoguer", "dirs", @@ -2978,7 +3004,7 @@ dependencies = [ "failsafe", "futures", "hyper 1.7.0", - "indicatif", + "indicatif 0.17.11", "k8s-openapi", "kube", "linfa", @@ -3018,13 +3044,13 @@ dependencies = [ "clap_complete", "colored 2.2.0", "config", - "console", + "console 0.15.11", "criterion", "csv", "futures", "governor", "hdrhistogram", - "indicatif", + "indicatif 0.18.3", "llm-analytics-hub", "llm-latency-lens-core", "llm-latency-lens-exporters", @@ -6299,6 +6325,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" +[[package]] +name = "unit-prefix" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3" + [[package]] name = "unsafe-libyaml" version = "0.2.11" diff --git a/Cargo.toml b/Cargo.toml index ba38342..eeeb147 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,7 +80,7 @@ uuid = { version = "1.11", features = ["v4", "serde"] } # Terminal output console = "0.15" -indicatif = { version = "0.17", features = ["tokio"] } +indicatif = { version = "0.18", features = ["tokio"] } colored = "2.1" tabled = "0.16"