Skip to content

Commit a542da0

Browse files
committed
fix: Ignore RUSTSEC-2026-0173 for now
1 parent db8581f commit a542da0

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

deny.toml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@ targets = [
1414

1515
[advisories]
1616
yanked = "deny"
17+
ignore = [
18+
# https://rustsec.org/advisories/RUSTSEC-2026-0173
19+
# The author of `proc-macro-error2` has [confirmed](https://github.com/GnomedDev/proc-macro-error-2/issues/17#issuecomment-4643215473)
20+
# that the crate is no longer maintained and recommends that users migrate away from it.
21+
#
22+
# There currently is no way for us to negate this advisory, because that crate is not used
23+
# directly by us. We need to wait for new versions of oci-spec and getset.
24+
#
25+
# proc-macro-error2 v2.0.1
26+
# └── getset v0.1.6
27+
# └── oci-spec v0.9.0
28+
# └── boil v0.2.1
29+
"RUSTSEC-2026-0173",
30+
]
1731

1832
[bans]
1933
multiple-versions = "allow"
@@ -31,7 +45,7 @@ allow = [
3145
"LicenseRef-webpki",
3246
"MIT",
3347
"MPL-2.0",
34-
"OpenSSL", # Needed for the ring and/or aws-lc-sys crate. See https://github.com/stackabletech/operator-templating/pull/464 for details
48+
"OpenSSL", # Needed for the ring and/or aws-lc-sys crate. See https://github.com/stackabletech/operator-templating/pull/464 for details
3549
"Unicode-3.0",
3650
"Unicode-DFS-2016",
3751
"Zlib",

0 commit comments

Comments
 (0)