diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d3256154..d3033204 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -44,6 +44,15 @@ jobs: with: toolchain: ${{ matrix.rust }} + - name: Install NASM for aws-lc-rs on Windows + if: runner.os == 'Windows' + uses: ilammy/setup-nasm@v1 + + - name: Install ninja-build tool for aws-lc-fips-sys on Windows + if: runner.os == 'Windows' + uses: seanmiddleditch/gha-setup-ninja@v4 + + - name: Test run: | cargo test --all diff --git a/Cargo.toml b/Cargo.toml index 64d0a3cc..07f82eef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ rustls = { version = "0.23", default-features = false, features = ["std"] } pki-types = { package = "rustls-pki-types", version = "1" } [features] -default = ["logging", "tls12", "ring"] +default = ["logging", "tls12", "aws-lc-rs"] aws-lc-rs = ["rustls/aws_lc_rs"] early-data = [] logging = ["rustls/logging"]