Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade cargo deny and allow Unicode-3.0 license #2367

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/config/cargo-deny.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[advisories]
yanked = "deny"
ignore = [
"RUSTSEC-2021-0139", # criterion, structopt, and tracing-subscriber (test dependencies) use ansi_term
# `atty` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
# https://github.com/aws/s2n-quic/issues/2324
"RUSTSEC-2021-0145",
# `atty` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
# https://github.com/aws/s2n-quic/issues/2324
"RUSTSEC-2024-0375",
# ` proc-macro-error` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
# https://github.com/aws/s2n-quic/issues/2324
"RUSTSEC-2024-0370",
# `ansi_term` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim
# https://github.com/aws/s2n-quic/issues/2324
"RUSTSEC-2021-0139"
]

[bans]
Expand Down Expand Up @@ -43,6 +54,7 @@ allow = [
"OpenSSL",
"Unicode-DFS-2016",
"Zlib",
"Unicode-3.0",
]

[[licenses.clarify]]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ jobs:
- name: "Remove rust-toolchain"
run: rm rust-toolchain

- uses: EmbarkStudios/cargo-deny-action@v1
- uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check --config .github/config/cargo-deny.toml
Loading