-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.toml
More file actions
21 lines (20 loc) · 717 Bytes
/
Copy pathabout.toml
File metadata and controls
21 lines (20 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Configuration for `cargo about`, which generates THIRD_PARTY_LICENSES.md.
#
# `accepted` is the allow-list of licenses for crates that end up in the
# compiled extension. `cargo about generate` (run by `just licenses` and in CI)
# fails if any dependency uses a license that is not listed here, so a copyleft
# or unknown-license crate cannot slip into this MIT project unnoticed.
# Do not list YAMLRocks itself (the `publish = false` workspace crate) among the
# third-party licenses; it is the project, not a dependency.
private = { ignore = true }
accepted = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"Unicode-3.0",
"Unlicense",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
]