-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeny.toml
More file actions
56 lines (50 loc) · 1.73 KB
/
Copy pathdeny.toml
File metadata and controls
56 lines (50 loc) · 1.73 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# >>> anvil-managed: anvil-deny-advisories
[advisories]
yanked = "deny"
# Scope of unmaintained-crate checks: "all" surfaces transitive
# dependencies too; tighten to "workspace" if the noise is high.
unmaintained = "all"
# <<< anvil-managed: anvil-deny-advisories
# Advisories we have consciously accepted. Each entry needs a reason and,
# where the fix is out of our hands, the upstream we are waiting on.
ignore = []
# >>> anvil-managed: anvil-deny-bans
[bans]
multiple-versions = "warn"
wildcards = "deny"
allow-wildcard-paths = true
# <<< anvil-managed: anvil-deny-bans
# >>> anvil-managed: anvil-deny-sources
[sources]
unknown-registry = "deny"
unknown-git = "deny"
# <<< anvil-managed: anvil-deny-sources
# >>> anvil-managed: anvil-deny-licenses
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MPL-2.0",
"Unicode-DFS-2016",
"Unicode-3.0",
"Zlib",
]
confidence-threshold = 0.93
# <<< anvil-managed: anvil-deny-licenses
# Repository-specific allowances belong outside the generated defaults.
# Scope them to the dependencies that require them, not every future crate.
exceptions = [
# Public-domain-equivalent license carried by `vu128`, the variable-length
# integer codec behind `cargo-aprz`'s binary crates.io tables. It is the
# crate's only license, so it cannot resolve to one of the entries above.
{ crate = "vu128", allow = ["0BSD"] },
# Data-only license carried by `webpki-root-certs` (the Mozilla root
# certificate set), pulled in transitively by `reqwest`'s rustls backend.
{ crate = "webpki-root-certs", allow = ["CDLA-Permissive-2.0"] },
]