-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
42 lines (38 loc) · 981 Bytes
/
Copy pathdeny.toml
File metadata and controls
42 lines (38 loc) · 981 Bytes
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
# cargo-deny configuration. Run `cargo deny check licenses` to fail the build
# when a dependency carries a license outside the allowlist below. This is the
# enforcement counterpart to cargo-about, which generates THIRD-PARTY-LICENSES.html.
# Keep `allow` in sync with `accepted` in about.toml.
[licenses]
version = 2
confidence-threshold = 0.9
# Our own workspace crates are marked `publish = false`; they are first-party and
# not subject to the third-party license allowlist.
private = { ignore = true }
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"0BSD",
"BSL-1.0",
"Unicode-3.0",
"CDLA-Permissive-2.0",
"Unlicense",
"CC0-1.0",
"WTFPL",
"NCSA",
"OFL-1.1",
"Ubuntu-font-1.0",
"MPL-2.0",
"LGPL-2.1-or-later",
]
[bans]
multiple-versions = "allow"
[advisories]
version = 2
[sources]
unknown-git = "allow"
unknown-registry = "allow"