diff --git a/Cargo.lock b/Cargo.lock index 9d2bc5b..c890588 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1877,7 +1877,7 @@ version = "0.18.0" dependencies = [ "anyhow", "curl", - "redis 0.28.2", + "redis 0.29.0", "rumqttc", "tokio", ] @@ -6329,6 +6329,28 @@ dependencies = [ "url", ] +[[package]] +name = "redis" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9568894e8bdefd16512bca9e286a9d2abc27773609aa4eb7f428497d64df4373" +dependencies = [ + "arc-swap", + "bytes", + "combine", + "futures-util", + "itoa", + "num-bigint", + "percent-encoding", + "pin-project-lite", + "ryu", + "sha1_smol", + "socket2", + "tokio", + "tokio-util", + "url", +] + [[package]] name = "redox_syscall" version = "0.2.16" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 02dab01..fdd452f 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -9,6 +9,6 @@ license.workspace = true [dev-dependencies] anyhow = "1" curl = { version = "0.4", features = ["static-curl"] } -redis = { version = "0.28", features = ["tokio-comp"] } +redis = { version = "0.29", features = ["tokio-comp"] } rumqttc = "0.24.0" tokio = { version = "1", features = ["rt", "macros", "process"] } \ No newline at end of file