-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathclarify.toml
More file actions
144 lines (130 loc) · 4.38 KB
/
clarify.toml
File metadata and controls
144 lines (130 loc) · 4.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[spdx]
ignore-licenses = [
# Apache-2.0 is often misclassified as Pixar, which is a significantly more rare
# https://github.com/jpeddicord/askalono/issues/94
"Pixar"
]
[clarify."sigs.k8s.io/yaml"]
# The package's files are a mix of MIT with contributions attributed to "The Go
# Authors" licensed as BSD-3-Clause.
expression = "MIT AND BSD-3-Clause"
license-files = [
{ path = "LICENSE", hash = 0xcdf3ae00 },
]
[clarify.aws-lc-fips-sys]
expression = "ISC AND (Apache-2.0 OR ISC) AND OpenSSL AND MIT"
license-files = [
{ path = "LICENSE", hash = 0xf308ccd7 },
{ path = "aws-lc/LICENSE", hash = 0xb6d14686 },
{ path = "aws-lc/third_party/fiat/LICENSE", hash = 0x75829ee2 },
]
[clarify.aws-lc-rs]
expression = "ISC AND (Apache-2.0 OR ISC) AND MIT"
license-files = [
{ path = "LICENSE", hash = 0x8f713da7 },
]
[clarify.aws-lc-sys]
expression = "ISC AND (Apache-2.0 OR ISC) AND OpenSSL AND MIT"
license-files = [
{ path = "LICENSE", hash = 0xf308ccd7 },
{ path = "aws-lc/LICENSE", hash = 0x2ff829bc },
{ path = "aws-lc/third_party/fiat/LICENSE", hash = 0x75829ee2 },
]
[clarify.crossbeam-channel]
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "LICENSE-APACHE", hash = 0x24b54f4b },
{ path = "LICENSE-MIT", hash = 0xbc436f08 },
{ path = "LICENSE-THIRD-PARTY", hash =0x847bf39 },
]
[clarify.regex]
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "LICENSE-APACHE", hash = 0x24b54f4b },
{ path = "LICENSE-MIT", hash = 0xb755395b },
]
skip-files = [
"src/testdata/LICENSE", # we aren't using the test data
]
[[clarify.regex-automata]]
version = "^0.1"
expression = "Unlicense OR MIT"
license-files = [
{ path = "LICENSE-MIT", hash = 0x616d8a83 },
{ path = "UNLICENSE", hash = 0x87b84020 },
]
skip-files = [
# these licenses apply to the test data, which we don't distribute,
"data/tests/fowler/LICENSE",
"data/fowler-tests/LICENSE",
# this file describes what licenses apply to the sources, and when they apply
"COPYING"
]
[[clarify.regex-automata]]
version = "^0.3"
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "LICENSE-MIT", hash = 0xb755395b },
{ path = "LICENSE-APACHE", hash = 0x24b54f4b },
]
[clarify.regex-syntax]
expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
license-files = [
{ path = "LICENSE-APACHE", hash = 0x24b54f4b },
{ path = "LICENSE-MIT", hash = 0xb755395b },
{ path = "src/unicode_tables/LICENSE-UNICODE", hash = 0xa7f28b93 },
]
[clarify.ring]
expression = "Apache-2.0 AND ISC AND MIT AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xd99693a },
{ path = "LICENSE-BoringSSL", hash = 0x8f795a3 },
{ path = "LICENSE-other-bits", hash = 0x8b770de2 },
{ path = "third_party/fiat/LICENSE", hash = 0x931a8dd4 },
{ path = "src/polyfill/once_cell/LICENSE-APACHE", hash = 0x24b54f4b },
{ path = "src/polyfill/once_cell/LICENSE-MIT", hash = 0x69371061 },
]
[clarify.typenum]
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "LICENSE-APACHE", hash = 0x91d5a0a7 },
{ path = "LICENSE-MIT", hash = 0xb9f15462 },
{ path = "LICENSE", hash = 0xa4618a29 },
]
[clarify.zstd-sys]
# The zstd-sys crate's license is listed as MIT or Apache2
#
# zstd-sys compiles zstd as a static library.
#
# zstd's README file states:
# "Zstandard is dual-licensed under BSD and GPLv2."
expression = "(MIT OR Apache-2.0) AND (BSD-3-Clause OR GPL-2.0)"
license-files = [
{ path = "LICENSE", hash = 0x742401ae },
{ path = "LICENSE.Apache-2.0", hash = 0x7b466be4 },
{ path = "LICENSE.BSD-3-Clause", hash = 0xc9f5c4f6},
{ path = "LICENSE.Mit", hash = 0xa237d234 },
{ path = "zstd/COPYING", hash = 0x96841aa4 },
{ path = "zstd/LICENSE", hash = 0x3bfe1fb1 },
]
skip-files = [
# Files under zstd/build are for IDE integrations, and are unused.
"zstd/build/LICENSE"
]
[clarify.zstd-safe]
# The zstd-safe crate's license is listed as MIT or Apache2
#
# zstd-safe compiles zstd as a thin wrapper for zstd.
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "LICENSE", hash = 0x742401ae },
{ path = "LICENSE.Mit", hash = 0xa237d234 },
{ path = "LICENSE.Apache-2.0", hash = 0x7b466be4 },
]
[clarify.minimal-lexical]
expression = "(MIT OR Apache-2.0) AND BSD-3-Clause"
license-files = [
{ path = "LICENSE-APACHE", hash = 0x4fccb6b7 },
{ path = "LICENSE-MIT", hash = 0x386ca1bc },
{ path = "LICENSE.md", hash = 0xfe66d806 },
]