-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdeny.toml
34 lines (29 loc) · 1.08 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
[advisories]
# Reduced from deny to warn, these fail our CI and are generally not
# actionable within this project.
vulnerability = "warn"
[licenses]
allow = ["MIT", "Apache-2.0"]
copyleft = "deny"
confidence-threshold = 1.0
exceptions = [
{ allow = ["ISC"], name = "inotify-sys", version = "*" },
{ allow = ["ISC"], name = "inotify", version = "*" },
{ allow = ["CC0-1.0"], name = "notify", version = "*" },
{ allow = ["BSD-3-Clause"], name = "fuchsia-zircon", version = "*" },
{ allow = ["BSD-3-Clause"], name = "fuchsia-zircon-sys", version = "*" },
{ allow = ["BSD-3-Clause"], name = "instant", version = "*" },
{ allow = ["CC0-1.0"], name = "dunce", version = "*" },
]
[bans]
multiple-versions = "deny"
wildcards = "deny"
skip = [
{ name = "mio", version = "0.6.23" }, # upgrade notify
{ name = "miow", version = "0.2.2" }, # upgrade notify
{ name = "cfg-if", version = "0.1.10" },
{ name = "winapi", version = "0.2.8" }, # upgrade notify
{ name = "redox_syscall", version = "0.1.57" }, # old version in notify
]
[sources]
unknown-git = "deny"