-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeny.toml
43 lines (39 loc) · 1.22 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
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
notice = "deny"
ignore = []
[licenses]
unlicensed = "deny"
copyleft = "deny"
allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
]
default = "deny"
[licenses.private]
ignore = true
[bans]
multiple-versions = "deny"
wildcards = "deny"
highlight = "all"
deny = [{ name = "openssl" }, { name = "openssl-sys" }]
skip = [
{ name = "hermit-abi", version = "0.1" }, # from tokio v1.26.0
{ name = "windows-sys", version = "0.36" }, # from tokio v1.26.0
{ name = "windows-sys", version = "0.42" }, # from tempfile v3.4.0
{ name = "windows_aarch64_msvc", version = "0.36" }, # from tokio v1.26.0
{ name = "windows_i686_gnu", version = "0.36" }, # from tokio v1.26.0
{ name = "windows_i686_msvc", version = "0.36" }, # from tokio v1.26.0
{ name = "windows_x86_64_gnu", version = "0.36" }, # from tokio v1.26.0
{ name = "windows_x86_64_msvc", version = "0.36" }, # from tokio v1.26.0
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []