-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.toml
61 lines (44 loc) · 1.93 KB
/
about.toml
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
# cargo-about configuration
#
# Used to generate the `docs/licenses.md` and `docs/licenses-short.md` files.
accepted = [
# In order of priority (if a project is multi-licensed)
"MIT",
"Zlib",
"Apache-2.0",
"Unicode-3.0",
]
# Do not show private crates
private = { ignore = true }
ignore-dev-dependencies = true
ignore-build-dependencies = false
# Show dependencies of dependencies
ignore-transitive-dependencies = false
# I have to manually specify the license file location for the windows-* crates
[windows-sys.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows-targets.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_aarch64_gnullvm.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_aarch64_msvc.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_i686_gnu.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_i686_msvc.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_x86_64_gnu.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_x86_64_gnullvm.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]
[windows_x86_64_msvc.clarify]
license = "MIT"
files = [ {path = "license-mit", checksum = "c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383" } ]