-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathdeny.toml
More file actions
47 lines (43 loc) · 1.62 KB
/
deny.toml
File metadata and controls
47 lines (43 loc) · 1.62 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
45
46
47
[licenses]
allow = [
"0BSD",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MIT-0",
"BlueOak-1.0.0",
"OpenSSL",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib"
]
private = { ignore = true }
exceptions = [
# MPL-2.0 are added case-by-case to make sure we are in compliance. To be in
# compliance we cannot be modifying the source files.
{ allow = ["MPL-2.0"], name = "colored", version = "*" },
{ allow = ["MPL-2.0"], name = "webpki-roots", version = "*" },
{ allow = ["MPL-2.0"], name = "vector-common-macros", version = "*" },
{ allow = ["MPL-2.0"], name = "vector-config-common", version = "*" },
{ allow = ["MPL-2.0"], name = "vector-config-macros", version = "*" },
{ allow = ["MPL-2.0"], name = "vrl", version = "*" },
]
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]
[advisories]
ignore = [
{ id = "RUSTSEC-2023-0071", reason = "rsa marvin attack - unpatched upstream (https://github.com/vectordotdev/vector/issues/19262)" },
{ id = "RUSTSEC-2024-0388", reason = "derivative is unmaintained (https://github.com/vectordotdev/vector/issues/24940)" },
{ id = "RUSTSEC-2025-0134", reason = "rustls-pemfile is unmaintained - unpatched crate (https://github.com/bytebeamio/rumqtt/issues/1010) & tonic/reqwest upgrade (https://github.com/vectordotdev/vector/issues/19179)" },
{ id = "RUSTSEC-2026-0049", reason = "rustls-webpki 0.102 is vulnerable - tonic upgrade (https://github.com/vectordotdev/vector/issues/19179)" },
]