From 242306d8e76327566c9c5eeb8fe9cd0f109e1779 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 4 Jan 2022 15:51:04 +0200 Subject: 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 --- deny.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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" -- cgit v1.2.1