From e6ab3f132f421cc609b0e50a416ed31dc0da27ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 15:58:45 +0000 Subject: [PATCH] cargo: bump itertools from 0.10.5 to 0.11.0 Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.10.5 to 0.11.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.5...v0.11.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 ++++++++++++++++++--------- Cargo.toml | 2 +- lib/Cargo.toml | 2 +- lib/testutils/Cargo.toml | 2 +- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0092cded5..bc6a1dee7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -412,7 +412,7 @@ dependencies = [ "clap", "criterion-plot", "is-terminal", - "itertools", + "itertools 0.10.5", "num-traits", "once_cell", "oorandom", @@ -433,7 +433,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" dependencies = [ "cast", - "itertools", + "itertools 0.10.5", ] [[package]] @@ -600,7 +600,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a1840969ab8be31e186bb6d2f672d586dcd203dd4019a80dc1277a14686eca9" dependencies = [ "bitflags", - "itertools", + "itertools 0.10.5", ] [[package]] @@ -809,6 +809,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.3" @@ -854,7 +863,7 @@ dependencies = [ "hex", "indexmap", "insta", - "itertools", + "itertools 0.11.0", "jujutsu-lib", "libc", "maplit", @@ -891,7 +900,7 @@ dependencies = [ "git2", "hex", "insta", - "itertools", + "itertools 0.11.0", "maplit", "num_cpus", "once_cell", @@ -1292,7 +1301,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" dependencies = [ "difflib", - "itertools", + "itertools 0.10.5", "predicates-core", ] @@ -1373,7 +1382,7 @@ checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" dependencies = [ "bytes", "heck", - "itertools", + "itertools 0.10.5", "lazy_static", "log", "multimap", @@ -1394,7 +1403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" dependencies = [ "anyhow", - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.104", @@ -1816,7 +1825,7 @@ version = "0.7.0" dependencies = [ "config", "git2", - "itertools", + "itertools 0.11.0", "jujutsu-lib", "rand", "tempfile", diff --git a/Cargo.toml b/Cargo.toml index 2295f74db..55703e724 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ git2 = "0.17.2" glob = "0.3.1" hex = "0.4.3" indexmap = "1.9.3" -itertools = "0.10.5" +itertools = "0.11.0" jujutsu-lib = { version = "=0.7.0", path = "lib", default-features = false } maplit = "1.0.2" once_cell = "1.18.0" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index f00d304e4..5e440c504 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -30,7 +30,7 @@ config = { version = "0.13.3", default-features = false, features = ["toml"] } digest = "0.10.7" git2 = "0.17.2" hex = "0.4.3" -itertools = "0.10.5" +itertools = "0.11.0" maplit = "1.0.2" once_cell = "1.18.0" pest = "2.7.0" diff --git a/lib/testutils/Cargo.toml b/lib/testutils/Cargo.toml index 6c1b9992b..3b2da578c 100644 --- a/lib/testutils/Cargo.toml +++ b/lib/testutils/Cargo.toml @@ -17,7 +17,7 @@ publish = false [dependencies] config = { version = "0.13.2", default-features = false, features = ["toml"] } git2 = "0.17.2" -itertools = "0.10.5" +itertools = "0.11.0" jujutsu-lib = { path = ".." } rand = "0.8.5" tempfile = "3.6.0"