diff --git a/deepwell/Cargo.lock b/deepwell/Cargo.lock index 98efcc30d2..6d86e44930 100644 --- a/deepwell/Cargo.lock +++ b/deepwell/Cargo.lock @@ -900,7 +900,7 @@ dependencies = [ "once_cell", "paste", "rand 0.8.5", - "redis", + "redis 0.25.2", "ref-map", "regex", "reqwest 0.12.2", @@ -3071,12 +3071,10 @@ version = "0.23.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba" dependencies = [ - "arc-swap", "async-std", "async-trait", "bytes", "combine", - "futures", "futures-util", "itoa", "percent-encoding", @@ -3085,6 +3083,29 @@ dependencies = [ "sha1_smol", "socket2 0.4.10", "tokio", + "tokio-util", + "url", +] + +[[package]] +name = "redis" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d64e978fd98a0e6b105d066ba4889a7301fca65aeac850a877d8797343feeb" +dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "combine", + "futures", + "futures-util", + "itoa", + "percent-encoding", + "pin-project-lite", + "ryu", + "sha1_smol", + "socket2 0.5.6", + "tokio", "tokio-retry", "tokio-util", "url", @@ -3314,7 +3335,7 @@ dependencies = [ "lazy_static", "radix_fmt", "rand 0.8.5", - "redis", + "redis 0.23.3", "thiserror", ] diff --git a/deepwell/Cargo.toml b/deepwell/Cargo.toml index 909b24c0ea..efdc3546e7 100644 --- a/deepwell/Cargo.toml +++ b/deepwell/Cargo.toml @@ -42,7 +42,7 @@ notify = { version = "6", optional = true } once_cell = "1" paste = "1" rand = "0.8" -redis = { version = "0.23", features = ["aio", "connection-manager", "keep-alive", "tokio-comp"] } +redis = { version = "0.25", features = ["aio", "connection-manager", "keep-alive", "tokio-comp"] } ref-map = "0.1" regex = "1" reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }