forked from tandemdrive/ocpi-tariffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
36 lines (32 loc) · 915 Bytes
/
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
[advisories]
vulnerability = "deny"
unmaintained = "deny"
notice = "deny"
unsound = "deny"
ignore = [
# `time` Potential segfault in the time crate
# https://rustsec.org/advisories/RUSTSEC-2020-0071
"RUSTSEC-2020-0071",
]
[bans]
multiple-versions = "allow"
wildcards = "deny"
# private package can use wildcard paths such as `package.workspace = true`
allow-wildcard-paths = true
deny = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "neither"
copyleft = "deny"
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93
# ignore the local workspace crates
private = { ignore = true }
# (extending this list is only allowed after agreement by TD management)
allow = ["Apache-2.0", "Apache-2.0 WITH LLVM-exception", "MIT"]
[[licenses.exceptions]]
allow = ["Unicode-DFS-2016"]
name = "unicode-ident"