From 3a54afb2ec837368015a10e7eb19c83030235344 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jan 2023 20:06:53 +0000 Subject: [PATCH] build(deps): bump redis from 0.22.1 to 0.22.2 Bumps [redis](https://github.com/redis-rs/redis-rs) from 0.22.1 to 0.22.2. - [Release notes](https://github.com/redis-rs/redis-rs/releases) - [Commits](https://github.com/redis-rs/redis-rs/compare/redis-0.22.1...redis-0.22.2) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-patch ... 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 c18d9a40..30ed560d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2680,9 +2680,9 @@ dependencies = [ [[package]] name = "redis" -version = "0.22.1" +version = "0.22.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "513b3649f1a111c17954296e4a3b9eecb108b766c803e2b99f179ebe27005985" +checksum = "5c1aada340fba5deba625c84d109d0a83cc3565452d38083417992a702c2428d" dependencies = [ "async-trait", "bytes", diff --git a/action/Cargo.toml b/action/Cargo.toml index 98c89d0c..692c9573 100644 --- a/action/Cargo.toml +++ b/action/Cargo.toml @@ -24,7 +24,7 @@ futures = { version = "0.3.25" } log = { version = "0.4.14", features = ["std"] } reqwest = { version = "0.11.13", features = ['stream'], optional = true } md5 = { version = "0.7.0", optional = true } -redis = { version = "0.22.1", features = ["tokio-comp"], optional = true } +redis = { version = "0.22.2", 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 }