summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorMarkus Pettersson <markus.pettersson@mullvad.net>2025-03-11 09:20:04 +0100
committerMarkus Pettersson <markus.pettersson@mullvad.net>2025-03-11 12:07:49 +0100
commitfeb462a9352887e81b4a5366d2e69a791dd11b71 (patch)
tree5634e87dde0a9bb84630926380a83210c76696c3 /test
parent33535c696e75704a41b45d0c9530e93be37d6e70 (diff)
downloadmullvadvpn-feb462a9352887e81b4a5366d2e69a791dd11b71.tar.xz
mullvadvpn-feb462a9352887e81b4a5366d2e69a791dd11b71.zip
Silence `RUSTSEC-2025-0014` in test workspace
Diffstat (limited to 'test')
-rw-r--r--test/deny.toml3
-rw-r--r--test/osv-scanner.toml10
2 files changed, 13 insertions, 0 deletions
diff --git a/test/deny.toml b/test/deny.toml
index 70584012e1..2fc0d17751 100644
--- a/test/deny.toml
+++ b/test/deny.toml
@@ -20,6 +20,9 @@ yanked = "deny"
ignore = [
# Ignored audit issues. This list should be kept short, and effort should be
# put into removing items from the list.
+ #
+ # RUSTSEC-2025-0014 - `humantime` is unmaintained: https://github.com/tailhook/humantime/issues/31
+ "RUSTSEC-2025-0014"
]
diff --git a/test/osv-scanner.toml b/test/osv-scanner.toml
index 9d95c0b636..51e3e1d894 100644
--- a/test/osv-scanner.toml
+++ b/test/osv-scanner.toml
@@ -1,3 +1,13 @@
# See repository root `osv-scanner.toml` for instructions and rules for this file.
#
# Keep this file in sync with test/deny.toml
+
+# The `humantime` crate is no longer maintained
+[[IgnoredVulns]]
+id = "RUSTSEC-2025-0014"
+ignoreUntil = 2025-06-11
+reason = """
+The `humantime` crate is no longer maintained. `tarpc` depend on it, and there is currently no "fix" for this.
+We have no reason to suspect that `humantime` is vulnerable in any way. An issue has been opened upstream:
+https://github.com/google/tarpc/issues/509
+"""