-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathdeny.toml
More file actions
41 lines (37 loc) · 1003 Bytes
/
Copy pathdeny.toml
File metadata and controls
41 lines (37 loc) · 1003 Bytes
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
# SPDX-FileCopyrightText: 2026 Caleb Maclennan <[email protected]>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
[graph]
all-features = true
exclude-dev = true
[bans]
multiple-versions = "allow"
[advisories]
ignore = [
"RUSTSEC-2023-0089", # unmaintained: atomic-polyfill (via iroh and postcard)
"RUSTSEC-2024-0436", # unmaintained: paste (via iroh)
"RUSTSEC-2026-0058", # unmaintained: tokio-io (via futures)
]
# This is not an exhaustive list of licenses we could accept, it is just
# a whitelist of licenses currently known to be in the dependency tree.
[licenses]
allow = [
"AGPL-3.0-or-later",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"CC0-1.0",
"CDLA-Permissive-2.0",
"GPL-3.0-only",
"ISC",
"LGPL-3.0",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Unlicense",
"Zlib",
]
exceptions = [
# This instance is only AGPL compatible because it has the necessary extra clause.
{ allow = ["EUPL-1.2"], crate = "magic-wormhole" },
]