-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.deny.toml
More file actions
40 lines (34 loc) · 728 Bytes
/
.deny.toml
File metadata and controls
40 lines (34 loc) · 728 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
37
38
39
40
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
[graph]
all-features = true
[advisories]
version = 2
[licenses]
version = 2
allow = [
"Apache-2.0",
"BSD-3-Clause",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
private = { ignore = true }
[bans]
multiple-versions = "warn"
wildcards = "deny"
[[bans.features]]
name = "serde_json"
# These features all don't make sense to activate from a library as they apply
# globally to all users of serde_json. Make sure we don't enable them somehow.
deny = [
"arbitrary_precision",
"float_roundtrip",
"preserve_order",
"unbounded_depth",
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"