From 7e487e02fedf6cf7f6bb4dc62e4804c592046498 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 10:06:06 -0700 Subject: [PATCH] Bump itertools from 0.12.1 to 0.13.0 (#419) Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.12.1 to 0.13.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 13 +++++++++++-- kittycad/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 347bf24..6220536 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -944,6 +944,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.9" @@ -1000,7 +1009,7 @@ dependencies = [ "futures", "futures-util", "http 0.2.9", - "itertools", + "itertools 0.13.0", "log", "mime_guess", "parse-display", @@ -1375,7 +1384,7 @@ dependencies = [ "bincode", "either", "fnv", - "itertools", + "itertools 0.12.1", "lazy_static", "nom", "quick-xml", diff --git a/kittycad/Cargo.toml b/kittycad/Cargo.toml index 62913af..394e82e 100644 --- a/kittycad/Cargo.toml +++ b/kittycad/Cargo.toml @@ -21,7 +21,7 @@ dirs = { version = "^5.0.1", optional = true } format_serde_error = { version = "^0.3.0", optional = true } futures = { version = "0.3.26", optional = true } http = { version = "^0.2.8", optional = true } -itertools = "0.12.1" +itertools = "0.13.0" log = { version = "^0.4", features = ["serde"], optional = true } mime_guess = "2.0.4" parse-display = "0.9.0"