From 55b98e6f5f3084348b58ef7c6b3208be3a07c485 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:30:50 +0000 Subject: [PATCH] Bump redis from 0.27.5 to 0.28.0 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.27.5 to 0.28.0. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.27.5...redis-0.28.0) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++++--- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 81cf588..e6ee421 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,7 +68,7 @@ dependencies = [ "bitflags 2.6.0", "cexpr", "clang-sys", - "itertools", + "itertools 0.12.1", "log", "prettyplease", "proc-macro2", @@ -205,6 +205,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.11" @@ -406,12 +415,13 @@ dependencies = [ [[package]] name = "redis" -version = "0.27.5" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cccf17a692ce51b86564334614d72dcae1def0fd5ecebc9f02956da74352b5" +checksum = "ff21dd025d2d3d2a6ad6788c0f7153f82d063216a7638f70367aac5790fea5da" dependencies = [ "arc-swap", "combine", + "itertools 0.13.0", "itoa", "num-bigint", "percent-encoding", diff --git a/Cargo.toml b/Cargo.toml index 020e0cb..25f21b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -142,7 +142,7 @@ log = "0.4" [dev-dependencies] anyhow = "1" -redis = "0.27" +redis = "0.28" lazy_static = "1" valkey-module-macros = { path = "valkeymodule-rs-macros", version = "0.1.3" } valkey-module = { path = "./", default-features = false, features = ["min-valkey-compatibility-version-8-0", "min-redis-compatibility-version-7-2"] }