diff --git a/Cargo.lock b/Cargo.lock index 725050c164..a9f1177291 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1410,7 +1410,7 @@ dependencies = [ "hyper 1.7.0", "hyper-util", "image", - "indicatif", + "indicatif 0.18.1", "indoc", "insta", "jsonschema", @@ -1775,6 +1775,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.0", + "windows-sys 0.61.2", +] + [[package]] name = "constant_time_eq" version = "0.3.1" @@ -2195,7 +2208,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", @@ -3683,13 +3696,26 @@ 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.0", "web-time", ] +[[package]] +name = "indicatif" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2e0ddd45fe8e09ee1a607920b12271f8a5528a41ecaf6e1d1440d6493315b6b" +dependencies = [ + "console 0.16.1", + "portable-atomic", + "unicode-width 0.2.0", + "unit-prefix", + "web-time", +] + [[package]] name = "indoc" version = "2.0.6" @@ -3712,7 +3738,7 @@ version = "1.43.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0" dependencies = [ - "console", + "console 0.15.11", "once_cell", "similar", ] @@ -6377,7 +6403,7 @@ dependencies = [ "dirs 5.0.1", "glob", "hnsw_rs", - "indicatif", + "indicatif 0.18.1", "pdf-extract", "rayon", "reqwest", @@ -7220,7 +7246,7 @@ dependencies = [ "derive_builder", "esaxx-rs", "getrandom 0.3.4", - "indicatif", + "indicatif 0.17.11", "itertools 0.14.0", "log", "macro_rules_attribute", @@ -7772,6 +7798,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 = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index dff3ba057a..b89e59d1e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,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.18.1" indoc = "2.0.6" insta = "1.43.1" libc = "0.2.172"