-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathclarify.toml
135 lines (120 loc) · 4.07 KB
/
clarify.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
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
[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.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 = 0xb6d14686 },
{ path = "aws-lc/third_party/fiat/LICENSE", hash = 0x75829ee2 },
]
[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.bstr]
expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
license-files = [
{ path = "COPYING", hash = 0x278afbcf },
{ path = "LICENSE-APACHE", hash = 0x24b54f4b },
{ path = "LICENSE-MIT", hash = 0x462dee44 },
]
# https://github.com/hsivonen/encoding_rs The non-test code that isn't generated from the WHATWG data in this crate is
# under Apache-2.0 OR MIT. Test code is under CC0.
[clarify.encoding_rs]
expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
license-files = [
{ path = "COPYRIGHT", hash = 0x39f8ad31 },
{ path = "LICENSE-APACHE", hash = 0x18785531 },
{ path = "LICENSE-MIT", hash = 0xafaec4cb },
{ path = "LICENSE-WHATWG", hash = 0xbcb87a0c },
]
[clarify.minimal-lexical]
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "LICENSE.md", hash = 0xfe66d806 },
{ path = "LICENSE-APACHE", hash = 0x4fccb6b7 },
{ path = "LICENSE-MIT", hash = 0x386ca1bc },
]
[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]
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-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 = "MIT AND ISC AND OpenSSL"
license-files = [
{path = "LICENSE", hash = 0xd99693a },
{path = "LICENSE-BoringSSL", hash = 0x8f795a3 },
{path = "LICENSE-other-bits", hash = 0x8b770de2 },
{path = "src/polyfill/once_cell/LICENSE-APACHE", hash = 0x24b54f4b },
{path = "src/polyfill/once_cell/LICENSE-MIT", hash = 0x69371061 },
{path = "third_party/fiat/LICENSE", hash = 0x931a8dd4 },
]
[clarify.rust-fuzzy-search]
expression = "MIT AND Apache-2.0"
license-files = [
{ path = "LICENSE-MIT", hash = 0xb5a90d39 },
{ path = "LICENSE-APACHE", hash = 0xbde481e5 },
]
skip-files = [
# The crate documentation (which we do not distribute) contains
# font files and their licenses.
"target/doc/COPYRIGHT.txt",
"target/doc/FiraSans-LICENSE.txt",
"target/doc/LICENSE-APACHE.txt",
"target/doc/LICENSE-MIT.txt",
"target/doc/SourceCodePro-LICENSE.txt",
"target/doc/SourceSerif4-LICENSE.md",
]
[clarify.rustls-webpki]
expression = "ISC"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
]
[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.unicode-ident]
expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
license-files = [
{ path = "LICENSE-APACHE", hash = 0xb5518783 },
{ path = "LICENSE-MIT", hash = 0x386ca1bc },
{ path = "LICENSE-UNICODE", hash = 0x3475d800 },
]
[clarify.webpki]
expression = "ISC AND BSD-3-Clause"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
{ path = "third-party/chromium/LICENSE", hash = 0x9b209a1a },
]