diff --git a/Cargo.lock b/Cargo.lock index 9fc8775d64327..843276177e243 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8327,9 +8327,9 @@ checksum = "0b97c0a6319ae55341eb213c8ef97002630a3a5bd6f287f0124d077121d3f2a5" [[package]] name = "redis" -version = "0.24.0" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd" +checksum = "14c442de91f2a085154b1e1b374d5d5edf5bc49d2ebbfdf47e67edd6c2df568d" dependencies = [ "async-std", "async-trait", @@ -8341,7 +8341,7 @@ dependencies = [ "pin-project-lite", "ryu", "sha1_smol", - "socket2 0.4.9", + "socket2 0.5.3", "tokio", "tokio-util", "url", diff --git a/src/connector/Cargo.toml b/src/connector/Cargo.toml index e18b5d2bb2c8f..c917debe1b4e8 100644 --- a/src/connector/Cargo.toml +++ b/src/connector/Cargo.toml @@ -106,7 +106,7 @@ rdkafka = { workspace = true, features = [ "gssapi", "zstd", ] } -redis = { version = "0.24.0", features = [ +redis = { version = "0.25.1", features = [ "aio", "tokio-comp", "async-std-comp", diff --git a/src/risedevtool/Cargo.toml b/src/risedevtool/Cargo.toml index 3fbea69fc9445..a616b7335d0b8 100644 --- a/src/risedevtool/Cargo.toml +++ b/src/risedevtool/Cargo.toml @@ -24,7 +24,7 @@ google-cloud-pubsub = "0.23" indicatif = "0.17" itertools = "0.12" rdkafka = { workspace = true } -redis = "0.24" +redis = "0.25" regex = "1" reqwest = "0.11" serde = { version = "1", features = ["derive"] } diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index b58b8c04cfc7f..711c70898fbf4 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -107,7 +107,7 @@ quote = { version = "1" } rand = { version = "0.8", features = ["small_rng"] } rand_chacha = { version = "0.3" } rand_core = { version = "0.6", default-features = false, features = ["std"] } -redis = { version = "0.24", features = ["async-std-comp", "tokio-comp"] } +redis = { version = "0.25", features = ["async-std-comp", "tokio-comp"] } regex = { version = "1" } regex-automata = { version = "0.4", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8" }