Skip to content

Commit 782cf68

Browse files
authored
chore(audit): ignore RUSTSEC-2025-0023 (#2565)
* chore(audit): ignore RUSTSEC-2025-0023 RUSTSEC-2025-0023 discloses a vulnerability in Tokio: "Broadcast channel calls clone in parallel, but does not require `Sync`". https://rustsec.org/advisories/RUSTSEC-2025-0023 Tokio is only used in neqo-bin. neqo-bin does not make use of Tokio's broadcast channels. neqo-bin is not used by Firefox. All Tokio versions with a fix for RUSTSEC-2025-0023 require a libc version bump, i.e. require us to use a libc version other than what mozilla-central uses. Thus, instead of updating Tokio, this commit simply ignores the CVE. * Add FIXME to update once mozilla-central updates libc dep * newline * Fix comment
1 parent b8dd09f commit 782cf68

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.deny.toml

+3
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ allow = [
2626
unknown-registry = "deny"
2727
unknown-git = "deny"
2828
required-git-spec = "rev"
29+
30+
[advisories]
31+
ignore = ["RUSTSEC-2025-0023"] # FIXME: Remove this once Firefox moves to libc >= 0.2.168

0 commit comments

Comments
 (0)