File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ smallvec = { workspace = true }
31
31
url = { workspace = true }
32
32
pin-project = { workspace = true }
33
33
34
- rustls = { workspace = true , optional = true }
34
+ rustls = { workspace = true , optional = true , features = [ " ring " ] }
35
35
webpki = { workspace = true , optional = true }
36
36
webpki-roots = { workspace = true , optional = true }
37
37
tokio-rustls = { workspace = true , optional = true }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ static PROVIDER: OnceLock<Arc<CryptoProvider>> = OnceLock::new();
41
41
fn provider ( ) -> Arc < CryptoProvider > {
42
42
PROVIDER
43
43
. get_or_init ( || {
44
- let provider = rustls:: crypto:: aws_lc_rs :: default_provider ( ) ;
44
+ let provider = rustls:: crypto:: ring :: default_provider ( ) ;
45
45
// This will fail if the provider has been initialised elsewhere unexpectedly.
46
46
provider
47
47
. clone ( )
You can’t perform that action at this time.
0 commit comments