rubydex 0.1.0.beta12-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +23 -0
  3. data/README.md +125 -0
  4. data/THIRD_PARTY_LICENSES.html +4562 -0
  5. data/exe/rdx +47 -0
  6. data/ext/rubydex/declaration.c +453 -0
  7. data/ext/rubydex/declaration.h +23 -0
  8. data/ext/rubydex/definition.c +284 -0
  9. data/ext/rubydex/definition.h +28 -0
  10. data/ext/rubydex/diagnostic.c +6 -0
  11. data/ext/rubydex/diagnostic.h +11 -0
  12. data/ext/rubydex/document.c +97 -0
  13. data/ext/rubydex/document.h +10 -0
  14. data/ext/rubydex/extconf.rb +138 -0
  15. data/ext/rubydex/graph.c +681 -0
  16. data/ext/rubydex/graph.h +10 -0
  17. data/ext/rubydex/handle.h +44 -0
  18. data/ext/rubydex/location.c +22 -0
  19. data/ext/rubydex/location.h +15 -0
  20. data/ext/rubydex/reference.c +123 -0
  21. data/ext/rubydex/reference.h +15 -0
  22. data/ext/rubydex/rubydex.c +22 -0
  23. data/ext/rubydex/utils.c +108 -0
  24. data/ext/rubydex/utils.h +34 -0
  25. data/lib/rubydex/3.2/rubydex.so +0 -0
  26. data/lib/rubydex/3.3/rubydex.so +0 -0
  27. data/lib/rubydex/3.4/rubydex.so +0 -0
  28. data/lib/rubydex/4.0/rubydex.so +0 -0
  29. data/lib/rubydex/comment.rb +17 -0
  30. data/lib/rubydex/diagnostic.rb +21 -0
  31. data/lib/rubydex/failures.rb +15 -0
  32. data/lib/rubydex/graph.rb +98 -0
  33. data/lib/rubydex/keyword.rb +17 -0
  34. data/lib/rubydex/keyword_parameter.rb +13 -0
  35. data/lib/rubydex/librubydex_sys.so +0 -0
  36. data/lib/rubydex/location.rb +90 -0
  37. data/lib/rubydex/mixin.rb +22 -0
  38. data/lib/rubydex/version.rb +5 -0
  39. data/lib/rubydex.rb +23 -0
  40. data/rbi/rubydex.rbi +422 -0
  41. data/rust/Cargo.lock +1851 -0
  42. data/rust/Cargo.toml +29 -0
  43. data/rust/about.hbs +78 -0
  44. data/rust/about.toml +10 -0
  45. data/rust/rubydex/Cargo.toml +42 -0
  46. data/rust/rubydex/src/compile_assertions.rs +13 -0
  47. data/rust/rubydex/src/diagnostic.rs +110 -0
  48. data/rust/rubydex/src/errors.rs +28 -0
  49. data/rust/rubydex/src/indexing/local_graph.rs +224 -0
  50. data/rust/rubydex/src/indexing/rbs_indexer.rs +1551 -0
  51. data/rust/rubydex/src/indexing/ruby_indexer.rs +2329 -0
  52. data/rust/rubydex/src/indexing/ruby_indexer_tests.rs +4962 -0
  53. data/rust/rubydex/src/indexing.rs +210 -0
  54. data/rust/rubydex/src/integrity.rs +279 -0
  55. data/rust/rubydex/src/job_queue.rs +205 -0
  56. data/rust/rubydex/src/lib.rs +17 -0
  57. data/rust/rubydex/src/listing.rs +371 -0
  58. data/rust/rubydex/src/main.rs +160 -0
  59. data/rust/rubydex/src/model/built_in.rs +83 -0
  60. data/rust/rubydex/src/model/comment.rs +24 -0
  61. data/rust/rubydex/src/model/declaration.rs +671 -0
  62. data/rust/rubydex/src/model/definitions.rs +1682 -0
  63. data/rust/rubydex/src/model/document.rs +222 -0
  64. data/rust/rubydex/src/model/encoding.rs +22 -0
  65. data/rust/rubydex/src/model/graph.rs +3754 -0
  66. data/rust/rubydex/src/model/id.rs +110 -0
  67. data/rust/rubydex/src/model/identity_maps.rs +58 -0
  68. data/rust/rubydex/src/model/ids.rs +60 -0
  69. data/rust/rubydex/src/model/keywords.rs +256 -0
  70. data/rust/rubydex/src/model/name.rs +298 -0
  71. data/rust/rubydex/src/model/references.rs +111 -0
  72. data/rust/rubydex/src/model/string_ref.rs +50 -0
  73. data/rust/rubydex/src/model/visibility.rs +41 -0
  74. data/rust/rubydex/src/model.rs +15 -0
  75. data/rust/rubydex/src/offset.rs +147 -0
  76. data/rust/rubydex/src/position.rs +6 -0
  77. data/rust/rubydex/src/query.rs +1841 -0
  78. data/rust/rubydex/src/resolution.rs +6517 -0
  79. data/rust/rubydex/src/stats/memory.rs +71 -0
  80. data/rust/rubydex/src/stats/orphan_report.rs +264 -0
  81. data/rust/rubydex/src/stats/timer.rs +127 -0
  82. data/rust/rubydex/src/stats.rs +11 -0
  83. data/rust/rubydex/src/test_utils/context.rs +226 -0
  84. data/rust/rubydex/src/test_utils/graph_test.rs +730 -0
  85. data/rust/rubydex/src/test_utils/local_graph_test.rs +602 -0
  86. data/rust/rubydex/src/test_utils.rs +52 -0
  87. data/rust/rubydex/src/visualization/dot.rs +192 -0
  88. data/rust/rubydex/src/visualization.rs +6 -0
  89. data/rust/rubydex/tests/cli.rs +185 -0
  90. data/rust/rubydex-mcp/Cargo.toml +28 -0
  91. data/rust/rubydex-mcp/src/main.rs +48 -0
  92. data/rust/rubydex-mcp/src/server.rs +1145 -0
  93. data/rust/rubydex-mcp/src/tools.rs +49 -0
  94. data/rust/rubydex-mcp/tests/mcp.rs +302 -0
  95. data/rust/rubydex-sys/Cargo.toml +20 -0
  96. data/rust/rubydex-sys/build.rs +14 -0
  97. data/rust/rubydex-sys/cbindgen.toml +12 -0
  98. data/rust/rubydex-sys/src/declaration_api.rs +485 -0
  99. data/rust/rubydex-sys/src/definition_api.rs +443 -0
  100. data/rust/rubydex-sys/src/diagnostic_api.rs +99 -0
  101. data/rust/rubydex-sys/src/document_api.rs +85 -0
  102. data/rust/rubydex-sys/src/graph_api.rs +948 -0
  103. data/rust/rubydex-sys/src/lib.rs +79 -0
  104. data/rust/rubydex-sys/src/location_api.rs +79 -0
  105. data/rust/rubydex-sys/src/name_api.rs +135 -0
  106. data/rust/rubydex-sys/src/reference_api.rs +267 -0
  107. data/rust/rubydex-sys/src/utils.rs +70 -0
  108. data/rust/rustfmt.toml +2 -0
  109. metadata +159 -0
