Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ skip = [{name = "quick-error"},
{name = "rand"},
{name = "getrandom"},
{name = "byteorder"},
{name = "webpki"},
]

[licenses]
Expand All @@ -31,9 +32,25 @@ allow = [
"MPL-2.0",
"CC0-1.0",
"Zlib",
"LicenseRef-ring",
"LicenseRef-webpki",
"Unlicense",#this is a specific license rather than no license at all
] #deny a license not in this set of licenses

[[licenses.clarify]]
name = "ring"
expression = "LicenseRef-ring"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]

[[licenses.clarify]]
name = "webpki"
expression = "LicenseRef-webpki"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
]

[advisories]
db-path = "~/.cargo/advisory-dbs"
db-urls = [ "https://github.com/RustSec/advisory-db" ]
Expand Down