forked from PolyMeilex/rfd
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
36 lines (32 loc) · 765 Bytes
/
deny.toml
File metadata and controls
36 lines (32 loc) · 765 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
32
33
34
35
36
# https://embarkstudios.github.io/cargo-deny/
[graph]
targets = [
{ triple = "aarch64-apple-darwin" },
{ triple = "aarch64-linux-android" },
{ triple = "wasm32-unknown-unknown" },
{ triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "x86_64-unknown-linux-musl" },
]
exclude = ["gtk-sys"]
[advisories]
version = 2
yanked = "deny"
ignore = []
[bans]
multiple-versions = "deny"
wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed
deny = []
skip = []
skip-tree = []
[licenses]
version = 2
unused-allowed-license = "allow"
allow = [
"MIT",
"Unicode-3.0",
"ISC",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
]