Skip to content

fix: Re-add RUSTSEC-2023-0071 exclusion #514

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

Merged
merged 3 commits into from
May 5, 2025
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
16 changes: 16 additions & 0 deletions template/deny.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# This file is the source of truth for all our repos!
# This includes repos not templated by operator-templating, please copy/paste the file for this repos.

# TIP: Use "cargo deny check" to check if everything is fine

[graph]
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
Expand All @@ -9,6 +14,17 @@ targets = [

[advisories]
yanked = "deny"
ignore = [
# https://rustsec.org/advisories/RUSTSEC-2023-0071
# "rsa" crate: Marvin Attack: potential key recovery through timing sidechannel
#
# No patch is yet available, however work is underway to migrate to a fully constant-time implementation
# So we need to accept this, as of SDP 25.3 we are not using the rsa crate to create certificates used in production
# setups.
#
# https://github.com/RustCrypto/RSA/issues/19 is the tracking issue
"RUSTSEC-2023-0071",
]

[bans]
multiple-versions = "allow"
Expand Down