-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
deny.toml
55 lines (52 loc) · 1.07 KB
/
deny.toml
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
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "warn"
yanked = "warn"
notice = "warn"
[licenses]
unlicensed = "deny"
copyleft = "warn"
allow-osi-fsf-free = "neither"
confidence-threshold = 0.8
allow = [
"MIT",
"Zlib",
"Apache-2.0",
"Unlicense",
"0BSD",
"BSL-1.0",
"BSD-3-Clause"
]
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
deny = [
{ name = "CoreFoundation-sys" },
{ name = "exif" },
{ name = "exif-sys" },
{ name = "gphoto" },
{ name = "gphoto2-sys" },
{ name = "ioctl-rs" },
{ name = "IOKit-rs" },
{ name = "libraw" },
{ name = "libraw-sys" },
{ name = "libudev" },
{ name = "libudev-sys" },
{ name = "libusb" },
{ name = "libusb-sys" },
{ name = "mach" },
{ name = "serial" },
{ name = "serial-core" },
{ name = "serial-unix" },
{ name = "serial-windows" },
{ name = "termios" },
{ name = "zwave" },
]
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []