-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.toml
More file actions
36 lines (32 loc) · 1.14 KB
/
Copy pathabout.toml
File metadata and controls
36 lines (32 loc) · 1.14 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
# cargo-about configuration. Drives generation of THIRDPARTY.md from Cargo.lock.
# Verified in CI by .github/scripts/check-thirdparty-current.sh. The accepted
# list mirrors deny.toml's [licenses].allow.
accepted = [
"MIT",
"MIT-0",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"CC0-1.0",
"Zlib",
"BSL-1.0",
"MPL-2.0",
"CDLA-Permissive-2.0",
]
# License-file discovery clarifications. cargo-about's default discovery is
# filesystem-order-dependent, which makes THIRDPARTY.md non-deterministic across
# macOS and Linux for crates shipping multiple license files. rkyv reaches
# Aionforge's tree via the selene-db dependency path, so the same pin selene-db
# uses applies here.
# rkyv_derive ships a top-level MIT LICENSE plus a second src/serde/LICENSE
# (vendored serde MIT, no copyright header). Pin to the top-level file so the
# regenerated THIRDPARTY.md is byte-deterministic across environments.
[rkyv_derive.clarify]
license = "MIT"
[[rkyv_derive.clarify.files]]
path = "LICENSE"
checksum = "635111a955495b5d8d34b8052f69656e8e45f6437f9266329077b9aad5fbe8d3"
license = "MIT"