From 1b847ebdbfe20ab75c91e8ac58d823bba7c32c97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 14:11:08 +0000 Subject: [PATCH] Update itertools requirement from 0.10 to 0.12 in /openmls Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.0...v0.12.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- openmls/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmls/Cargo.toml b/openmls/Cargo.toml index c0c3a9456d..a0b50aa0a6 100644 --- a/openmls/Cargo.toml +++ b/openmls/Cargo.toml @@ -23,7 +23,7 @@ rand = { version = "0.8", optional = true } # We enable the feature here because other dependencies need getrandom. getrandom = { version = "0.2", features = ["js"] } # Crypto backends required for KAT and testing - "test-utils" feature -itertools = { version = "0.10", optional = true } +itertools = { version = "0.12", optional = true } openmls_rust_crypto = { version = "0.1.0", path = "../openmls_rust_crypto", optional = true } openmls_evercrypt = { version = "0.1.0", path = "../evercrypt_backend", optional = true } rstest = {version = "^0.15", optional = true} @@ -52,7 +52,7 @@ content-debug = [] # ☣️ Enable logging of sensitive message content [dev-dependencies] criterion = "^0.3" pretty_env_logger = "0.4" -itertools = "0.10" +itertools = "0.12" openmls = { path = ".", features = ["test-utils"] } tempfile = "3" rstest = "^0.15"