summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim.hulthe@mullvad.net>2026-03-06 15:06:56 +0100
committerJoakim Hulthe <joakim@hulthe.net>2026-04-08 16:22:02 +0200
commitb3ec96c0af94f500ecf9d227a1e4809b1fbdfc85 (patch)
tree30f462dc80d5e0b028dc5114f68a2b35423eb89a
parentafd4462bd8f6474fc61fc701e33228ea3960bd59 (diff)
downloadmullvadvpn-test-manager-gotatun.tar.xz
mullvadvpn-test-manager-gotatun.zip
Ignore bincode deprecation advisory in /test alsotest-manager-gotatun
-rw-r--r--test/deny.toml5
-rw-r--r--test/osv-scanner.toml10
2 files changed, 14 insertions, 1 deletions
diff --git a/test/deny.toml b/test/deny.toml
index 0526c8be6d..71f4a8188c 100644
--- a/test/deny.toml
+++ b/test/deny.toml
@@ -21,7 +21,10 @@ ignore = [
# put into removing items from the list.
# test-rpc does not deal with random user input
- "RUSTSEC-2025-0055"
+ "RUSTSEC-2025-0055",
+
+ # Bincode is unmaintained. Version 1.3.3 is considered "complete" and can still be used
+ "RUSTSEC-2025-0141",
]
# This section is considered when running `cargo deny check licenses`
diff --git a/test/osv-scanner.toml b/test/osv-scanner.toml
index 1c321aae0d..13bbc79a6e 100644
--- a/test/osv-scanner.toml
+++ b/test/osv-scanner.toml
@@ -7,3 +7,13 @@
id = "RUSTSEC-2025-0055" # CVE-2025-58160
ignoreUntil = 2026-12-08
reason = "test-rpc does not deal with random user input"
+
+# Bincode is unmaintained. Ignored for six months since the code has no known issues that changes to our
+# code could trigger, it is just unmaintained.
+[[IgnoredVulns]]
+id = "RUSTSEC-2025-0141"
+ignoreUntil = 2026-06-07
+reason = """
+Bincode is unmaintained. maybenot depend on it.
+Version 1.3.3 is considered "complete" and can still be used safely.
+"""