summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-01-04 15:51:04 +0200
committerLars Wirzenius <liw@liw.fi>2022-01-04 15:54:11 +0200
commit242306d8e76327566c9c5eeb8fe9cd0f109e1779 (patch)
tree1cfa208fe5422e55d0c22c96fb5b2b1025c987f2
parent707ffc4d4026bd45206c5e312d55e78ac6097ed7 (diff)
downloadsubplot-242306d8e76327566c9c5eeb8fe9cd0f109e1779.tar.gz
chore: deny vulnerable dependencies, with exceptions
Ignore two chrono and time vulnerabilities. Nothing we can do about them until a new chrono release is made that fixes this. Sponsored-by: author
-rw-r--r--deny.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/deny.toml b/deny.toml
index 3e015f9..d8a8d4b 100644
--- a/deny.toml
+++ b/deny.toml
@@ -1,10 +1,14 @@
[advisories]
-vulnerability = "allow"
+vulnerability = "deny"
unmaintained = "warn"
unsound = "warn"
yanked = "allow"
notice = "warn"
severity-threshold = "medium"
+ignore = [
+ "RUSTSEC-2020-0071",
+ "RUSTSEC-2020-0159",
+]
[licenses]
unlicensed = "deny"