diff --git a/Cargo.lock b/Cargo.lock index 1110a18f6f..50913d83a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2002,6 +2002,19 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "console" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e09ced7ebbccb63b4c65413d821f2e00ce54c5ca4514ddc6b3c892fdbcbc69d" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width 0.2.1", + "windows-sys 0.60.2", +] + [[package]] name = "const-random" version = "0.1.18" @@ -2472,7 +2485,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" dependencies = [ - "console", + "console 0.15.11", "fuzzy-matcher", "shell-words", "tempfile", @@ -5111,14 +5124,14 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.17.11" +version = "0.17.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" +checksum = "4adb2ee6ad319a912210a36e56e3623555817bcc877a7e6e8802d1d69c4d8056" dependencies = [ - "console", - "number_prefix", + "console 0.16.0", "portable-atomic", "unicode-width 0.2.1", + "unit-prefix", "web-time", ] @@ -5163,7 +5176,7 @@ version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371" dependencies = [ - "console", + "console 0.15.11", "once_cell", "similar", ] @@ -6521,12 +6534,6 @@ dependencies = [ "libc", ] -[[package]] -name = "number_prefix" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" - [[package]] name = "objc" version = "0.2.7" @@ -10357,6 +10364,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" +[[package]] +name = "unit-prefix" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817" + [[package]] name = "unsafe-libyaml" version = "0.2.11" diff --git a/Cargo.toml b/Cargo.toml index 1534f6c0c4..a57e46ae0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ glob = "0.3.2" globset = "0.4.16" hex = "0.4.3" http = "1.2.0" -indicatif = "0.17.11" +indicatif = "0.17.12" indoc = "2.0.6" insta = "1.43.1" libc = "0.2.172" diff --git a/crates/chat-cli/Cargo.toml b/crates/chat-cli/Cargo.toml index d5b8886733..f2d1e34197 100644 --- a/crates/chat-cli/Cargo.toml +++ b/crates/chat-cli/Cargo.toml @@ -72,7 +72,7 @@ http = "1.2.0" http-body-util = "0.1.3" hyper = { version = "1.6.0", features = ["server"] } hyper-util = { version = "0.1.11", features = ["tokio"] } -indicatif = "0.17.11" +indicatif = "0.17.12" indoc = "2.0.6" insta = "1.43.1" libc = "0.2.172"