Skip to content

Commit 4d9f8a8

Browse files
committed
Use ring instead of aws-lc-sys due to aws/aws-lc-rs#453
Signed-off-by: Bob Weinand <[email protected]>
1 parent 3008bc2 commit 4d9f8a8

File tree

3 files changed

+6
-180
lines changed

3 files changed

+6
-180
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ jobs:
1717
rust_version: "${RUST_VERSION}"
1818
fail-fast: false
1919
steps:
20-
- name: "(Windows) Install nasm"
21-
if: matrix.platform == 'windows-latest'
22-
uses: ilammy/setup-nasm@v1
23-
2420
- name: Checkout sources
2521
uses: actions/checkout@v4
2622

@@ -83,10 +79,6 @@ jobs:
8379
- platform: "ubuntu-latest"
8480
rust_version: "${RUST_VERSION}"
8581
steps:
86-
- name: "(Windows) Install nasm"
87-
if: matrix.platform == 'windows-latest'
88-
uses: ilammy/setup-nasm@v1
89-
9082
- name: Checkout sources
9183
uses: actions/checkout@v4
9284

Cargo.lock

Lines changed: 4 additions & 170 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ddcommon/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ hyper-rustls = { version = "0.27", default-features = false, features = [
2929
"native-tokio",
3030
"http1",
3131
"tls12",
32+
"ring",
3233
] }
33-
aws-lc-rs = "1.8"
3434
lazy_static = "1.4"
3535
log = { version = "0.4" }
3636
pin-project = "1"
3737
regex = "1.5"
3838
rustls = { version = "0.23", default-features = false }
3939
rustls-native-certs = { version = "0.6" }
4040
tokio = { version = "1.23", features = ["rt", "macros"] }
41-
tokio-rustls = { version = "0.26" }
41+
tokio-rustls = { version = "0.26", default-features = false }
4242
serde = { version = "1.0", features = ["derive"] }
4343
static_assertions = "1.1.0"
4444

0 commit comments

Comments
 (0)