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(ci): fix cargo deny #6501

Merged
merged 3 commits into from
Nov 12, 2024
Merged
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
17 changes: 2 additions & 15 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ version = 2
yanked = "warn"

ignore = [
"RUSTSEC-2020-0168", # mach unmaintained
"RUSTSEC-2024-0388", # derivative unmaintained
"RUSTSEC-2024-0384", # instant unmaintained
"RUSTSEC-2020-0016", # net2 unmaintained
]

Expand Down Expand Up @@ -52,10 +53,6 @@ allow = [
"Unicode-3.0",
"Unlicense",
"Zlib",
# https://github.com/briansmith/ring/issues/902
"LicenseRef-ring",
# https://github.com/rustls/webpki/blob/main/LICENSE ISC Style
"LicenseRef-rustls-webpki",
# bitmaps 2.1.0, im 15.1.0
"MPL-2.0",
# Boost Software License
Expand All @@ -77,16 +74,6 @@ exceptions = [
{ allow = ["CDDL-1.0"], name = "inferno" },
]

[[licenses.clarify]]
name = "ring"
expression = "LicenseRef-ring"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]

[[licenses.clarify]]
name = "rustls-webpki"
expression = "LicenseRef-rustls-webpki"
license-files = [{ path = "LICENSE", hash = 0x001c7e6c }]

# This section is considered when running `cargo deny check sources`.
# More documentation about the 'sources' section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
Expand Down
Loading