From 02632bab2dd06e4e803f358ffd725c140014304b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 02:28:44 +0000 Subject: [PATCH] chore(deps): bump redis from 0.26.0 to 0.27.4 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.26.0 to 0.27.4. - [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.4) --- 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..b19a9f7 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.4", "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.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cc5b667390cb038bc65fc4b18c06e2550469f7e06a02d886f1a018a11f63563" +checksum = "dc6baebe319ef5e4b470f248335620098d1c2e9261e995be05f56f719ca4bdb2" dependencies = [ "arc-swap", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index d2b0f73..f7e2c0f 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.4", 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"