From 74e0efb87fc1d2354cfb1fa020e4757fe4a2394b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 21:06:31 +0000 Subject: [PATCH] build(deps): bump redis from 0.22.3 to 0.23.0 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.22.3 to 0.23.0. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.22.3...redis-0.23.0) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- action/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d1f1145a..ebcaaa02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2698,9 +2698,9 @@ dependencies = [ [[package]] name = "redis" -version = "0.22.3" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa8455fa3621f6b41c514946de66ea0531f57ca017b2e6c7cc368035ea5b46df" +checksum = "3ea8c51b5dc1d8e5fd3350ec8167f464ec0995e79f2e90a075b63371500d557f" dependencies = [ "async-trait", "bytes", diff --git a/action/Cargo.toml b/action/Cargo.toml index d7547a61..1f8000fd 100644 --- a/action/Cargo.toml +++ b/action/Cargo.toml @@ -24,7 +24,7 @@ futures = { version = "0.3.27" } log = { version = "0.4.14", features = ["std"] } reqwest = { version = "0.11.14", features = ['stream'], optional = true } md5 = { version = "0.7.0", optional = true } -redis = { version = "0.22.3", features = ["tokio-comp"], optional = true } +redis = { version = "0.23.0", features = ["tokio-comp"], optional = true } rbatis = { version = "3.1.14", optional = true, default-features = false, features = ["default_mode", "all-database", "upper_case_sql_keyword", "runtime-tokio-rustls"] } mongodb = { version = "2.3.1", default-features = false, features = ["tokio-runtime"], optional = true } urlencoding = { version = "2.1.2", optional = true }