Skip to content

Commit

Permalink
chore: change default tls features to rustls
Browse files Browse the repository at this point in the history
closes #3113
  • Loading branch information
digikata committed Dec 4, 2023
1 parent 12579c5 commit a772640
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/fluvio-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tracing = { workspace = true }
x509-parser = { workspace = true }

fluvio-controlplane-metadata = { workspace = true }
fluvio-future = { workspace = true, features = ["net", "openssl_tls"] }
fluvio-future = { workspace = true, features = ["net", "tls"] }
fluvio-protocol = { workspace = true }
fluvio-socket = { workspace = true }
fluvio-types = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-channel-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ anyhow = { workspace = true }

fluvio-cli-common = { workspace = true }
fluvio-channel = { workspace = true }
fluvio-future = { workspace = true, features = ["task", "subscriber", "native2_tls"], optional = true }
fluvio-future = { workspace = true, features = ["task", "subscriber", "tls"], optional = true }
fluvio-types = { workspace = true, default-features = false, optional = true }
fluvio-package-index = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-cli-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ isahc = { version = "1.7", default-features = false, features = ["static-curl"]
isahc = { version = "1.7", default-features = false }

[dev-dependencies]
fluvio-future = { workspace = true, features = ["fs", "io", "subscriber", "native2_tls", "fixture"] }
fluvio-future = { workspace = true, features = ["fs", "io", "subscriber", "tls", "fixture"] }
2 changes: 1 addition & 1 deletion crates/fluvio-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fluvio-controlplane-metadata = { workspace = true, features = ["smartmodule"] }

# Optional Fluvio dependencies
fluvio-types = { workspace = true, optional = true }
fluvio-future = { workspace = true, features = ["fs", "io", "subscriber", "native2_tls"], optional = true }
fluvio-future = { workspace = true, features = ["fs", "io", "subscriber", "tls"], optional = true }
fluvio-sc-schema = { workspace = true, features = ["use_serde"], optional = true }
fluvio-spu-schema = { workspace = true, optional = true }

Expand Down
4 changes: 2 additions & 2 deletions crates/fluvio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "fluvio"
path = "src/lib.rs"

[features]
default = ["openssl"]
default = ["rustls"]
admin = ["fluvio-sc-schema/use_serde"]
smartengine = ["fluvio-smartengine"]
openssl = ["fluvio-future/openssl_tls"]
Expand All @@ -27,7 +27,7 @@ async-channel = { workspace = true }
async-lock = { workspace = true }
async-rwlock = { workspace = true }
async-trait = { workspace = true }
anyhow = { workspace = true }
anyhow = { workspace = true }
base64 = { workspace = true }
bytes = { workspace = true }
cfg-if = { workspace = true }
Expand Down

0 comments on commit a772640

Please sign in to comment.