Skip to content

Commit

Permalink
enable tokio-rustls-comp feature in kitsune (not only in kitsune-job-…
Browse files Browse the repository at this point in the history
…runner)
  • Loading branch information
aumetra committed Feb 9, 2024
1 parent 8e34d83 commit 6307893
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/kitsune-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ enum_dispatch = "0.3.12"
moka = { version = "0.12.5", features = ["sync"] }
multiplex-pool = { path = "../../lib/multiplex-pool" }
redis = { version = "0.24.0", default-features = false, features = [
"aio",
"connection-manager",
"tokio-comp",
] }
serde = "1.0.196"
Expand Down
6 changes: 1 addition & 5 deletions crates/kitsune-messaging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ derive_more = { version = "1.0.0-beta.6", features = ["from"] }
futures-util = "0.3.30"
kitsune-retry-policies = { path = "../../lib/kitsune-retry-policies" }
pin-project-lite = "0.2.13"
redis = { version = "0.24.0", features = [
"aio",
"connection-manager",
"tokio-rustls-comp",
] }
redis = { version = "0.24.0", features = ["connection-manager", "tokio-comp"] }
serde = "1.0.196"
simd-json = "0.13.8"
tokio = { version = "1.36.0", features = ["macros", "rt", "sync"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-oidc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ openidconnect = { version = "3.4.0", default-features = false, features = [
] }
redis = { version = "0.24.0", default-features = false, features = [
"connection-manager",
"tokio-rustls-comp",
"tokio-comp",
] }
serde = { version = "1.0.196", features = ["derive"] }
simd-json = "0.13.8"
Expand Down
1 change: 1 addition & 0 deletions crates/kitsune-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ post-process = { path = "../../lib/post-process" }
rand = "0.8.5"
redis = { version = "0.24.0", default-features = false, features = [
"connection-manager",
"tokio-comp",
] }
rsa = "0.9.6"
rusty-s3 = { version = "0.5.0", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions crates/kitsune-webfinger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ kitsune-util = { path = "../kitsune-util" }
multiplex-pool = { path = "../../lib/multiplex-pool" }
redis = { version = "0.24.0", default-features = false, features = [
"connection-manager",
"tokio-comp",
] }
tracing = "0.1.40"

Expand Down
4 changes: 4 additions & 0 deletions kitsune/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ pkcs8 = "0.10.2"
oxide-auth = "0.5.4"
oxide-auth-async = "0.1.1"
oxide-auth-axum = "0.4.0"
redis = { version = "0.24.0", default-features = false, features = [
"tokio-rustls-comp",
] }
rust-embed = { version = "8.2.0", features = ["include-exclude"] }
scoped-futures = "0.1.3"
serde = { version = "1.0.196", features = ["derive"] }
Expand Down Expand Up @@ -136,6 +139,7 @@ multiplex-pool = { path = "../lib/multiplex-pool" }
pretty_assertions = "1.4.0"
redis = { version = "0.24.0", default-features = false, features = [
"connection-manager",
"tokio-comp",
] }
serial_test = "3.0.0"
tower = "0.4.13"
Expand Down
2 changes: 1 addition & 1 deletion lib/athena/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ redis = { version = "0.24.0", default-features = false, features = [
"aio",
"script",
"streams",
"tokio-rustls-comp",
"tokio-comp",
] }
retry-policies = "0.2.1"
serde = { version = "1.0.196", features = ["derive"] }
Expand Down

0 comments on commit 6307893

Please sign in to comment.