forked from project-oak/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
61 lines (54 loc) · 1.47 KB
/
deny.toml
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
58
59
60
61
# Configuration used for dependency checking with cargo-deny.
#
# For further details on all configuration options see:
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
targets = [{ triple = "x86_64-unknown-linux-musl" }]
# Deny all advisories unless explicitly ignored.
[advisories]
vulnerability = "deny"
unmaintained = "deny"
unsound = "deny"
yanked = "deny"
notice = "deny"
ignore = [
# TODO(#4251): Remove once the webpki crate is fixed.
"RUSTSEC-2023-0052",
]
[bans]
multiple-versions = "allow"
wildcards = "allow"
# Allow git repositories.
[sources]
unknown-git = "allow"
# List of allowed licenses.
# For more detailed information see http://go/thirdpartylicenses.
[licenses]
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0",
"OpenSSL",
"Unicode-DFS-2016",
"Unlicense",
]
copyleft = "deny"
[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 3171872035 }]
# See https://github.com/hsivonen/encoding_rs#licensing
[[licenses.clarify]]
name = "encoding_rs"
version = "*"
expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
license-files = [{ path = "COPYRIGHT", hash = 972598577 }]
# See https://github.com/johannesvollmer/exrs/blob/c2f89e85af3f15477c2da52e08b6d71a2577ec0f/LICENSE.md
[[licenses.clarify]]
name = "exr"
version = "*"
expression = "BSD-3-Clause"
license-files = [{ path = "LICENSE.md", hash = 4032825156 }]