-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdeny.toml
More file actions
44 lines (39 loc) · 1.25 KB
/
deny.toml
File metadata and controls
44 lines (39 loc) · 1.25 KB
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
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "warn"
ignore = [
{ id = "RUSTSEC-2024-0436", reason = "paste is a stable crate and we do not consider it being unmaintained as a security risk" },
]
[bans]
multiple-versions = "allow"
[licenses]
version = 2
allow = [
"0BSD",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0",
"OpenSSL",
"Unicode-3.0",
"Zlib",
]
[sources]
allow-git = [
# Git dependency for `lading_payload`, which isn't published on crates.io. We use a tagged version, though, so this
# is reasonable from our perspective... especially considering the fact that we're the ones who own the repository.
"https://github.com/DataDog/lading",
# Forked version of `hyper-http-proxy` that removes an unused dependency on `rustls-native-certs`, which transitively depends
# on a version of `rustls-pemfile` that is no longer maintained and triggers a hit when running `cargo deny`.
"https://github.com/tobz/hyper-http-proxy.git",
# Yet-to-be-published version of incremental Protocol Buffers encoding library.
"https://github.com/tobz/piecemeal.git",
]