We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3baa5ae commit c23e1d7Copy full SHA for c23e1d7
2 files changed
plugins/websocket/Cargo.toml
@@ -32,7 +32,7 @@ futures-util = "0.3"
32
tokio = { version = "1", features = ["net", "sync"] }
33
tokio-tungstenite = { version = "0.28" }
34
rustls = { version = "0.23", default-features = false, features = [
35
- "ring",
+ "aws_lc_rs",
36
], optional = true }
37
38
[features]
plugins/websocket/src/lib.rs
@@ -321,7 +321,7 @@ where
321
&& rustls::crypto::CryptoProvider::get_default().is_none()
322
{
323
// This can only fail if there is already a default provider which we checked for already.
324
- let _ = rustls::crypto::ring::default_provider().install_default();
+ let _ = rustls::crypto::aws_lc_rs::default_provider().install_default();
325
}
326
327
app.manage(ConnectionManager::default());
0 commit comments