From 456dfec832b6dd366e5babed0e1c3b15c6f5b0f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Feb 2022 19:32:58 +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 e6acea55..2cd9108f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -985,15 +985,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" @@ -2604,7 +2595,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", @@ -2649,7 +2640,7 @@ dependencies = [ "anyhow", "console 0.9.2", "indicatif 0.15.0", - "itertools 0.9.0", + "itertools", "log 0.4.14", "regex 1.5.4", "serde", @@ -2665,7 +2656,7 @@ version = "0.3.0" dependencies = [ "console 0.9.2", "flexi_logger 0.17.1", - "itertools 0.10.3", + "itertools", "log 0.4.14", "serde", "serde_derive", @@ -2685,7 +2676,7 @@ dependencies = [ "error-chain", "hex 0.4.3", "hex-serde", - "itertools 0.9.0", + "itertools", "lazy_static 1.4.0", "libc", "log 0.4.14", @@ -2734,7 +2725,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 4af7ff74..d21d4944 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.4" -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 c9c1142a..2006c27e 100644 --- a/uvm_core/Cargo.toml +++ b/uvm_core/Cargo.toml @@ -26,7 +26,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 15f334b7..d2ed065d 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.10.0" } [dev-dependencies] cfg-if = "1.0.0"