-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathclarify.toml
100 lines (89 loc) · 2.89 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
[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.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.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.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 },
]