-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
26 lines (21 loc) · 563 Bytes
/
deny.toml
File metadata and controls
26 lines (21 loc) · 563 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
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
[graph]
all-features = true
[licenses]
# `MIT` will be included in any MIT/Apache-2.0 dual-licensed packages,
# and `Apache-2.0` on its own is more restrictive than `MIT`,
# so checking just for `MIT` is enough.
allow = [
"MIT",
]
exceptions = [
{ crate = "unicode-ident", allow = ["Unicode-3.0"] },
]
unused-allowed-license = "deny"
confidence-threshold = 1.0
include-dev = true
include-build = true
[sources]
unknown-registry = "deny"
unused-allowed-source = "deny"
unknown-git = "deny"