Skip to content

Commit 330d287

Browse files
authored
feat: change default crypto provider to match rustls' (#50)
1 parent 214a2b4 commit 330d287

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/CI.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ jobs:
4444
with:
4545
toolchain: ${{ matrix.rust }}
4646

47+
- name: Install NASM for aws-lc-rs on Windows
48+
if: runner.os == 'Windows'
49+
uses: ilammy/setup-nasm@v1
50+
51+
- name: Install ninja-build tool for aws-lc-fips-sys on Windows
52+
if: runner.os == 'Windows'
53+
uses: seanmiddleditch/gha-setup-ninja@v4
54+
55+
4756
- name: Test
4857
run: |
4958
cargo test --all

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rustls = { version = "0.23", default-features = false, features = ["std"] }
1818
pki-types = { package = "rustls-pki-types", version = "1" }
1919

2020
[features]
21-
default = ["logging", "tls12", "ring"]
21+
default = ["logging", "tls12", "aws-lc-rs"]
2222
aws-lc-rs = ["rustls/aws_lc_rs"]
2323
early-data = []
2424
fips = ["rustls/fips"]

0 commit comments

Comments
 (0)