-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdeny.toml
More file actions
78 lines (71 loc) · 1.9 KB
/
deny.toml
File metadata and controls
78 lines (71 loc) · 1.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# SPDX-FileCopyrightText: 2025 Phoenix R&D GmbH <hello@phnx.im>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
[graph]
targets = [
"aarch64-apple-darwin",
"aarch64-apple-ios",
"aarch64-linux-android",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-windows-msvc",
]
all-features = false
no-default-features = false
[bans]
multiple-versions = "allow"
[advisories]
unsound = "all"
ignore = [
{ id = "RUSTSEC-2023-0071", reason = "no fix yet available; the crate is not used by us" },
{ id = "RUSTSEC-2024-0436", reason = "no fix yet available" },
{ id = "RUSTSEC-2026-0002", reason = "no fix yet available" },
{ id = "RUSTSEC-2026-0097", reason = "rand 0.8.5 pinned by third-party deps; no 0.8.x patch available" },
]
[licenses]
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
allow = [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BlueOak-1.0.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
confidence-threshold = 0.8
exceptions = [
{ allow = [
"AGPL-3.0-or-later",
], crate = "mls-assist" },
{ allow = [
"AGPL-3.0-or-later",
], crate = "mimi_content" },
{ allow = [
"AGPL-3.0-or-later",
], crate = "mimi-room-policy" },
{ allow = [
"AGPL-3.0-or-later",
], crate = "apqmls" },
]
[licenses.private]
ignore = true
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [
"https://github.com/raphaelrobert/privacypass",
"https://github.com/boxdot/openmls",
"https://github.com/cryspen/hpke-rs",
"https://github.com/RustCrypto/RSA",
]
[sources.allow-org]
github = ["phnx-im"]