Skip to content

Commit 892cb68

Browse files
committed
Ignore bincode deprecation advisory in /test also
1 parent 0f7104a commit 892cb68

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

test/deny.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ ignore = [
2121
# put into removing items from the list.
2222

2323
# test-rpc does not deal with random user input
24-
"RUSTSEC-2025-0055"
24+
"RUSTSEC-2025-0055",
25+
26+
# Bincode is unmaintained. Version 1.3.3 is considered "complete" and can still be used
27+
"RUSTSEC-2025-0141",
2528
]
2629

2730
# This section is considered when running `cargo deny check licenses`

test/osv-scanner.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,13 @@
77
id = "RUSTSEC-2025-0055" # CVE-2025-58160
88
ignoreUntil = 2026-12-08
99
reason = "test-rpc does not deal with random user input"
10+
11+
# Bincode is unmaintained. Ignored for six months since the code has no known issues that changes to our
12+
# code could trigger, it is just unmaintained.
13+
[[IgnoredVulns]]
14+
id = "RUSTSEC-2025-0141"
15+
ignoreUntil = 2026-06-07
16+
reason = """
17+
Bincode is unmaintained. maybenot depend on it.
18+
Version 1.3.3 is considered "complete" and can still be used safely.
19+
"""

0 commit comments

Comments
 (0)