-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.deny.toml
More file actions
77 lines (63 loc) · 1.41 KB
/
.deny.toml
File metadata and controls
77 lines (63 loc) · 1.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# doc: https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
[graph]
targets = [
"thumbv7em-none-eabihf",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
all-features = false
no-default-features = false
features = []
[advisories]
# db-path = "~/.cargo/advisory-dbs"
# db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = [
{ id = "RUSTSEC-2024-0436", reason = "Unmaintained - it's ok, also there is no available alternative." },
]
[licenses]
confidence-threshold = 0.8
allow = [
"Unlicense",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"MIT",
"MPL-2.0",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
]
[[licenses.exceptions]]
allow = ["Zlib"]
crate = "const_format"
[[licenses.exceptions]]
allow = ["Zlib"]
crate = "const_format_proc_macros"
[[licenses.exceptions]]
allow = ["BSL-1.0"]
crate = "lockfree-object-pool"
[licenses.private]
ignore = true
registries = []
[bans]
multiple-versions = "warn" # TODO: allow
wildcards = "warn"
highlight = "simplest-path"
workspace-default-features = "allow"
external-default-features = "allow"
allow = []
deny = []
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []
[sources.allow-org]
github = []
gitlab = []
bitbucket = []