diff --git a/deepwell/Cargo.lock b/deepwell/Cargo.lock index 1df3f2a81d6..6ac5ddf8c3a 100644 --- a/deepwell/Cargo.lock +++ b/deepwell/Cargo.lock @@ -906,7 +906,7 @@ dependencies = [ "once_cell", "paste", "rand 0.8.5", - "redis", + "redis 0.23.3", "ref-map", "regex", "reqwest 0.12.4", @@ -3072,7 +3072,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba" dependencies = [ "arc-swap", - "async-std", "async-trait", "bytes", "combine", @@ -3090,6 +3089,28 @@ dependencies = [ "url", ] +[[package]] +name = "redis" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6472825949c09872e8f2c50bde59fcefc17748b6be5c90fd67cd8b4daca73bfd" +dependencies = [ + "async-std", + "async-trait", + "bytes", + "combine", + "futures-util", + "itoa", + "percent-encoding", + "pin-project-lite", + "ryu", + "sha1_smol", + "socket2 0.5.6", + "tokio", + "tokio-util", + "url", +] + [[package]] name = "redox_syscall" version = "0.4.1" @@ -3305,16 +3326,16 @@ dependencies = [ [[package]] name = "rsmq_async" -version = "8.0.2" +version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167d3e08ed2181260aedbec34513181e3bfac77667a58b3c33806c8eea536acf" +checksum = "9353df5bcde1ed4b051519047700c5b54477cac3e483fbeaccbd74018116cf31" dependencies = [ "async-trait", "bb8", "lazy_static", "radix_fmt", "rand 0.8.5", - "redis", + "redis 0.25.3", "thiserror", ] diff --git a/deepwell/Cargo.toml b/deepwell/Cargo.toml index f592ce0fe3a..961a06d9158 100644 --- a/deepwell/Cargo.toml +++ b/deepwell/Cargo.toml @@ -46,7 +46,7 @@ redis = { version = "0.23", features = ["aio", "connection-manager", "keep-alive ref-map = "0.1" regex = "1" reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } -rsmq_async = "8" +rsmq_async = "9" rust-s3 = { version = "0.32", features = ["with-tokio"], default-features = false } rust-otp = "2" sea-orm = { version = "0.12", features = ["sqlx-postgres", "runtime-tokio-rustls", "postgres-array", "macros", "with-json", "with-time"], default-features = false }