Skip to content

Commit 212723d

Browse files
committed
Try build with ring
1 parent 71ee9ab commit 212723d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/swimos_remote/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ smallvec = { workspace = true }
3131
url = { workspace = true }
3232
pin-project = { workspace = true }
3333

34-
rustls = { workspace = true, optional = true }
34+
rustls = { workspace = true, optional = true, features = ["ring"] }
3535
webpki = { workspace = true, optional = true }
3636
webpki-roots = { workspace = true, optional = true }
3737
tokio-rustls = { workspace = true, optional = true }

runtime/swimos_remote/src/tls/net/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static PROVIDER: OnceLock<Arc<CryptoProvider>> = OnceLock::new();
4141
fn provider() -> Arc<CryptoProvider> {
4242
PROVIDER
4343
.get_or_init(|| {
44-
let provider = rustls::crypto::aws_lc_rs::default_provider();
44+
let provider = rustls::crypto::ring::default_provider();
4545
// This will fail if the provider has been initialised elsewhere unexpectedly.
4646
provider
4747
.clone()

0 commit comments

Comments
 (0)