From 2b4320c1a9489341571443e8062118e26ef6c7cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 19:27:32 +0000 Subject: [PATCH 1/2] Bump itertools from 0.9.0 to 0.11.0 Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.9.0 to 0.11.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.9.0...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 | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0b2ef31..cc4c518 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,9 +85,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.9.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" dependencies = [ "either", ] diff --git a/Cargo.toml b/Cargo.toml index eb11723..2aa9e62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ argparse = "0.2.2" defaultmap = "0.5.0" float-ord = "0.2.0" group-by = "1.0.0" -itertools = "0.9.0" +itertools = "0.11.0" peg = "0.6.3" permutation = "0.4.1" string-intern = { version ="0.1.7", default-features = false } From ca3eeeacef39a4d04c036a2c05450be45f950bb1 Mon Sep 17 00:00:00 2001 From: Michael Mior Date: Tue, 31 Oct 2023 15:29:12 -0400 Subject: [PATCH 2/2] Allow unsafe for itertools --- cackle.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cackle.toml b/cackle.toml index 12cdb0d..8e3c276 100644 --- a/cackle.toml +++ b/cackle.toml @@ -36,3 +36,6 @@ allow_unsafe = true allow_apis = [ "fs", ] + +[pkg.itertools] +allow_unsafe = true