diff --git a/deny.toml b/deny.toml index dc3c616..cfc58e0 100644 --- a/deny.toml +++ b/deny.toml @@ -1,24 +1,27 @@ [advisories] +version = 2 db-path = "~/.cargo/advisory-db" db-urls = [ "https://github.com/rustsec/advisory-db" ] -vulnerability = "deny" -unmaintained = "deny" -yanked = "deny" -notice = "warn" [licenses] -default = "deny" -unlicensed = "deny" -copyleft = "allow" -allow-osi-fsf-free = "osi" +version = 2 allow = [ + "MIT", + "Apache-2.0", + "MPL-2.0", + "BSD-3-Clause", + "ISC", "OpenSSL", + "Unicode-DFS-2016", + "Zlib", ] [[licenses.clarify]] name = "ring" expression = "MIT AND ISC AND OpenSSL" -license-files = [ { path = "LICENSE", hash = 0xbd0eed23 } ] +license-files = [ + { path = "LICENSE", hash = 0xbd0eed23 } +] [bans] multiple-versions = "allow"