-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
81 lines (72 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[graph]
targets = [
"aarch64-unknown-linux-musl",
"arm-unknown-linux-musleabihf",
"armv7-unknown-linux-musleabihf",
"x86_64-unknown-linux-musl",
"i686-unknown-linux-musl",
"x86_64-pc-windows-gnu",
]
all-features = true
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = ["RUSTSEC-2023-0071"]
[licenses]
unused-allowed-license = "warn"
allow = [
"Apache-2.0",
"MIT",
"MPL-2.0",
"Unicode-3.0"
]
# [between 0.0 and 1.0].
confidence-threshold = 0.9
exceptions = [
{ allow = ["BSD-3-Clause"], crate = "Inflector" },
{ allow = ["BSD-3-Clause"], crate = "alloc-no-stdlib" },
{ allow = ["BSD-3-Clause"], crate = "alloc-stdlib" },
{ allow = ["BSD-3-Clause"], crate = "encoding_rs" },
{ allow = ["BSD-3-Clause"], crate = "instant" },
{ allow = ["BSD-3-Clause"], crate = "subtle" },
{ allow = ["ISC", "OpenSSL"], crate = "ring" },
{ allow = ["ISC"], crate = "rustls-webpki" },
{ allow = ["ISC"], crate = "untrusted" },
{ allow = ["Zlib"], crate = "foldhash" },
]
[[licenses.clarify]]
name = "encoding_rs"
version = "*"
expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
license-files = [
{ path = "COPYRIGHT", hash = 0x39f8ad31 }
]
[[licenses.clarify]]
crate = "ring"
expression = "ISC AND MIT AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[[licenses.clarify]]
crate = "webpki"
expression = "ISC"
license-files = [{ path = "LICENSE", hash = 0x001c7e6c }]
[[licenses.clarify]]
crate = "rustls-webpki"
expression = "ISC"
license-files = [{ path = "LICENSE", hash = 0x001c7e6c }]
[licenses.private]
ignore = true
registries = []
[bans]
multiple-versions = "warn"
highlight = "all"
allow = []
deny = []
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = ["https://github.com/utkarshkukreti/markup.rs"]