forked from metalbear-co/mirrord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
74 lines (69 loc) · 2.18 KB
/
Copy pathdeny.toml
File metadata and controls
74 lines (69 loc) · 2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[graph]
targets = [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
]
all-features = true
[advisories]
version = 2
ignore = [
"RUSTSEC-2020-0095", # difference is unmaintained. (part of apple-codesign)
"RUSTSEC-2023-0071", # rsa crate, potential key recovery through timing sidechannels, though it sounds bad
# we only use rsa as part of apple-codesign for re-sign binaries, so this should not matter.
"RUSTSEC-2024-0436", # paste is unmaintained but we should not have an issue with it.
"RUSTSEC-2025-0134", # rustls-pemfile is unmaintained, but we cannot remove it yet.
"RUSTSEC-2025-0141", # bincode is unmaintaned, but we cannot remove it yet.
]
[licenses]
version = 2
allow = [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BlueOak-1.0.0",
"BSL-1.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"ISC",
"MIT",
"MPL-2.0",
"OpenSSL",
"Unicode-3.0",
"WTFPL",
"wxWindows",
"Zlib",
"CDLA-Permissive-2.0",
]
[[licenses.clarify]]
crate = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[bans]
# enable this when dependencies are a bit more stable
# multiple-versions = "deny"
skip = [
"cookie@0.16.2", # Remove when `actix-web` updates
"libloading@0.8.9", # Remove when frida is upgraded
"hashbrown@0.12.3", # Remove when `ci_info` updates
"rand@0.9.4", # Remove when `tungstenite` updates
"windows-sys@0.52.0", # Remove when socket2 is updated (a large update this one is)
]
skip-tree = [
"apple-codesign", # Skip all figment and tungstenite duplications unless `apple-codesign` will use `figment2` or updated version of tungstenite.
"darling@0.20.11", # Remove when `local-ip-address` (`neli`) and `oci-spec`
"dll-syringe@0.17.1",
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [
"https://github.com/metalbear-co/rust-iptables",
"https://github.com/metalbear-co/kube",
"https://github.com/metalbear-co/minhook-detours-rs",
"https://github.com/metalbear-co/minhook-detours-sys",
"https://github.com/metalbear-co/tree-sitter",
"https://github.com/metalbear-co/null-terminated.rs",
]