forked from sophmi/laya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
59 lines (50 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
]
all-features = true
[advisories]
# The path where the advisory databases are cloned/fetched into
#db-path = "$CARGO_HOME/advisory-dbs"
# The url(s) of the advisory databases to use
#db-urls = ["https://github.com/rustsec/advisory-db"]
# A list of advisory IDs to ignore. Note that ignored advisories will still
# output a note when they are encountered.
ignore = [
#"RUSTSEC-0000-0000",
#"[email protected]", # you can also ignore yanked crate versions if you wish
#{ crate = "[email protected]", reason = "you can specify why you are ignoring the yanked crate" },
]
[licenses]
version = 2
allow = [
"Apache-2.0",
"BSD-2-Clause",
"MIT",
"Zlib",
"Unicode-3.0",
"ISC",
"BSD-3-Clause",
"MPL-2.0",
"IJG",
]
exceptions = [
{ name = "tracing-opentelemetry-instrumentation-sdk", allow = [
"CC0-1.0",
] },
]
[bans]
multiple-versions = "warn"
wildcards = "deny"
skip = [
{ crate = "windows-sys", reason = "included in thousands of crates" },
]
skip-tree = ["thiserror"]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = ["https://github.com/digirati-co-uk/kaduceus"]