-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeny.toml
More file actions
39 lines (33 loc) · 721 Bytes
/
deny.toml
File metadata and controls
39 lines (33 loc) · 721 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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
]
[advisories]
yanked = "warn"
ignore = []
[licenses]
# Only allow licenses we actually encounter
allow = [
"MIT",
"Apache-2.0",
"Unicode-3.0",
"Zlib",
]
confidence-threshold = 0.93
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
skip = [
# Low-level system dependencies - acceptable to have multiple versions
# petgraph depends on hashbrown v0.15, while indexmap uses v0.16
"hashbrown",
]
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]