Bugfix #1949 - use correct feature flag for wss over rustls. (#1960)

This commit is contained in:
Finn Bear 2023-05-09 19:28:08 -07:00 committed by GitHub
parent 848be4dafb
commit 1140c36942
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View file

@ -4364,6 +4364,7 @@ dependencies = [
"tokio-rustls", "tokio-rustls",
"tungstenite", "tungstenite",
"webpki", "webpki",
"webpki-roots",
] ]
[[package]] [[package]]

View file

@ -35,7 +35,7 @@ kv-fdb-7_1 = ["foundationdb/fdb-7_1", "kv-fdb"]
scripting = ["dep:js"] scripting = ["dep:js"]
http = ["dep:reqwest"] http = ["dep:reqwest"]
native-tls = ["dep:native-tls", "reqwest?/native-tls", "tokio-tungstenite?/native-tls"] native-tls = ["dep:native-tls", "reqwest?/native-tls", "tokio-tungstenite?/native-tls"]
rustls = ["dep:rustls", "reqwest?/rustls-tls", "tokio-tungstenite?/__rustls-tls"] rustls = ["dep:rustls", "reqwest?/rustls-tls", "tokio-tungstenite?/rustls-tls-webpki-roots"]
# Private features # Private features
kv-fdb = ["foundationdb"] kv-fdb = ["foundationdb"]