forked from build-trust/ockam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
57 lines (51 loc) · 1.25 KB
/
Copy pathdeny.toml
File metadata and controls
57 lines (51 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[bans]
multiple-versions = "deny"
# Dependencies cannot be specified with the "*" version.
wildcards = "deny"
[licenses]
unlicensed = "deny"
copyleft = "deny"
confidence-threshold = 0.95
allow = [
"Apache-2.0",
"MIT",
"BSD-3-Clause",
"BSD-2-Clause",
"0BSD",
"ISC",
"BlueOak-1.0.0"
]
exceptions = [
{ allow = ["LicenseRef-Ring-ISC-OpenSSL"], name = "ring", version = "*" },
]
[[licenses.clarify]]
name = "ring"
expression = "LicenseRef-Ring-ISC-OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]
[[licenses.clarify]]
name = "webpki"
expression = "ISC"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
]
[advisories]
unmaintained = "deny"
vulnerability = "deny"
yanked = "warn"
ignore = [
# `serde_cbor` is unmaintained
# (https://rustsec.org/advisories/RUSTSEC-2021-0127.html)
#
# Pulled-in by `cddl-cat` which is used for validating
# CDDL schema conformance in tests.
"RUSTSEC-2021-0127",
# `xml-rs` is unmaintained, pulled in from a transitive
# dependency `serde-xml`
# (https://rustsec.org/advisories/RUSTSEC-2022-0048.html)
"RUSTSEC-2022-0048",
# `ansi_term` is unmaintained, pulled in from dependency
# `tracing-subscriber`
"RUSTSEC-2021-0139",
]