forked from microsoft/os-proxy-resolver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.toml
More file actions
40 lines (37 loc) · 1.25 KB
/
Copy pathabout.toml
File metadata and controls
40 lines (37 loc) · 1.25 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
# cargo-about configuration.
#
# Regenerate the third-party notices with:
# cargo about generate --all-features about.hbs > ThirdPartyNotices.txt
#
# The template embeds the hand-written PAC-engine and QuickJS-NG sections
# (which describe vendored C sources cargo-about can't see into) and then
# appends an auto-generated, per-license listing of every crate compiled into
# the binary.
# Licenses we accept in the notices. Mirrors deny.toml's allow-list.
accepted = [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"Zlib",
"0BSD",
"Unicode-3.0",
"CDLA-Permissive-2.0",
# Wasmtime/Cranelift (`pac-engine-wasmtime` feature); see deny.toml.
"Apache-2.0 WITH LLVM-exception",
]
# Generate notices for every platform we ship, so target-specific dependencies
# (WinHTTP bindings on Windows, the rustls TLS stack elsewhere) are all covered.
targets = [
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
]
# Don't emit notices for this crate itself; it's covered by LICENSE.txt.
private = { ignore = true }