-
Notifications
You must be signed in to change notification settings - Fork 1
/
deny.toml
61 lines (52 loc) · 1.31 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
60
61
[bans]
# Forbid multiple versions of same dependency (with some exceptions)
multiple-versions = "deny"
# We should slways specify version ranges
wildcards = "deny"
# We specify features explicitly to avoid bloat
workspace-default-features = "deny"
# Avoid adding dependencies to this list as this slows down compilation.
# Find another ways to avoid duplication.
skip-tree = [
{ name = "bitflags" },
{ name = "chrono-tz" }, # TODO: odata-params crate needs to update
{ name = "dashmap" },
{ name = "hashbrown" },
{ name = "heck" },
{ name = "itertools" },
{ name = "syn" },
{ name = "sync_wrapper" },
{ name = "thiserror" }, # TODO: Temporary for v2 migration
{ name = "windows-sys" },
]
deny = [{ name = "openssl" }]
[licenses]
allow = [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"ISC",
"MIT",
"MPL-2.0",
"0BSD",
"OpenSSL",
"Unicode-3.0",
"Unlicense",
"Zlib",
]
private = { ignore = true }
[[licenses.exceptions]]
allow = ["Unicode-DFS-2016"]
name = "unicode-ident"
[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[sources]
unknown-git = "deny"
unknown-registry = "deny"
allow-org = { github = [] }
[advisories]
yanked = "deny"
ignore = []