-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
47 lines (42 loc) · 1.01 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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
all-features = true
[advisories]
version = 2
db-path = "$CARGO_HOME/advisory-dbs"
db-urls = ["https://github.com/rustsec/advisory-db"]
[licenses]
version = 2
allow = [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"OpenSSL",
"Unicode-DFS-2016",
]
confidence-threshold = 0.8
[[licenses.clarify]]
crate = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[bans]
multiple-versions = "warn"
multiple-versions-include-dev = false
highlight = "all"
wildcards = "deny"
workspace-default-features = "allow"
external-default-features = "allow"
deny = [{ crate = "openssl", use-instead = "rustls" }]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]