-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
64 lines (58 loc) · 1.53 KB
/
deny.toml
File metadata and controls
64 lines (58 loc) · 1.53 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
[graph]
targets = ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-musl"]
all-features = true
no-default-features = false
[advisories]
unmaintained = "workspace"
unsound = "all"
ignore = [{ id = "RUSTSEC-2023-0071", reason = "JWK not used" }]
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
"BSL-1.0",
"AGPL-3.0-or-later",
]
confidence-threshold = 0.8
# Bundling of webpki-roots is unsupported
[[licenses.exceptions]]
allow = ["CDLA-Permissive-2.0"]
name = "webpki-roots"
# This section is considered when running `cargo deny check bans`.
# More documentation about the 'bans' section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
workspace-default-features = "allow"
external-default-features = "allow"
allow-workspace = false
skip = [
"rand_core@0.6.4",
"rand_chacha@0.3.1",
"rand@0.8.5",
"itertools@0.10.5",
"hashbrown@0.15.5",
"getrandom@0.2.17",
"getrandom@0.3.4",
{ crate = "thiserror@1.0.69", reason = "envsubst, oauth2 uses this old version" },
{ crate = "thiserror-impl@1.0.69", reason = "envsubst, oauth2 uses this old version" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [
"https://github.com/matrix-org/matrix-rust-sdk",
"https://github.com/ruma/ruma",
]
[sources.allow-org]
github = ["ShadowRZ"]