diff --git a/Cargo.lock b/Cargo.lock index a1bfa23f52..165fce437d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1177,7 +1177,7 @@ dependencies = [ "fuzzy-matcher", "gh-emoji", "indexmap", - "itertools", + "itertools 0.14.0", "log", "notify", "notify-debouncer-mini", @@ -2083,6 +2083,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.14" @@ -2788,7 +2797,7 @@ dependencies = [ "crossterm", "indoc", "instability", - "itertools", + "itertools 0.13.0", "lru", "paste", "serde", @@ -3580,7 +3589,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" dependencies = [ - "itertools", + "itertools 0.13.0", "unicode-segmentation", "unicode-width 0.1.14", ] @@ -3591,7 +3600,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fbf03860ff438702f3910ca5f28f8dac63c1c11e7efb5012b8b175493606330" dependencies = [ - "itertools", + "itertools 0.13.0", "unicode-segmentation", "unicode-width 0.2.0", ] diff --git a/Cargo.toml b/Cargo.toml index 26ab40aebf..06a58e86ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ filetreelist = { path = "./filetreelist", version = "0.5" } fuzzy-matcher = "0.3" gh-emoji = { version = "1.0", optional = true } indexmap = "2" -itertools = "0.13" +itertools = "0.14" log = "0.4" notify = "8" notify-debouncer-mini = "0.6"