From a6924dc392ad83c9b390b4ced449e0614dea0dc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Dec 2022 08:01:11 +0000 Subject: [PATCH] Bump itertools from 0.9.0 to 0.10.3 Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.9.0 to 0.10.3. - [Release notes](https://github.com/rust-itertools/itertools/releases) - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.9.0...v0.10.3) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++-------------- install/uvm-modules/Cargo.toml | 2 +- install/uvm-versions/Cargo.toml | 2 +- uvm_core/Cargo.toml | 2 +- uvm_install_graph/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a3653d8..3c53d32d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -992,15 +992,6 @@ dependencies = [ "libc", ] -[[package]] -name = "itertools" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.10.3" @@ -2572,7 +2563,7 @@ dependencies = [ "console 0.9.2", "flexi_logger 0.16.3", "indicatif 0.15.0", - "itertools 0.9.0", + "itertools", "log 0.4.14", "serde", "serde_derive", @@ -2617,7 +2608,7 @@ dependencies = [ "anyhow", "console 0.9.2", "indicatif 0.15.0", - "itertools 0.9.0", + "itertools", "log 0.4.14", "regex 1.5.6", "serde", @@ -2633,7 +2624,7 @@ version = "0.4.0" dependencies = [ "console 0.9.2", "flexi_logger 0.17.1", - "itertools 0.10.3", + "itertools", "log 0.4.14", "serde", "serde_derive", @@ -2654,7 +2645,7 @@ dependencies = [ "hex 0.4.3", "hex-serde", "indoc", - "itertools 0.9.0", + "itertools", "lazy_static 1.4.0", "libc", "log 0.4.14", @@ -2704,7 +2695,7 @@ dependencies = [ "cfg-if 1.0.0", "daggy", "fixedbitset", - "itertools 0.9.0", + "itertools", "stringreader", "uvm_core", ] diff --git a/install/uvm-modules/Cargo.toml b/install/uvm-modules/Cargo.toml index a9e2c8e5..1ff8076b 100644 --- a/install/uvm-modules/Cargo.toml +++ b/install/uvm-modules/Cargo.toml @@ -17,4 +17,4 @@ serde_derive = "1.0" structopt = "0.3" uvm_cli = { path = "../../uvm_cli" } uvm_core = { path = "../../uvm_core" } -itertools = "0.9.0" +itertools = "0.10.3" diff --git a/install/uvm-versions/Cargo.toml b/install/uvm-versions/Cargo.toml index bea89e05..7ed93e23 100644 --- a/install/uvm-versions/Cargo.toml +++ b/install/uvm-versions/Cargo.toml @@ -8,7 +8,7 @@ description = "List available Unity versions to install." anyhow = "1.0.38" console = "0.9.1" regex = "1.5" -itertools = "0.9.0" +itertools = "0.10.3" serde = "1.0" structopt = "0.3" log = "0.4.11" diff --git a/uvm_core/Cargo.toml b/uvm_core/Cargo.toml index ac65f304..c2589558 100644 --- a/uvm_core/Cargo.toml +++ b/uvm_core/Cargo.toml @@ -28,7 +28,7 @@ serde_ini = "0.2.0" log = "0.4.11" plist = "0.3.0" dirs-2 = "3.0.1" -itertools = "0.9.0" +itertools = "0.10.3" semver = "1.0.1" reqwest = "0.9.22" tempfile = "3" diff --git a/uvm_install_graph/Cargo.toml b/uvm_install_graph/Cargo.toml index c66dfffa..41140d08 100644 --- a/uvm_install_graph/Cargo.toml +++ b/uvm_install_graph/Cargo.toml @@ -18,7 +18,7 @@ maintenance = { status = "experimental" } [dependencies] daggy = "0.6.0" fixedbitset = "0.1.8" -itertools = "0.9.0" +itertools = "0.10.3" uvm_core = { path = "../uvm_core", version = "0.12.0" } [dev-dependencies] cfg-if = "1.0.0"