-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
40 lines (36 loc) · 945 Bytes
/
deny.toml
File metadata and controls
40 lines (36 loc) · 945 Bytes
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
[graph]
all-features = true
[advisories]
version = 2
db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = [
# "RUSTSEC-0000-0000"
"RUSTSEC-2024-0436", # paste is unmaintained
]
[licenses]
version = 2
allow = [
"MIT",
"ISC", # used by untrusted, dependency of hyper-rustls through hdrop-server
"Apache-2.0",
"BSD-3-Clause",
"Unicode-DFS-2016", # used by unicode-ident
"Unicode-3.0", # used by zerovec-derive through zitane-s3-async
"AGPL-3.0", # hdrop-db, hdrop-shared
"AGPL-3.0-or-later", # hdrop-db, hdrop-shared
"MPL-2.0", # dependencies of zitane-s3-async
"OpenSSL", # used by aws-lc-sys, dependency of metrics-exporter-prometheus through hdrop-server
"CC0-1.0",
]
[bans]
skip = [
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = [
"https://github.com/rust-lang/crates.io-index"
]
allow-git = [
"https://github.com/ZitaneLabs/bincache.git"
]