-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathdeny.toml
More file actions
64 lines (56 loc) · 1.5 KB
/
Copy pathdeny.toml
File metadata and controls
64 lines (56 loc) · 1.5 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
# Only non-default values are listed here
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [
"https://github.com/fennewald/format_serde_error",
"https://github.com/JamesGuthrie/test-generator",
"https://github.com/amousset/warp?branch=body-stream"
]
[sources.allow-org]
github = ["Normation"]
[licenses]
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.7 short identifier (+ optional exception)].
allow = [
"ISC",
"MIT",
"Apache-2.0",
"GPL-3.0",
"GPL-3.0-or-later",
"Unicode-DFS-2016",
"BSD-3-Clause",
"BSL-1.0",
"MPL-2.0",
"Unicode-3.0",
"CC0-1.0",
"CC-BY-4.0",
"LGPL-2.0",
"LGPL-2.1",
"MIT-0",
"Zlib",
]
unused-allowed-license = "allow"
[advisories]
ignore = [
# No fix for rand 0.8, and risk is acceptable
"RUSTSEC-2026-0097",
# We don't use diesel with sqlite backend
"RUSTSEC-2026-0111",
# We don't use diesel with sqlite backend
"RUSTSEC-2026-0137",
# We don't use diesel with sqlite backend
"RUSTSEC-2026-0135",
"RUSTSEC-2026-0172",
# We don't use diesel with MySQL backend
"RUSTSEC-2026-0134",
# We don't use diesel CopyToQuery with the PostgreSQL backend
"RUSTSEC-2026-0136",
# DoS on unstrusted XML in quick-xml, acceptable
"RUSTSEC-2026-0194",
"RUSTSEC-2026-0195",
]
[bans]
# Lint level for when multiple versions of the same crate are detected
multiple-versions = "allow"