Skip to content

Commit 959a538

Browse files
authored
chore: upgrade cargo deny and allow Unicode-3.0 license (#2367)
1 parent 7d4620d commit 959a538

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/config/cargo-deny.toml

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
[advisories]
22
yanked = "deny"
33
ignore = [
4-
"RUSTSEC-2021-0139", # criterion, structopt, and tracing-subscriber (test dependencies) use ansi_term
4+
# `atty` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
5+
# https://github.com/aws/s2n-quic/issues/2324
6+
"RUSTSEC-2021-0145",
7+
# `atty` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
8+
# https://github.com/aws/s2n-quic/issues/2324
9+
"RUSTSEC-2024-0375",
10+
# ` proc-macro-error` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
11+
# https://github.com/aws/s2n-quic/issues/2324
12+
"RUSTSEC-2024-0370",
13+
# `ansi_term` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
14+
# https://github.com/aws/s2n-quic/issues/2324
15+
"RUSTSEC-2021-0139"
516
]
617

718
[bans]
@@ -43,6 +54,7 @@ allow = [
4354
"OpenSSL",
4455
"Unicode-DFS-2016",
4556
"Zlib",
57+
"Unicode-3.0",
4658
]
4759

4860
[[licenses.clarify]]

.github/workflows/dependencies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ jobs:
5656
- name: "Remove rust-toolchain"
5757
run: rm rust-toolchain
5858

59-
- uses: EmbarkStudios/cargo-deny-action@v1
59+
- uses: EmbarkStudios/cargo-deny-action@v2
6060
with:
6161
command: check --config .github/config/cargo-deny.toml

0 commit comments

Comments
 (0)