-
Notifications
You must be signed in to change notification settings - Fork 20
/
deny.toml
45 lines (42 loc) · 1.11 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
[advisories]
ignore = [
{ id = "RUSTSEC-2024-0384", reason = "migration to alloy is underway which will resolve this advisory" },
]
# This rustsec can be added to ignore list if using mls `test_utils` for tests
# {
# id="RUSTSEC-2021-0139",
# reason="The maintainer has advised that this crate is deprecated and will not receive any maintenance. https://rustsec.org/advisories/RUSTSEC-2021-0139.html"
# },
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-DFS-2016",
"GPL-3.0",
"CC0-1.0",
"BSD-2-Clause",
"Unicode-3.0",
]
confidence-threshold = 1.0
exceptions = [
{ allow = [
"OpenSSL",
], name = "ring", version = "*" },
{ allow = [
"Unlicense",
], name = "pharos", version = "0.5.3" },
{ allow = [
"Unlicense",
], name = "async_io_stream", version = "0.3.3" },
{ allow = [
"Unlicense",
], name = "ws_stream_wasm", version = "0.7.4" },
]
[[licenses.clarify]]
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
name = "ring"
version = "*"