-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeny.toml
More file actions
55 lines (52 loc) · 1.39 KB
/
Copy pathdeny.toml
File metadata and controls
55 lines (52 loc) · 1.39 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
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
workspace-default-features = "allow"
external-default-features = "allow"
allow = []
deny = []
skip = [
{ name = "hashbrown" },
{ name = "windows-sys" },
{ name = "windows-targets" },
{ name = "windows_aarch64_gnullvm" },
{ name = "windows_aarch64_msvc" },
{ name = "windows_i686_gnu" },
{ name = "windows_i686_gnullvm" },
{ name = "windows_i686_msvc" },
{ name = "windows_x86_64_gnu" },
{ name = "windows_x86_64_gnullvm" },
{ name = "windows_x86_64_msvc" },
]
skip-tree = []
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
unmaintained = "none"
yanked = "warn"
ignore = []
[licenses]
allow = [
"MIT",
"Apache-2.0",
"CC0-1.0",
"Unicode-3.0",
"MPL-2.0",
"BSL-1.0",
"Unlicense",
"LGPL-3.0-only", # For malachite crates
"Zlib", # For foldhash crate
]
exceptions = [
{ allow = ["Apache-2.0 WITH LLVM-exception"], name = "linux-raw-sys" },
{ allow = ["Apache-2.0 WITH LLVM-exception"], name = "rustix" },
{ allow = ["Apache-2.0 WITH LLVM-exception"], name = "wasi" },
{ allow = ["Unicode-DFS-2016"], name = "unicode_names2" },
]
confidence-threshold = 0.8
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []