Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 224a96b

Browse files
authored
CI: Add idna to ignore (#7569)
#### Problem Audit is failing due to an issue on idna. #### Summary of changes Since the dependency is pretty buried, do the same thing as anza-xyz/agave#4014 and ignore it.
1 parent 612a301 commit 224a96b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ci/do-audit.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,16 @@ cargo_audit_ignores=(
2323
# URL: https://rustsec.org/advisories/RUSTSEC-2024-0376
2424
# Solution: Upgrade to >=0.12.3
2525
--ignore RUSTSEC-2024-0376
26+
27+
# Crate: idna
28+
# Version: 0.1.5
29+
# Title: `idna` accepts Punycode labels that do not produce any non-ASCII when decoded
30+
# Date: 2024-12-09
31+
# ID: RUSTSEC-2024-0421
32+
# URL: https://rustsec.org/advisories/RUSTSEC-2024-0421
33+
# Solution: Upgrade to >=1.0.0
34+
# need to solve this depentant tree:
35+
# jsonrpc-core-client v18.0.0 -> jsonrpc-client-transports v18.0.0 -> url v1.7.2 -> idna v0.1.5
36+
--ignore RUSTSEC-2024-0421
2637
)
2738
cargo +"$rust_stable" audit "${cargo_audit_ignores[@]}"

0 commit comments

Comments
 (0)