-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
52 lines (48 loc) · 1.23 KB
/
deny.toml
File metadata and controls
52 lines (48 loc) · 1.23 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
[graph]
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "aarch64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-musl" },
]
[advisories]
ignore = []
[bans]
multiple-versions = "deny"
deny = [
# Malware begone
{ name = "quote"},
{ name = "proc-macro"},
{ name = "proc-macro2"},
{ name = "serde"},
{ name = "serde_derive"},
{ name = "syn"},
{ name = "thiserror"},
{ name = "unicode-ident"},
# Libc begone
{ name = "libc" },
]
skip = [
]
[sources]
allow-git = [
"https://github.com/MarcusGrass/fontdue",
]
[licenses]
confidence-threshold = 1.0
allow = [
"Apache-2.0",
"MIT",
]
exceptions = [
{ name = "linux-rust-bindings", allow = ["MPL-2.0"] },
{ name = "pgwm", allow = ["GPL-3.0-only"] },
{ name = "pgwm-app", allow = ["GPL-3.0-only"] },
{ name = "pgwm-core", allow = ["GPL-3.0-only"] },
{ name = "pgwm-utils", allow = ["GPL-3.0-only"] },
{ name = "rusl", allow = ["MPL-2.0"] },
{ name = "tiny-start", allow = ["MPL-2.0"] },
{ name = "tiny-std", allow = ["MPL-2.0"] },
{ name = "xcb-rust-connection", allow = ["MPL-2.0"] },
{ name = "xcb-rust-protocol", allow = ["MPL-2.0"] },
]