@@ -0,0 +1,4562 @@
1
+ <html>
2
+
3
+ <head>
4
+ <style>
5
+ @media (prefers-color-scheme: dark) {
6
+ body {
7
+ background: #333;
8
+ color: white;
9
+ }
10
+
11
+ a {
12
+ color: skyblue;
13
+ }
14
+ }
15
+
16
+ .container {
17
+ font-family: sans-serif;
18
+ max-width: 800px;
19
+ margin: 0 auto;
20
+ }
21
+
22
+ .intro {
23
+ text-align: center;
24
+ }
25
+
26
+ .licenses-list {
27
+ list-style-type: none;
28
+ margin: 0;
29
+ padding: 0;
30
+ }
31
+
32
+ .license-used-by {
33
+ margin-top: -10px;
34
+ }
35
+
36
+ .license-text {
37
+ max-height: 200px;
38
+ overflow-y: scroll;
39
+ white-space: pre-wrap;
40
+ }
41
+ </style>
42
+ </head>
43
+
44
+ <body>
45
+ <main class="container">
46
+ <div class="intro">
47
+ <h1>Third Party Licenses</h1>
48
+ <p>This page lists the licenses of the projects used in Rubydex.</p>
49
+ </div>
50
+
51
+ <h2>Overview of licenses:</h2>
52
+ <ul class="licenses-overview">
53
+ <li><a href="#Apache-2.0">Apache License 2.0</a> (147)</li>
54
+ <li><a href="#MIT">MIT License</a> (29)</li>
55
+ <li><a href="#Unicode-3.0">Unicode License v3</a> (19)</li>
56
+ <li><a href="#BSD-2-Clause">BSD 2-Clause &quot;Simplified&quot; License</a> (2)</li>
57
+ <li><a href="#BSD-3-Clause">BSD 3-Clause &quot;New&quot; or &quot;Revised&quot; License</a> (1)</li>
58
+ <li><a href="#BSL-1.0">Boost Software License 1.0</a> (1)</li>
59
+ <li><a href="#ISC">ISC License</a> (1)</li>
60
+ <li><a href="#MPL-2.0">Mozilla Public License 2.0</a> (1)</li>
61
+ </ul>
62
+
63
+ <h2>All license text:</h2>
64
+ <ul class="licenses-list">
65
+ <li class="license">
66
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
67
+ <h4>Used by:</h4>
68
+ <ul class="license-used-by">
69
+ <li><a
70
+ href=" https://github.com/paritytech/nohash-hasher ">nohash-hasher
71
+ 0.2.0</a></li>
72
+ <li><a
73
+ href=" https://github.com/hsivonen/utf8_iter ">utf8_iter
74
+ 1.0.4</a></li>
75
+ </ul>
76
+ <pre class="license-text">
77
+ Apache License
78
+ Version 2.0, January 2004
79
+ http://www.apache.org/licenses/
80
+
81
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
82
+
83
+ 1. Definitions.
84
+
85
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
86
+ and distribution as defined by Sections 1 through 9 of this document.
87
+
88
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
89
+ the copyright owner that is granting the License.
90
+
91
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
92
+ other entities that control, are controlled by, or are under common
93
+ control with that entity. For the purposes of this definition,
94
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
95
+ direction or management of such entity, whether by contract or
96
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
97
+ outstanding shares, or (iii) beneficial ownership of such entity.
98
+
99
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
100
+ exercising permissions granted by this License.
101
+
102
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
103
+ including but not limited to software source code, documentation
104
+ source, and configuration files.
105
+
106
+ &quot;Object&quot; form shall mean any form resulting from mechanical
107
+ transformation or translation of a Source form, including but
108
+ not limited to compiled object code, generated documentation,
109
+ and conversions to other media types.
110
+
111
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
112
+ Object form, made available under the License, as indicated by a
113
+ copyright notice that is included in or attached to the work
114
+ (an example is provided in the Appendix below).
115
+
116
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
117
+ form, that is based on (or derived from) the Work and for which the
118
+ editorial revisions, annotations, elaborations, or other modifications
119
+ represent, as a whole, an original work of authorship. For the purposes
120
+ of this License, Derivative Works shall not include works that remain
121
+ separable from, or merely link (or bind by name) to the interfaces of,
122
+ the Work and Derivative Works thereof.
123
+
124
+ &quot;Contribution&quot; shall mean any work of authorship, including
125
+ the original version of the Work and any modifications or additions
126
+ to that Work or Derivative Works thereof, that is intentionally
127
+ submitted to Licensor for inclusion in the Work by the copyright owner
128
+ or by an individual or Legal Entity authorized to submit on behalf of
129
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
130
+ means any form of electronic, verbal, or written communication sent
131
+ to the Licensor or its representatives, including but not limited to
132
+ communication on electronic mailing lists, source code control systems,
133
+ and issue tracking systems that are managed by, or on behalf of, the
134
+ Licensor for the purpose of discussing and improving the Work, but
135
+ excluding communication that is conspicuously marked or otherwise
136
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
137
+
138
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
139
+ on behalf of whom a Contribution has been received by Licensor and
140
+ subsequently incorporated within the Work.
141
+
142
+ 2. Grant of Copyright License. Subject to the terms and conditions of
143
+ this License, each Contributor hereby grants to You a perpetual,
144
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
145
+ copyright license to reproduce, prepare Derivative Works of,
146
+ publicly display, publicly perform, sublicense, and distribute the
147
+ Work and such Derivative Works in Source or Object form.
148
+
149
+ 3. Grant of Patent License. Subject to the terms and conditions of
150
+ this License, each Contributor hereby grants to You a perpetual,
151
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
152
+ (except as stated in this section) patent license to make, have made,
153
+ use, offer to sell, sell, import, and otherwise transfer the Work,
154
+ where such license applies only to those patent claims licensable
155
+ by such Contributor that are necessarily infringed by their
156
+ Contribution(s) alone or by combination of their Contribution(s)
157
+ with the Work to which such Contribution(s) was submitted. If You
158
+ institute patent litigation against any entity (including a
159
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
160
+ or a Contribution incorporated within the Work constitutes direct
161
+ or contributory patent infringement, then any patent licenses
162
+ granted to You under this License for that Work shall terminate
163
+ as of the date such litigation is filed.
164
+
165
+ 4. Redistribution. You may reproduce and distribute copies of the
166
+ Work or Derivative Works thereof in any medium, with or without
167
+ modifications, and in Source or Object form, provided that You
168
+ meet the following conditions:
169
+
170
+ (a) You must give any other recipients of the Work or
171
+ Derivative Works a copy of this License; and
172
+
173
+ (b) You must cause any modified files to carry prominent notices
174
+ stating that You changed the files; and
175
+
176
+ (c) You must retain, in the Source form of any Derivative Works
177
+ that You distribute, all copyright, patent, trademark, and
178
+ attribution notices from the Source form of the Work,
179
+ excluding those notices that do not pertain to any part of
180
+ the Derivative Works; and
181
+
182
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
183
+ distribution, then any Derivative Works that You distribute must
184
+ include a readable copy of the attribution notices contained
185
+ within such NOTICE file, excluding those notices that do not
186
+ pertain to any part of the Derivative Works, in at least one
187
+ of the following places: within a NOTICE text file distributed
188
+ as part of the Derivative Works; within the Source form or
189
+ documentation, if provided along with the Derivative Works; or,
190
+ within a display generated by the Derivative Works, if and
191
+ wherever such third-party notices normally appear. The contents
192
+ of the NOTICE file are for informational purposes only and
193
+ do not modify the License. You may add Your own attribution
194
+ notices within Derivative Works that You distribute, alongside
195
+ or as an addendum to the NOTICE text from the Work, provided
196
+ that such additional attribution notices cannot be construed
197
+ as modifying the License.
198
+
199
+ You may add Your own copyright statement to Your modifications and
200
+ may provide additional or different license terms and conditions
201
+ for use, reproduction, or distribution of Your modifications, or
202
+ for any such Derivative Works as a whole, provided Your use,
203
+ reproduction, and distribution of the Work otherwise complies with
204
+ the conditions stated in this License.
205
+
206
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
207
+ any Contribution intentionally submitted for inclusion in the Work
208
+ by You to the Licensor shall be under the terms and conditions of
209
+ this License, without any additional terms or conditions.
210
+ Notwithstanding the above, nothing herein shall supersede or modify
211
+ the terms of any separate license agreement you may have executed
212
+ with Licensor regarding such Contributions.
213
+
214
+ 6. Trademarks. This License does not grant permission to use the trade
215
+ names, trademarks, service marks, or product names of the Licensor,
216
+ except as required for reasonable and customary use in describing the
217
+ origin of the Work and reproducing the content of the NOTICE file.
218
+
219
+ 7. Disclaimer of Warranty. Unless required by applicable law or
220
+ agreed to in writing, Licensor provides the Work (and each
221
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
222
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
223
+ implied, including, without limitation, any warranties or conditions
224
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
225
+ PARTICULAR PURPOSE. You are solely responsible for determining the
226
+ appropriateness of using or redistributing the Work and assume any
227
+ risks associated with Your exercise of permissions under this License.
228
+
229
+ 8. Limitation of Liability. In no event and under no legal theory,
230
+ whether in tort (including negligence), contract, or otherwise,
231
+ unless required by applicable law (such as deliberate and grossly
232
+ negligent acts) or agreed to in writing, shall any Contributor be
233
+ liable to You for damages, including any direct, indirect, special,
234
+ incidental, or consequential damages of any character arising as a
235
+ result of this License or out of the use or inability to use the
236
+ Work (including but not limited to damages for loss of goodwill,
237
+ work stoppage, computer failure or malfunction, or any and all
238
+ other commercial damages or losses), even if such Contributor
239
+ has been advised of the possibility of such damages.
240
+
241
+ 9. Accepting Warranty or Additional Liability. While redistributing
242
+ the Work or Derivative Works thereof, You may choose to offer,
243
+ and charge a fee for, acceptance of support, warranty, indemnity,
244
+ or other liability obligations and/or rights consistent with this
245
+ License. However, in accepting such obligations, You may act only
246
+ on Your own behalf and on Your sole responsibility, not on behalf
247
+ of any other Contributor, and only if You agree to indemnify,
248
+ defend, and hold each Contributor harmless for any liability
249
+ incurred by, or claims asserted against, such Contributor by reason
250
+ of your accepting any such warranty or additional liability.
251
+
252
+ END OF TERMS AND CONDITIONS
253
+
254
+ APPENDIX: How to apply the Apache License to your work.
255
+
256
+ To apply the Apache License to your work, attach the following
257
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
258
+ replaced with your own identifying information. (Don&#x27;t include
259
+ the brackets!) The text should be enclosed in the appropriate
260
+ comment syntax for the file format. We also recommend that a
261
+ file or class name and description of purpose be included on the
262
+ same &quot;printed page&quot; as the copyright notice for easier
263
+ identification within third-party archives.
264
+
265
+ Copyright [yyyy] [name of copyright owner]
266
+
267
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
268
+ you may not use this file except in compliance with the License.
269
+ You may obtain a copy of the License at
270
+
271
+ http://www.apache.org/licenses/LICENSE-2.0
272
+
273
+ Unless required by applicable law or agreed to in writing, software
274
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
275
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
276
+ See the License for the specific language governing permissions and
277
+ limitations under the License.
278
+ </pre>
279
+ </li>
280
+ <li class="license">
281
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
282
+ <h4>Used by:</h4>
283
+ <ul class="license-used-by">
284
+ <li><a
285
+ href=" https://github.com/KyleMayes/clang-sys ">clang-sys
286
+ 1.8.1</a></li>
287
+ </ul>
288
+ <pre class="license-text">
289
+ Apache License
290
+ Version 2.0, January 2004
291
+ http://www.apache.org/licenses/
292
+
293
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
294
+
295
+ 1. Definitions.
296
+
297
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
298
+ and distribution as defined by Sections 1 through 9 of this document.
299
+
300
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
301
+ the copyright owner that is granting the License.
302
+
303
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
304
+ other entities that control, are controlled by, or are under common
305
+ control with that entity. For the purposes of this definition,
306
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
307
+ direction or management of such entity, whether by contract or
308
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
309
+ outstanding shares, or (iii) beneficial ownership of such entity.
310
+
311
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
312
+ exercising permissions granted by this License.
313
+
314
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
315
+ including but not limited to software source code, documentation
316
+ source, and configuration files.
317
+
318
+ &quot;Object&quot; form shall mean any form resulting from mechanical
319
+ transformation or translation of a Source form, including but
320
+ not limited to compiled object code, generated documentation,
321
+ and conversions to other media types.
322
+
323
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
324
+ Object form, made available under the License, as indicated by a
325
+ copyright notice that is included in or attached to the work
326
+ (an example is provided in the Appendix below).
327
+
328
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
329
+ form, that is based on (or derived from) the Work and for which the
330
+ editorial revisions, annotations, elaborations, or other modifications
331
+ represent, as a whole, an original work of authorship. For the purposes
332
+ of this License, Derivative Works shall not include works that remain
333
+ separable from, or merely link (or bind by name) to the interfaces of,
334
+ the Work and Derivative Works thereof.
335
+
336
+ &quot;Contribution&quot; shall mean any work of authorship, including
337
+ the original version of the Work and any modifications or additions
338
+ to that Work or Derivative Works thereof, that is intentionally
339
+ submitted to Licensor for inclusion in the Work by the copyright owner
340
+ or by an individual or Legal Entity authorized to submit on behalf of
341
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
342
+ means any form of electronic, verbal, or written communication sent
343
+ to the Licensor or its representatives, including but not limited to
344
+ communication on electronic mailing lists, source code control systems,
345
+ and issue tracking systems that are managed by, or on behalf of, the
346
+ Licensor for the purpose of discussing and improving the Work, but
347
+ excluding communication that is conspicuously marked or otherwise
348
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
349
+
350
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
351
+ on behalf of whom a Contribution has been received by Licensor and
352
+ subsequently incorporated within the Work.
353
+
354
+ 2. Grant of Copyright License. Subject to the terms and conditions of
355
+ this License, each Contributor hereby grants to You a perpetual,
356
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
357
+ copyright license to reproduce, prepare Derivative Works of,
358
+ publicly display, publicly perform, sublicense, and distribute the
359
+ Work and such Derivative Works in Source or Object form.
360
+
361
+ 3. Grant of Patent License. Subject to the terms and conditions of
362
+ this License, each Contributor hereby grants to You a perpetual,
363
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
364
+ (except as stated in this section) patent license to make, have made,
365
+ use, offer to sell, sell, import, and otherwise transfer the Work,
366
+ where such license applies only to those patent claims licensable
367
+ by such Contributor that are necessarily infringed by their
368
+ Contribution(s) alone or by combination of their Contribution(s)
369
+ with the Work to which such Contribution(s) was submitted. If You
370
+ institute patent litigation against any entity (including a
371
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
372
+ or a Contribution incorporated within the Work constitutes direct
373
+ or contributory patent infringement, then any patent licenses
374
+ granted to You under this License for that Work shall terminate
375
+ as of the date such litigation is filed.
376
+
377
+ 4. Redistribution. You may reproduce and distribute copies of the
378
+ Work or Derivative Works thereof in any medium, with or without
379
+ modifications, and in Source or Object form, provided that You
380
+ meet the following conditions:
381
+
382
+ (a) You must give any other recipients of the Work or
383
+ Derivative Works a copy of this License; and
384
+
385
+ (b) You must cause any modified files to carry prominent notices
386
+ stating that You changed the files; and
387
+
388
+ (c) You must retain, in the Source form of any Derivative Works
389
+ that You distribute, all copyright, patent, trademark, and
390
+ attribution notices from the Source form of the Work,
391
+ excluding those notices that do not pertain to any part of
392
+ the Derivative Works; and
393
+
394
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
395
+ distribution, then any Derivative Works that You distribute must
396
+ include a readable copy of the attribution notices contained
397
+ within such NOTICE file, excluding those notices that do not
398
+ pertain to any part of the Derivative Works, in at least one
399
+ of the following places: within a NOTICE text file distributed
400
+ as part of the Derivative Works; within the Source form or
401
+ documentation, if provided along with the Derivative Works; or,
402
+ within a display generated by the Derivative Works, if and
403
+ wherever such third-party notices normally appear. The contents
404
+ of the NOTICE file are for informational purposes only and
405
+ do not modify the License. You may add Your own attribution
406
+ notices within Derivative Works that You distribute, alongside
407
+ or as an addendum to the NOTICE text from the Work, provided
408
+ that such additional attribution notices cannot be construed
409
+ as modifying the License.
410
+
411
+ You may add Your own copyright statement to Your modifications and
412
+ may provide additional or different license terms and conditions
413
+ for use, reproduction, or distribution of Your modifications, or
414
+ for any such Derivative Works as a whole, provided Your use,
415
+ reproduction, and distribution of the Work otherwise complies with
416
+ the conditions stated in this License.
417
+
418
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
419
+ any Contribution intentionally submitted for inclusion in the Work
420
+ by You to the Licensor shall be under the terms and conditions of
421
+ this License, without any additional terms or conditions.
422
+ Notwithstanding the above, nothing herein shall supersede or modify
423
+ the terms of any separate license agreement you may have executed
424
+ with Licensor regarding such Contributions.
425
+
426
+ 6. Trademarks. This License does not grant permission to use the trade
427
+ names, trademarks, service marks, or product names of the Licensor,
428
+ except as required for reasonable and customary use in describing the
429
+ origin of the Work and reproducing the content of the NOTICE file.
430
+
431
+ 7. Disclaimer of Warranty. Unless required by applicable law or
432
+ agreed to in writing, Licensor provides the Work (and each
433
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
434
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
435
+ implied, including, without limitation, any warranties or conditions
436
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
437
+ PARTICULAR PURPOSE. You are solely responsible for determining the
438
+ appropriateness of using or redistributing the Work and assume any
439
+ risks associated with Your exercise of permissions under this License.
440
+
441
+ 8. Limitation of Liability. In no event and under no legal theory,
442
+ whether in tort (including negligence), contract, or otherwise,
443
+ unless required by applicable law (such as deliberate and grossly
444
+ negligent acts) or agreed to in writing, shall any Contributor be
445
+ liable to You for damages, including any direct, indirect, special,
446
+ incidental, or consequential damages of any character arising as a
447
+ result of this License or out of the use or inability to use the
448
+ Work (including but not limited to damages for loss of goodwill,
449
+ work stoppage, computer failure or malfunction, or any and all
450
+ other commercial damages or losses), even if such Contributor
451
+ has been advised of the possibility of such damages.
452
+
453
+ 9. Accepting Warranty or Additional Liability. While redistributing
454
+ the Work or Derivative Works thereof, You may choose to offer,
455
+ and charge a fee for, acceptance of support, warranty, indemnity,
456
+ or other liability obligations and/or rights consistent with this
457
+ License. However, in accepting such obligations, You may act only
458
+ on Your own behalf and on Your sole responsibility, not on behalf
459
+ of any other Contributor, and only if You agree to indemnify,
460
+ defend, and hold each Contributor harmless for any liability
461
+ incurred by, or claims asserted against, such Contributor by reason
462
+ of your accepting any such warranty or additional liability.
463
+
464
+ END OF TERMS AND CONDITIONS
465
+
466
+ APPENDIX: How to apply the Apache License to your work.
467
+
468
+ To apply the Apache License to your work, attach the following
469
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
470
+ replaced with your own identifying information. (Don&#x27;t include
471
+ the brackets!) The text should be enclosed in the appropriate
472
+ comment syntax for the file format. We also recommend that a
473
+ file or class name and description of purpose be included on the
474
+ same &quot;printed page&quot; as the copyright notice for easier
475
+ identification within third-party archives.
476
+
477
+ Copyright [yyyy] [name of copyright owner]
478
+
479
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
480
+ you may not use this file except in compliance with the License.
481
+ You may obtain a copy of the License at
482
+
483
+ http://www.apache.org/licenses/LICENSE-2.0
484
+
485
+ Unless required by applicable law or agreed to in writing, software
486
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
487
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
488
+ See the License for the specific language governing permissions and
489
+ limitations under the License.
490
+ </pre>
491
+ </li>
492
+ <li class="license">
493
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
494
+ <h4>Used by:</h4>
495
+ <ul class="license-used-by">
496
+ <li><a
497
+ href=" https://github.com/microsoft/windows-rs ">windows-core
498
+ 0.62.2</a></li>
499
+ <li><a
500
+ href=" https://github.com/microsoft/windows-rs ">windows-implement
501
+ 0.60.2</a></li>
502
+ <li><a
503
+ href=" https://github.com/microsoft/windows-rs ">windows-interface
504
+ 0.59.3</a></li>
505
+ <li><a
506
+ href=" https://github.com/microsoft/windows-rs ">windows-link
507
+ 0.1.3</a></li>
508
+ <li><a
509
+ href=" https://github.com/microsoft/windows-rs ">windows-link
510
+ 0.2.1</a></li>
511
+ <li><a
512
+ href=" https://github.com/microsoft/windows-rs ">windows-result
513
+ 0.4.1</a></li>
514
+ <li><a
515
+ href=" https://github.com/microsoft/windows-rs ">windows-strings
516
+ 0.5.1</a></li>
517
+ <li><a
518
+ href=" https://github.com/microsoft/windows-rs ">windows-sys
519
+ 0.59.0</a></li>
520
+ <li><a
521
+ href=" https://github.com/microsoft/windows-rs ">windows-sys
522
+ 0.60.2</a></li>
523
+ <li><a
524
+ href=" https://github.com/microsoft/windows-rs ">windows-targets
525
+ 0.52.6</a></li>
526
+ <li><a
527
+ href=" https://github.com/microsoft/windows-rs ">windows-targets
528
+ 0.53.3</a></li>
529
+ <li><a
530
+ href=" https://github.com/microsoft/windows-rs ">windows_aarch64_gnullvm
531
+ 0.52.6</a></li>
532
+ <li><a
533
+ href=" https://github.com/microsoft/windows-rs ">windows_aarch64_gnullvm
534
+ 0.53.0</a></li>
535
+ <li><a
536
+ href=" https://github.com/microsoft/windows-rs ">windows_aarch64_msvc
537
+ 0.52.6</a></li>
538
+ <li><a
539
+ href=" https://github.com/microsoft/windows-rs ">windows_aarch64_msvc
540
+ 0.53.0</a></li>
541
+ <li><a
542
+ href=" https://github.com/microsoft/windows-rs ">windows_i686_gnu
543
+ 0.52.6</a></li>
544
+ <li><a
545
+ href=" https://github.com/microsoft/windows-rs ">windows_i686_gnu
546
+ 0.53.0</a></li>
547
+ <li><a
548
+ href=" https://github.com/microsoft/windows-rs ">windows_i686_gnullvm
549
+ 0.52.6</a></li>
550
+ <li><a
551
+ href=" https://github.com/microsoft/windows-rs ">windows_i686_gnullvm
552
+ 0.53.0</a></li>
553
+ <li><a
554
+ href=" https://github.com/microsoft/windows-rs ">windows_i686_msvc
555
+ 0.52.6</a></li>
556
+ <li><a
557
+ href=" https://github.com/microsoft/windows-rs ">windows_i686_msvc
558
+ 0.53.0</a></li>
559
+ <li><a
560
+ href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnu
561
+ 0.52.6</a></li>
562
+ <li><a
563
+ href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnu
564
+ 0.53.0</a></li>
565
+ <li><a
566
+ href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnullvm
567
+ 0.52.6</a></li>
568
+ <li><a
569
+ href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnullvm
570
+ 0.53.0</a></li>
571
+ <li><a
572
+ href=" https://github.com/microsoft/windows-rs ">windows_x86_64_msvc
573
+ 0.52.6</a></li>
574
+ <li><a
575
+ href=" https://github.com/microsoft/windows-rs ">windows_x86_64_msvc
576
+ 0.53.0</a></li>
577
+ </ul>
578
+ <pre class="license-text"> Apache License
579
+ Version 2.0, January 2004
580
+ http://www.apache.org/licenses/
581
+
582
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
583
+
584
+ 1. Definitions.
585
+
586
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
587
+ and distribution as defined by Sections 1 through 9 of this document.
588
+
589
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
590
+ the copyright owner that is granting the License.
591
+
592
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
593
+ other entities that control, are controlled by, or are under common
594
+ control with that entity. For the purposes of this definition,
595
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
596
+ direction or management of such entity, whether by contract or
597
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
598
+ outstanding shares, or (iii) beneficial ownership of such entity.
599
+
600
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
601
+ exercising permissions granted by this License.
602
+
603
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
604
+ including but not limited to software source code, documentation
605
+ source, and configuration files.
606
+
607
+ &quot;Object&quot; form shall mean any form resulting from mechanical
608
+ transformation or translation of a Source form, including but
609
+ not limited to compiled object code, generated documentation,
610
+ and conversions to other media types.
611
+
612
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
613
+ Object form, made available under the License, as indicated by a
614
+ copyright notice that is included in or attached to the work
615
+ (an example is provided in the Appendix below).
616
+
617
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
618
+ form, that is based on (or derived from) the Work and for which the
619
+ editorial revisions, annotations, elaborations, or other modifications
620
+ represent, as a whole, an original work of authorship. For the purposes
621
+ of this License, Derivative Works shall not include works that remain
622
+ separable from, or merely link (or bind by name) to the interfaces of,
623
+ the Work and Derivative Works thereof.
624
+
625
+ &quot;Contribution&quot; shall mean any work of authorship, including
626
+ the original version of the Work and any modifications or additions
627
+ to that Work or Derivative Works thereof, that is intentionally
628
+ submitted to Licensor for inclusion in the Work by the copyright owner
629
+ or by an individual or Legal Entity authorized to submit on behalf of
630
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
631
+ means any form of electronic, verbal, or written communication sent
632
+ to the Licensor or its representatives, including but not limited to
633
+ communication on electronic mailing lists, source code control systems,
634
+ and issue tracking systems that are managed by, or on behalf of, the
635
+ Licensor for the purpose of discussing and improving the Work, but
636
+ excluding communication that is conspicuously marked or otherwise
637
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
638
+
639
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
640
+ on behalf of whom a Contribution has been received by Licensor and
641
+ subsequently incorporated within the Work.
642
+
643
+ 2. Grant of Copyright License. Subject to the terms and conditions of
644
+ this License, each Contributor hereby grants to You a perpetual,
645
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
646
+ copyright license to reproduce, prepare Derivative Works of,
647
+ publicly display, publicly perform, sublicense, and distribute the
648
+ Work and such Derivative Works in Source or Object form.
649
+
650
+ 3. Grant of Patent License. Subject to the terms and conditions of
651
+ this License, each Contributor hereby grants to You a perpetual,
652
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
653
+ (except as stated in this section) patent license to make, have made,
654
+ use, offer to sell, sell, import, and otherwise transfer the Work,
655
+ where such license applies only to those patent claims licensable
656
+ by such Contributor that are necessarily infringed by their
657
+ Contribution(s) alone or by combination of their Contribution(s)
658
+ with the Work to which such Contribution(s) was submitted. If You
659
+ institute patent litigation against any entity (including a
660
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
661
+ or a Contribution incorporated within the Work constitutes direct
662
+ or contributory patent infringement, then any patent licenses
663
+ granted to You under this License for that Work shall terminate
664
+ as of the date such litigation is filed.
665
+
666
+ 4. Redistribution. You may reproduce and distribute copies of the
667
+ Work or Derivative Works thereof in any medium, with or without
668
+ modifications, and in Source or Object form, provided that You
669
+ meet the following conditions:
670
+
671
+ (a) You must give any other recipients of the Work or
672
+ Derivative Works a copy of this License; and
673
+
674
+ (b) You must cause any modified files to carry prominent notices
675
+ stating that You changed the files; and
676
+
677
+ (c) You must retain, in the Source form of any Derivative Works
678
+ that You distribute, all copyright, patent, trademark, and
679
+ attribution notices from the Source form of the Work,
680
+ excluding those notices that do not pertain to any part of
681
+ the Derivative Works; and
682
+
683
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
684
+ distribution, then any Derivative Works that You distribute must
685
+ include a readable copy of the attribution notices contained
686
+ within such NOTICE file, excluding those notices that do not
687
+ pertain to any part of the Derivative Works, in at least one
688
+ of the following places: within a NOTICE text file distributed
689
+ as part of the Derivative Works; within the Source form or
690
+ documentation, if provided along with the Derivative Works; or,
691
+ within a display generated by the Derivative Works, if and
692
+ wherever such third-party notices normally appear. The contents
693
+ of the NOTICE file are for informational purposes only and
694
+ do not modify the License. You may add Your own attribution
695
+ notices within Derivative Works that You distribute, alongside
696
+ or as an addendum to the NOTICE text from the Work, provided
697
+ that such additional attribution notices cannot be construed
698
+ as modifying the License.
699
+
700
+ You may add Your own copyright statement to Your modifications and
701
+ may provide additional or different license terms and conditions
702
+ for use, reproduction, or distribution of Your modifications, or
703
+ for any such Derivative Works as a whole, provided Your use,
704
+ reproduction, and distribution of the Work otherwise complies with
705
+ the conditions stated in this License.
706
+
707
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
708
+ any Contribution intentionally submitted for inclusion in the Work
709
+ by You to the Licensor shall be under the terms and conditions of
710
+ this License, without any additional terms or conditions.
711
+ Notwithstanding the above, nothing herein shall supersede or modify
712
+ the terms of any separate license agreement you may have executed
713
+ with Licensor regarding such Contributions.
714
+
715
+ 6. Trademarks. This License does not grant permission to use the trade
716
+ names, trademarks, service marks, or product names of the Licensor,
717
+ except as required for reasonable and customary use in describing the
718
+ origin of the Work and reproducing the content of the NOTICE file.
719
+
720
+ 7. Disclaimer of Warranty. Unless required by applicable law or
721
+ agreed to in writing, Licensor provides the Work (and each
722
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
723
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
724
+ implied, including, without limitation, any warranties or conditions
725
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
726
+ PARTICULAR PURPOSE. You are solely responsible for determining the
727
+ appropriateness of using or redistributing the Work and assume any
728
+ risks associated with Your exercise of permissions under this License.
729
+
730
+ 8. Limitation of Liability. In no event and under no legal theory,
731
+ whether in tort (including negligence), contract, or otherwise,
732
+ unless required by applicable law (such as deliberate and grossly
733
+ negligent acts) or agreed to in writing, shall any Contributor be
734
+ liable to You for damages, including any direct, indirect, special,
735
+ incidental, or consequential damages of any character arising as a
736
+ result of this License or out of the use or inability to use the
737
+ Work (including but not limited to damages for loss of goodwill,
738
+ work stoppage, computer failure or malfunction, or any and all
739
+ other commercial damages or losses), even if such Contributor
740
+ has been advised of the possibility of such damages.
741
+
742
+ 9. Accepting Warranty or Additional Liability. While redistributing
743
+ the Work or Derivative Works thereof, You may choose to offer,
744
+ and charge a fee for, acceptance of support, warranty, indemnity,
745
+ or other liability obligations and/or rights consistent with this
746
+ License. However, in accepting such obligations, You may act only
747
+ on Your own behalf and on Your sole responsibility, not on behalf
748
+ of any other Contributor, and only if You agree to indemnify,
749
+ defend, and hold each Contributor harmless for any liability
750
+ incurred by, or claims asserted against, such Contributor by reason
751
+ of your accepting any such warranty or additional liability.
752
+
753
+ END OF TERMS AND CONDITIONS
754
+
755
+ APPENDIX: How to apply the Apache License to your work.
756
+
757
+ To apply the Apache License to your work, attach the following
758
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
759
+ replaced with your own identifying information. (Don&#x27;t include
760
+ the brackets!) The text should be enclosed in the appropriate
761
+ comment syntax for the file format. We also recommend that a
762
+ file or class name and description of purpose be included on the
763
+ same &quot;printed page&quot; as the copyright notice for easier
764
+ identification within third-party archives.
765
+
766
+ Copyright (c) Microsoft Corporation.
767
+
768
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
769
+ you may not use this file except in compliance with the License.
770
+ You may obtain a copy of the License at
771
+
772
+ http://www.apache.org/licenses/LICENSE-2.0
773
+
774
+ Unless required by applicable law or agreed to in writing, software
775
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
776
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
777
+ See the License for the specific language governing permissions and
778
+ limitations under the License.
779
+ </pre>
780
+ </li>
781
+ <li class="license">
782
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
783
+ <h4>Used by:</h4>
784
+ <ul class="license-used-by">
785
+ <li><a
786
+ href=" https://github.com/llogiq/bytecount ">bytecount
787
+ 0.6.9</a></li>
788
+ <li><a
789
+ href=" https://github.com/derekdreery/normalize-line-endings ">normalize-line-endings
790
+ 0.3.0</a></li>
791
+ <li><a
792
+ href=" https://github.com/assert-rs/predicates-rs/tree/master/crates/core ">predicates-core
793
+ 1.0.9</a></li>
794
+ <li><a
795
+ href=" https://github.com/assert-rs/predicates-rs/tree/master/crates/tree ">predicates-tree
796
+ 1.0.12</a></li>
797
+ <li><a
798
+ href=" https://github.com/assert-rs/predicates-rs ">predicates
799
+ 3.1.3</a></li>
800
+ </ul>
801
+ <pre class="license-text"> Apache License
802
+ Version 2.0, January 2004
803
+ http://www.apache.org/licenses/
804
+
805
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
806
+
807
+ 1. Definitions.
808
+
809
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
810
+ and distribution as defined by Sections 1 through 9 of this document.
811
+
812
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
813
+ the copyright owner that is granting the License.
814
+
815
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
816
+ other entities that control, are controlled by, or are under common
817
+ control with that entity. For the purposes of this definition,
818
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
819
+ direction or management of such entity, whether by contract or
820
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
821
+ outstanding shares, or (iii) beneficial ownership of such entity.
822
+
823
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
824
+ exercising permissions granted by this License.
825
+
826
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
827
+ including but not limited to software source code, documentation
828
+ source, and configuration files.
829
+
830
+ &quot;Object&quot; form shall mean any form resulting from mechanical
831
+ transformation or translation of a Source form, including but
832
+ not limited to compiled object code, generated documentation,
833
+ and conversions to other media types.
834
+
835
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
836
+ Object form, made available under the License, as indicated by a
837
+ copyright notice that is included in or attached to the work
838
+ (an example is provided in the Appendix below).
839
+
840
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
841
+ form, that is based on (or derived from) the Work and for which the
842
+ editorial revisions, annotations, elaborations, or other modifications
843
+ represent, as a whole, an original work of authorship. For the purposes
844
+ of this License, Derivative Works shall not include works that remain
845
+ separable from, or merely link (or bind by name) to the interfaces of,
846
+ the Work and Derivative Works thereof.
847
+
848
+ &quot;Contribution&quot; shall mean any work of authorship, including
849
+ the original version of the Work and any modifications or additions
850
+ to that Work or Derivative Works thereof, that is intentionally
851
+ submitted to Licensor for inclusion in the Work by the copyright owner
852
+ or by an individual or Legal Entity authorized to submit on behalf of
853
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
854
+ means any form of electronic, verbal, or written communication sent
855
+ to the Licensor or its representatives, including but not limited to
856
+ communication on electronic mailing lists, source code control systems,
857
+ and issue tracking systems that are managed by, or on behalf of, the
858
+ Licensor for the purpose of discussing and improving the Work, but
859
+ excluding communication that is conspicuously marked or otherwise
860
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
861
+
862
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
863
+ on behalf of whom a Contribution has been received by Licensor and
864
+ subsequently incorporated within the Work.
865
+
866
+ 2. Grant of Copyright License. Subject to the terms and conditions of
867
+ this License, each Contributor hereby grants to You a perpetual,
868
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
869
+ copyright license to reproduce, prepare Derivative Works of,
870
+ publicly display, publicly perform, sublicense, and distribute the
871
+ Work and such Derivative Works in Source or Object form.
872
+
873
+ 3. Grant of Patent License. Subject to the terms and conditions of
874
+ this License, each Contributor hereby grants to You a perpetual,
875
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
876
+ (except as stated in this section) patent license to make, have made,
877
+ use, offer to sell, sell, import, and otherwise transfer the Work,
878
+ where such license applies only to those patent claims licensable
879
+ by such Contributor that are necessarily infringed by their
880
+ Contribution(s) alone or by combination of their Contribution(s)
881
+ with the Work to which such Contribution(s) was submitted. If You
882
+ institute patent litigation against any entity (including a
883
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
884
+ or a Contribution incorporated within the Work constitutes direct
885
+ or contributory patent infringement, then any patent licenses
886
+ granted to You under this License for that Work shall terminate
887
+ as of the date such litigation is filed.
888
+
889
+ 4. Redistribution. You may reproduce and distribute copies of the
890
+ Work or Derivative Works thereof in any medium, with or without
891
+ modifications, and in Source or Object form, provided that You
892
+ meet the following conditions:
893
+
894
+ (a) You must give any other recipients of the Work or
895
+ Derivative Works a copy of this License; and
896
+
897
+ (b) You must cause any modified files to carry prominent notices
898
+ stating that You changed the files; and
899
+
900
+ (c) You must retain, in the Source form of any Derivative Works
901
+ that You distribute, all copyright, patent, trademark, and
902
+ attribution notices from the Source form of the Work,
903
+ excluding those notices that do not pertain to any part of
904
+ the Derivative Works; and
905
+
906
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
907
+ distribution, then any Derivative Works that You distribute must
908
+ include a readable copy of the attribution notices contained
909
+ within such NOTICE file, excluding those notices that do not
910
+ pertain to any part of the Derivative Works, in at least one
911
+ of the following places: within a NOTICE text file distributed
912
+ as part of the Derivative Works; within the Source form or
913
+ documentation, if provided along with the Derivative Works; or,
914
+ within a display generated by the Derivative Works, if and
915
+ wherever such third-party notices normally appear. The contents
916
+ of the NOTICE file are for informational purposes only and
917
+ do not modify the License. You may add Your own attribution
918
+ notices within Derivative Works that You distribute, alongside
919
+ or as an addendum to the NOTICE text from the Work, provided
920
+ that such additional attribution notices cannot be construed
921
+ as modifying the License.
922
+
923
+ You may add Your own copyright statement to Your modifications and
924
+ may provide additional or different license terms and conditions
925
+ for use, reproduction, or distribution of Your modifications, or
926
+ for any such Derivative Works as a whole, provided Your use,
927
+ reproduction, and distribution of the Work otherwise complies with
928
+ the conditions stated in this License.
929
+
930
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
931
+ any Contribution intentionally submitted for inclusion in the Work
932
+ by You to the Licensor shall be under the terms and conditions of
933
+ this License, without any additional terms or conditions.
934
+ Notwithstanding the above, nothing herein shall supersede or modify
935
+ the terms of any separate license agreement you may have executed
936
+ with Licensor regarding such Contributions.
937
+
938
+ 6. Trademarks. This License does not grant permission to use the trade
939
+ names, trademarks, service marks, or product names of the Licensor,
940
+ except as required for reasonable and customary use in describing the
941
+ origin of the Work and reproducing the content of the NOTICE file.
942
+
943
+ 7. Disclaimer of Warranty. Unless required by applicable law or
944
+ agreed to in writing, Licensor provides the Work (and each
945
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
946
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
947
+ implied, including, without limitation, any warranties or conditions
948
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
949
+ PARTICULAR PURPOSE. You are solely responsible for determining the
950
+ appropriateness of using or redistributing the Work and assume any
951
+ risks associated with Your exercise of permissions under this License.
952
+
953
+ 8. Limitation of Liability. In no event and under no legal theory,
954
+ whether in tort (including negligence), contract, or otherwise,
955
+ unless required by applicable law (such as deliberate and grossly
956
+ negligent acts) or agreed to in writing, shall any Contributor be
957
+ liable to You for damages, including any direct, indirect, special,
958
+ incidental, or consequential damages of any character arising as a
959
+ result of this License or out of the use or inability to use the
960
+ Work (including but not limited to damages for loss of goodwill,
961
+ work stoppage, computer failure or malfunction, or any and all
962
+ other commercial damages or losses), even if such Contributor
963
+ has been advised of the possibility of such damages.
964
+
965
+ 9. Accepting Warranty or Additional Liability. While redistributing
966
+ the Work or Derivative Works thereof, You may choose to offer,
967
+ and charge a fee for, acceptance of support, warranty, indemnity,
968
+ or other liability obligations and/or rights consistent with this
969
+ License. However, in accepting such obligations, You may act only
970
+ on Your own behalf and on Your sole responsibility, not on behalf
971
+ of any other Contributor, and only if You agree to indemnify,
972
+ defend, and hold each Contributor harmless for any liability
973
+ incurred by, or claims asserted against, such Contributor by reason
974
+ of your accepting any such warranty or additional liability.
975
+
976
+ END OF TERMS AND CONDITIONS
977
+
978
+ APPENDIX: How to apply the Apache License to your work.
979
+
980
+ To apply the Apache License to your work, attach the following
981
+ boilerplate notice, with the fields enclosed by brackets &quot;{}&quot;
982
+ replaced with your own identifying information. (Don&#x27;t include
983
+ the brackets!) The text should be enclosed in the appropriate
984
+ comment syntax for the file format. We also recommend that a
985
+ file or class name and description of purpose be included on the
986
+ same &quot;printed page&quot; as the copyright notice for easier
987
+ identification within third-party archives.
988
+
989
+ Copyright {yyyy} {name of copyright owner}
990
+
991
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
992
+ you may not use this file except in compliance with the License.
993
+ You may obtain a copy of the License at
994
+
995
+ http://www.apache.org/licenses/LICENSE-2.0
996
+
997
+ Unless required by applicable law or agreed to in writing, software
998
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
999
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1000
+ See the License for the specific language governing permissions and
1001
+ limitations under the License.
1002
+ </pre>
1003
+ </li>
1004
+ <li class="license">
1005
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
1006
+ <h4>Used by:</h4>
1007
+ <ul class="license-used-by">
1008
+ <li><a
1009
+ href=" https://github.com/rust-cli/anstyle.git ">anstream
1010
+ 0.6.19</a></li>
1011
+ <li><a
1012
+ href=" https://github.com/rust-cli/anstyle.git ">anstyle-parse
1013
+ 0.2.7</a></li>
1014
+ <li><a
1015
+ href=" https://github.com/rust-cli/anstyle.git ">anstyle-query
1016
+ 1.1.3</a></li>
1017
+ <li><a
1018
+ href=" https://github.com/rust-cli/anstyle.git ">anstyle-wincon
1019
+ 3.0.9</a></li>
1020
+ <li><a
1021
+ href=" https://github.com/rust-cli/anstyle.git ">anstyle
1022
+ 1.0.11</a></li>
1023
+ <li><a
1024
+ href=" https://github.com/assert-rs/assert_cmd.git ">assert_cmd
1025
+ 2.0.17</a></li>
1026
+ <li><a
1027
+ href=" https://github.com/clap-rs/clap ">clap
1028
+ 4.5.41</a></li>
1029
+ <li><a
1030
+ href=" https://github.com/clap-rs/clap ">clap_builder
1031
+ 4.5.41</a></li>
1032
+ <li><a
1033
+ href=" https://github.com/clap-rs/clap ">clap_derive
1034
+ 4.5.41</a></li>
1035
+ <li><a
1036
+ href=" https://github.com/clap-rs/clap ">clap_lex
1037
+ 0.7.5</a></li>
1038
+ <li><a
1039
+ href=" https://github.com/rust-cli/anstyle.git ">colorchoice
1040
+ 1.0.4</a></li>
1041
+ <li><a
1042
+ href=" https://github.com/polyfill-rs/is_terminal_polyfill ">is_terminal_polyfill
1043
+ 1.70.1</a></li>
1044
+ <li><a
1045
+ href=" https://github.com/polyfill-rs/once_cell_polyfill ">once_cell_polyfill
1046
+ 1.70.1</a></li>
1047
+ <li><a
1048
+ href=" https://github.com/toml-rs/toml ">serde_spanned
1049
+ 0.6.9</a></li>
1050
+ <li><a
1051
+ href=" https://github.com/toml-rs/toml ">toml
1052
+ 0.8.23</a></li>
1053
+ <li><a
1054
+ href=" https://github.com/toml-rs/toml ">toml_datetime
1055
+ 0.6.11</a></li>
1056
+ <li><a
1057
+ href=" https://github.com/toml-rs/toml ">toml_edit
1058
+ 0.22.27</a></li>
1059
+ <li><a
1060
+ href=" https://github.com/toml-rs/toml ">toml_write
1061
+ 0.1.2</a></li>
1062
+ </ul>
1063
+ <pre class="license-text"> Apache License
1064
+ Version 2.0, January 2004
1065
+ http://www.apache.org/licenses/
1066
+
1067
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1068
+
1069
+ 1. Definitions.
1070
+
1071
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
1072
+ and distribution as defined by Sections 1 through 9 of this document.
1073
+
1074
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
1075
+ the copyright owner that is granting the License.
1076
+
1077
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
1078
+ other entities that control, are controlled by, or are under common
1079
+ control with that entity. For the purposes of this definition,
1080
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
1081
+ direction or management of such entity, whether by contract or
1082
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1083
+ outstanding shares, or (iii) beneficial ownership of such entity.
1084
+
1085
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
1086
+ exercising permissions granted by this License.
1087
+
1088
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
1089
+ including but not limited to software source code, documentation
1090
+ source, and configuration files.
1091
+
1092
+ &quot;Object&quot; form shall mean any form resulting from mechanical
1093
+ transformation or translation of a Source form, including but
1094
+ not limited to compiled object code, generated documentation,
1095
+ and conversions to other media types.
1096
+
1097
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
1098
+ Object form, made available under the License, as indicated by a
1099
+ copyright notice that is included in or attached to the work
1100
+ (an example is provided in the Appendix below).
1101
+
1102
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
1103
+ form, that is based on (or derived from) the Work and for which the
1104
+ editorial revisions, annotations, elaborations, or other modifications
1105
+ represent, as a whole, an original work of authorship. For the purposes
1106
+ of this License, Derivative Works shall not include works that remain
1107
+ separable from, or merely link (or bind by name) to the interfaces of,
1108
+ the Work and Derivative Works thereof.
1109
+
1110
+ &quot;Contribution&quot; shall mean any work of authorship, including
1111
+ the original version of the Work and any modifications or additions
1112
+ to that Work or Derivative Works thereof, that is intentionally
1113
+ submitted to Licensor for inclusion in the Work by the copyright owner
1114
+ or by an individual or Legal Entity authorized to submit on behalf of
1115
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
1116
+ means any form of electronic, verbal, or written communication sent
1117
+ to the Licensor or its representatives, including but not limited to
1118
+ communication on electronic mailing lists, source code control systems,
1119
+ and issue tracking systems that are managed by, or on behalf of, the
1120
+ Licensor for the purpose of discussing and improving the Work, but
1121
+ excluding communication that is conspicuously marked or otherwise
1122
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
1123
+
1124
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
1125
+ on behalf of whom a Contribution has been received by Licensor and
1126
+ subsequently incorporated within the Work.
1127
+
1128
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1129
+ this License, each Contributor hereby grants to You a perpetual,
1130
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1131
+ copyright license to reproduce, prepare Derivative Works of,
1132
+ publicly display, publicly perform, sublicense, and distribute the
1133
+ Work and such Derivative Works in Source or Object form.
1134
+
1135
+ 3. Grant of Patent License. Subject to the terms and conditions of
1136
+ this License, each Contributor hereby grants to You a perpetual,
1137
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1138
+ (except as stated in this section) patent license to make, have made,
1139
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1140
+ where such license applies only to those patent claims licensable
1141
+ by such Contributor that are necessarily infringed by their
1142
+ Contribution(s) alone or by combination of their Contribution(s)
1143
+ with the Work to which such Contribution(s) was submitted. If You
1144
+ institute patent litigation against any entity (including a
1145
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1146
+ or a Contribution incorporated within the Work constitutes direct
1147
+ or contributory patent infringement, then any patent licenses
1148
+ granted to You under this License for that Work shall terminate
1149
+ as of the date such litigation is filed.
1150
+
1151
+ 4. Redistribution. You may reproduce and distribute copies of the
1152
+ Work or Derivative Works thereof in any medium, with or without
1153
+ modifications, and in Source or Object form, provided that You
1154
+ meet the following conditions:
1155
+
1156
+ (a) You must give any other recipients of the Work or
1157
+ Derivative Works a copy of this License; and
1158
+
1159
+ (b) You must cause any modified files to carry prominent notices
1160
+ stating that You changed the files; and
1161
+
1162
+ (c) You must retain, in the Source form of any Derivative Works
1163
+ that You distribute, all copyright, patent, trademark, and
1164
+ attribution notices from the Source form of the Work,
1165
+ excluding those notices that do not pertain to any part of
1166
+ the Derivative Works; and
1167
+
1168
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
1169
+ distribution, then any Derivative Works that You distribute must
1170
+ include a readable copy of the attribution notices contained
1171
+ within such NOTICE file, excluding those notices that do not
1172
+ pertain to any part of the Derivative Works, in at least one
1173
+ of the following places: within a NOTICE text file distributed
1174
+ as part of the Derivative Works; within the Source form or
1175
+ documentation, if provided along with the Derivative Works; or,
1176
+ within a display generated by the Derivative Works, if and
1177
+ wherever such third-party notices normally appear. The contents
1178
+ of the NOTICE file are for informational purposes only and
1179
+ do not modify the License. You may add Your own attribution
1180
+ notices within Derivative Works that You distribute, alongside
1181
+ or as an addendum to the NOTICE text from the Work, provided
1182
+ that such additional attribution notices cannot be construed
1183
+ as modifying the License.
1184
+
1185
+ You may add Your own copyright statement to Your modifications and
1186
+ may provide additional or different license terms and conditions
1187
+ for use, reproduction, or distribution of Your modifications, or
1188
+ for any such Derivative Works as a whole, provided Your use,
1189
+ reproduction, and distribution of the Work otherwise complies with
1190
+ the conditions stated in this License.
1191
+
1192
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1193
+ any Contribution intentionally submitted for inclusion in the Work
1194
+ by You to the Licensor shall be under the terms and conditions of
1195
+ this License, without any additional terms or conditions.
1196
+ Notwithstanding the above, nothing herein shall supersede or modify
1197
+ the terms of any separate license agreement you may have executed
1198
+ with Licensor regarding such Contributions.
1199
+
1200
+ 6. Trademarks. This License does not grant permission to use the trade
1201
+ names, trademarks, service marks, or product names of the Licensor,
1202
+ except as required for reasonable and customary use in describing the
1203
+ origin of the Work and reproducing the content of the NOTICE file.
1204
+
1205
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1206
+ agreed to in writing, Licensor provides the Work (and each
1207
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
1208
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1209
+ implied, including, without limitation, any warranties or conditions
1210
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1211
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1212
+ appropriateness of using or redistributing the Work and assume any
1213
+ risks associated with Your exercise of permissions under this License.
1214
+
1215
+ 8. Limitation of Liability. In no event and under no legal theory,
1216
+ whether in tort (including negligence), contract, or otherwise,
1217
+ unless required by applicable law (such as deliberate and grossly
1218
+ negligent acts) or agreed to in writing, shall any Contributor be
1219
+ liable to You for damages, including any direct, indirect, special,
1220
+ incidental, or consequential damages of any character arising as a
1221
+ result of this License or out of the use or inability to use the
1222
+ Work (including but not limited to damages for loss of goodwill,
1223
+ work stoppage, computer failure or malfunction, or any and all
1224
+ other commercial damages or losses), even if such Contributor
1225
+ has been advised of the possibility of such damages.
1226
+
1227
+ 9. Accepting Warranty or Additional Liability. While redistributing
1228
+ the Work or Derivative Works thereof, You may choose to offer,
1229
+ and charge a fee for, acceptance of support, warranty, indemnity,
1230
+ or other liability obligations and/or rights consistent with this
1231
+ License. However, in accepting such obligations, You may act only
1232
+ on Your own behalf and on Your sole responsibility, not on behalf
1233
+ of any other Contributor, and only if You agree to indemnify,
1234
+ defend, and hold each Contributor harmless for any liability
1235
+ incurred by, or claims asserted against, such Contributor by reason
1236
+ of your accepting any such warranty or additional liability.
1237
+
1238
+ END OF TERMS AND CONDITIONS
1239
+
1240
+ APPENDIX: How to apply the Apache License to your work.
1241
+
1242
+ To apply the Apache License to your work, attach the following
1243
+ boilerplate notice, with the fields enclosed by brackets &quot;{}&quot;
1244
+ replaced with your own identifying information. (Don&#x27;t include
1245
+ the brackets!) The text should be enclosed in the appropriate
1246
+ comment syntax for the file format. We also recommend that a
1247
+ file or class name and description of purpose be included on the
1248
+ same &quot;printed page&quot; as the copyright notice for easier
1249
+ identification within third-party archives.
1250
+
1251
+ Copyright {yyyy} {name of copyright owner}
1252
+
1253
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
1254
+ you may not use this file except in compliance with the License.
1255
+ You may obtain a copy of the License at
1256
+
1257
+ http://www.apache.org/licenses/LICENSE-2.0
1258
+
1259
+ Unless required by applicable law or agreed to in writing, software
1260
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
1261
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1262
+ See the License for the specific language governing permissions and
1263
+ limitations under the License.
1264
+
1265
+ </pre>
1266
+ </li>
1267
+ <li class="license">
1268
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
1269
+ <h4>Used by:</h4>
1270
+ <ul class="license-used-by">
1271
+ <li><a
1272
+ href=" https://github.com/rust-lang/futures-rs ">futures-channel
1273
+ 0.3.31</a></li>
1274
+ <li><a
1275
+ href=" https://github.com/rust-lang/futures-rs ">futures-core
1276
+ 0.3.31</a></li>
1277
+ <li><a
1278
+ href=" https://github.com/rust-lang/futures-rs ">futures-executor
1279
+ 0.3.31</a></li>
1280
+ <li><a
1281
+ href=" https://github.com/rust-lang/futures-rs ">futures-io
1282
+ 0.3.31</a></li>
1283
+ <li><a
1284
+ href=" https://github.com/rust-lang/futures-rs ">futures-macro
1285
+ 0.3.31</a></li>
1286
+ <li><a
1287
+ href=" https://github.com/rust-lang/futures-rs ">futures-sink
1288
+ 0.3.31</a></li>
1289
+ <li><a
1290
+ href=" https://github.com/rust-lang/futures-rs ">futures-task
1291
+ 0.3.31</a></li>
1292
+ <li><a
1293
+ href=" https://github.com/rust-lang/futures-rs ">futures-util
1294
+ 0.3.31</a></li>
1295
+ <li><a
1296
+ href=" https://github.com/rust-lang/futures-rs ">futures
1297
+ 0.3.31</a></li>
1298
+ </ul>
1299
+ <pre class="license-text"> Apache License
1300
+ Version 2.0, January 2004
1301
+ http://www.apache.org/licenses/
1302
+
1303
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1304
+
1305
+ 1. Definitions.
1306
+
1307
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
1308
+ and distribution as defined by Sections 1 through 9 of this document.
1309
+
1310
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
1311
+ the copyright owner that is granting the License.
1312
+
1313
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
1314
+ other entities that control, are controlled by, or are under common
1315
+ control with that entity. For the purposes of this definition,
1316
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
1317
+ direction or management of such entity, whether by contract or
1318
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1319
+ outstanding shares, or (iii) beneficial ownership of such entity.
1320
+
1321
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
1322
+ exercising permissions granted by this License.
1323
+
1324
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
1325
+ including but not limited to software source code, documentation
1326
+ source, and configuration files.
1327
+
1328
+ &quot;Object&quot; form shall mean any form resulting from mechanical
1329
+ transformation or translation of a Source form, including but
1330
+ not limited to compiled object code, generated documentation,
1331
+ and conversions to other media types.
1332
+
1333
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
1334
+ Object form, made available under the License, as indicated by a
1335
+ copyright notice that is included in or attached to the work
1336
+ (an example is provided in the Appendix below).
1337
+
1338
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
1339
+ form, that is based on (or derived from) the Work and for which the
1340
+ editorial revisions, annotations, elaborations, or other modifications
1341
+ represent, as a whole, an original work of authorship. For the purposes
1342
+ of this License, Derivative Works shall not include works that remain
1343
+ separable from, or merely link (or bind by name) to the interfaces of,
1344
+ the Work and Derivative Works thereof.
1345
+
1346
+ &quot;Contribution&quot; shall mean any work of authorship, including
1347
+ the original version of the Work and any modifications or additions
1348
+ to that Work or Derivative Works thereof, that is intentionally
1349
+ submitted to Licensor for inclusion in the Work by the copyright owner
1350
+ or by an individual or Legal Entity authorized to submit on behalf of
1351
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
1352
+ means any form of electronic, verbal, or written communication sent
1353
+ to the Licensor or its representatives, including but not limited to
1354
+ communication on electronic mailing lists, source code control systems,
1355
+ and issue tracking systems that are managed by, or on behalf of, the
1356
+ Licensor for the purpose of discussing and improving the Work, but
1357
+ excluding communication that is conspicuously marked or otherwise
1358
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
1359
+
1360
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
1361
+ on behalf of whom a Contribution has been received by Licensor and
1362
+ subsequently incorporated within the Work.
1363
+
1364
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1365
+ this License, each Contributor hereby grants to You a perpetual,
1366
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1367
+ copyright license to reproduce, prepare Derivative Works of,
1368
+ publicly display, publicly perform, sublicense, and distribute the
1369
+ Work and such Derivative Works in Source or Object form.
1370
+
1371
+ 3. Grant of Patent License. Subject to the terms and conditions of
1372
+ this License, each Contributor hereby grants to You a perpetual,
1373
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1374
+ (except as stated in this section) patent license to make, have made,
1375
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1376
+ where such license applies only to those patent claims licensable
1377
+ by such Contributor that are necessarily infringed by their
1378
+ Contribution(s) alone or by combination of their Contribution(s)
1379
+ with the Work to which such Contribution(s) was submitted. If You
1380
+ institute patent litigation against any entity (including a
1381
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1382
+ or a Contribution incorporated within the Work constitutes direct
1383
+ or contributory patent infringement, then any patent licenses
1384
+ granted to You under this License for that Work shall terminate
1385
+ as of the date such litigation is filed.
1386
+
1387
+ 4. Redistribution. You may reproduce and distribute copies of the
1388
+ Work or Derivative Works thereof in any medium, with or without
1389
+ modifications, and in Source or Object form, provided that You
1390
+ meet the following conditions:
1391
+
1392
+ (a) You must give any other recipients of the Work or
1393
+ Derivative Works a copy of this License; and
1394
+
1395
+ (b) You must cause any modified files to carry prominent notices
1396
+ stating that You changed the files; and
1397
+
1398
+ (c) You must retain, in the Source form of any Derivative Works
1399
+ that You distribute, all copyright, patent, trademark, and
1400
+ attribution notices from the Source form of the Work,
1401
+ excluding those notices that do not pertain to any part of
1402
+ the Derivative Works; and
1403
+
1404
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
1405
+ distribution, then any Derivative Works that You distribute must
1406
+ include a readable copy of the attribution notices contained
1407
+ within such NOTICE file, excluding those notices that do not
1408
+ pertain to any part of the Derivative Works, in at least one
1409
+ of the following places: within a NOTICE text file distributed
1410
+ as part of the Derivative Works; within the Source form or
1411
+ documentation, if provided along with the Derivative Works; or,
1412
+ within a display generated by the Derivative Works, if and
1413
+ wherever such third-party notices normally appear. The contents
1414
+ of the NOTICE file are for informational purposes only and
1415
+ do not modify the License. You may add Your own attribution
1416
+ notices within Derivative Works that You distribute, alongside
1417
+ or as an addendum to the NOTICE text from the Work, provided
1418
+ that such additional attribution notices cannot be construed
1419
+ as modifying the License.
1420
+
1421
+ You may add Your own copyright statement to Your modifications and
1422
+ may provide additional or different license terms and conditions
1423
+ for use, reproduction, or distribution of Your modifications, or
1424
+ for any such Derivative Works as a whole, provided Your use,
1425
+ reproduction, and distribution of the Work otherwise complies with
1426
+ the conditions stated in this License.
1427
+
1428
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1429
+ any Contribution intentionally submitted for inclusion in the Work
1430
+ by You to the Licensor shall be under the terms and conditions of
1431
+ this License, without any additional terms or conditions.
1432
+ Notwithstanding the above, nothing herein shall supersede or modify
1433
+ the terms of any separate license agreement you may have executed
1434
+ with Licensor regarding such Contributions.
1435
+
1436
+ 6. Trademarks. This License does not grant permission to use the trade
1437
+ names, trademarks, service marks, or product names of the Licensor,
1438
+ except as required for reasonable and customary use in describing the
1439
+ origin of the Work and reproducing the content of the NOTICE file.
1440
+
1441
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1442
+ agreed to in writing, Licensor provides the Work (and each
1443
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
1444
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1445
+ implied, including, without limitation, any warranties or conditions
1446
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1447
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1448
+ appropriateness of using or redistributing the Work and assume any
1449
+ risks associated with Your exercise of permissions under this License.
1450
+
1451
+ 8. Limitation of Liability. In no event and under no legal theory,
1452
+ whether in tort (including negligence), contract, or otherwise,
1453
+ unless required by applicable law (such as deliberate and grossly
1454
+ negligent acts) or agreed to in writing, shall any Contributor be
1455
+ liable to You for damages, including any direct, indirect, special,
1456
+ incidental, or consequential damages of any character arising as a
1457
+ result of this License or out of the use or inability to use the
1458
+ Work (including but not limited to damages for loss of goodwill,
1459
+ work stoppage, computer failure or malfunction, or any and all
1460
+ other commercial damages or losses), even if such Contributor
1461
+ has been advised of the possibility of such damages.
1462
+
1463
+ 9. Accepting Warranty or Additional Liability. While redistributing
1464
+ the Work or Derivative Works thereof, You may choose to offer,
1465
+ and charge a fee for, acceptance of support, warranty, indemnity,
1466
+ or other liability obligations and/or rights consistent with this
1467
+ License. However, in accepting such obligations, You may act only
1468
+ on Your own behalf and on Your sole responsibility, not on behalf
1469
+ of any other Contributor, and only if You agree to indemnify,
1470
+ defend, and hold each Contributor harmless for any liability
1471
+ incurred by, or claims asserted against, such Contributor by reason
1472
+ of your accepting any such warranty or additional liability.
1473
+
1474
+ END OF TERMS AND CONDITIONS
1475
+
1476
+ APPENDIX: How to apply the Apache License to your work.
1477
+
1478
+ To apply the Apache License to your work, attach the following
1479
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
1480
+ replaced with your own identifying information. (Don&#x27;t include
1481
+ the brackets!) The text should be enclosed in the appropriate
1482
+ comment syntax for the file format. We also recommend that a
1483
+ file or class name and description of purpose be included on the
1484
+ same &quot;printed page&quot; as the copyright notice for easier
1485
+ identification within third-party archives.
1486
+
1487
+ Copyright (c) 2016 Alex Crichton
1488
+ Copyright (c) 2017 The Tokio Authors
1489
+
1490
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
1491
+ you may not use this file except in compliance with the License.
1492
+ You may obtain a copy of the License at
1493
+
1494
+ http://www.apache.org/licenses/LICENSE-2.0
1495
+
1496
+ Unless required by applicable law or agreed to in writing, software
1497
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
1498
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1499
+ See the License for the specific language governing permissions and
1500
+ limitations under the License.
1501
+ </pre>
1502
+ </li>
1503
+ <li class="license">
1504
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
1505
+ <h4>Used by:</h4>
1506
+ <ul class="license-used-by">
1507
+ <li><a
1508
+ href=" https://github.com/rust-lang-nursery/pin-utils ">pin-utils
1509
+ 0.1.0</a></li>
1510
+ </ul>
1511
+ <pre class="license-text"> Apache License
1512
+ Version 2.0, January 2004
1513
+ http://www.apache.org/licenses/
1514
+
1515
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1516
+
1517
+ 1. Definitions.
1518
+
1519
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
1520
+ and distribution as defined by Sections 1 through 9 of this document.
1521
+
1522
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
1523
+ the copyright owner that is granting the License.
1524
+
1525
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
1526
+ other entities that control, are controlled by, or are under common
1527
+ control with that entity. For the purposes of this definition,
1528
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
1529
+ direction or management of such entity, whether by contract or
1530
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1531
+ outstanding shares, or (iii) beneficial ownership of such entity.
1532
+
1533
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
1534
+ exercising permissions granted by this License.
1535
+
1536
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
1537
+ including but not limited to software source code, documentation
1538
+ source, and configuration files.
1539
+
1540
+ &quot;Object&quot; form shall mean any form resulting from mechanical
1541
+ transformation or translation of a Source form, including but
1542
+ not limited to compiled object code, generated documentation,
1543
+ and conversions to other media types.
1544
+
1545
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
1546
+ Object form, made available under the License, as indicated by a
1547
+ copyright notice that is included in or attached to the work
1548
+ (an example is provided in the Appendix below).
1549
+
1550
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
1551
+ form, that is based on (or derived from) the Work and for which the
1552
+ editorial revisions, annotations, elaborations, or other modifications
1553
+ represent, as a whole, an original work of authorship. For the purposes
1554
+ of this License, Derivative Works shall not include works that remain
1555
+ separable from, or merely link (or bind by name) to the interfaces of,
1556
+ the Work and Derivative Works thereof.
1557
+
1558
+ &quot;Contribution&quot; shall mean any work of authorship, including
1559
+ the original version of the Work and any modifications or additions
1560
+ to that Work or Derivative Works thereof, that is intentionally
1561
+ submitted to Licensor for inclusion in the Work by the copyright owner
1562
+ or by an individual or Legal Entity authorized to submit on behalf of
1563
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
1564
+ means any form of electronic, verbal, or written communication sent
1565
+ to the Licensor or its representatives, including but not limited to
1566
+ communication on electronic mailing lists, source code control systems,
1567
+ and issue tracking systems that are managed by, or on behalf of, the
1568
+ Licensor for the purpose of discussing and improving the Work, but
1569
+ excluding communication that is conspicuously marked or otherwise
1570
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
1571
+
1572
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
1573
+ on behalf of whom a Contribution has been received by Licensor and
1574
+ subsequently incorporated within the Work.
1575
+
1576
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1577
+ this License, each Contributor hereby grants to You a perpetual,
1578
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1579
+ copyright license to reproduce, prepare Derivative Works of,
1580
+ publicly display, publicly perform, sublicense, and distribute the
1581
+ Work and such Derivative Works in Source or Object form.
1582
+
1583
+ 3. Grant of Patent License. Subject to the terms and conditions of
1584
+ this License, each Contributor hereby grants to You a perpetual,
1585
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1586
+ (except as stated in this section) patent license to make, have made,
1587
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1588
+ where such license applies only to those patent claims licensable
1589
+ by such Contributor that are necessarily infringed by their
1590
+ Contribution(s) alone or by combination of their Contribution(s)
1591
+ with the Work to which such Contribution(s) was submitted. If You
1592
+ institute patent litigation against any entity (including a
1593
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1594
+ or a Contribution incorporated within the Work constitutes direct
1595
+ or contributory patent infringement, then any patent licenses
1596
+ granted to You under this License for that Work shall terminate
1597
+ as of the date such litigation is filed.
1598
+
1599
+ 4. Redistribution. You may reproduce and distribute copies of the
1600
+ Work or Derivative Works thereof in any medium, with or without
1601
+ modifications, and in Source or Object form, provided that You
1602
+ meet the following conditions:
1603
+
1604
+ (a) You must give any other recipients of the Work or
1605
+ Derivative Works a copy of this License; and
1606
+
1607
+ (b) You must cause any modified files to carry prominent notices
1608
+ stating that You changed the files; and
1609
+
1610
+ (c) You must retain, in the Source form of any Derivative Works
1611
+ that You distribute, all copyright, patent, trademark, and
1612
+ attribution notices from the Source form of the Work,
1613
+ excluding those notices that do not pertain to any part of
1614
+ the Derivative Works; and
1615
+
1616
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
1617
+ distribution, then any Derivative Works that You distribute must
1618
+ include a readable copy of the attribution notices contained
1619
+ within such NOTICE file, excluding those notices that do not
1620
+ pertain to any part of the Derivative Works, in at least one
1621
+ of the following places: within a NOTICE text file distributed
1622
+ as part of the Derivative Works; within the Source form or
1623
+ documentation, if provided along with the Derivative Works; or,
1624
+ within a display generated by the Derivative Works, if and
1625
+ wherever such third-party notices normally appear. The contents
1626
+ of the NOTICE file are for informational purposes only and
1627
+ do not modify the License. You may add Your own attribution
1628
+ notices within Derivative Works that You distribute, alongside
1629
+ or as an addendum to the NOTICE text from the Work, provided
1630
+ that such additional attribution notices cannot be construed
1631
+ as modifying the License.
1632
+
1633
+ You may add Your own copyright statement to Your modifications and
1634
+ may provide additional or different license terms and conditions
1635
+ for use, reproduction, or distribution of Your modifications, or
1636
+ for any such Derivative Works as a whole, provided Your use,
1637
+ reproduction, and distribution of the Work otherwise complies with
1638
+ the conditions stated in this License.
1639
+
1640
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1641
+ any Contribution intentionally submitted for inclusion in the Work
1642
+ by You to the Licensor shall be under the terms and conditions of
1643
+ this License, without any additional terms or conditions.
1644
+ Notwithstanding the above, nothing herein shall supersede or modify
1645
+ the terms of any separate license agreement you may have executed
1646
+ with Licensor regarding such Contributions.
1647
+
1648
+ 6. Trademarks. This License does not grant permission to use the trade
1649
+ names, trademarks, service marks, or product names of the Licensor,
1650
+ except as required for reasonable and customary use in describing the
1651
+ origin of the Work and reproducing the content of the NOTICE file.
1652
+
1653
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1654
+ agreed to in writing, Licensor provides the Work (and each
1655
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
1656
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1657
+ implied, including, without limitation, any warranties or conditions
1658
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1659
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1660
+ appropriateness of using or redistributing the Work and assume any
1661
+ risks associated with Your exercise of permissions under this License.
1662
+
1663
+ 8. Limitation of Liability. In no event and under no legal theory,
1664
+ whether in tort (including negligence), contract, or otherwise,
1665
+ unless required by applicable law (such as deliberate and grossly
1666
+ negligent acts) or agreed to in writing, shall any Contributor be
1667
+ liable to You for damages, including any direct, indirect, special,
1668
+ incidental, or consequential damages of any character arising as a
1669
+ result of this License or out of the use or inability to use the
1670
+ Work (including but not limited to damages for loss of goodwill,
1671
+ work stoppage, computer failure or malfunction, or any and all
1672
+ other commercial damages or losses), even if such Contributor
1673
+ has been advised of the possibility of such damages.
1674
+
1675
+ 9. Accepting Warranty or Additional Liability. While redistributing
1676
+ the Work or Derivative Works thereof, You may choose to offer,
1677
+ and charge a fee for, acceptance of support, warranty, indemnity,
1678
+ or other liability obligations and/or rights consistent with this
1679
+ License. However, in accepting such obligations, You may act only
1680
+ on Your own behalf and on Your sole responsibility, not on behalf
1681
+ of any other Contributor, and only if You agree to indemnify,
1682
+ defend, and hold each Contributor harmless for any liability
1683
+ incurred by, or claims asserted against, such Contributor by reason
1684
+ of your accepting any such warranty or additional liability.
1685
+
1686
+ END OF TERMS AND CONDITIONS
1687
+
1688
+ APPENDIX: How to apply the Apache License to your work.
1689
+
1690
+ To apply the Apache License to your work, attach the following
1691
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
1692
+ replaced with your own identifying information. (Don&#x27;t include
1693
+ the brackets!) The text should be enclosed in the appropriate
1694
+ comment syntax for the file format. We also recommend that a
1695
+ file or class name and description of purpose be included on the
1696
+ same &quot;printed page&quot; as the copyright notice for easier
1697
+ identification within third-party archives.
1698
+
1699
+ Copyright 2018 The pin-utils authors
1700
+
1701
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
1702
+ you may not use this file except in compliance with the License.
1703
+ You may obtain a copy of the License at
1704
+
1705
+ http://www.apache.org/licenses/LICENSE-2.0
1706
+
1707
+ Unless required by applicable law or agreed to in writing, software
1708
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
1709
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1710
+ See the License for the specific language governing permissions and
1711
+ limitations under the License.
1712
+ </pre>
1713
+ </li>
1714
+ <li class="license">
1715
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
1716
+ <h4>Used by:</h4>
1717
+ <ul class="license-used-by">
1718
+ <li><a
1719
+ href=" https://github.com/strawlab/iana-time-zone ">iana-time-zone-haiku
1720
+ 0.1.2</a></li>
1721
+ <li><a
1722
+ href=" https://github.com/strawlab/iana-time-zone ">iana-time-zone
1723
+ 0.1.65</a></li>
1724
+ </ul>
1725
+ <pre class="license-text"> Apache License
1726
+ Version 2.0, January 2004
1727
+ http://www.apache.org/licenses/
1728
+
1729
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1730
+
1731
+ 1. Definitions.
1732
+
1733
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
1734
+ and distribution as defined by Sections 1 through 9 of this document.
1735
+
1736
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
1737
+ the copyright owner that is granting the License.
1738
+
1739
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
1740
+ other entities that control, are controlled by, or are under common
1741
+ control with that entity. For the purposes of this definition,
1742
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
1743
+ direction or management of such entity, whether by contract or
1744
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1745
+ outstanding shares, or (iii) beneficial ownership of such entity.
1746
+
1747
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
1748
+ exercising permissions granted by this License.
1749
+
1750
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
1751
+ including but not limited to software source code, documentation
1752
+ source, and configuration files.
1753
+
1754
+ &quot;Object&quot; form shall mean any form resulting from mechanical
1755
+ transformation or translation of a Source form, including but
1756
+ not limited to compiled object code, generated documentation,
1757
+ and conversions to other media types.
1758
+
1759
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
1760
+ Object form, made available under the License, as indicated by a
1761
+ copyright notice that is included in or attached to the work
1762
+ (an example is provided in the Appendix below).
1763
+
1764
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
1765
+ form, that is based on (or derived from) the Work and for which the
1766
+ editorial revisions, annotations, elaborations, or other modifications
1767
+ represent, as a whole, an original work of authorship. For the purposes
1768
+ of this License, Derivative Works shall not include works that remain
1769
+ separable from, or merely link (or bind by name) to the interfaces of,
1770
+ the Work and Derivative Works thereof.
1771
+
1772
+ &quot;Contribution&quot; shall mean any work of authorship, including
1773
+ the original version of the Work and any modifications or additions
1774
+ to that Work or Derivative Works thereof, that is intentionally
1775
+ submitted to Licensor for inclusion in the Work by the copyright owner
1776
+ or by an individual or Legal Entity authorized to submit on behalf of
1777
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
1778
+ means any form of electronic, verbal, or written communication sent
1779
+ to the Licensor or its representatives, including but not limited to
1780
+ communication on electronic mailing lists, source code control systems,
1781
+ and issue tracking systems that are managed by, or on behalf of, the
1782
+ Licensor for the purpose of discussing and improving the Work, but
1783
+ excluding communication that is conspicuously marked or otherwise
1784
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
1785
+
1786
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
1787
+ on behalf of whom a Contribution has been received by Licensor and
1788
+ subsequently incorporated within the Work.
1789
+
1790
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1791
+ this License, each Contributor hereby grants to You a perpetual,
1792
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1793
+ copyright license to reproduce, prepare Derivative Works of,
1794
+ publicly display, publicly perform, sublicense, and distribute the
1795
+ Work and such Derivative Works in Source or Object form.
1796
+
1797
+ 3. Grant of Patent License. Subject to the terms and conditions of
1798
+ this License, each Contributor hereby grants to You a perpetual,
1799
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1800
+ (except as stated in this section) patent license to make, have made,
1801
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1802
+ where such license applies only to those patent claims licensable
1803
+ by such Contributor that are necessarily infringed by their
1804
+ Contribution(s) alone or by combination of their Contribution(s)
1805
+ with the Work to which such Contribution(s) was submitted. If You
1806
+ institute patent litigation against any entity (including a
1807
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1808
+ or a Contribution incorporated within the Work constitutes direct
1809
+ or contributory patent infringement, then any patent licenses
1810
+ granted to You under this License for that Work shall terminate
1811
+ as of the date such litigation is filed.
1812
+
1813
+ 4. Redistribution. You may reproduce and distribute copies of the
1814
+ Work or Derivative Works thereof in any medium, with or without
1815
+ modifications, and in Source or Object form, provided that You
1816
+ meet the following conditions:
1817
+
1818
+ (a) You must give any other recipients of the Work or
1819
+ Derivative Works a copy of this License; and
1820
+
1821
+ (b) You must cause any modified files to carry prominent notices
1822
+ stating that You changed the files; and
1823
+
1824
+ (c) You must retain, in the Source form of any Derivative Works
1825
+ that You distribute, all copyright, patent, trademark, and
1826
+ attribution notices from the Source form of the Work,
1827
+ excluding those notices that do not pertain to any part of
1828
+ the Derivative Works; and
1829
+
1830
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
1831
+ distribution, then any Derivative Works that You distribute must
1832
+ include a readable copy of the attribution notices contained
1833
+ within such NOTICE file, excluding those notices that do not
1834
+ pertain to any part of the Derivative Works, in at least one
1835
+ of the following places: within a NOTICE text file distributed
1836
+ as part of the Derivative Works; within the Source form or
1837
+ documentation, if provided along with the Derivative Works; or,
1838
+ within a display generated by the Derivative Works, if and
1839
+ wherever such third-party notices normally appear. The contents
1840
+ of the NOTICE file are for informational purposes only and
1841
+ do not modify the License. You may add Your own attribution
1842
+ notices within Derivative Works that You distribute, alongside
1843
+ or as an addendum to the NOTICE text from the Work, provided
1844
+ that such additional attribution notices cannot be construed
1845
+ as modifying the License.
1846
+
1847
+ You may add Your own copyright statement to Your modifications and
1848
+ may provide additional or different license terms and conditions
1849
+ for use, reproduction, or distribution of Your modifications, or
1850
+ for any such Derivative Works as a whole, provided Your use,
1851
+ reproduction, and distribution of the Work otherwise complies with
1852
+ the conditions stated in this License.
1853
+
1854
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1855
+ any Contribution intentionally submitted for inclusion in the Work
1856
+ by You to the Licensor shall be under the terms and conditions of
1857
+ this License, without any additional terms or conditions.
1858
+ Notwithstanding the above, nothing herein shall supersede or modify
1859
+ the terms of any separate license agreement you may have executed
1860
+ with Licensor regarding such Contributions.
1861
+
1862
+ 6. Trademarks. This License does not grant permission to use the trade
1863
+ names, trademarks, service marks, or product names of the Licensor,
1864
+ except as required for reasonable and customary use in describing the
1865
+ origin of the Work and reproducing the content of the NOTICE file.
1866
+
1867
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1868
+ agreed to in writing, Licensor provides the Work (and each
1869
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
1870
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1871
+ implied, including, without limitation, any warranties or conditions
1872
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1873
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1874
+ appropriateness of using or redistributing the Work and assume any
1875
+ risks associated with Your exercise of permissions under this License.
1876
+
1877
+ 8. Limitation of Liability. In no event and under no legal theory,
1878
+ whether in tort (including negligence), contract, or otherwise,
1879
+ unless required by applicable law (such as deliberate and grossly
1880
+ negligent acts) or agreed to in writing, shall any Contributor be
1881
+ liable to You for damages, including any direct, indirect, special,
1882
+ incidental, or consequential damages of any character arising as a
1883
+ result of this License or out of the use or inability to use the
1884
+ Work (including but not limited to damages for loss of goodwill,
1885
+ work stoppage, computer failure or malfunction, or any and all
1886
+ other commercial damages or losses), even if such Contributor
1887
+ has been advised of the possibility of such damages.
1888
+
1889
+ 9. Accepting Warranty or Additional Liability. While redistributing
1890
+ the Work or Derivative Works thereof, You may choose to offer,
1891
+ and charge a fee for, acceptance of support, warranty, indemnity,
1892
+ or other liability obligations and/or rights consistent with this
1893
+ License. However, in accepting such obligations, You may act only
1894
+ on Your own behalf and on Your sole responsibility, not on behalf
1895
+ of any other Contributor, and only if You agree to indemnify,
1896
+ defend, and hold each Contributor harmless for any liability
1897
+ incurred by, or claims asserted against, such Contributor by reason
1898
+ of your accepting any such warranty or additional liability.
1899
+
1900
+ END OF TERMS AND CONDITIONS
1901
+
1902
+ APPENDIX: How to apply the Apache License to your work.
1903
+
1904
+ To apply the Apache License to your work, attach the following
1905
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
1906
+ replaced with your own identifying information. (Don&#x27;t include
1907
+ the brackets!) The text should be enclosed in the appropriate
1908
+ comment syntax for the file format. We also recommend that a
1909
+ file or class name and description of purpose be included on the
1910
+ same &quot;printed page&quot; as the copyright notice for easier
1911
+ identification within third-party archives.
1912
+
1913
+ Copyright 2020 Andrew Straw
1914
+
1915
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
1916
+ you may not use this file except in compliance with the License.
1917
+ You may obtain a copy of the License at
1918
+
1919
+ http://www.apache.org/licenses/LICENSE-2.0
1920
+
1921
+ Unless required by applicable law or agreed to in writing, software
1922
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
1923
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1924
+ See the License for the specific language governing permissions and
1925
+ limitations under the License.
1926
+ </pre>
1927
+ </li>
1928
+ <li class="license">
1929
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
1930
+ <h4>Used by:</h4>
1931
+ <ul class="license-used-by">
1932
+ <li><a
1933
+ href=" https://github.com/cuviper/autocfg ">autocfg
1934
+ 1.5.0</a></li>
1935
+ <li><a
1936
+ href=" https://github.com/marshallpierce/rust-base64 ">base64
1937
+ 0.22.1</a></li>
1938
+ <li><a
1939
+ href=" https://github.com/bitflags/bitflags ">bitflags
1940
+ 2.9.1</a></li>
1941
+ <li><a
1942
+ href=" https://github.com/BurntSushi/bstr ">bstr
1943
+ 1.12.0</a></li>
1944
+ <li><a
1945
+ href=" https://github.com/fitzgen/bumpalo ">bumpalo
1946
+ 3.19.1</a></li>
1947
+ <li><a
1948
+ href=" https://github.com/rust-lang/cc-rs ">cc
1949
+ 1.2.30</a></li>
1950
+ <li><a
1951
+ href=" https://github.com/jethrogb/rust-cexpr ">cexpr
1952
+ 0.6.0</a></li>
1953
+ <li><a
1954
+ href=" https://github.com/rust-lang/cfg-if ">cfg-if
1955
+ 1.0.1</a></li>
1956
+ <li><a
1957
+ href=" https://github.com/servo/core-foundation-rs ">core-foundation-sys
1958
+ 0.8.7</a></li>
1959
+ <li><a
1960
+ href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-channel
1961
+ 0.5.15</a></li>
1962
+ <li><a
1963
+ href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-deque
1964
+ 0.8.6</a></li>
1965
+ <li><a
1966
+ href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-epoch
1967
+ 0.9.18</a></li>
1968
+ <li><a
1969
+ href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-utils
1970
+ 0.8.21</a></li>
1971
+ <li><a
1972
+ href=" https://github.com/yaahc/displaydoc ">displaydoc
1973
+ 0.2.5</a></li>
1974
+ <li><a
1975
+ href=" https://github.com/rayon-rs/either ">either
1976
+ 1.15.0</a></li>
1977
+ <li><a
1978
+ href=" https://github.com/indexmap-rs/equivalent ">equivalent
1979
+ 1.0.2</a></li>
1980
+ <li><a
1981
+ href=" https://github.com/lambda-fairy/rust-errno ">errno
1982
+ 0.3.13</a></li>
1983
+ <li><a
1984
+ href=" https://github.com/smol-rs/fastrand ">fastrand
1985
+ 2.3.0</a></li>
1986
+ <li><a
1987
+ href=" https://github.com/servo/rust-url ">form_urlencoded
1988
+ 1.2.1</a></li>
1989
+ <li><a
1990
+ href=" https://github.com/rust-lang/glob ">glob
1991
+ 0.3.2</a></li>
1992
+ <li><a
1993
+ href=" https://github.com/rust-lang/hashbrown ">hashbrown
1994
+ 0.15.4</a></li>
1995
+ <li><a
1996
+ href=" https://github.com/withoutboats/heck ">heck
1997
+ 0.5.0</a></li>
1998
+ <li><a
1999
+ href=" https://github.com/servo/rust-url/ ">idna
2000
+ 1.0.3</a></li>
2001
+ <li><a
2002
+ href=" https://github.com/hsivonen/idna_adapter ">idna_adapter
2003
+ 1.2.1</a></li>
2004
+ <li><a
2005
+ href=" https://github.com/indexmap-rs/indexmap ">indexmap
2006
+ 2.10.0</a></li>
2007
+ <li><a
2008
+ href=" https://github.com/rust-itertools/itertools ">itertools
2009
+ 0.13.0</a></li>
2010
+ <li><a
2011
+ href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys ">js-sys
2012
+ 0.3.85</a></li>
2013
+ <li><a
2014
+ href=" https://github.com/sunfishcode/linux-raw-sys ">linux-raw-sys
2015
+ 0.9.4</a></li>
2016
+ <li><a
2017
+ href=" https://github.com/rust-lang/log ">log
2018
+ 0.4.27</a></li>
2019
+ <li><a
2020
+ href=" https://github.com/rust-num/num-traits ">num-traits
2021
+ 0.2.19</a></li>
2022
+ <li><a
2023
+ href=" https://github.com/matklad/once_cell ">once_cell
2024
+ 1.21.3</a></li>
2025
+ <li><a
2026
+ href=" https://github.com/servo/rust-url/ ">percent-encoding
2027
+ 2.3.1</a></li>
2028
+ <li><a
2029
+ href=" https://github.com/rust-lang/regex/tree/master/regex-automata ">regex-automata
2030
+ 0.4.9</a></li>
2031
+ <li><a
2032
+ href=" https://github.com/rust-lang/regex/tree/master/regex-syntax ">regex-syntax
2033
+ 0.8.5</a></li>
2034
+ <li><a
2035
+ href=" https://github.com/rust-lang/regex ">regex
2036
+ 1.11.1</a></li>
2037
+ <li><a
2038
+ href=" https://github.com/bytecodealliance/rustix ">rustix
2039
+ 1.0.8</a></li>
2040
+ <li><a
2041
+ href=" https://github.com/servo/rust-smallvec ">smallvec
2042
+ 1.15.1</a></li>
2043
+ <li><a
2044
+ href=" https://github.com/storyyeller/stable_deref_trait ">stable_deref_trait
2045
+ 1.2.0</a></li>
2046
+ <li><a
2047
+ href=" https://github.com/Stebalien/tempfile ">tempfile
2048
+ 3.20.0</a></li>
2049
+ <li><a
2050
+ href=" https://github.com/servo/rust-url ">url
2051
+ 2.5.4</a></li>
2052
+ <li><a
2053
+ href=" https://github.com/alexcrichton/wait-timeout ">wait-timeout
2054
+ 0.2.1</a></li>
2055
+ <li><a
2056
+ href=" https://github.com/bytecodealliance/wasi-rs ">wasi
2057
+ 0.14.2+wasi-0.2.4</a></li>
2058
+ <li><a
2059
+ href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support ">wasm-bindgen-macro-support
2060
+ 0.2.108</a></li>
2061
+ <li><a
2062
+ href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro ">wasm-bindgen-macro
2063
+ 0.2.108</a></li>
2064
+ <li><a
2065
+ href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared ">wasm-bindgen-shared
2066
+ 0.2.108</a></li>
2067
+ <li><a
2068
+ href=" https://github.com/wasm-bindgen/wasm-bindgen ">wasm-bindgen
2069
+ 0.2.108</a></li>
2070
+ </ul>
2071
+ <pre class="license-text"> Apache License
2072
+ Version 2.0, January 2004
2073
+ http://www.apache.org/licenses/
2074
+
2075
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2076
+
2077
+ 1. Definitions.
2078
+
2079
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
2080
+ and distribution as defined by Sections 1 through 9 of this document.
2081
+
2082
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
2083
+ the copyright owner that is granting the License.
2084
+
2085
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
2086
+ other entities that control, are controlled by, or are under common
2087
+ control with that entity. For the purposes of this definition,
2088
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
2089
+ direction or management of such entity, whether by contract or
2090
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2091
+ outstanding shares, or (iii) beneficial ownership of such entity.
2092
+
2093
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
2094
+ exercising permissions granted by this License.
2095
+
2096
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
2097
+ including but not limited to software source code, documentation
2098
+ source, and configuration files.
2099
+
2100
+ &quot;Object&quot; form shall mean any form resulting from mechanical
2101
+ transformation or translation of a Source form, including but
2102
+ not limited to compiled object code, generated documentation,
2103
+ and conversions to other media types.
2104
+
2105
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
2106
+ Object form, made available under the License, as indicated by a
2107
+ copyright notice that is included in or attached to the work
2108
+ (an example is provided in the Appendix below).
2109
+
2110
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
2111
+ form, that is based on (or derived from) the Work and for which the
2112
+ editorial revisions, annotations, elaborations, or other modifications
2113
+ represent, as a whole, an original work of authorship. For the purposes
2114
+ of this License, Derivative Works shall not include works that remain
2115
+ separable from, or merely link (or bind by name) to the interfaces of,
2116
+ the Work and Derivative Works thereof.
2117
+
2118
+ &quot;Contribution&quot; shall mean any work of authorship, including
2119
+ the original version of the Work and any modifications or additions
2120
+ to that Work or Derivative Works thereof, that is intentionally
2121
+ submitted to Licensor for inclusion in the Work by the copyright owner
2122
+ or by an individual or Legal Entity authorized to submit on behalf of
2123
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
2124
+ means any form of electronic, verbal, or written communication sent
2125
+ to the Licensor or its representatives, including but not limited to
2126
+ communication on electronic mailing lists, source code control systems,
2127
+ and issue tracking systems that are managed by, or on behalf of, the
2128
+ Licensor for the purpose of discussing and improving the Work, but
2129
+ excluding communication that is conspicuously marked or otherwise
2130
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
2131
+
2132
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
2133
+ on behalf of whom a Contribution has been received by Licensor and
2134
+ subsequently incorporated within the Work.
2135
+
2136
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2137
+ this License, each Contributor hereby grants to You a perpetual,
2138
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2139
+ copyright license to reproduce, prepare Derivative Works of,
2140
+ publicly display, publicly perform, sublicense, and distribute the
2141
+ Work and such Derivative Works in Source or Object form.
2142
+
2143
+ 3. Grant of Patent License. Subject to the terms and conditions of
2144
+ this License, each Contributor hereby grants to You a perpetual,
2145
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2146
+ (except as stated in this section) patent license to make, have made,
2147
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2148
+ where such license applies only to those patent claims licensable
2149
+ by such Contributor that are necessarily infringed by their
2150
+ Contribution(s) alone or by combination of their Contribution(s)
2151
+ with the Work to which such Contribution(s) was submitted. If You
2152
+ institute patent litigation against any entity (including a
2153
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2154
+ or a Contribution incorporated within the Work constitutes direct
2155
+ or contributory patent infringement, then any patent licenses
2156
+ granted to You under this License for that Work shall terminate
2157
+ as of the date such litigation is filed.
2158
+
2159
+ 4. Redistribution. You may reproduce and distribute copies of the
2160
+ Work or Derivative Works thereof in any medium, with or without
2161
+ modifications, and in Source or Object form, provided that You
2162
+ meet the following conditions:
2163
+
2164
+ (a) You must give any other recipients of the Work or
2165
+ Derivative Works a copy of this License; and
2166
+
2167
+ (b) You must cause any modified files to carry prominent notices
2168
+ stating that You changed the files; and
2169
+
2170
+ (c) You must retain, in the Source form of any Derivative Works
2171
+ that You distribute, all copyright, patent, trademark, and
2172
+ attribution notices from the Source form of the Work,
2173
+ excluding those notices that do not pertain to any part of
2174
+ the Derivative Works; and
2175
+
2176
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
2177
+ distribution, then any Derivative Works that You distribute must
2178
+ include a readable copy of the attribution notices contained
2179
+ within such NOTICE file, excluding those notices that do not
2180
+ pertain to any part of the Derivative Works, in at least one
2181
+ of the following places: within a NOTICE text file distributed
2182
+ as part of the Derivative Works; within the Source form or
2183
+ documentation, if provided along with the Derivative Works; or,
2184
+ within a display generated by the Derivative Works, if and
2185
+ wherever such third-party notices normally appear. The contents
2186
+ of the NOTICE file are for informational purposes only and
2187
+ do not modify the License. You may add Your own attribution
2188
+ notices within Derivative Works that You distribute, alongside
2189
+ or as an addendum to the NOTICE text from the Work, provided
2190
+ that such additional attribution notices cannot be construed
2191
+ as modifying the License.
2192
+
2193
+ You may add Your own copyright statement to Your modifications and
2194
+ may provide additional or different license terms and conditions
2195
+ for use, reproduction, or distribution of Your modifications, or
2196
+ for any such Derivative Works as a whole, provided Your use,
2197
+ reproduction, and distribution of the Work otherwise complies with
2198
+ the conditions stated in this License.
2199
+
2200
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2201
+ any Contribution intentionally submitted for inclusion in the Work
2202
+ by You to the Licensor shall be under the terms and conditions of
2203
+ this License, without any additional terms or conditions.
2204
+ Notwithstanding the above, nothing herein shall supersede or modify
2205
+ the terms of any separate license agreement you may have executed
2206
+ with Licensor regarding such Contributions.
2207
+
2208
+ 6. Trademarks. This License does not grant permission to use the trade
2209
+ names, trademarks, service marks, or product names of the Licensor,
2210
+ except as required for reasonable and customary use in describing the
2211
+ origin of the Work and reproducing the content of the NOTICE file.
2212
+
2213
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2214
+ agreed to in writing, Licensor provides the Work (and each
2215
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
2216
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2217
+ implied, including, without limitation, any warranties or conditions
2218
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2219
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2220
+ appropriateness of using or redistributing the Work and assume any
2221
+ risks associated with Your exercise of permissions under this License.
2222
+
2223
+ 8. Limitation of Liability. In no event and under no legal theory,
2224
+ whether in tort (including negligence), contract, or otherwise,
2225
+ unless required by applicable law (such as deliberate and grossly
2226
+ negligent acts) or agreed to in writing, shall any Contributor be
2227
+ liable to You for damages, including any direct, indirect, special,
2228
+ incidental, or consequential damages of any character arising as a
2229
+ result of this License or out of the use or inability to use the
2230
+ Work (including but not limited to damages for loss of goodwill,
2231
+ work stoppage, computer failure or malfunction, or any and all
2232
+ other commercial damages or losses), even if such Contributor
2233
+ has been advised of the possibility of such damages.
2234
+
2235
+ 9. Accepting Warranty or Additional Liability. While redistributing
2236
+ the Work or Derivative Works thereof, You may choose to offer,
2237
+ and charge a fee for, acceptance of support, warranty, indemnity,
2238
+ or other liability obligations and/or rights consistent with this
2239
+ License. However, in accepting such obligations, You may act only
2240
+ on Your own behalf and on Your sole responsibility, not on behalf
2241
+ of any other Contributor, and only if You agree to indemnify,
2242
+ defend, and hold each Contributor harmless for any liability
2243
+ incurred by, or claims asserted against, such Contributor by reason
2244
+ of your accepting any such warranty or additional liability.
2245
+
2246
+ END OF TERMS AND CONDITIONS
2247
+
2248
+ APPENDIX: How to apply the Apache License to your work.
2249
+
2250
+ To apply the Apache License to your work, attach the following
2251
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
2252
+ replaced with your own identifying information. (Don&#x27;t include
2253
+ the brackets!) The text should be enclosed in the appropriate
2254
+ comment syntax for the file format. We also recommend that a
2255
+ file or class name and description of purpose be included on the
2256
+ same &quot;printed page&quot; as the copyright notice for easier
2257
+ identification within third-party archives.
2258
+
2259
+ Copyright [yyyy] [name of copyright owner]
2260
+
2261
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
2262
+ you may not use this file except in compliance with the License.
2263
+ You may obtain a copy of the License at
2264
+
2265
+ http://www.apache.org/licenses/LICENSE-2.0
2266
+
2267
+ Unless required by applicable law or agreed to in writing, software
2268
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
2269
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2270
+ See the License for the specific language governing permissions and
2271
+ limitations under the License.
2272
+ </pre>
2273
+ </li>
2274
+ <li class="license">
2275
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
2276
+ <h4>Used by:</h4>
2277
+ <ul class="license-used-by">
2278
+ <li><a
2279
+ href=" https://github.com/Alexhuszagh/minimal-lexical ">minimal-lexical
2280
+ 0.2.1</a></li>
2281
+ </ul>
2282
+ <pre class="license-text"> Apache License
2283
+ Version 2.0, January 2004
2284
+ http://www.apache.org/licenses/
2285
+
2286
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2287
+
2288
+ 1. Definitions.
2289
+
2290
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
2291
+ and distribution as defined by Sections 1 through 9 of this document.
2292
+
2293
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
2294
+ the copyright owner that is granting the License.
2295
+
2296
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
2297
+ other entities that control, are controlled by, or are under common
2298
+ control with that entity. For the purposes of this definition,
2299
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
2300
+ direction or management of such entity, whether by contract or
2301
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2302
+ outstanding shares, or (iii) beneficial ownership of such entity.
2303
+
2304
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
2305
+ exercising permissions granted by this License.
2306
+
2307
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
2308
+ including but not limited to software source code, documentation
2309
+ source, and configuration files.
2310
+
2311
+ &quot;Object&quot; form shall mean any form resulting from mechanical
2312
+ transformation or translation of a Source form, including but
2313
+ not limited to compiled object code, generated documentation,
2314
+ and conversions to other media types.
2315
+
2316
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
2317
+ Object form, made available under the License, as indicated by a
2318
+ copyright notice that is included in or attached to the work
2319
+ (an example is provided in the Appendix below).
2320
+
2321
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
2322
+ form, that is based on (or derived from) the Work and for which the
2323
+ editorial revisions, annotations, elaborations, or other modifications
2324
+ represent, as a whole, an original work of authorship. For the purposes
2325
+ of this License, Derivative Works shall not include works that remain
2326
+ separable from, or merely link (or bind by name) to the interfaces of,
2327
+ the Work and Derivative Works thereof.
2328
+
2329
+ &quot;Contribution&quot; shall mean any work of authorship, including
2330
+ the original version of the Work and any modifications or additions
2331
+ to that Work or Derivative Works thereof, that is intentionally
2332
+ submitted to Licensor for inclusion in the Work by the copyright owner
2333
+ or by an individual or Legal Entity authorized to submit on behalf of
2334
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
2335
+ means any form of electronic, verbal, or written communication sent
2336
+ to the Licensor or its representatives, including but not limited to
2337
+ communication on electronic mailing lists, source code control systems,
2338
+ and issue tracking systems that are managed by, or on behalf of, the
2339
+ Licensor for the purpose of discussing and improving the Work, but
2340
+ excluding communication that is conspicuously marked or otherwise
2341
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
2342
+
2343
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
2344
+ on behalf of whom a Contribution has been received by Licensor and
2345
+ subsequently incorporated within the Work.
2346
+
2347
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2348
+ this License, each Contributor hereby grants to You a perpetual,
2349
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2350
+ copyright license to reproduce, prepare Derivative Works of,
2351
+ publicly display, publicly perform, sublicense, and distribute the
2352
+ Work and such Derivative Works in Source or Object form.
2353
+
2354
+ 3. Grant of Patent License. Subject to the terms and conditions of
2355
+ this License, each Contributor hereby grants to You a perpetual,
2356
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2357
+ (except as stated in this section) patent license to make, have made,
2358
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2359
+ where such license applies only to those patent claims licensable
2360
+ by such Contributor that are necessarily infringed by their
2361
+ Contribution(s) alone or by combination of their Contribution(s)
2362
+ with the Work to which such Contribution(s) was submitted. If You
2363
+ institute patent litigation against any entity (including a
2364
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2365
+ or a Contribution incorporated within the Work constitutes direct
2366
+ or contributory patent infringement, then any patent licenses
2367
+ granted to You under this License for that Work shall terminate
2368
+ as of the date such litigation is filed.
2369
+
2370
+ 4. Redistribution. You may reproduce and distribute copies of the
2371
+ Work or Derivative Works thereof in any medium, with or without
2372
+ modifications, and in Source or Object form, provided that You
2373
+ meet the following conditions:
2374
+
2375
+ (a) You must give any other recipients of the Work or
2376
+ Derivative Works a copy of this License; and
2377
+
2378
+ (b) You must cause any modified files to carry prominent notices
2379
+ stating that You changed the files; and
2380
+
2381
+ (c) You must retain, in the Source form of any Derivative Works
2382
+ that You distribute, all copyright, patent, trademark, and
2383
+ attribution notices from the Source form of the Work,
2384
+ excluding those notices that do not pertain to any part of
2385
+ the Derivative Works; and
2386
+
2387
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
2388
+ distribution, then any Derivative Works that You distribute must
2389
+ include a readable copy of the attribution notices contained
2390
+ within such NOTICE file, excluding those notices that do not
2391
+ pertain to any part of the Derivative Works, in at least one
2392
+ of the following places: within a NOTICE text file distributed
2393
+ as part of the Derivative Works; within the Source form or
2394
+ documentation, if provided along with the Derivative Works; or,
2395
+ within a display generated by the Derivative Works, if and
2396
+ wherever such third-party notices normally appear. The contents
2397
+ of the NOTICE file are for informational purposes only and
2398
+ do not modify the License. You may add Your own attribution
2399
+ notices within Derivative Works that You distribute, alongside
2400
+ or as an addendum to the NOTICE text from the Work, provided
2401
+ that such additional attribution notices cannot be construed
2402
+ as modifying the License.
2403
+
2404
+ You may add Your own copyright statement to Your modifications and
2405
+ may provide additional or different license terms and conditions
2406
+ for use, reproduction, or distribution of Your modifications, or
2407
+ for any such Derivative Works as a whole, provided Your use,
2408
+ reproduction, and distribution of the Work otherwise complies with
2409
+ the conditions stated in this License.
2410
+
2411
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2412
+ any Contribution intentionally submitted for inclusion in the Work
2413
+ by You to the Licensor shall be under the terms and conditions of
2414
+ this License, without any additional terms or conditions.
2415
+ Notwithstanding the above, nothing herein shall supersede or modify
2416
+ the terms of any separate license agreement you may have executed
2417
+ with Licensor regarding such Contributions.
2418
+
2419
+ 6. Trademarks. This License does not grant permission to use the trade
2420
+ names, trademarks, service marks, or product names of the Licensor,
2421
+ except as required for reasonable and customary use in describing the
2422
+ origin of the Work and reproducing the content of the NOTICE file.
2423
+
2424
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2425
+ agreed to in writing, Licensor provides the Work (and each
2426
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
2427
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2428
+ implied, including, without limitation, any warranties or conditions
2429
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2430
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2431
+ appropriateness of using or redistributing the Work and assume any
2432
+ risks associated with Your exercise of permissions under this License.
2433
+
2434
+ 8. Limitation of Liability. In no event and under no legal theory,
2435
+ whether in tort (including negligence), contract, or otherwise,
2436
+ unless required by applicable law (such as deliberate and grossly
2437
+ negligent acts) or agreed to in writing, shall any Contributor be
2438
+ liable to You for damages, including any direct, indirect, special,
2439
+ incidental, or consequential damages of any character arising as a
2440
+ result of this License or out of the use or inability to use the
2441
+ Work (including but not limited to damages for loss of goodwill,
2442
+ work stoppage, computer failure or malfunction, or any and all
2443
+ other commercial damages or losses), even if such Contributor
2444
+ has been advised of the possibility of such damages.
2445
+
2446
+ 9. Accepting Warranty or Additional Liability. While redistributing
2447
+ the Work or Derivative Works thereof, You may choose to offer,
2448
+ and charge a fee for, acceptance of support, warranty, indemnity,
2449
+ or other liability obligations and/or rights consistent with this
2450
+ License. However, in accepting such obligations, You may act only
2451
+ on Your own behalf and on Your sole responsibility, not on behalf
2452
+ of any other Contributor, and only if You agree to indemnify,
2453
+ defend, and hold each Contributor harmless for any liability
2454
+ incurred by, or claims asserted against, such Contributor by reason
2455
+ of your accepting any such warranty or additional liability.
2456
+
2457
+ END OF TERMS AND CONDITIONS
2458
+
2459
+ APPENDIX: How to apply the Apache License to your work.
2460
+
2461
+ To apply the Apache License to your work, attach the following
2462
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
2463
+ replaced with your own identifying information. (Don&#x27;t include
2464
+ the brackets!) The text should be enclosed in the appropriate
2465
+ comment syntax for the file format. We also recommend that a
2466
+ file or class name and description of purpose be included on the
2467
+ same &quot;printed page&quot; as the copyright notice for easier
2468
+ identification within third-party archives.
2469
+
2470
+ Copyright [yyyy] [name of copyright owner]
2471
+
2472
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
2473
+ you may not use this file except in compliance with the License.
2474
+ You may obtain a copy of the License at
2475
+
2476
+ http://www.apache.org/licenses/LICENSE-2.0
2477
+
2478
+ Unless required by applicable law or agreed to in writing, software
2479
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
2480
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2481
+ See the License for the specific language governing permissions and
2482
+ limitations under the License.
2483
+ </pre>
2484
+ </li>
2485
+ <li class="license">
2486
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
2487
+ <h4>Used by:</h4>
2488
+ <ul class="license-used-by">
2489
+ <li><a
2490
+ href=" https://github.com/rust-random/getrandom ">getrandom
2491
+ 0.3.3</a></li>
2492
+ </ul>
2493
+ <pre class="license-text"> Apache License
2494
+ Version 2.0, January 2004
2495
+ https://www.apache.org/licenses/
2496
+
2497
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2498
+
2499
+ 1. Definitions.
2500
+
2501
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
2502
+ and distribution as defined by Sections 1 through 9 of this document.
2503
+
2504
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
2505
+ the copyright owner that is granting the License.
2506
+
2507
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
2508
+ other entities that control, are controlled by, or are under common
2509
+ control with that entity. For the purposes of this definition,
2510
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
2511
+ direction or management of such entity, whether by contract or
2512
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2513
+ outstanding shares, or (iii) beneficial ownership of such entity.
2514
+
2515
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
2516
+ exercising permissions granted by this License.
2517
+
2518
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
2519
+ including but not limited to software source code, documentation
2520
+ source, and configuration files.
2521
+
2522
+ &quot;Object&quot; form shall mean any form resulting from mechanical
2523
+ transformation or translation of a Source form, including but
2524
+ not limited to compiled object code, generated documentation,
2525
+ and conversions to other media types.
2526
+
2527
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
2528
+ Object form, made available under the License, as indicated by a
2529
+ copyright notice that is included in or attached to the work
2530
+ (an example is provided in the Appendix below).
2531
+
2532
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
2533
+ form, that is based on (or derived from) the Work and for which the
2534
+ editorial revisions, annotations, elaborations, or other modifications
2535
+ represent, as a whole, an original work of authorship. For the purposes
2536
+ of this License, Derivative Works shall not include works that remain
2537
+ separable from, or merely link (or bind by name) to the interfaces of,
2538
+ the Work and Derivative Works thereof.
2539
+
2540
+ &quot;Contribution&quot; shall mean any work of authorship, including
2541
+ the original version of the Work and any modifications or additions
2542
+ to that Work or Derivative Works thereof, that is intentionally
2543
+ submitted to Licensor for inclusion in the Work by the copyright owner
2544
+ or by an individual or Legal Entity authorized to submit on behalf of
2545
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
2546
+ means any form of electronic, verbal, or written communication sent
2547
+ to the Licensor or its representatives, including but not limited to
2548
+ communication on electronic mailing lists, source code control systems,
2549
+ and issue tracking systems that are managed by, or on behalf of, the
2550
+ Licensor for the purpose of discussing and improving the Work, but
2551
+ excluding communication that is conspicuously marked or otherwise
2552
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
2553
+
2554
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
2555
+ on behalf of whom a Contribution has been received by Licensor and
2556
+ subsequently incorporated within the Work.
2557
+
2558
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2559
+ this License, each Contributor hereby grants to You a perpetual,
2560
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2561
+ copyright license to reproduce, prepare Derivative Works of,
2562
+ publicly display, publicly perform, sublicense, and distribute the
2563
+ Work and such Derivative Works in Source or Object form.
2564
+
2565
+ 3. Grant of Patent License. Subject to the terms and conditions of
2566
+ this License, each Contributor hereby grants to You a perpetual,
2567
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2568
+ (except as stated in this section) patent license to make, have made,
2569
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2570
+ where such license applies only to those patent claims licensable
2571
+ by such Contributor that are necessarily infringed by their
2572
+ Contribution(s) alone or by combination of their Contribution(s)
2573
+ with the Work to which such Contribution(s) was submitted. If You
2574
+ institute patent litigation against any entity (including a
2575
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2576
+ or a Contribution incorporated within the Work constitutes direct
2577
+ or contributory patent infringement, then any patent licenses
2578
+ granted to You under this License for that Work shall terminate
2579
+ as of the date such litigation is filed.
2580
+
2581
+ 4. Redistribution. You may reproduce and distribute copies of the
2582
+ Work or Derivative Works thereof in any medium, with or without
2583
+ modifications, and in Source or Object form, provided that You
2584
+ meet the following conditions:
2585
+
2586
+ (a) You must give any other recipients of the Work or
2587
+ Derivative Works a copy of this License; and
2588
+
2589
+ (b) You must cause any modified files to carry prominent notices
2590
+ stating that You changed the files; and
2591
+
2592
+ (c) You must retain, in the Source form of any Derivative Works
2593
+ that You distribute, all copyright, patent, trademark, and
2594
+ attribution notices from the Source form of the Work,
2595
+ excluding those notices that do not pertain to any part of
2596
+ the Derivative Works; and
2597
+
2598
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
2599
+ distribution, then any Derivative Works that You distribute must
2600
+ include a readable copy of the attribution notices contained
2601
+ within such NOTICE file, excluding those notices that do not
2602
+ pertain to any part of the Derivative Works, in at least one
2603
+ of the following places: within a NOTICE text file distributed
2604
+ as part of the Derivative Works; within the Source form or
2605
+ documentation, if provided along with the Derivative Works; or,
2606
+ within a display generated by the Derivative Works, if and
2607
+ wherever such third-party notices normally appear. The contents
2608
+ of the NOTICE file are for informational purposes only and
2609
+ do not modify the License. You may add Your own attribution
2610
+ notices within Derivative Works that You distribute, alongside
2611
+ or as an addendum to the NOTICE text from the Work, provided
2612
+ that such additional attribution notices cannot be construed
2613
+ as modifying the License.
2614
+
2615
+ You may add Your own copyright statement to Your modifications and
2616
+ may provide additional or different license terms and conditions
2617
+ for use, reproduction, or distribution of Your modifications, or
2618
+ for any such Derivative Works as a whole, provided Your use,
2619
+ reproduction, and distribution of the Work otherwise complies with
2620
+ the conditions stated in this License.
2621
+
2622
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2623
+ any Contribution intentionally submitted for inclusion in the Work
2624
+ by You to the Licensor shall be under the terms and conditions of
2625
+ this License, without any additional terms or conditions.
2626
+ Notwithstanding the above, nothing herein shall supersede or modify
2627
+ the terms of any separate license agreement you may have executed
2628
+ with Licensor regarding such Contributions.
2629
+
2630
+ 6. Trademarks. This License does not grant permission to use the trade
2631
+ names, trademarks, service marks, or product names of the Licensor,
2632
+ except as required for reasonable and customary use in describing the
2633
+ origin of the Work and reproducing the content of the NOTICE file.
2634
+
2635
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2636
+ agreed to in writing, Licensor provides the Work (and each
2637
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
2638
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2639
+ implied, including, without limitation, any warranties or conditions
2640
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2641
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2642
+ appropriateness of using or redistributing the Work and assume any
2643
+ risks associated with Your exercise of permissions under this License.
2644
+
2645
+ 8. Limitation of Liability. In no event and under no legal theory,
2646
+ whether in tort (including negligence), contract, or otherwise,
2647
+ unless required by applicable law (such as deliberate and grossly
2648
+ negligent acts) or agreed to in writing, shall any Contributor be
2649
+ liable to You for damages, including any direct, indirect, special,
2650
+ incidental, or consequential damages of any character arising as a
2651
+ result of this License or out of the use or inability to use the
2652
+ Work (including but not limited to damages for loss of goodwill,
2653
+ work stoppage, computer failure or malfunction, or any and all
2654
+ other commercial damages or losses), even if such Contributor
2655
+ has been advised of the possibility of such damages.
2656
+
2657
+ 9. Accepting Warranty or Additional Liability. While redistributing
2658
+ the Work or Derivative Works thereof, You may choose to offer,
2659
+ and charge a fee for, acceptance of support, warranty, indemnity,
2660
+ or other liability obligations and/or rights consistent with this
2661
+ License. However, in accepting such obligations, You may act only
2662
+ on Your own behalf and on Your sole responsibility, not on behalf
2663
+ of any other Contributor, and only if You agree to indemnify,
2664
+ defend, and hold each Contributor harmless for any liability
2665
+ incurred by, or claims asserted against, such Contributor by reason
2666
+ of your accepting any such warranty or additional liability.
2667
+
2668
+ END OF TERMS AND CONDITIONS
2669
+
2670
+ APPENDIX: How to apply the Apache License to your work.
2671
+
2672
+ To apply the Apache License to your work, attach the following
2673
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
2674
+ replaced with your own identifying information. (Don&#x27;t include
2675
+ the brackets!) The text should be enclosed in the appropriate
2676
+ comment syntax for the file format. We also recommend that a
2677
+ file or class name and description of purpose be included on the
2678
+ same &quot;printed page&quot; as the copyright notice for easier
2679
+ identification within third-party archives.
2680
+
2681
+ Copyright [yyyy] [name of copyright owner]
2682
+
2683
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
2684
+ you may not use this file except in compliance with the License.
2685
+ You may obtain a copy of the License at
2686
+
2687
+ https://www.apache.org/licenses/LICENSE-2.0
2688
+
2689
+ Unless required by applicable law or agreed to in writing, software
2690
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
2691
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2692
+ See the License for the specific language governing permissions and
2693
+ limitations under the License.
2694
+ </pre>
2695
+ </li>
2696
+ <li class="license">
2697
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
2698
+ <h4>Used by:</h4>
2699
+ <ul class="license-used-by">
2700
+ <li><a
2701
+ href=" https://github.com/rust-analyzer/text-size ">text-size
2702
+ 1.1.1</a></li>
2703
+ </ul>
2704
+ <pre class="license-text"> Apache License
2705
+ Version 2.0, January 2004
2706
+ http://www.apache.org/licenses/
2707
+
2708
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2709
+
2710
+ 1. Definitions.
2711
+
2712
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
2713
+ and distribution as defined by Sections 1 through 9 of this document.
2714
+
2715
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
2716
+ the copyright owner that is granting the License.
2717
+
2718
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
2719
+ other entities that control, are controlled by, or are under common
2720
+ control with that entity. For the purposes of this definition,
2721
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
2722
+ direction or management of such entity, whether by contract or
2723
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2724
+ outstanding shares, or (iii) beneficial ownership of such entity.
2725
+
2726
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
2727
+ exercising permissions granted by this License.
2728
+
2729
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
2730
+ including but not limited to software source code, documentation
2731
+ source, and configuration files.
2732
+
2733
+ &quot;Object&quot; form shall mean any form resulting from mechanical
2734
+ transformation or translation of a Source form, including but
2735
+ not limited to compiled object code, generated documentation,
2736
+ and conversions to other media types.
2737
+
2738
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
2739
+ Object form, made available under the License, as indicated by a
2740
+ copyright notice that is included in or attached to the work
2741
+ (an example is provided in the Appendix below).
2742
+
2743
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
2744
+ form, that is based on (or derived from) the Work and for which the
2745
+ editorial revisions, annotations, elaborations, or other modifications
2746
+ represent, as a whole, an original work of authorship. For the purposes
2747
+ of this License, Derivative Works shall not include works that remain
2748
+ separable from, or merely link (or bind by name) to the interfaces of,
2749
+ the Work and Derivative Works thereof.
2750
+
2751
+ &quot;Contribution&quot; shall mean any work of authorship, including
2752
+ the original version of the Work and any modifications or additions
2753
+ to that Work or Derivative Works thereof, that is intentionally
2754
+ submitted to Licensor for inclusion in the Work by the copyright owner
2755
+ or by an individual or Legal Entity authorized to submit on behalf of
2756
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
2757
+ means any form of electronic, verbal, or written communication sent
2758
+ to the Licensor or its representatives, including but not limited to
2759
+ communication on electronic mailing lists, source code control systems,
2760
+ and issue tracking systems that are managed by, or on behalf of, the
2761
+ Licensor for the purpose of discussing and improving the Work, but
2762
+ excluding communication that is conspicuously marked or otherwise
2763
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
2764
+
2765
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
2766
+ on behalf of whom a Contribution has been received by Licensor and
2767
+ subsequently incorporated within the Work.
2768
+
2769
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2770
+ this License, each Contributor hereby grants to You a perpetual,
2771
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2772
+ copyright license to reproduce, prepare Derivative Works of,
2773
+ publicly display, publicly perform, sublicense, and distribute the
2774
+ Work and such Derivative Works in Source or Object form.
2775
+
2776
+ 3. Grant of Patent License. Subject to the terms and conditions of
2777
+ this License, each Contributor hereby grants to You a perpetual,
2778
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2779
+ (except as stated in this section) patent license to make, have made,
2780
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2781
+ where such license applies only to those patent claims licensable
2782
+ by such Contributor that are necessarily infringed by their
2783
+ Contribution(s) alone or by combination of their Contribution(s)
2784
+ with the Work to which such Contribution(s) was submitted. If You
2785
+ institute patent litigation against any entity (including a
2786
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2787
+ or a Contribution incorporated within the Work constitutes direct
2788
+ or contributory patent infringement, then any patent licenses
2789
+ granted to You under this License for that Work shall terminate
2790
+ as of the date such litigation is filed.
2791
+
2792
+ 4. Redistribution. You may reproduce and distribute copies of the
2793
+ Work or Derivative Works thereof in any medium, with or without
2794
+ modifications, and in Source or Object form, provided that You
2795
+ meet the following conditions:
2796
+
2797
+ (a) You must give any other recipients of the Work or
2798
+ Derivative Works a copy of this License; and
2799
+
2800
+ (b) You must cause any modified files to carry prominent notices
2801
+ stating that You changed the files; and
2802
+
2803
+ (c) You must retain, in the Source form of any Derivative Works
2804
+ that You distribute, all copyright, patent, trademark, and
2805
+ attribution notices from the Source form of the Work,
2806
+ excluding those notices that do not pertain to any part of
2807
+ the Derivative Works; and
2808
+
2809
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
2810
+ distribution, then any Derivative Works that You distribute must
2811
+ include a readable copy of the attribution notices contained
2812
+ within such NOTICE file, excluding those notices that do not
2813
+ pertain to any part of the Derivative Works, in at least one
2814
+ of the following places: within a NOTICE text file distributed
2815
+ as part of the Derivative Works; within the Source form or
2816
+ documentation, if provided along with the Derivative Works; or,
2817
+ within a display generated by the Derivative Works, if and
2818
+ wherever such third-party notices normally appear. The contents
2819
+ of the NOTICE file are for informational purposes only and
2820
+ do not modify the License. You may add Your own attribution
2821
+ notices within Derivative Works that You distribute, alongside
2822
+ or as an addendum to the NOTICE text from the Work, provided
2823
+ that such additional attribution notices cannot be construed
2824
+ as modifying the License.
2825
+
2826
+ You may add Your own copyright statement to Your modifications and
2827
+ may provide additional or different license terms and conditions
2828
+ for use, reproduction, or distribution of Your modifications, or
2829
+ for any such Derivative Works as a whole, provided Your use,
2830
+ reproduction, and distribution of the Work otherwise complies with
2831
+ the conditions stated in this License.
2832
+
2833
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2834
+ any Contribution intentionally submitted for inclusion in the Work
2835
+ by You to the Licensor shall be under the terms and conditions of
2836
+ this License, without any additional terms or conditions.
2837
+ Notwithstanding the above, nothing herein shall supersede or modify
2838
+ the terms of any separate license agreement you may have executed
2839
+ with Licensor regarding such Contributions.
2840
+
2841
+ 6. Trademarks. This License does not grant permission to use the trade
2842
+ names, trademarks, service marks, or product names of the Licensor,
2843
+ except as required for reasonable and customary use in describing the
2844
+ origin of the Work and reproducing the content of the NOTICE file.
2845
+
2846
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2847
+ agreed to in writing, Licensor provides the Work (and each
2848
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
2849
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2850
+ implied, including, without limitation, any warranties or conditions
2851
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2852
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2853
+ appropriateness of using or redistributing the Work and assume any
2854
+ risks associated with Your exercise of permissions under this License.
2855
+
2856
+ 8. Limitation of Liability. In no event and under no legal theory,
2857
+ whether in tort (including negligence), contract, or otherwise,
2858
+ unless required by applicable law (such as deliberate and grossly
2859
+ negligent acts) or agreed to in writing, shall any Contributor be
2860
+ liable to You for damages, including any direct, indirect, special,
2861
+ incidental, or consequential damages of any character arising as a
2862
+ result of this License or out of the use or inability to use the
2863
+ Work (including but not limited to damages for loss of goodwill,
2864
+ work stoppage, computer failure or malfunction, or any and all
2865
+ other commercial damages or losses), even if such Contributor
2866
+ has been advised of the possibility of such damages.
2867
+
2868
+ 9. Accepting Warranty or Additional Liability. While redistributing
2869
+ the Work or Derivative Works thereof, You may choose to offer,
2870
+ and charge a fee for, acceptance of support, warranty, indemnity,
2871
+ or other liability obligations and/or rights consistent with this
2872
+ License. However, in accepting such obligations, You may act only
2873
+ on Your own behalf and on Your sole responsibility, not on behalf
2874
+ of any other Contributor, and only if You agree to indemnify,
2875
+ defend, and hold each Contributor harmless for any liability
2876
+ incurred by, or claims asserted against, such Contributor by reason
2877
+ of your accepting any such warranty or additional liability.
2878
+
2879
+ END OF TERMS AND CONDITIONS
2880
+
2881
+ APPENDIX: How to apply the Apache License to your work.
2882
+
2883
+ To apply the Apache License to your work, attach the following
2884
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
2885
+ replaced with your own identifying information. (Don&#x27;t include
2886
+ the brackets!) The text should be enclosed in the appropriate
2887
+ comment syntax for the file format. We also recommend that a
2888
+ file or class name and description of purpose be included on the
2889
+ same &quot;printed page&quot; as the copyright notice for easier
2890
+ identification within third-party archives.
2891
+
2892
+ Copyright [yyyy] [name of copyright owner]
2893
+
2894
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
2895
+ you may not use this file except in compliance with the License.
2896
+ You may obtain a copy of the License at
2897
+
2898
+ http://www.apache.org/licenses/LICENSE-2.0
2899
+
2900
+ Unless required by applicable law or agreed to in writing, software
2901
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
2902
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2903
+ See the License for the specific language governing permissions and
2904
+ limitations under the License.
2905
+ </pre>
2906
+ </li>
2907
+ <li class="license">
2908
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
2909
+ <h4>Used by:</h4>
2910
+ <ul class="license-used-by">
2911
+ <li><a
2912
+ href=" https://github.com/nical/android_system_properties ">android_system_properties
2913
+ 0.1.5</a></li>
2914
+ <li><a
2915
+ href=" https://github.com/dtolnay/async-trait ">async-trait
2916
+ 0.1.89</a></li>
2917
+ <li><a
2918
+ href=" https://github.com/dtolnay/dyn-clone ">dyn-clone
2919
+ 1.0.20</a></li>
2920
+ <li><a
2921
+ href=" https://github.com/TedDriggs/ident_case ">ident_case
2922
+ 1.0.1</a></li>
2923
+ <li><a
2924
+ href=" https://github.com/dtolnay/itoa ">itoa
2925
+ 1.0.15</a></li>
2926
+ <li><a
2927
+ href=" https://github.com/rust-lang/libc ">libc
2928
+ 0.2.174</a></li>
2929
+ <li><a
2930
+ href=" https://github.com/rust-lang/rust-analyzer/tree/master/lib/line-index ">line-index
2931
+ 0.1.2</a></li>
2932
+ <li><a
2933
+ href=" https://github.com/as1100k/pastey ">pastey
2934
+ 0.2.1</a></li>
2935
+ <li><a
2936
+ href=" https://github.com/taiki-e/pin-project-lite ">pin-project-lite
2937
+ 0.2.16</a></li>
2938
+ <li><a
2939
+ href=" https://github.com/dtolnay/prettyplease ">prettyplease
2940
+ 0.2.36</a></li>
2941
+ <li><a
2942
+ href=" https://github.com/dtolnay/proc-macro2 ">proc-macro2
2943
+ 1.0.95</a></li>
2944
+ <li><a
2945
+ href=" https://github.com/dtolnay/quote ">quote
2946
+ 1.0.40</a></li>
2947
+ <li><a
2948
+ href=" https://github.com/r-efi/r-efi ">r-efi
2949
+ 5.3.0</a></li>
2950
+ <li><a
2951
+ href=" https://github.com/dtolnay/ref-cast ">ref-cast-impl
2952
+ 1.0.25</a></li>
2953
+ <li><a
2954
+ href=" https://github.com/dtolnay/ref-cast ">ref-cast
2955
+ 1.0.25</a></li>
2956
+ <li><a
2957
+ href=" https://github.com/modelcontextprotocol/rust-sdk/ ">rmcp-macros
2958
+ 0.15.0</a></li>
2959
+ <li><a
2960
+ href=" https://github.com/modelcontextprotocol/rust-sdk/ ">rmcp
2961
+ 0.15.0</a></li>
2962
+ <li><a
2963
+ href=" https://github.com/rust-lang/rustc-hash ">rustc-hash
2964
+ 2.1.1</a></li>
2965
+ <li><a
2966
+ href=" https://github.com/dtolnay/rustversion ">rustversion
2967
+ 1.0.22</a></li>
2968
+ <li><a
2969
+ href=" https://github.com/dtolnay/ryu ">ryu
2970
+ 1.0.20</a></li>
2971
+ <li><a
2972
+ href=" https://github.com/serde-rs/serde ">serde
2973
+ 1.0.219</a></li>
2974
+ <li><a
2975
+ href=" https://github.com/serde-rs/serde ">serde_derive
2976
+ 1.0.219</a></li>
2977
+ <li><a
2978
+ href=" https://github.com/serde-rs/serde ">serde_derive_internals
2979
+ 0.29.1</a></li>
2980
+ <li><a
2981
+ href=" https://github.com/serde-rs/json ">serde_json
2982
+ 1.0.141</a></li>
2983
+ <li><a
2984
+ href=" https://github.com/dtolnay/serde-yaml ">serde_yaml
2985
+ 0.9.34+deprecated</a></li>
2986
+ <li><a
2987
+ href=" https://github.com/comex/rust-shlex ">shlex
2988
+ 1.3.0</a></li>
2989
+ <li><a
2990
+ href=" https://github.com/dtolnay/syn ">syn
2991
+ 2.0.104</a></li>
2992
+ <li><a
2993
+ href=" https://github.com/dtolnay/thiserror ">thiserror-impl
2994
+ 2.0.18</a></li>
2995
+ <li><a
2996
+ href=" https://github.com/dtolnay/thiserror ">thiserror
2997
+ 2.0.18</a></li>
2998
+ <li><a
2999
+ href=" https://github.com/dtolnay/unicode-ident ">unicode-ident
3000
+ 1.0.18</a></li>
3001
+ <li><a
3002
+ href=" https://github.com/alacritty/vte ">utf8parse
3003
+ 0.2.2</a></li>
3004
+ <li><a
3005
+ href=" https://github.com/bytecodealliance/wit-bindgen ">wit-bindgen-rt
3006
+ 0.39.0</a></li>
3007
+ </ul>
3008
+ <pre class="license-text">Apache License
3009
+ Version 2.0, January 2004
3010
+ http://www.apache.org/licenses/
3011
+
3012
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3013
+
3014
+ 1. Definitions.
3015
+
3016
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
3017
+
3018
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
3019
+
3020
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, &quot;control&quot; means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
3021
+
3022
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity exercising permissions granted by this License.
3023
+
3024
+ &quot;Source&quot; form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
3025
+
3026
+ &quot;Object&quot; form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
3027
+
3028
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
3029
+
3030
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
3031
+
3032
+ &quot;Contribution&quot; shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, &quot;submitted&quot; means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
3033
+
3034
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
3035
+
3036
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
3037
+
3038
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
3039
+
3040
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
3041
+
3042
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
3043
+
3044
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
3045
+
3046
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
3047
+
3048
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
3049
+
3050
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
3051
+
3052
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
3053
+
3054
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
3055
+
3056
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
3057
+
3058
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
3059
+
3060
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
3061
+
3062
+ END OF TERMS AND CONDITIONS
3063
+
3064
+ APPENDIX: How to apply the Apache License to your work.
3065
+
3066
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets &quot;[]&quot; replaced with your own identifying information. (Don&#x27;t include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same &quot;printed page&quot; as the copyright notice for easier identification within third-party archives.
3067
+
3068
+ Copyright [yyyy] [name of copyright owner]
3069
+
3070
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
3071
+ you may not use this file except in compliance with the License.
3072
+ You may obtain a copy of the License at
3073
+
3074
+ http://www.apache.org/licenses/LICENSE-2.0
3075
+
3076
+ Unless required by applicable law or agreed to in writing, software
3077
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
3078
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3079
+ See the License for the specific language governing permissions and
3080
+ limitations under the License.
3081
+ </pre>
3082
+ </li>
3083
+ <li class="license">
3084
+ <h3 id="Apache-2.0">Apache License 2.0</h3>
3085
+ <h4>Used by:</h4>
3086
+ <ul class="license-used-by">
3087
+ <li><a
3088
+ href=" https://github.com/chronotope/chrono ">chrono
3089
+ 0.4.43</a></li>
3090
+ </ul>
3091
+ <pre class="license-text">Rust-chrono is dual-licensed under The MIT License [1] and
3092
+ Apache 2.0 License [2]. Copyright (c) 2014--2026, Kang Seonghoon and
3093
+ contributors.
3094
+
3095
+ Nota Bene: This is same as the Rust Project&#x27;s own license.
3096
+
3097
+
3098
+ [1]: &lt;http://opensource.org/licenses/MIT&gt;, which is reproduced below:
3099
+
3100
+ ~~~~
3101
+ The MIT License (MIT)
3102
+
3103
+ Copyright (c) 2014, Kang Seonghoon.
3104
+
3105
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3106
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3107
+ in the Software without restriction, including without limitation the rights
3108
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3109
+ copies of the Software, and to permit persons to whom the Software is
3110
+ furnished to do so, subject to the following conditions:
3111
+
3112
+ The above copyright notice and this permission notice shall be included in
3113
+ all copies or substantial portions of the Software.
3114
+
3115
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3116
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3117
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3118
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3119
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3120
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3121
+ THE SOFTWARE.
3122
+ ~~~~
3123
+
3124
+
3125
+ [2]: &lt;http://www.apache.org/licenses/LICENSE-2.0&gt;, which is reproduced below:
3126
+
3127
+ ~~~~
3128
+ Apache License
3129
+ Version 2.0, January 2004
3130
+ http://www.apache.org/licenses/
3131
+
3132
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3133
+
3134
+ 1. Definitions.
3135
+
3136
+ &quot;License&quot; shall mean the terms and conditions for use, reproduction,
3137
+ and distribution as defined by Sections 1 through 9 of this document.
3138
+
3139
+ &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
3140
+ the copyright owner that is granting the License.
3141
+
3142
+ &quot;Legal Entity&quot; shall mean the union of the acting entity and all
3143
+ other entities that control, are controlled by, or are under common
3144
+ control with that entity. For the purposes of this definition,
3145
+ &quot;control&quot; means (i) the power, direct or indirect, to cause the
3146
+ direction or management of such entity, whether by contract or
3147
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
3148
+ outstanding shares, or (iii) beneficial ownership of such entity.
3149
+
3150
+ &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
3151
+ exercising permissions granted by this License.
3152
+
3153
+ &quot;Source&quot; form shall mean the preferred form for making modifications,
3154
+ including but not limited to software source code, documentation
3155
+ source, and configuration files.
3156
+
3157
+ &quot;Object&quot; form shall mean any form resulting from mechanical
3158
+ transformation or translation of a Source form, including but
3159
+ not limited to compiled object code, generated documentation,
3160
+ and conversions to other media types.
3161
+
3162
+ &quot;Work&quot; shall mean the work of authorship, whether in Source or
3163
+ Object form, made available under the License, as indicated by a
3164
+ copyright notice that is included in or attached to the work
3165
+ (an example is provided in the Appendix below).
3166
+
3167
+ &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
3168
+ form, that is based on (or derived from) the Work and for which the
3169
+ editorial revisions, annotations, elaborations, or other modifications
3170
+ represent, as a whole, an original work of authorship. For the purposes
3171
+ of this License, Derivative Works shall not include works that remain
3172
+ separable from, or merely link (or bind by name) to the interfaces of,
3173
+ the Work and Derivative Works thereof.
3174
+
3175
+ &quot;Contribution&quot; shall mean any work of authorship, including
3176
+ the original version of the Work and any modifications or additions
3177
+ to that Work or Derivative Works thereof, that is intentionally
3178
+ submitted to Licensor for inclusion in the Work by the copyright owner
3179
+ or by an individual or Legal Entity authorized to submit on behalf of
3180
+ the copyright owner. For the purposes of this definition, &quot;submitted&quot;
3181
+ means any form of electronic, verbal, or written communication sent
3182
+ to the Licensor or its representatives, including but not limited to
3183
+ communication on electronic mailing lists, source code control systems,
3184
+ and issue tracking systems that are managed by, or on behalf of, the
3185
+ Licensor for the purpose of discussing and improving the Work, but
3186
+ excluding communication that is conspicuously marked or otherwise
3187
+ designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
3188
+
3189
+ &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
3190
+ on behalf of whom a Contribution has been received by Licensor and
3191
+ subsequently incorporated within the Work.
3192
+
3193
+ 2. Grant of Copyright License. Subject to the terms and conditions of
3194
+ this License, each Contributor hereby grants to You a perpetual,
3195
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3196
+ copyright license to reproduce, prepare Derivative Works of,
3197
+ publicly display, publicly perform, sublicense, and distribute the
3198
+ Work and such Derivative Works in Source or Object form.
3199
+
3200
+ 3. Grant of Patent License. Subject to the terms and conditions of
3201
+ this License, each Contributor hereby grants to You a perpetual,
3202
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3203
+ (except as stated in this section) patent license to make, have made,
3204
+ use, offer to sell, sell, import, and otherwise transfer the Work,
3205
+ where such license applies only to those patent claims licensable
3206
+ by such Contributor that are necessarily infringed by their
3207
+ Contribution(s) alone or by combination of their Contribution(s)
3208
+ with the Work to which such Contribution(s) was submitted. If You
3209
+ institute patent litigation against any entity (including a
3210
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
3211
+ or a Contribution incorporated within the Work constitutes direct
3212
+ or contributory patent infringement, then any patent licenses
3213
+ granted to You under this License for that Work shall terminate
3214
+ as of the date such litigation is filed.
3215
+
3216
+ 4. Redistribution. You may reproduce and distribute copies of the
3217
+ Work or Derivative Works thereof in any medium, with or without
3218
+ modifications, and in Source or Object form, provided that You
3219
+ meet the following conditions:
3220
+
3221
+ (a) You must give any other recipients of the Work or
3222
+ Derivative Works a copy of this License; and
3223
+
3224
+ (b) You must cause any modified files to carry prominent notices
3225
+ stating that You changed the files; and
3226
+
3227
+ (c) You must retain, in the Source form of any Derivative Works
3228
+ that You distribute, all copyright, patent, trademark, and
3229
+ attribution notices from the Source form of the Work,
3230
+ excluding those notices that do not pertain to any part of
3231
+ the Derivative Works; and
3232
+
3233
+ (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
3234
+ distribution, then any Derivative Works that You distribute must
3235
+ include a readable copy of the attribution notices contained
3236
+ within such NOTICE file, excluding those notices that do not
3237
+ pertain to any part of the Derivative Works, in at least one
3238
+ of the following places: within a NOTICE text file distributed
3239
+ as part of the Derivative Works; within the Source form or
3240
+ documentation, if provided along with the Derivative Works; or,
3241
+ within a display generated by the Derivative Works, if and
3242
+ wherever such third-party notices normally appear. The contents
3243
+ of the NOTICE file are for informational purposes only and
3244
+ do not modify the License. You may add Your own attribution
3245
+ notices within Derivative Works that You distribute, alongside
3246
+ or as an addendum to the NOTICE text from the Work, provided
3247
+ that such additional attribution notices cannot be construed
3248
+ as modifying the License.
3249
+
3250
+ You may add Your own copyright statement to Your modifications and
3251
+ may provide additional or different license terms and conditions
3252
+ for use, reproduction, or distribution of Your modifications, or
3253
+ for any such Derivative Works as a whole, provided Your use,
3254
+ reproduction, and distribution of the Work otherwise complies with
3255
+ the conditions stated in this License.
3256
+
3257
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
3258
+ any Contribution intentionally submitted for inclusion in the Work
3259
+ by You to the Licensor shall be under the terms and conditions of
3260
+ this License, without any additional terms or conditions.
3261
+ Notwithstanding the above, nothing herein shall supersede or modify
3262
+ the terms of any separate license agreement you may have executed
3263
+ with Licensor regarding such Contributions.
3264
+
3265
+ 6. Trademarks. This License does not grant permission to use the trade
3266
+ names, trademarks, service marks, or product names of the Licensor,
3267
+ except as required for reasonable and customary use in describing the
3268
+ origin of the Work and reproducing the content of the NOTICE file.
3269
+
3270
+ 7. Disclaimer of Warranty. Unless required by applicable law or
3271
+ agreed to in writing, Licensor provides the Work (and each
3272
+ Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
3273
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3274
+ implied, including, without limitation, any warranties or conditions
3275
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3276
+ PARTICULAR PURPOSE. You are solely responsible for determining the
3277
+ appropriateness of using or redistributing the Work and assume any
3278
+ risks associated with Your exercise of permissions under this License.
3279
+
3280
+ 8. Limitation of Liability. In no event and under no legal theory,
3281
+ whether in tort (including negligence), contract, or otherwise,
3282
+ unless required by applicable law (such as deliberate and grossly
3283
+ negligent acts) or agreed to in writing, shall any Contributor be
3284
+ liable to You for damages, including any direct, indirect, special,
3285
+ incidental, or consequential damages of any character arising as a
3286
+ result of this License or out of the use or inability to use the
3287
+ Work (including but not limited to damages for loss of goodwill,
3288
+ work stoppage, computer failure or malfunction, or any and all
3289
+ other commercial damages or losses), even if such Contributor
3290
+ has been advised of the possibility of such damages.
3291
+
3292
+ 9. Accepting Warranty or Additional Liability. While redistributing
3293
+ the Work or Derivative Works thereof, You may choose to offer,
3294
+ and charge a fee for, acceptance of support, warranty, indemnity,
3295
+ or other liability obligations and/or rights consistent with this
3296
+ License. However, in accepting such obligations, You may act only
3297
+ on Your own behalf and on Your sole responsibility, not on behalf
3298
+ of any other Contributor, and only if You agree to indemnify,
3299
+ defend, and hold each Contributor harmless for any liability
3300
+ incurred by, or claims asserted against, such Contributor by reason
3301
+ of your accepting any such warranty or additional liability.
3302
+
3303
+ END OF TERMS AND CONDITIONS
3304
+
3305
+ APPENDIX: How to apply the Apache License to your work.
3306
+
3307
+ To apply the Apache License to your work, attach the following
3308
+ boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
3309
+ replaced with your own identifying information. (Don&#x27;t include
3310
+ the brackets!) The text should be enclosed in the appropriate
3311
+ comment syntax for the file format. We also recommend that a
3312
+ file or class name and description of purpose be included on the
3313
+ same &quot;printed page&quot; as the copyright notice for easier
3314
+ identification within third-party archives.
3315
+
3316
+ Copyright [yyyy] [name of copyright owner]
3317
+
3318
+ Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
3319
+ you may not use this file except in compliance with the License.
3320
+ You may obtain a copy of the License at
3321
+
3322
+ http://www.apache.org/licenses/LICENSE-2.0
3323
+
3324
+ Unless required by applicable law or agreed to in writing, software
3325
+ distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
3326
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3327
+ See the License for the specific language governing permissions and
3328
+ limitations under the License.
3329
+ ~~~~
3330
+
3331
+ </pre>
3332
+ </li>
3333
+ <li class="license">
3334
+ <h3 id="BSD-2-Clause">BSD 2-Clause &quot;Simplified&quot; License</h3>
3335
+ <h4>Used by:</h4>
3336
+ <ul class="license-used-by">
3337
+ <li><a
3338
+ href=" https://github.com/ruby/rbs.git ">ruby-rbs-sys
3339
+ 0.3.0</a></li>
3340
+ <li><a
3341
+ href=" https://github.com/ruby/rbs.git ">ruby-rbs
3342
+ 0.3.0</a></li>
3343
+ </ul>
3344
+ <pre class="license-text">Copyright (c) &lt;year&gt; &lt;owner&gt;
3345
+
3346
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
3347
+
3348
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
3349
+
3350
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3351
+
3352
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3353
+ </pre>
3354
+ </li>
3355
+ <li class="license">
3356
+ <h3 id="BSD-3-Clause">BSD 3-Clause &quot;New&quot; or &quot;Revised&quot; License</h3>
3357
+ <h4>Used by:</h4>
3358
+ <ul class="license-used-by">
3359
+ <li><a
3360
+ href=" https://github.com/rust-lang/rust-bindgen ">bindgen
3361
+ 0.72.1</a></li>
3362
+ </ul>
3363
+ <pre class="license-text">BSD 3-Clause License
3364
+
3365
+ Copyright (c) 2013, Jyun-Yan You
3366
+ All rights reserved.
3367
+
3368
+ Redistribution and use in source and binary forms, with or without
3369
+ modification, are permitted provided that the following conditions are met:
3370
+
3371
+ * Redistributions of source code must retain the above copyright notice, this
3372
+ list of conditions and the following disclaimer.
3373
+
3374
+ * Redistributions in binary form must reproduce the above copyright notice,
3375
+ this list of conditions and the following disclaimer in the documentation
3376
+ and/or other materials provided with the distribution.
3377
+
3378
+ * Neither the name of the copyright holder nor the names of its
3379
+ contributors may be used to endorse or promote products derived from
3380
+ this software without specific prior written permission.
3381
+
3382
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
3383
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3384
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3385
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
3386
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3387
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
3388
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
3389
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3390
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3391
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3392
+ </pre>
3393
+ </li>
3394
+ <li class="license">
3395
+ <h3 id="BSL-1.0">Boost Software License 1.0</h3>
3396
+ <h4>Used by:</h4>
3397
+ <ul class="license-used-by">
3398
+ <li><a
3399
+ href=" https://github.com/DoumanAsh/xxhash-rust ">xxhash-rust
3400
+ 0.8.15</a></li>
3401
+ </ul>
3402
+ <pre class="license-text">Boost Software License - Version 1.0 - August 17th, 2003
3403
+
3404
+ Permission is hereby granted, free of charge, to any person or organization
3405
+ obtaining a copy of the software and accompanying documentation covered by
3406
+ this license (the &quot;Software&quot;) to use, reproduce, display, distribute,
3407
+ execute, and transmit the Software, and to prepare derivative works of the
3408
+ Software, and to permit third-parties to whom the Software is furnished to
3409
+ do so, all subject to the following:
3410
+
3411
+ The copyright notices in the Software and this entire statement, including
3412
+ the above license grant, this restriction and the following disclaimer,
3413
+ must be included in all copies of the Software, in whole or in part, and
3414
+ all derivative works of the Software, unless such copies or derivative
3415
+ works are solely in the form of machine-executable object code generated by
3416
+ a source language processor.
3417
+
3418
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3419
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3420
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
3421
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
3422
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
3423
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3424
+ DEALINGS IN THE SOFTWARE.
3425
+ </pre>
3426
+ </li>
3427
+ <li class="license">
3428
+ <h3 id="ISC">ISC License</h3>
3429
+ <h4>Used by:</h4>
3430
+ <ul class="license-used-by">
3431
+ <li><a
3432
+ href=" https://github.com/nagisa/rust_libloading/ ">libloading
3433
+ 0.8.8</a></li>
3434
+ </ul>
3435
+ <pre class="license-text">Copyright © 2015, Simonas Kazlauskas
3436
+
3437
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without
3438
+ fee is hereby granted, provided that the above copyright notice and this permission notice appear
3439
+ in all copies.
3440
+
3441
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot; AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
3442
+ SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
3443
+ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3444
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
3445
+ NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
3446
+ THIS SOFTWARE.
3447
+ </pre>
3448
+ </li>
3449
+ <li class="license">
3450
+ <h3 id="MIT">MIT License</h3>
3451
+ <h4>Used by:</h4>
3452
+ <ul class="license-used-by">
3453
+ <li><a
3454
+ href=" https://github.com/Geal/nom ">nom
3455
+ 7.1.3</a></li>
3456
+ </ul>
3457
+ <pre class="license-text">Copyright (c) 2014-2019 Geoffroy Couprie
3458
+
3459
+ Permission is hereby granted, free of charge, to any person obtaining
3460
+ a copy of this software and associated documentation files (the
3461
+ &quot;Software&quot;), to deal in the Software without restriction, including
3462
+ without limitation the rights to use, copy, modify, merge, publish,
3463
+ distribute, sublicense, and/or sell copies of the Software, and to
3464
+ permit persons to whom the Software is furnished to do so, subject to
3465
+ the following conditions:
3466
+
3467
+ The above copyright notice and this permission notice shall be
3468
+ included in all copies or substantial portions of the Software.
3469
+
3470
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
3471
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3472
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3473
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3474
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3475
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3476
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3477
+ </pre>
3478
+ </li>
3479
+ <li class="license">
3480
+ <h3 id="MIT">MIT License</h3>
3481
+ <h4>Used by:</h4>
3482
+ <ul class="license-used-by">
3483
+ <li><a
3484
+ href=" https://github.com/mikedilger/float-cmp ">float-cmp
3485
+ 0.10.0</a></li>
3486
+ </ul>
3487
+ <pre class="license-text">Copyright (c) 2014-2020 Optimal Computing (NZ) Ltd
3488
+
3489
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3490
+ this software and associated documentation files (the &quot;Software&quot;), to deal in
3491
+ the Software without restriction, including without limitation the rights to
3492
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
3493
+ of the Software, and to permit persons to whom the Software is furnished to do
3494
+ so, subject to the following conditions:
3495
+
3496
+ The above copyright notice and this permission notice shall be included in all
3497
+ copies or substantial portions of the Software.
3498
+
3499
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3500
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3501
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3502
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3503
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3504
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
3505
+ IN THE SOFTWARE.
3506
+ </pre>
3507
+ </li>
3508
+ <li class="license">
3509
+ <h3 id="MIT">MIT License</h3>
3510
+ <h4>Used by:</h4>
3511
+ <ul class="license-used-by">
3512
+ <li><a
3513
+ href=" https://github.com/tokio-rs/bytes ">bytes
3514
+ 1.11.1</a></li>
3515
+ </ul>
3516
+ <pre class="license-text">Copyright (c) 2018 Carl Lerche
3517
+
3518
+ Permission is hereby granted, free of charge, to any
3519
+ person obtaining a copy of this software and associated
3520
+ documentation files (the &quot;Software&quot;), to deal in the
3521
+ Software without restriction, including without
3522
+ limitation the rights to use, copy, modify, merge,
3523
+ publish, distribute, sublicense, and/or sell copies of
3524
+ the Software, and to permit persons to whom the Software
3525
+ is furnished to do so, subject to the following
3526
+ conditions:
3527
+
3528
+ The above copyright notice and this permission notice
3529
+ shall be included in all copies or substantial portions
3530
+ of the Software.
3531
+
3532
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF
3533
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
3534
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
3535
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
3536
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3537
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3538
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
3539
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3540
+ DEALINGS IN THE SOFTWARE.
3541
+ </pre>
3542
+ </li>
3543
+ <li class="license">
3544
+ <h3 id="MIT">MIT License</h3>
3545
+ <h4>Used by:</h4>
3546
+ <ul class="license-used-by">
3547
+ <li><a
3548
+ href=" https://github.com/tokio-rs/slab ">slab
3549
+ 0.4.12</a></li>
3550
+ </ul>
3551
+ <pre class="license-text">Copyright (c) 2019 Carl Lerche
3552
+
3553
+ Permission is hereby granted, free of charge, to any
3554
+ person obtaining a copy of this software and associated
3555
+ documentation files (the &quot;Software&quot;), to deal in the
3556
+ Software without restriction, including without
3557
+ limitation the rights to use, copy, modify, merge,
3558
+ publish, distribute, sublicense, and/or sell copies of
3559
+ the Software, and to permit persons to whom the Software
3560
+ is furnished to do so, subject to the following
3561
+ conditions:
3562
+
3563
+ The above copyright notice and this permission notice
3564
+ shall be included in all copies or substantial portions
3565
+ of the Software.
3566
+
3567
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF
3568
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
3569
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
3570
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
3571
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3572
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3573
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
3574
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3575
+ DEALINGS IN THE SOFTWARE.
3576
+ </pre>
3577
+ </li>
3578
+ <li class="license">
3579
+ <h3 id="MIT">MIT License</h3>
3580
+ <h4>Used by:</h4>
3581
+ <ul class="license-used-by">
3582
+ <li><a
3583
+ href=" https://github.com/tokio-rs/tracing ">tracing-attributes
3584
+ 0.1.31</a></li>
3585
+ <li><a
3586
+ href=" https://github.com/tokio-rs/tracing ">tracing-core
3587
+ 0.1.36</a></li>
3588
+ <li><a
3589
+ href=" https://github.com/tokio-rs/tracing ">tracing
3590
+ 0.1.44</a></li>
3591
+ </ul>
3592
+ <pre class="license-text">Copyright (c) 2019 Tokio Contributors
3593
+
3594
+ Permission is hereby granted, free of charge, to any
3595
+ person obtaining a copy of this software and associated
3596
+ documentation files (the &quot;Software&quot;), to deal in the
3597
+ Software without restriction, including without
3598
+ limitation the rights to use, copy, modify, merge,
3599
+ publish, distribute, sublicense, and/or sell copies of
3600
+ the Software, and to permit persons to whom the Software
3601
+ is furnished to do so, subject to the following
3602
+ conditions:
3603
+
3604
+ The above copyright notice and this permission notice
3605
+ shall be included in all copies or substantial portions
3606
+ of the Software.
3607
+
3608
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF
3609
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
3610
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
3611
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
3612
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3613
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3614
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
3615
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3616
+ DEALINGS IN THE SOFTWARE.
3617
+ </pre>
3618
+ </li>
3619
+ <li class="license">
3620
+ <h3 id="MIT">MIT License</h3>
3621
+ <h4>Used by:</h4>
3622
+ <ul class="license-used-by">
3623
+ <li><a
3624
+ href=" https://github.com/rust-cli/termtree ">termtree
3625
+ 0.5.1</a></li>
3626
+ </ul>
3627
+ <pre class="license-text">Copyright (c) Individual contributors
3628
+
3629
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3630
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3631
+ in the Software without restriction, including without limitation the rights
3632
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3633
+ copies of the Software, and to permit persons to whom the Software is
3634
+ furnished to do so, subject to the following conditions:
3635
+
3636
+ The above copyright notice and this permission notice shall be included in all
3637
+ copies or substantial portions of the Software.
3638
+
3639
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3640
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3641
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3642
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3643
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3644
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3645
+ SOFTWARE.
3646
+ </pre>
3647
+ </li>
3648
+ <li class="license">
3649
+ <h3 id="MIT">MIT License</h3>
3650
+ <h4>Used by:</h4>
3651
+ <ul class="license-used-by">
3652
+ <li><a
3653
+ href=" https://github.com/mystor/synstructure ">synstructure
3654
+ 0.13.2</a></li>
3655
+ </ul>
3656
+ <pre class="license-text">Copyright 2016 Nika Layzell
3657
+
3658
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3659
+
3660
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3661
+
3662
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3663
+ </pre>
3664
+ </li>
3665
+ <li class="license">
3666
+ <h3 id="MIT">MIT License</h3>
3667
+ <h4>Used by:</h4>
3668
+ <ul class="license-used-by">
3669
+ <li><a
3670
+ href=" https://github.com/ruby/prism ">ruby-prism-sys
3671
+ 1.9.0</a></li>
3672
+ <li><a
3673
+ href=" https://github.com/ruby/prism ">ruby-prism
3674
+ 1.9.0</a></li>
3675
+ </ul>
3676
+ <pre class="license-text">Copyright 2022-present, Shopify Inc.
3677
+
3678
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3679
+
3680
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3681
+
3682
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3683
+ </pre>
3684
+ </li>
3685
+ <li class="license">
3686
+ <h3 id="MIT">MIT License</h3>
3687
+ <h4>Used by:</h4>
3688
+ <ul class="license-used-by">
3689
+ <li><a
3690
+ href=" https://github.com/TedDriggs/darling ">darling
3691
+ 0.23.0</a></li>
3692
+ <li><a
3693
+ href=" https://github.com/TedDriggs/darling ">darling_core
3694
+ 0.23.0</a></li>
3695
+ <li><a
3696
+ href=" https://github.com/TedDriggs/darling ">darling_macro
3697
+ 0.23.0</a></li>
3698
+ </ul>
3699
+ <pre class="license-text">MIT License
3700
+
3701
+ Copyright (c) 2017 Ted Driggs
3702
+
3703
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3704
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3705
+ in the Software without restriction, including without limitation the rights
3706
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3707
+ copies of the Software, and to permit persons to whom the Software is
3708
+ furnished to do so, subject to the following conditions:
3709
+
3710
+ The above copyright notice and this permission notice shall be included in all
3711
+ copies or substantial portions of the Software.
3712
+
3713
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3714
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3715
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3716
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3717
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3718
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3719
+ SOFTWARE.
3720
+ </pre>
3721
+ </li>
3722
+ <li class="license">
3723
+ <h3 id="MIT">MIT License</h3>
3724
+ <h4>Used by:</h4>
3725
+ <ul class="license-used-by">
3726
+ <li><a
3727
+ href=" https://github.com/GuillaumeGomez/doc-comment ">doc-comment
3728
+ 0.3.3</a></li>
3729
+ </ul>
3730
+ <pre class="license-text">MIT License
3731
+
3732
+ Copyright (c) 2018 Guillaume Gomez
3733
+
3734
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3735
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3736
+ in the Software without restriction, including without limitation the rights
3737
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3738
+ copies of the Software, and to permit persons to whom the Software is
3739
+ furnished to do so, subject to the following conditions:
3740
+
3741
+ The above copyright notice and this permission notice shall be included in all
3742
+ copies or substantial portions of the Software.
3743
+
3744
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3745
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3746
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3747
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3748
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3749
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3750
+ SOFTWARE.
3751
+ </pre>
3752
+ </li>
3753
+ <li class="license">
3754
+ <h3 id="MIT">MIT License</h3>
3755
+ <h4>Used by:</h4>
3756
+ <ul class="license-used-by">
3757
+ <li><a
3758
+ href=" https://github.com/GREsau/schemars ">schemars
3759
+ 1.2.1</a></li>
3760
+ <li><a
3761
+ href=" https://github.com/GREsau/schemars ">schemars_derive
3762
+ 1.2.1</a></li>
3763
+ </ul>
3764
+ <pre class="license-text">MIT License
3765
+
3766
+ Copyright (c) 2019 Graham Esau
3767
+
3768
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3769
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3770
+ in the Software without restriction, including without limitation the rights
3771
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3772
+ copies of the Software, and to permit persons to whom the Software is
3773
+ furnished to do so, subject to the following conditions:
3774
+
3775
+ The above copyright notice and this permission notice shall be included in all
3776
+ copies or substantial portions of the Software.
3777
+
3778
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3779
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3780
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3781
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3782
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3783
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3784
+ SOFTWARE.
3785
+ </pre>
3786
+ </li>
3787
+ <li class="license">
3788
+ <h3 id="MIT">MIT License</h3>
3789
+ <h4>Used by:</h4>
3790
+ <ul class="license-used-by">
3791
+ <li><a
3792
+ href=" https://github.com/tokio-rs/tokio ">tokio-macros
3793
+ 2.6.0</a></li>
3794
+ </ul>
3795
+ <pre class="license-text">MIT License
3796
+
3797
+ Copyright (c) 2019 Yoshua Wuyts
3798
+ Copyright (c) Tokio Contributors
3799
+
3800
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3801
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3802
+ in the Software without restriction, including without limitation the rights
3803
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3804
+ copies of the Software, and to permit persons to whom the Software is
3805
+ furnished to do so, subject to the following conditions:
3806
+
3807
+ The above copyright notice and this permission notice shall be included in all
3808
+ copies or substantial portions of the Software.
3809
+
3810
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3811
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3812
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3813
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3814
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3815
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3816
+ SOFTWARE.
3817
+ </pre>
3818
+ </li>
3819
+ <li class="license">
3820
+ <h3 id="MIT">MIT License</h3>
3821
+ <h4>Used by:</h4>
3822
+ <ul class="license-used-by">
3823
+ <li><a
3824
+ href=" https://crates.io/crates/rubydex ">rubydex
3825
+ 0.1.0</a></li>
3826
+ <li><a
3827
+ href=" https://crates.io/crates/rubydex-mcp ">rubydex-mcp
3828
+ 0.1.0</a></li>
3829
+ <li><a
3830
+ href=" https://crates.io/crates/rubydex-sys ">rubydex-sys
3831
+ 0.1.0</a></li>
3832
+ <li><a
3833
+ href=" https://github.com/DimaKudosh/difflib ">difflib
3834
+ 0.4.0</a></li>
3835
+ </ul>
3836
+ <pre class="license-text">MIT License
3837
+
3838
+ Copyright (c) &lt;year&gt; &lt;copyright holders&gt;
3839
+
3840
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
3841
+ associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including
3842
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3843
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
3844
+ following conditions:
3845
+
3846
+ The above copyright notice and this permission notice shall be included in all copies or substantial
3847
+ portions of the Software.
3848
+
3849
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
3850
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
3851
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3852
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
3853
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
3854
+ </pre>
3855
+ </li>
3856
+ <li class="license">
3857
+ <h3 id="MIT">MIT License</h3>
3858
+ <h4>Used by:</h4>
3859
+ <ul class="license-used-by">
3860
+ <li><a
3861
+ href=" https://github.com/tokio-rs/tokio ">tokio-util
3862
+ 0.7.18</a></li>
3863
+ <li><a
3864
+ href=" https://github.com/tokio-rs/tokio ">tokio
3865
+ 1.49.0</a></li>
3866
+ </ul>
3867
+ <pre class="license-text">MIT License
3868
+
3869
+ Copyright (c) Tokio Contributors
3870
+
3871
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3872
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3873
+ in the Software without restriction, including without limitation the rights
3874
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3875
+ copies of the Software, and to permit persons to whom the Software is
3876
+ furnished to do so, subject to the following conditions:
3877
+
3878
+ The above copyright notice and this permission notice shall be included in all
3879
+ copies or substantial portions of the Software.
3880
+
3881
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3882
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3883
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3884
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3885
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3886
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3887
+ SOFTWARE.
3888
+ </pre>
3889
+ </li>
3890
+ <li class="license">
3891
+ <h3 id="MIT">MIT License</h3>
3892
+ <h4>Used by:</h4>
3893
+ <ul class="license-used-by">
3894
+ <li><a
3895
+ href=" https://github.com/dtolnay/unsafe-libyaml ">unsafe-libyaml
3896
+ 0.2.11</a></li>
3897
+ </ul>
3898
+ <pre class="license-text">Permission is hereby granted, free of charge, to any
3899
+ person obtaining a copy of this software and associated
3900
+ documentation files (the &quot;Software&quot;), to deal in the
3901
+ Software without restriction, including without
3902
+ limitation the rights to use, copy, modify, merge,
3903
+ publish, distribute, sublicense, and/or sell copies of
3904
+ the Software, and to permit persons to whom the Software
3905
+ is furnished to do so, subject to the following
3906
+ conditions:
3907
+
3908
+ The above copyright notice and this permission notice
3909
+ shall be included in all copies or substantial portions
3910
+ of the Software.
3911
+
3912
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF
3913
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
3914
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
3915
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
3916
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3917
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3918
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
3919
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3920
+ DEALINGS IN THE SOFTWARE.
3921
+ </pre>
3922
+ </li>
3923
+ <li class="license">
3924
+ <h3 id="MIT">MIT License</h3>
3925
+ <h4>Used by:</h4>
3926
+ <ul class="license-used-by">
3927
+ <li><a
3928
+ href=" https://github.com/winnow-rs/winnow ">winnow
3929
+ 0.7.12</a></li>
3930
+ </ul>
3931
+ <pre class="license-text">Permission is hereby granted, free of charge, to any person obtaining
3932
+ a copy of this software and associated documentation files (the
3933
+ &quot;Software&quot;), to deal in the Software without restriction, including
3934
+ without limitation the rights to use, copy, modify, merge, publish,
3935
+ distribute, sublicense, and/or sell copies of the Software, and to
3936
+ permit persons to whom the Software is furnished to do so, subject to
3937
+ the following conditions:
3938
+
3939
+ The above copyright notice and this permission notice shall be
3940
+ included in all copies or substantial portions of the Software.
3941
+
3942
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
3943
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3944
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3945
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3946
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3947
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3948
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3949
+ </pre>
3950
+ </li>
3951
+ <li class="license">
3952
+ <h3 id="MIT">MIT License</h3>
3953
+ <h4>Used by:</h4>
3954
+ <ul class="license-used-by">
3955
+ <li><a
3956
+ href=" https://github.com/BurntSushi/aho-corasick ">aho-corasick
3957
+ 1.1.3</a></li>
3958
+ <li><a
3959
+ href=" https://github.com/BurntSushi/memchr ">memchr
3960
+ 2.7.5</a></li>
3961
+ </ul>
3962
+ <pre class="license-text">The MIT License (MIT)
3963
+
3964
+ Copyright (c) 2015 Andrew Gallant
3965
+
3966
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3967
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
3968
+ in the Software without restriction, including without limitation the rights
3969
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3970
+ copies of the Software, and to permit persons to whom the Software is
3971
+ furnished to do so, subject to the following conditions:
3972
+
3973
+ The above copyright notice and this permission notice shall be included in
3974
+ all copies or substantial portions of the Software.
3975
+
3976
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3977
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3978
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3979
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3980
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3981
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3982
+ THE SOFTWARE.
3983
+ </pre>
3984
+ </li>
3985
+ <li class="license">
3986
+ <h3 id="MIT">MIT License</h3>
3987
+ <h4>Used by:</h4>
3988
+ <ul class="license-used-by">
3989
+ <li><a
3990
+ href=" https://github.com/rapidfuzz/strsim-rs ">strsim
3991
+ 0.11.1</a></li>
3992
+ </ul>
3993
+ <pre class="license-text">The MIT License (MIT)
3994
+
3995
+ Copyright (c) 2015 Danny Guo
3996
+ Copyright (c) 2016 Titus Wormer &lt;tituswormer@gmail.com&gt;
3997
+ Copyright (c) 2018 Akash Kurdekar
3998
+
3999
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4000
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
4001
+ in the Software without restriction, including without limitation the rights
4002
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4003
+ copies of the Software, and to permit persons to whom the Software is
4004
+ furnished to do so, subject to the following conditions:
4005
+
4006
+ The above copyright notice and this permission notice shall be included in all
4007
+ copies or substantial portions of the Software.
4008
+
4009
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4010
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4011
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4012
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4013
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4014
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4015
+ SOFTWARE.
4016
+ </pre>
4017
+ </li>
4018
+ <li class="license">
4019
+ <h3 id="MPL-2.0">Mozilla Public License 2.0</h3>
4020
+ <h4>Used by:</h4>
4021
+ <ul class="license-used-by">
4022
+ <li><a
4023
+ href=" https://github.com/mozilla/cbindgen ">cbindgen
4024
+ 0.29.0</a></li>
4025
+ </ul>
4026
+ <pre class="license-text">Mozilla Public License Version 2.0
4027
+ &#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;&#x3D;
4028
+
4029
+ 1. Definitions
4030
+ --------------
4031
+
4032
+ 1.1. &quot;Contributor&quot;
4033
+ means each individual or legal entity that creates, contributes to
4034
+ the creation of, or owns Covered Software.
4035
+
4036
+ 1.2. &quot;Contributor Version&quot;
4037
+ means the combination of the Contributions of others (if any) used
4038
+ by a Contributor and that particular Contributor&#x27;s Contribution.
4039
+
4040
+ 1.3. &quot;Contribution&quot;
4041
+ means Covered Software of a particular Contributor.
4042
+
4043
+ 1.4. &quot;Covered Software&quot;
4044
+ means Source Code Form to which the initial Contributor has attached
4045
+ the notice in Exhibit A, the Executable Form of such Source Code
4046
+ Form, and Modifications of such Source Code Form, in each case
4047
+ including portions thereof.
4048
+
4049
+ 1.5. &quot;Incompatible With Secondary Licenses&quot;
4050
+ means
4051
+
4052
+ (a) that the initial Contributor has attached the notice described
4053
+ in Exhibit B to the Covered Software; or
4054
+
4055
+ (b) that the Covered Software was made available under the terms of
4056
+ version 1.1 or earlier of the License, but not also under the
4057
+ terms of a Secondary License.
4058
+
4059
+ 1.6. &quot;Executable Form&quot;
4060
+ means any form of the work other than Source Code Form.
4061
+
4062
+ 1.7. &quot;Larger Work&quot;
4063
+ means a work that combines Covered Software with other material, in
4064
+ a separate file or files, that is not Covered Software.
4065
+
4066
+ 1.8. &quot;License&quot;
4067
+ means this document.
4068
+
4069
+ 1.9. &quot;Licensable&quot;
4070
+ means having the right to grant, to the maximum extent possible,
4071
+ whether at the time of the initial grant or subsequently, any and
4072
+ all of the rights conveyed by this License.
4073
+
4074
+ 1.10. &quot;Modifications&quot;
4075
+ means any of the following:
4076
+
4077
+ (a) any file in Source Code Form that results from an addition to,
4078
+ deletion from, or modification of the contents of Covered
4079
+ Software; or
4080
+
4081
+ (b) any new file in Source Code Form that contains any Covered
4082
+ Software.
4083
+
4084
+ 1.11. &quot;Patent Claims&quot; of a Contributor
4085
+ means any patent claim(s), including without limitation, method,
4086
+ process, and apparatus claims, in any patent Licensable by such
4087
+ Contributor that would be infringed, but for the grant of the
4088
+ License, by the making, using, selling, offering for sale, having
4089
+ made, import, or transfer of either its Contributions or its
4090
+ Contributor Version.
4091
+
4092
+ 1.12. &quot;Secondary License&quot;
4093
+ means either the GNU General Public License, Version 2.0, the GNU
4094
+ Lesser General Public License, Version 2.1, the GNU Affero General
4095
+ Public License, Version 3.0, or any later versions of those
4096
+ licenses.
4097
+
4098
+ 1.13. &quot;Source Code Form&quot;
4099
+ means the form of the work preferred for making modifications.
4100
+
4101
+ 1.14. &quot;You&quot; (or &quot;Your&quot;)
4102
+ means an individual or a legal entity exercising rights under this
4103
+ License. For legal entities, &quot;You&quot; includes any entity that
4104
+ controls, is controlled by, or is under common control with You. For
4105
+ purposes of this definition, &quot;control&quot; means (a) the power, direct
4106
+ or indirect, to cause the direction or management of such entity,
4107
+ whether by contract or otherwise, or (b) ownership of more than
4108
+ fifty percent (50%) of the outstanding shares or beneficial
4109
+ ownership of such entity.
4110
+
4111
+ 2. License Grants and Conditions
4112
+ --------------------------------
4113
+
4114
+ 2.1. Grants
4115
+
4116
+ Each Contributor hereby grants You a world-wide, royalty-free,
4117
+ non-exclusive license:
4118
+
4119
+ (a) under intellectual property rights (other than patent or trademark)
4120
+ Licensable by such Contributor to use, reproduce, make available,
4121
+ modify, display, perform, distribute, and otherwise exploit its
4122
+ Contributions, either on an unmodified basis, with Modifications, or
4123
+ as part of a Larger Work; and
4124
+
4125
+ (b) under Patent Claims of such Contributor to make, use, sell, offer
4126
+ for sale, have made, import, and otherwise transfer either its
4127
+ Contributions or its Contributor Version.
4128
+
4129
+ 2.2. Effective Date
4130
+
4131
+ The licenses granted in Section 2.1 with respect to any Contribution
4132
+ become effective for each Contribution on the date the Contributor first
4133
+ distributes such Contribution.
4134
+
4135
+ 2.3. Limitations on Grant Scope
4136
+
4137
+ The licenses granted in this Section 2 are the only rights granted under
4138
+ this License. No additional rights or licenses will be implied from the
4139
+ distribution or licensing of Covered Software under this License.
4140
+ Notwithstanding Section 2.1(b) above, no patent license is granted by a
4141
+ Contributor:
4142
+
4143
+ (a) for any code that a Contributor has removed from Covered Software;
4144
+ or
4145
+
4146
+ (b) for infringements caused by: (i) Your and any other third party&#x27;s
4147
+ modifications of Covered Software, or (ii) the combination of its
4148
+ Contributions with other software (except as part of its Contributor
4149
+ Version); or
4150
+
4151
+ (c) under Patent Claims infringed by Covered Software in the absence of
4152
+ its Contributions.
4153
+
4154
+ This License does not grant any rights in the trademarks, service marks,
4155
+ or logos of any Contributor (except as may be necessary to comply with
4156
+ the notice requirements in Section 3.4).
4157
+
4158
+ 2.4. Subsequent Licenses
4159
+
4160
+ No Contributor makes additional grants as a result of Your choice to
4161
+ distribute the Covered Software under a subsequent version of this
4162
+ License (see Section 10.2) or under the terms of a Secondary License (if
4163
+ permitted under the terms of Section 3.3).
4164
+
4165
+ 2.5. Representation
4166
+
4167
+ Each Contributor represents that the Contributor believes its
4168
+ Contributions are its original creation(s) or it has sufficient rights
4169
+ to grant the rights to its Contributions conveyed by this License.
4170
+
4171
+ 2.6. Fair Use
4172
+
4173
+ This License is not intended to limit any rights You have under
4174
+ applicable copyright doctrines of fair use, fair dealing, or other
4175
+ equivalents.
4176
+
4177
+ 2.7. Conditions
4178
+
4179
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
4180
+ in Section 2.1.
4181
+
4182
+ 3. Responsibilities
4183
+ -------------------
4184
+
4185
+ 3.1. Distribution of Source Form
4186
+
4187
+ All distribution of Covered Software in Source Code Form, including any
4188
+ Modifications that You create or to which You contribute, must be under
4189
+ the terms of this License. You must inform recipients that the Source
4190
+ Code Form of the Covered Software is governed by the terms of this
4191
+ License, and how they can obtain a copy of this License. You may not
4192
+ attempt to alter or restrict the recipients&#x27; rights in the Source Code
4193
+ Form.
4194
+
4195
+ 3.2. Distribution of Executable Form
4196
+
4197
+ If You distribute Covered Software in Executable Form then:
4198
+
4199
+ (a) such Covered Software must also be made available in Source Code
4200
+ Form, as described in Section 3.1, and You must inform recipients of
4201
+ the Executable Form how they can obtain a copy of such Source Code
4202
+ Form by reasonable means in a timely manner, at a charge no more
4203
+ than the cost of distribution to the recipient; and
4204
+
4205
+ (b) You may distribute such Executable Form under the terms of this
4206
+ License, or sublicense it under different terms, provided that the
4207
+ license for the Executable Form does not attempt to limit or alter
4208
+ the recipients&#x27; rights in the Source Code Form under this License.
4209
+
4210
+ 3.3. Distribution of a Larger Work
4211
+
4212
+ You may create and distribute a Larger Work under terms of Your choice,
4213
+ provided that You also comply with the requirements of this License for
4214
+ the Covered Software. If the Larger Work is a combination of Covered
4215
+ Software with a work governed by one or more Secondary Licenses, and the
4216
+ Covered Software is not Incompatible With Secondary Licenses, this
4217
+ License permits You to additionally distribute such Covered Software
4218
+ under the terms of such Secondary License(s), so that the recipient of
4219
+ the Larger Work may, at their option, further distribute the Covered
4220
+ Software under the terms of either this License or such Secondary
4221
+ License(s).
4222
+
4223
+ 3.4. Notices
4224
+
4225
+ You may not remove or alter the substance of any license notices
4226
+ (including copyright notices, patent notices, disclaimers of warranty,
4227
+ or limitations of liability) contained within the Source Code Form of
4228
+ the Covered Software, except that You may alter any license notices to
4229
+ the extent required to remedy known factual inaccuracies.
4230
+
4231
+ 3.5. Application of Additional Terms
4232
+
4233
+ You may choose to offer, and to charge a fee for, warranty, support,
4234
+ indemnity or liability obligations to one or more recipients of Covered
4235
+ Software. However, You may do so only on Your own behalf, and not on
4236
+ behalf of any Contributor. You must make it absolutely clear that any
4237
+ such warranty, support, indemnity, or liability obligation is offered by
4238
+ You alone, and You hereby agree to indemnify every Contributor for any
4239
+ liability incurred by such Contributor as a result of warranty, support,
4240
+ indemnity or liability terms You offer. You may include additional
4241
+ disclaimers of warranty and limitations of liability specific to any
4242
+ jurisdiction.
4243
+
4244
+ 4. Inability to Comply Due to Statute or Regulation
4245
+ ---------------------------------------------------
4246
+
4247
+ If it is impossible for You to comply with any of the terms of this
4248
+ License with respect to some or all of the Covered Software due to
4249
+ statute, judicial order, or regulation then You must: (a) comply with
4250
+ the terms of this License to the maximum extent possible; and (b)
4251
+ describe the limitations and the code they affect. Such description must
4252
+ be placed in a text file included with all distributions of the Covered
4253
+ Software under this License. Except to the extent prohibited by statute
4254
+ or regulation, such description must be sufficiently detailed for a
4255
+ recipient of ordinary skill to be able to understand it.
4256
+
4257
+ 5. Termination
4258
+ --------------
4259
+
4260
+ 5.1. The rights granted under this License will terminate automatically
4261
+ if You fail to comply with any of its terms. However, if You become
4262
+ compliant, then the rights granted under this License from a particular
4263
+ Contributor are reinstated (a) provisionally, unless and until such
4264
+ Contributor explicitly and finally terminates Your grants, and (b) on an
4265
+ ongoing basis, if such Contributor fails to notify You of the
4266
+ non-compliance by some reasonable means prior to 60 days after You have
4267
+ come back into compliance. Moreover, Your grants from a particular
4268
+ Contributor are reinstated on an ongoing basis if such Contributor
4269
+ notifies You of the non-compliance by some reasonable means, this is the
4270
+ first time You have received notice of non-compliance with this License
4271
+ from such Contributor, and You become compliant prior to 30 days after
4272
+ Your receipt of the notice.
4273
+
4274
+ 5.2. If You initiate litigation against any entity by asserting a patent
4275
+ infringement claim (excluding declaratory judgment actions,
4276
+ counter-claims, and cross-claims) alleging that a Contributor Version
4277
+ directly or indirectly infringes any patent, then the rights granted to
4278
+ You by any and all Contributors for the Covered Software under Section
4279
+ 2.1 of this License shall terminate.
4280
+
4281
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
4282
+ end user license agreements (excluding distributors and resellers) which
4283
+ have been validly granted by You or Your distributors under this License
4284
+ prior to termination shall survive termination.
4285
+
4286
+ ************************************************************************
4287
+ * *
4288
+ * 6. Disclaimer of Warranty *
4289
+ * ------------------------- *
4290
+ * *
4291
+ * Covered Software is provided under this License on an &quot;as is&quot; *
4292
+ * basis, without warranty of any kind, either expressed, implied, or *
4293
+ * statutory, including, without limitation, warranties that the *
4294
+ * Covered Software is free of defects, merchantable, fit for a *
4295
+ * particular purpose or non-infringing. The entire risk as to the *
4296
+ * quality and performance of the Covered Software is with You. *
4297
+ * Should any Covered Software prove defective in any respect, You *
4298
+ * (not any Contributor) assume the cost of any necessary servicing, *
4299
+ * repair, or correction. This disclaimer of warranty constitutes an *
4300
+ * essential part of this License. No use of any Covered Software is *
4301
+ * authorized under this License except under this disclaimer. *
4302
+ * *
4303
+ ************************************************************************
4304
+
4305
+ ************************************************************************
4306
+ * *
4307
+ * 7. Limitation of Liability *
4308
+ * -------------------------- *
4309
+ * *
4310
+ * Under no circumstances and under no legal theory, whether tort *
4311
+ * (including negligence), contract, or otherwise, shall any *
4312
+ * Contributor, or anyone who distributes Covered Software as *
4313
+ * permitted above, be liable to You for any direct, indirect, *
4314
+ * special, incidental, or consequential damages of any character *
4315
+ * including, without limitation, damages for lost profits, loss of *
4316
+ * goodwill, work stoppage, computer failure or malfunction, or any *
4317
+ * and all other commercial damages or losses, even if such party *
4318
+ * shall have been informed of the possibility of such damages. This *
4319
+ * limitation of liability shall not apply to liability for death or *
4320
+ * personal injury resulting from such party&#x27;s negligence to the *
4321
+ * extent applicable law prohibits such limitation. Some *
4322
+ * jurisdictions do not allow the exclusion or limitation of *
4323
+ * incidental or consequential damages, so this exclusion and *
4324
+ * limitation may not apply to You. *
4325
+ * *
4326
+ ************************************************************************
4327
+
4328
+ 8. Litigation
4329
+ -------------
4330
+
4331
+ Any litigation relating to this License may be brought only in the
4332
+ courts of a jurisdiction where the defendant maintains its principal
4333
+ place of business and such litigation shall be governed by laws of that
4334
+ jurisdiction, without reference to its conflict-of-law provisions.
4335
+ Nothing in this Section shall prevent a party&#x27;s ability to bring
4336
+ cross-claims or counter-claims.
4337
+
4338
+ 9. Miscellaneous
4339
+ ----------------
4340
+
4341
+ This License represents the complete agreement concerning the subject
4342
+ matter hereof. If any provision of this License is held to be
4343
+ unenforceable, such provision shall be reformed only to the extent
4344
+ necessary to make it enforceable. Any law or regulation which provides
4345
+ that the language of a contract shall be construed against the drafter
4346
+ shall not be used to construe this License against a Contributor.
4347
+
4348
+ 10. Versions of the License
4349
+ ---------------------------
4350
+
4351
+ 10.1. New Versions
4352
+
4353
+ Mozilla Foundation is the license steward. Except as provided in Section
4354
+ 10.3, no one other than the license steward has the right to modify or
4355
+ publish new versions of this License. Each version will be given a
4356
+ distinguishing version number.
4357
+
4358
+ 10.2. Effect of New Versions
4359
+
4360
+ You may distribute the Covered Software under the terms of the version
4361
+ of the License under which You originally received the Covered Software,
4362
+ or under the terms of any subsequent version published by the license
4363
+ steward.
4364
+
4365
+ 10.3. Modified Versions
4366
+
4367
+ If you create software not governed by this License, and you want to
4368
+ create a new license for such software, you may create and use a
4369
+ modified version of this License if you rename the license and remove
4370
+ any references to the name of the license steward (except to note that
4371
+ such modified license differs from this License).
4372
+
4373
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary
4374
+ Licenses
4375
+
4376
+ If You choose to distribute Source Code Form that is Incompatible With
4377
+ Secondary Licenses under the terms of this version of the License, the
4378
+ notice described in Exhibit B of this License must be attached.
4379
+
4380
+ Exhibit A - Source Code Form License Notice
4381
+ -------------------------------------------
4382
+
4383
+ This Source Code Form is subject to the terms of the Mozilla Public
4384
+ License, v. 2.0. If a copy of the MPL was not distributed with this
4385
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
4386
+
4387
+ If it is not possible or desirable to put the notice in a particular
4388
+ file, then You may include the notice in a location (such as a LICENSE
4389
+ file in a relevant directory) where a recipient would be likely to look
4390
+ for such a notice.
4391
+
4392
+ You may add additional accurate notices of copyright ownership.
4393
+
4394
+ Exhibit B - &quot;Incompatible With Secondary Licenses&quot; Notice
4395
+ ---------------------------------------------------------
4396
+
4397
+ This Source Code Form is &quot;Incompatible With Secondary Licenses&quot;, as
4398
+ defined by the Mozilla Public License, v. 2.0.
4399
+ </pre>
4400
+ </li>
4401
+ <li class="license">
4402
+ <h3 id="Unicode-3.0">Unicode License v3</h3>
4403
+ <h4>Used by:</h4>
4404
+ <ul class="license-used-by">
4405
+ <li><a
4406
+ href=" https://github.com/dtolnay/unicode-ident ">unicode-ident
4407
+ 1.0.18</a></li>
4408
+ </ul>
4409
+ <pre class="license-text">UNICODE LICENSE V3
4410
+
4411
+ COPYRIGHT AND PERMISSION NOTICE
4412
+
4413
+ Copyright © 1991-2023 Unicode, Inc.
4414
+
4415
+ NOTICE TO USER: Carefully read the following legal agreement. BY
4416
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
4417
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
4418
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
4419
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
4420
+
4421
+ Permission is hereby granted, free of charge, to any person obtaining a
4422
+ copy of data files and any associated documentation (the &quot;Data Files&quot;) or
4423
+ software and any associated documentation (the &quot;Software&quot;) to deal in the
4424
+ Data Files or Software without restriction, including without limitation
4425
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
4426
+ copies of the Data Files or Software, and to permit persons to whom the
4427
+ Data Files or Software are furnished to do so, provided that either (a)
4428
+ this copyright and permission notice appear with all copies of the Data
4429
+ Files or Software, or (b) this copyright and permission notice appear in
4430
+ associated Documentation.
4431
+
4432
+ THE DATA FILES AND SOFTWARE ARE PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
4433
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4434
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
4435
+ THIRD PARTY RIGHTS.
4436
+
4437
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
4438
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
4439
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
4440
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
4441
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
4442
+ FILES OR SOFTWARE.
4443
+
4444
+ Except as contained in this notice, the name of a copyright holder shall
4445
+ not be used in advertising or otherwise to promote the sale, use or other
4446
+ dealings in these Data Files or Software without prior written
4447
+ authorization of the copyright holder.
4448
+ </pre>
4449
+ </li>
4450
+ <li class="license">
4451
+ <h3 id="Unicode-3.0">Unicode License v3</h3>
4452
+ <h4>Used by:</h4>
4453
+ <ul class="license-used-by">
4454
+ <li><a
4455
+ href=" https://github.com/unicode-org/icu4x ">icu_collections
4456
+ 2.0.0</a></li>
4457
+ <li><a
4458
+ href=" https://github.com/unicode-org/icu4x ">icu_locale_core
4459
+ 2.0.0</a></li>
4460
+ <li><a
4461
+ href=" https://github.com/unicode-org/icu4x ">icu_normalizer
4462
+ 2.0.0</a></li>
4463
+ <li><a
4464
+ href=" https://github.com/unicode-org/icu4x ">icu_normalizer_data
4465
+ 2.0.0</a></li>
4466
+ <li><a
4467
+ href=" https://github.com/unicode-org/icu4x ">icu_properties
4468
+ 2.0.1</a></li>
4469
+ <li><a
4470
+ href=" https://github.com/unicode-org/icu4x ">icu_properties_data
4471
+ 2.0.1</a></li>
4472
+ <li><a
4473
+ href=" https://github.com/unicode-org/icu4x ">icu_provider
4474
+ 2.0.0</a></li>
4475
+ <li><a
4476
+ href=" https://github.com/unicode-org/icu4x ">litemap
4477
+ 0.8.0</a></li>
4478
+ <li><a
4479
+ href=" https://github.com/unicode-org/icu4x ">potential_utf
4480
+ 0.1.2</a></li>
4481
+ <li><a
4482
+ href=" https://github.com/unicode-org/icu4x ">tinystr
4483
+ 0.8.1</a></li>
4484
+ <li><a
4485
+ href=" https://github.com/unicode-org/icu4x ">writeable
4486
+ 0.6.1</a></li>
4487
+ <li><a
4488
+ href=" https://github.com/unicode-org/icu4x ">yoke-derive
4489
+ 0.8.0</a></li>
4490
+ <li><a
4491
+ href=" https://github.com/unicode-org/icu4x ">yoke
4492
+ 0.8.0</a></li>
4493
+ <li><a
4494
+ href=" https://github.com/unicode-org/icu4x ">zerofrom-derive
4495
+ 0.1.6</a></li>
4496
+ <li><a
4497
+ href=" https://github.com/unicode-org/icu4x ">zerofrom
4498
+ 0.1.6</a></li>
4499
+ <li><a
4500
+ href=" https://github.com/unicode-org/icu4x ">zerotrie
4501
+ 0.2.2</a></li>
4502
+ <li><a
4503
+ href=" https://github.com/unicode-org/icu4x ">zerovec-derive
4504
+ 0.11.1</a></li>
4505
+ <li><a
4506
+ href=" https://github.com/unicode-org/icu4x ">zerovec
4507
+ 0.11.2</a></li>
4508
+ </ul>
4509
+ <pre class="license-text">UNICODE LICENSE V3
4510
+
4511
+ COPYRIGHT AND PERMISSION NOTICE
4512
+
4513
+ Copyright © 2020-2024 Unicode, Inc.
4514
+
4515
+ NOTICE TO USER: Carefully read the following legal agreement. BY
4516
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
4517
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
4518
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
4519
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
4520
+
4521
+ Permission is hereby granted, free of charge, to any person obtaining a
4522
+ copy of data files and any associated documentation (the &quot;Data Files&quot;) or
4523
+ software and any associated documentation (the &quot;Software&quot;) to deal in the
4524
+ Data Files or Software without restriction, including without limitation
4525
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
4526
+ copies of the Data Files or Software, and to permit persons to whom the
4527
+ Data Files or Software are furnished to do so, provided that either (a)
4528
+ this copyright and permission notice appear with all copies of the Data
4529
+ Files or Software, or (b) this copyright and permission notice appear in
4530
+ associated Documentation.
4531
+
4532
+ THE DATA FILES AND SOFTWARE ARE PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
4533
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4534
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
4535
+ THIRD PARTY RIGHTS.
4536
+
4537
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
4538
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
4539
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
4540
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
4541
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
4542
+ FILES OR SOFTWARE.
4543
+
4544
+ Except as contained in this notice, the name of a copyright holder shall
4545
+ not be used in advertising or otherwise to promote the sale, use or other
4546
+ dealings in these Data Files or Software without prior written
4547
+ authorization of the copyright holder.
4548
+
4549
+ SPDX-License-Identifier: Unicode-3.0
4550
+
4551
+
4552
+
4553
+ Portions of ICU4X may have been adapted from ICU4C and/or ICU4J.
4554
+ ICU 1.8.1 to ICU 57.1 © 1995-2016 International Business Machines Corporation and others.
4555
+ </pre>
4556
+ </li>
4557
+ </ul>
4558
+ </main>
4559
+ </body>
4560
+
4561
+ </html>
4562
+