Merge pull request 'fix(deps): update rust crate itertools to 0.14.0' (#22) from renovate/itertools-0.x into master

Reviewed-on: #22
This commit is contained in:
Bill Thiede 2025-02-09 14:30:33 -08:00
commit 977bcd0bf4
3 changed files with 13 additions and 13 deletions

22
Cargo.lock generated
View File

@ -2795,15 +2795,6 @@ version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.12.1" version = "0.12.1"
@ -2822,6 +2813,15 @@ dependencies = [
"either", "either",
] ]
[[package]]
name = "itertools"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [
"either",
]
[[package]] [[package]]
name = "itoa" name = "itoa"
version = "0.4.8" version = "0.4.8"
@ -2883,7 +2883,7 @@ dependencies = [
"gloo-net", "gloo-net",
"graphql_client", "graphql_client",
"human_format", "human_format",
"itertools 0.10.5", "itertools 0.14.0",
"log", "log",
"notmuch", "notmuch",
"seed", "seed",
@ -3419,7 +3419,7 @@ dependencies = [
name = "notmuch" name = "notmuch"
version = "0.0.138" version = "0.0.138"
dependencies = [ dependencies = [
"itertools 0.10.5", "itertools 0.14.0",
"log", "log",
"pretty_assertions", "pretty_assertions",
"rayon", "rayon",

View File

@ -13,6 +13,6 @@ thiserror = "1.0.30"
tracing = "0.1.41" tracing = "0.1.41"
[dev-dependencies] [dev-dependencies]
itertools = "0.10.1" itertools = "0.14.0"
pretty_assertions = "1" pretty_assertions = "1"
rayon = "1.5" rayon = "1.5"

View File

@ -24,7 +24,7 @@ console_log = { version = "0.1.0", registry = "xinu" }
serde = { version = "1.0.147", features = ["derive"] } serde = { version = "1.0.147", features = ["derive"] }
notmuch = { path = "../notmuch" } notmuch = { path = "../notmuch" }
shared = { path = "../shared" } shared = { path = "../shared" }
itertools = "0.10.5" itertools = "0.14.0"
serde_json = { version = "1.0.93", features = ["unbounded_depth"] } serde_json = { version = "1.0.93", features = ["unbounded_depth"] }
chrono = "0.4.31" chrono = "0.4.31"
graphql_client = "0.14.0" graphql_client = "0.14.0"