From 5f6beb451a0a80011cdfd8a25870a086bbb98b02 Mon Sep 17 00:00:00 2001 From: nihohit Date: Thu, 30 Nov 2023 13:37:58 +0000 Subject: [PATCH] Remove usage of deprecated "tls" feature. https://github.com/redis-rs/redis-rs/blob/882ecf9c5da4a6cecaea059194be5a71f86befcf/redis/Cargo.toml#L111 --- babushka-core/Cargo.toml | 2 +- csharp/lib/Cargo.toml | 2 +- java/Cargo.toml | 2 +- node/rust-client/Cargo.toml | 2 +- python/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/babushka-core/Cargo.toml b/babushka-core/Cargo.toml index 1a64573eea..649a2319d1 100644 --- a/babushka-core/Cargo.toml +++ b/babushka-core/Cargo.toml @@ -11,7 +11,7 @@ authors = ["Amazon Web Services"] bytes = "^1.3" futures = "^0.3" num-traits = "^0.2" -redis = { path = "../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "tls", "tokio-rustls-comp", "connection-manager","cluster", "cluster-async"] } +redis = { path = "../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "tokio-rustls-comp", "connection-manager","cluster", "cluster-async"] } signal-hook = "^0.3" signal-hook-tokio = {version = "^0.3", features = ["futures-v0_3"] } tokio = { version = "1", features = ["macros", "time"] } diff --git a/csharp/lib/Cargo.toml b/csharp/lib/Cargo.toml index ed19edeb7f..2bc009acf1 100644 --- a/csharp/lib/Cargo.toml +++ b/csharp/lib/Cargo.toml @@ -11,7 +11,7 @@ authors = ["Amazon Web Services"] crate-type = ["cdylib"] [dependencies] -redis = { path = "../../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "tls", "tokio-native-tls-comp"] } +redis = { path = "../../submodules/redis-rs/redis", features = ["aio", "tokio-comp","tokio-native-tls-comp"] } babushka = { path = "../../babushka-core" } tokio = { version = "^1", features = ["rt", "macros", "rt-multi-thread", "time"] } num-derive = "0.4.0" diff --git a/java/Cargo.toml b/java/Cargo.toml index 3313f92419..b7be9cc4cb 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -12,7 +12,7 @@ name = "javababushka" crate-type = ["cdylib"] [dependencies] -redis = { path = "../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "connection-manager", "tls", "tokio-rustls-comp"] } +redis = { path = "../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "connection-manager", "tokio-rustls-comp"] } babushka = { path = "../babushka-core" } tokio = { version = "^1", features = ["rt", "macros", "rt-multi-thread", "time"] } logger_core = {path = "../logger_core"} diff --git a/node/rust-client/Cargo.toml b/node/rust-client/Cargo.toml index 966ecc8054..ed351f8d3f 100644 --- a/node/rust-client/Cargo.toml +++ b/node/rust-client/Cargo.toml @@ -11,7 +11,7 @@ authors = ["Amazon Web Services"] crate-type = ["cdylib"] [dependencies] -redis = { path = "../../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "tls", "tokio-rustls-comp"] } +redis = { path = "../../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "tokio-rustls-comp"] } babushka = { path = "../../babushka-core" } tokio-util = { version = "0.7", optional = true } tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread", "time"] } diff --git a/python/Cargo.toml b/python/Cargo.toml index ff11eb7609..ed76d199f8 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -13,7 +13,7 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { version = "^0.19", features = ["extension-module"] } pyo3-asyncio = { version = "^0.19", features = ["tokio-runtime"] } -redis = { path = "../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "connection-manager", "tls", "tokio-rustls-comp"] } +redis = { path = "../submodules/redis-rs/redis", features = ["aio", "tokio-comp", "connection-manager","tokio-rustls-comp"] } babushka = { path = "../babushka-core" } tokio = { version = "^1", features = ["rt", "macros", "rt-multi-thread", "time"] } logger_core = {path = "../logger_core"}