diff --git a/Cargo.lock b/Cargo.lock index 5471f29..24ba9f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1877,6 +1877,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -2203,7 +2212,7 @@ dependencies = [ "humantime-serde", "indicatif", "indoc", - "itertools 0.12.1", + "itertools 0.13.0", "metrics 0.21.1", "mongodb", "opentelemetry", diff --git a/Cargo.toml b/Cargo.toml index 445af3e..b2227d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ hex = { version = "0.4.3", features = ["serde"] } humantime-serde = "1.1.1" indicatif = "0.17.7" indoc = "2.0.4" -itertools = "0.12.0" +itertools = "0.13.0" metrics = "0.21.1" # TODO: only include this for migrate-codes bin mongodb = "2.8.1"