-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
31 lines (28 loc) · 697 Bytes
/
Copy pathdeny.toml
File metadata and controls
31 lines (28 loc) · 697 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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
]
[advisories]
ignore = [
{ id = "RUSTSEC-2024-0436", reason = "paste is pulled in through rtnetlink as a compile-time macro dependency; revisit by 2026-09-01" },
]
[licenses]
allow = [
"Apache-2.0",
"MIT",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
]
confidence-threshold = 0.8
# `tun` is a Linux TAP/TUN wrapper used by m80-net-outbound. Keep this
# exception crate-local rather than allowing WTFPL workspace-wide.
exceptions = [
{ crate = "tun", allow = ["WTFPL"] },
]
[bans]
multiple-versions = "warn"
deny = [
{ crate = "openssl", reason = "m80 uses rustls-preferred dependency paths" },
]