-
Notifications
You must be signed in to change notification settings - Fork 1
/
deny.toml
43 lines (38 loc) · 1018 Bytes
/
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
[graph]
targets = [
{ triple = "thumbv6m-none-eabi" },
]
[advisories]
ignore = []
[bans]
multiple-versions = "deny"
deny = []
skip = [
# cortex-m has a bunch of outdated deps
{ name = "bitfield", version = "0.13.2" },
{ name = "embedded-hal", version = "0.2.7" },
{ name = "nb", version = "0.1.3" },
{ name = "syn", version = "1.0.109" },
# This one sneaks in from pio
{ name = "regex-syntax", version = "0.6.29" },
]
[sources]
allow-git = [
"https://github.com/MarcusGrass/rp-hal-boards",
"https://github.com/MarcusGrass/pio-uart",
"https://github.com/MarcusGrass/usb-device",
]
[licenses]
confidence-threshold = 1.0
# I'd like to know if they pop into my dependency graph
allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
]
exceptions = [
{ name = "rp2040-kbd", allow = ["GPL-3.0"] },
{ name = "rp2040-kbd-lib", allow = ["GPL-3.0"] },
{ name = "tiny-keccak", allow = ["CC0-1.0"] },
{ name = "unicode-ident", allow = ["Unicode-DFS-2016"] },
]