From 707ffc4d4026bd45206c5e312d55e78ac6097ed7 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 4 Jan 2022 15:45:01 +0200 Subject: chore: remove cargo deny exception for roadmap licence roadmap is now MIT-0 so the exception is no longer needed. Sponsored-by: author --- deny.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/deny.toml b/deny.toml index 060738d..3e015f9 100644 --- a/deny.toml +++ b/deny.toml @@ -18,9 +18,6 @@ copyleft = "warn" allow-osi-fsf-free = "neither" default = "deny" confidence-threshold = 0.8 -exceptions = [ - { allow = ["GPL-3.0"], name = "roadmap" }, -] [licenses.private] ignore = false -- cgit v1.2.1 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