-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeny.toml
More file actions
34 lines (29 loc) · 681 Bytes
/
deny.toml
File metadata and controls
34 lines (29 loc) · 681 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
# `cargo-deny` configuration.
[output]
feature-depth = 1
[advisories]
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
[licenses]
allow = [
# Permissive open-source licenses
"MIT",
"Apache-2.0",
"Zlib",
"BSL-1.0",
"Unicode-3.0",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "deny"
wildcards = "deny"
allow-wildcard-paths = true
skip-tree = [
# `cortex-m` crates (which are only used in the no-std test crate) have some outdated deps.
{ name = "cortex-m", version = "^0.7" },
{ name = "cortex-m-rt", version = "^0.7" },
{ name = "embedded-alloc", version = "^0.7" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"