From 00d492e15faf9848e7d2aa0b43e3d0d21f69968b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 02:22:15 +0000 Subject: [PATCH] chore(deps): bump redis from 0.26.0 to 0.27.2 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.26.0 to 0.27.2. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.26.0...redis-0.27.2) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb2192c..be5c071 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1367,7 +1367,7 @@ dependencies = [ "futures-core", "miette", "php-literal-parser", - "redis", + "redis 0.26.1", "thiserror", "urlencoding", ] @@ -1414,7 +1414,7 @@ dependencies = [ "parse-display", "percent-encoding", "rand", - "redis", + "redis 0.27.2", "reqwest", "sd-notify", "serde", @@ -1804,9 +1804,24 @@ dependencies = [ [[package]] name = "redis" -version = "0.26.0" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e902a69d09078829137b4a5d9d082e0490393537badd7c91a3d69d14639e115f" +dependencies = [ + "arc-swap", + "combine", + "itoa", + "num-bigint", + "percent-encoding", + "ryu", + "url", +] + +[[package]] +name = "redis" +version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cc5b667390cb038bc65fc4b18c06e2550469f7e06a02d886f1a018a11f63563" +checksum = "a7e86f5670bd8b028edfb240f0616cad620705b31ec389d55e4f3da2c38dcd48" dependencies = [ "arc-swap", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index d2b0f73..9547f38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" rust-version = "1.74.1" [dependencies] -redis = { version = "0.26.0", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async", "keep-alive"] } +redis = { version = "0.27.2", default-features = false, features = ["tokio-comp", "aio", "cluster", "cluster-async", "keep-alive"] } serde = { version = "1.0.204", features = ["derive"] } serde_json = "1.0.120" thiserror = "1.0.63"