Skip to content

Commit 54edb41

Browse files
committed
Allow webpki and ring in deny.toml
1 parent 179a5d9 commit 54edb41

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

deny.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ skip = [{name = "quick-error"},
1616
{name = "rand"},
1717
{name = "getrandom"},
1818
{name = "byteorder"},
19+
{name = "webpki"},
1920
]
2021

2122
[licenses]
@@ -31,9 +32,25 @@ allow = [
3132
"MPL-2.0",
3233
"CC0-1.0",
3334
"Zlib",
35+
"LicenseRef-ring",
36+
"LicenseRef-webpki",
3437
"Unlicense",#this is a specific license rather than no license at all
3538
] #deny a license not in this set of licenses
3639

40+
[[licenses.clarify]]
41+
name = "ring"
42+
expression = "LicenseRef-ring"
43+
license-files = [
44+
{ path = "LICENSE", hash = 0xbd0eed23 },
45+
]
46+
47+
[[licenses.clarify]]
48+
name = "webpki"
49+
expression = "LicenseRef-webpki"
50+
license-files = [
51+
{ path = "LICENSE", hash = 0x001c7e6c },
52+
]
53+
3754
[advisories]
3855
db-path = "~/.cargo/advisory-dbs"
3956
db-urls = [ "https://github.com/RustSec/advisory-db" ]

0 commit comments

Comments
 (0)