-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeny.toml
41 lines (37 loc) · 1.08 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
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-gnu" },
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "aarch64-apple-darwin" },
{ triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
]
[bans]
multiple-versions = "deny"
wildcards = "deny"
skip = [
{ name = "windows-sys" },
{ name = "windows-targets" },
{ name = "windows_x86_64_msvc" },
# wasmparser 0.105 requires:
{ name = "wasmparser", version = "0.105" },
{ name = "hashbrown", version = "0.12" },
{ name = "indexmap", version = "1.9" },
# bolero-generator-derive v0.9.2 requires:
{ name = "syn", version = "1.0" },
]
# our bolero fork requires:
[sources]
allow-git = ["https://github.com/Ekleog-NEAR/bolero?rev=362328af9f0539f9d6ee62bb4334afaa0a71b572#362328af9f0539f9d6ee62bb4334afaa0a71b572"]
[licenses]
allow = [
"Apache-2.0",
"MIT",
"Apache-2.0 WITH LLVM-exception",
"Unicode-DFS-2016"
]
[advisories]
ignore = [
# parity-wasm is only ever used for dev-dependencies
"RUSTSEC-2022-0061",
]