rubydex 0.1.0.beta12 → 0.1.0.beta13
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.
- checksums.yaml +4 -4
- data/LICENSE.txt +23 -23
- data/README.md +125 -125
- data/THIRD_PARTY_LICENSES.html +2018 -945
- data/exe/rdx +47 -47
- data/ext/rubydex/declaration.c +453 -453
- data/ext/rubydex/declaration.h +23 -23
- data/ext/rubydex/definition.c +284 -284
- data/ext/rubydex/definition.h +28 -28
- data/ext/rubydex/diagnostic.c +6 -6
- data/ext/rubydex/diagnostic.h +11 -11
- data/ext/rubydex/document.c +97 -97
- data/ext/rubydex/document.h +10 -10
- data/ext/rubydex/extconf.rb +146 -138
- data/ext/rubydex/graph.c +701 -681
- data/ext/rubydex/graph.h +10 -10
- data/ext/rubydex/handle.h +44 -44
- data/ext/rubydex/location.c +22 -22
- data/ext/rubydex/location.h +15 -15
- data/ext/rubydex/reference.c +123 -123
- data/ext/rubydex/reference.h +15 -15
- data/ext/rubydex/rubydex.c +22 -22
- data/ext/rubydex/utils.c +108 -108
- data/ext/rubydex/utils.h +34 -34
- data/lib/rubydex/comment.rb +17 -17
- data/lib/rubydex/declaration.rb +11 -0
- data/lib/rubydex/diagnostic.rb +21 -21
- data/lib/rubydex/failures.rb +15 -15
- data/lib/rubydex/graph.rb +98 -98
- data/lib/rubydex/keyword.rb +17 -17
- data/lib/rubydex/keyword_parameter.rb +13 -13
- data/lib/rubydex/location.rb +90 -90
- data/lib/rubydex/mixin.rb +22 -22
- data/lib/rubydex/version.rb +5 -5
- data/lib/rubydex.rb +24 -23
- data/rbi/rubydex.rbi +425 -422
- data/rust/Cargo.lock +1851 -1851
- data/rust/Cargo.toml +29 -29
- data/rust/about.toml +10 -10
- data/rust/{about.hbs → about_templates/about.hbs} +81 -78
- data/rust/about_templates/mingw_licenses.hbs +1071 -0
- data/rust/rubydex/Cargo.toml +42 -42
- data/rust/rubydex/src/compile_assertions.rs +13 -13
- data/rust/rubydex/src/diagnostic.rs +110 -110
- data/rust/rubydex/src/errors.rs +28 -28
- data/rust/rubydex/src/indexing/local_graph.rs +224 -224
- data/rust/rubydex/src/indexing/rbs_indexer.rs +1551 -1551
- data/rust/rubydex/src/indexing/ruby_indexer.rs +2329 -2329
- data/rust/rubydex/src/indexing/ruby_indexer_tests.rs +4962 -4962
- data/rust/rubydex/src/indexing.rs +210 -210
- data/rust/rubydex/src/integrity.rs +279 -279
- data/rust/rubydex/src/job_queue.rs +199 -205
- data/rust/rubydex/src/lib.rs +17 -17
- data/rust/rubydex/src/listing.rs +371 -371
- data/rust/rubydex/src/main.rs +160 -160
- data/rust/rubydex/src/model/built_in.rs +83 -83
- data/rust/rubydex/src/model/comment.rs +24 -24
- data/rust/rubydex/src/model/declaration.rs +679 -671
- data/rust/rubydex/src/model/definitions.rs +1682 -1682
- data/rust/rubydex/src/model/document.rs +222 -222
- data/rust/rubydex/src/model/encoding.rs +22 -22
- data/rust/rubydex/src/model/graph.rs +3782 -3754
- data/rust/rubydex/src/model/id.rs +110 -110
- data/rust/rubydex/src/model/identity_maps.rs +58 -58
- data/rust/rubydex/src/model/ids.rs +60 -60
- data/rust/rubydex/src/model/keywords.rs +256 -256
- data/rust/rubydex/src/model/name.rs +298 -298
- data/rust/rubydex/src/model/references.rs +111 -111
- data/rust/rubydex/src/model/string_ref.rs +50 -50
- data/rust/rubydex/src/model/visibility.rs +41 -41
- data/rust/rubydex/src/model.rs +15 -15
- data/rust/rubydex/src/offset.rs +147 -147
- data/rust/rubydex/src/position.rs +6 -6
- data/rust/rubydex/src/query.rs +1841 -1841
- data/rust/rubydex/src/resolution.rs +1852 -6517
- data/rust/rubydex/src/resolution_tests.rs +4701 -0
- data/rust/rubydex/src/stats/memory.rs +71 -71
- data/rust/rubydex/src/stats/orphan_report.rs +264 -264
- data/rust/rubydex/src/stats/timer.rs +127 -127
- data/rust/rubydex/src/stats.rs +11 -11
- data/rust/rubydex/src/test_utils/context.rs +226 -226
- data/rust/rubydex/src/test_utils/graph_test.rs +730 -730
- data/rust/rubydex/src/test_utils/local_graph_test.rs +602 -602
- data/rust/rubydex/src/test_utils.rs +52 -52
- data/rust/rubydex/src/visualization/dot.rs +192 -192
- data/rust/rubydex/src/visualization.rs +6 -6
- data/rust/rubydex/tests/cli.rs +185 -185
- data/rust/rubydex-mcp/Cargo.toml +28 -28
- data/rust/rubydex-mcp/src/main.rs +48 -48
- data/rust/rubydex-mcp/src/server.rs +1145 -1145
- data/rust/rubydex-mcp/src/tools.rs +49 -49
- data/rust/rubydex-mcp/tests/mcp.rs +302 -302
- data/rust/rubydex-sys/Cargo.toml +20 -20
- data/rust/rubydex-sys/build.rs +14 -14
- data/rust/rubydex-sys/cbindgen.toml +12 -12
- data/rust/rubydex-sys/src/declaration_api.rs +485 -485
- data/rust/rubydex-sys/src/definition_api.rs +443 -443
- data/rust/rubydex-sys/src/diagnostic_api.rs +99 -99
- data/rust/rubydex-sys/src/document_api.rs +85 -85
- data/rust/rubydex-sys/src/graph_api.rs +1017 -948
- data/rust/rubydex-sys/src/lib.rs +79 -79
- data/rust/rubydex-sys/src/location_api.rs +79 -79
- data/rust/rubydex-sys/src/name_api.rs +187 -135
- data/rust/rubydex-sys/src/reference_api.rs +267 -267
- data/rust/rubydex-sys/src/utils.rs +70 -70
- data/rust/rustfmt.toml +2 -2
- metadata +11 -9
- data/lib/rubydex/librubydex_sys.so +0 -0
data/THIRD_PARTY_LICENSES.html
CHANGED
|
@@ -1,78 +1,80 @@
|
|
|
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 "Simplified" License</a> (2)</li>
|
|
57
|
-
<li><a href="#BSD-3-Clause">BSD 3-Clause "New" or "Revised" 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
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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 "Simplified" License</a> (2)</li>
|
|
57
|
+
<li><a href="#BSD-3-Clause">BSD 3-Clause "New" or "Revised" 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
|
+
<li><a href="#mingw-w64-toolchain">MinGW-w64 toolchain and related libraries for Windows precompiled
|
|
62
|
+
builds</a></li>
|
|
63
|
+
</ul>
|
|
64
|
+
|
|
65
|
+
<h2>All license text:</h2>
|
|
66
|
+
<ul class="licenses-list">
|
|
67
|
+
<li class="license">
|
|
68
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
69
|
+
<h4>Used by:</h4>
|
|
70
|
+
<ul class="license-used-by">
|
|
71
|
+
<li><a
|
|
72
|
+
href=" https://github.com/paritytech/nohash-hasher ">nohash-hasher
|
|
73
|
+
0.2.0</a></li>
|
|
74
|
+
<li><a
|
|
75
|
+
href=" https://github.com/hsivonen/utf8_iter ">utf8_iter
|
|
76
|
+
1.0.4</a></li>
|
|
77
|
+
</ul>
|
|
76
78
|
<pre class="license-text">
|
|
77
79
|
Apache License
|
|
78
80
|
Version 2.0, January 2004
|
|
@@ -275,16 +277,16 @@
|
|
|
275
277
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
276
278
|
See the License for the specific language governing permissions and
|
|
277
279
|
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>
|
|
280
|
+
</pre>
|
|
281
|
+
</li>
|
|
282
|
+
<li class="license">
|
|
283
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
284
|
+
<h4>Used by:</h4>
|
|
285
|
+
<ul class="license-used-by">
|
|
286
|
+
<li><a
|
|
287
|
+
href=" https://github.com/KyleMayes/clang-sys ">clang-sys
|
|
288
|
+
1.8.1</a></li>
|
|
289
|
+
</ul>
|
|
288
290
|
<pre class="license-text">
|
|
289
291
|
Apache License
|
|
290
292
|
Version 2.0, January 2004
|
|
@@ -487,94 +489,94 @@
|
|
|
487
489
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
488
490
|
See the License for the specific language governing permissions and
|
|
489
491
|
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>
|
|
492
|
+
</pre>
|
|
493
|
+
</li>
|
|
494
|
+
<li class="license">
|
|
495
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
496
|
+
<h4>Used by:</h4>
|
|
497
|
+
<ul class="license-used-by">
|
|
498
|
+
<li><a
|
|
499
|
+
href=" https://github.com/microsoft/windows-rs ">windows-core
|
|
500
|
+
0.62.2</a></li>
|
|
501
|
+
<li><a
|
|
502
|
+
href=" https://github.com/microsoft/windows-rs ">windows-implement
|
|
503
|
+
0.60.2</a></li>
|
|
504
|
+
<li><a
|
|
505
|
+
href=" https://github.com/microsoft/windows-rs ">windows-interface
|
|
506
|
+
0.59.3</a></li>
|
|
507
|
+
<li><a
|
|
508
|
+
href=" https://github.com/microsoft/windows-rs ">windows-link
|
|
509
|
+
0.1.3</a></li>
|
|
510
|
+
<li><a
|
|
511
|
+
href=" https://github.com/microsoft/windows-rs ">windows-link
|
|
512
|
+
0.2.1</a></li>
|
|
513
|
+
<li><a
|
|
514
|
+
href=" https://github.com/microsoft/windows-rs ">windows-result
|
|
515
|
+
0.4.1</a></li>
|
|
516
|
+
<li><a
|
|
517
|
+
href=" https://github.com/microsoft/windows-rs ">windows-strings
|
|
518
|
+
0.5.1</a></li>
|
|
519
|
+
<li><a
|
|
520
|
+
href=" https://github.com/microsoft/windows-rs ">windows-sys
|
|
521
|
+
0.59.0</a></li>
|
|
522
|
+
<li><a
|
|
523
|
+
href=" https://github.com/microsoft/windows-rs ">windows-sys
|
|
524
|
+
0.60.2</a></li>
|
|
525
|
+
<li><a
|
|
526
|
+
href=" https://github.com/microsoft/windows-rs ">windows-targets
|
|
527
|
+
0.52.6</a></li>
|
|
528
|
+
<li><a
|
|
529
|
+
href=" https://github.com/microsoft/windows-rs ">windows-targets
|
|
530
|
+
0.53.3</a></li>
|
|
531
|
+
<li><a
|
|
532
|
+
href=" https://github.com/microsoft/windows-rs ">windows_aarch64_gnullvm
|
|
533
|
+
0.52.6</a></li>
|
|
534
|
+
<li><a
|
|
535
|
+
href=" https://github.com/microsoft/windows-rs ">windows_aarch64_gnullvm
|
|
536
|
+
0.53.0</a></li>
|
|
537
|
+
<li><a
|
|
538
|
+
href=" https://github.com/microsoft/windows-rs ">windows_aarch64_msvc
|
|
539
|
+
0.52.6</a></li>
|
|
540
|
+
<li><a
|
|
541
|
+
href=" https://github.com/microsoft/windows-rs ">windows_aarch64_msvc
|
|
542
|
+
0.53.0</a></li>
|
|
543
|
+
<li><a
|
|
544
|
+
href=" https://github.com/microsoft/windows-rs ">windows_i686_gnu
|
|
545
|
+
0.52.6</a></li>
|
|
546
|
+
<li><a
|
|
547
|
+
href=" https://github.com/microsoft/windows-rs ">windows_i686_gnu
|
|
548
|
+
0.53.0</a></li>
|
|
549
|
+
<li><a
|
|
550
|
+
href=" https://github.com/microsoft/windows-rs ">windows_i686_gnullvm
|
|
551
|
+
0.52.6</a></li>
|
|
552
|
+
<li><a
|
|
553
|
+
href=" https://github.com/microsoft/windows-rs ">windows_i686_gnullvm
|
|
554
|
+
0.53.0</a></li>
|
|
555
|
+
<li><a
|
|
556
|
+
href=" https://github.com/microsoft/windows-rs ">windows_i686_msvc
|
|
557
|
+
0.52.6</a></li>
|
|
558
|
+
<li><a
|
|
559
|
+
href=" https://github.com/microsoft/windows-rs ">windows_i686_msvc
|
|
560
|
+
0.53.0</a></li>
|
|
561
|
+
<li><a
|
|
562
|
+
href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnu
|
|
563
|
+
0.52.6</a></li>
|
|
564
|
+
<li><a
|
|
565
|
+
href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnu
|
|
566
|
+
0.53.0</a></li>
|
|
567
|
+
<li><a
|
|
568
|
+
href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnullvm
|
|
569
|
+
0.52.6</a></li>
|
|
570
|
+
<li><a
|
|
571
|
+
href=" https://github.com/microsoft/windows-rs ">windows_x86_64_gnullvm
|
|
572
|
+
0.53.0</a></li>
|
|
573
|
+
<li><a
|
|
574
|
+
href=" https://github.com/microsoft/windows-rs ">windows_x86_64_msvc
|
|
575
|
+
0.52.6</a></li>
|
|
576
|
+
<li><a
|
|
577
|
+
href=" https://github.com/microsoft/windows-rs ">windows_x86_64_msvc
|
|
578
|
+
0.53.0</a></li>
|
|
579
|
+
</ul>
|
|
578
580
|
<pre class="license-text"> Apache License
|
|
579
581
|
Version 2.0, January 2004
|
|
580
582
|
http://www.apache.org/licenses/
|
|
@@ -776,28 +778,28 @@
|
|
|
776
778
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
777
779
|
See the License for the specific language governing permissions and
|
|
778
780
|
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>
|
|
781
|
+
</pre>
|
|
782
|
+
</li>
|
|
783
|
+
<li class="license">
|
|
784
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
785
|
+
<h4>Used by:</h4>
|
|
786
|
+
<ul class="license-used-by">
|
|
787
|
+
<li><a
|
|
788
|
+
href=" https://github.com/llogiq/bytecount ">bytecount
|
|
789
|
+
0.6.9</a></li>
|
|
790
|
+
<li><a
|
|
791
|
+
href=" https://github.com/derekdreery/normalize-line-endings ">normalize-line-endings
|
|
792
|
+
0.3.0</a></li>
|
|
793
|
+
<li><a
|
|
794
|
+
href=" https://github.com/assert-rs/predicates-rs/tree/master/crates/core ">predicates-core
|
|
795
|
+
1.0.9</a></li>
|
|
796
|
+
<li><a
|
|
797
|
+
href=" https://github.com/assert-rs/predicates-rs/tree/master/crates/tree ">predicates-tree
|
|
798
|
+
1.0.12</a></li>
|
|
799
|
+
<li><a
|
|
800
|
+
href=" https://github.com/assert-rs/predicates-rs ">predicates
|
|
801
|
+
3.1.3</a></li>
|
|
802
|
+
</ul>
|
|
801
803
|
<pre class="license-text"> Apache License
|
|
802
804
|
Version 2.0, January 2004
|
|
803
805
|
http://www.apache.org/licenses/
|
|
@@ -999,67 +1001,67 @@
|
|
|
999
1001
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1000
1002
|
See the License for the specific language governing permissions and
|
|
1001
1003
|
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>
|
|
1004
|
+
</pre>
|
|
1005
|
+
</li>
|
|
1006
|
+
<li class="license">
|
|
1007
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
1008
|
+
<h4>Used by:</h4>
|
|
1009
|
+
<ul class="license-used-by">
|
|
1010
|
+
<li><a
|
|
1011
|
+
href=" https://github.com/rust-cli/anstyle.git ">anstream
|
|
1012
|
+
0.6.19</a></li>
|
|
1013
|
+
<li><a
|
|
1014
|
+
href=" https://github.com/rust-cli/anstyle.git ">anstyle-parse
|
|
1015
|
+
0.2.7</a></li>
|
|
1016
|
+
<li><a
|
|
1017
|
+
href=" https://github.com/rust-cli/anstyle.git ">anstyle-query
|
|
1018
|
+
1.1.3</a></li>
|
|
1019
|
+
<li><a
|
|
1020
|
+
href=" https://github.com/rust-cli/anstyle.git ">anstyle-wincon
|
|
1021
|
+
3.0.9</a></li>
|
|
1022
|
+
<li><a
|
|
1023
|
+
href=" https://github.com/rust-cli/anstyle.git ">anstyle
|
|
1024
|
+
1.0.11</a></li>
|
|
1025
|
+
<li><a
|
|
1026
|
+
href=" https://github.com/assert-rs/assert_cmd.git ">assert_cmd
|
|
1027
|
+
2.0.17</a></li>
|
|
1028
|
+
<li><a
|
|
1029
|
+
href=" https://github.com/clap-rs/clap ">clap
|
|
1030
|
+
4.5.41</a></li>
|
|
1031
|
+
<li><a
|
|
1032
|
+
href=" https://github.com/clap-rs/clap ">clap_builder
|
|
1033
|
+
4.5.41</a></li>
|
|
1034
|
+
<li><a
|
|
1035
|
+
href=" https://github.com/clap-rs/clap ">clap_derive
|
|
1036
|
+
4.5.41</a></li>
|
|
1037
|
+
<li><a
|
|
1038
|
+
href=" https://github.com/clap-rs/clap ">clap_lex
|
|
1039
|
+
0.7.5</a></li>
|
|
1040
|
+
<li><a
|
|
1041
|
+
href=" https://github.com/rust-cli/anstyle.git ">colorchoice
|
|
1042
|
+
1.0.4</a></li>
|
|
1043
|
+
<li><a
|
|
1044
|
+
href=" https://github.com/polyfill-rs/is_terminal_polyfill ">is_terminal_polyfill
|
|
1045
|
+
1.70.1</a></li>
|
|
1046
|
+
<li><a
|
|
1047
|
+
href=" https://github.com/polyfill-rs/once_cell_polyfill ">once_cell_polyfill
|
|
1048
|
+
1.70.1</a></li>
|
|
1049
|
+
<li><a
|
|
1050
|
+
href=" https://github.com/toml-rs/toml ">serde_spanned
|
|
1051
|
+
0.6.9</a></li>
|
|
1052
|
+
<li><a
|
|
1053
|
+
href=" https://github.com/toml-rs/toml ">toml
|
|
1054
|
+
0.8.23</a></li>
|
|
1055
|
+
<li><a
|
|
1056
|
+
href=" https://github.com/toml-rs/toml ">toml_datetime
|
|
1057
|
+
0.6.11</a></li>
|
|
1058
|
+
<li><a
|
|
1059
|
+
href=" https://github.com/toml-rs/toml ">toml_edit
|
|
1060
|
+
0.22.27</a></li>
|
|
1061
|
+
<li><a
|
|
1062
|
+
href=" https://github.com/toml-rs/toml ">toml_write
|
|
1063
|
+
0.1.2</a></li>
|
|
1064
|
+
</ul>
|
|
1063
1065
|
<pre class="license-text"> Apache License
|
|
1064
1066
|
Version 2.0, January 2004
|
|
1065
1067
|
http://www.apache.org/licenses/
|
|
@@ -1262,40 +1264,40 @@
|
|
|
1262
1264
|
See the License for the specific language governing permissions and
|
|
1263
1265
|
limitations under the License.
|
|
1264
1266
|
|
|
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>
|
|
1267
|
+
</pre>
|
|
1268
|
+
</li>
|
|
1269
|
+
<li class="license">
|
|
1270
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
1271
|
+
<h4>Used by:</h4>
|
|
1272
|
+
<ul class="license-used-by">
|
|
1273
|
+
<li><a
|
|
1274
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-channel
|
|
1275
|
+
0.3.31</a></li>
|
|
1276
|
+
<li><a
|
|
1277
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-core
|
|
1278
|
+
0.3.31</a></li>
|
|
1279
|
+
<li><a
|
|
1280
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-executor
|
|
1281
|
+
0.3.31</a></li>
|
|
1282
|
+
<li><a
|
|
1283
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-io
|
|
1284
|
+
0.3.31</a></li>
|
|
1285
|
+
<li><a
|
|
1286
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-macro
|
|
1287
|
+
0.3.31</a></li>
|
|
1288
|
+
<li><a
|
|
1289
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-sink
|
|
1290
|
+
0.3.31</a></li>
|
|
1291
|
+
<li><a
|
|
1292
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-task
|
|
1293
|
+
0.3.31</a></li>
|
|
1294
|
+
<li><a
|
|
1295
|
+
href=" https://github.com/rust-lang/futures-rs ">futures-util
|
|
1296
|
+
0.3.31</a></li>
|
|
1297
|
+
<li><a
|
|
1298
|
+
href=" https://github.com/rust-lang/futures-rs ">futures
|
|
1299
|
+
0.3.31</a></li>
|
|
1300
|
+
</ul>
|
|
1299
1301
|
<pre class="license-text"> Apache License
|
|
1300
1302
|
Version 2.0, January 2004
|
|
1301
1303
|
http://www.apache.org/licenses/
|
|
@@ -1498,16 +1500,16 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
1498
1500
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1499
1501
|
See the License for the specific language governing permissions and
|
|
1500
1502
|
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>
|
|
1503
|
+
</pre>
|
|
1504
|
+
</li>
|
|
1505
|
+
<li class="license">
|
|
1506
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
1507
|
+
<h4>Used by:</h4>
|
|
1508
|
+
<ul class="license-used-by">
|
|
1509
|
+
<li><a
|
|
1510
|
+
href=" https://github.com/rust-lang-nursery/pin-utils ">pin-utils
|
|
1511
|
+
0.1.0</a></li>
|
|
1512
|
+
</ul>
|
|
1511
1513
|
<pre class="license-text"> Apache License
|
|
1512
1514
|
Version 2.0, January 2004
|
|
1513
1515
|
http://www.apache.org/licenses/
|
|
@@ -1709,19 +1711,19 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
1709
1711
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1710
1712
|
See the License for the specific language governing permissions and
|
|
1711
1713
|
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>
|
|
1714
|
+
</pre>
|
|
1715
|
+
</li>
|
|
1716
|
+
<li class="license">
|
|
1717
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
1718
|
+
<h4>Used by:</h4>
|
|
1719
|
+
<ul class="license-used-by">
|
|
1720
|
+
<li><a
|
|
1721
|
+
href=" https://github.com/strawlab/iana-time-zone ">iana-time-zone-haiku
|
|
1722
|
+
0.1.2</a></li>
|
|
1723
|
+
<li><a
|
|
1724
|
+
href=" https://github.com/strawlab/iana-time-zone ">iana-time-zone
|
|
1725
|
+
0.1.65</a></li>
|
|
1726
|
+
</ul>
|
|
1725
1727
|
<pre class="license-text"> Apache License
|
|
1726
1728
|
Version 2.0, January 2004
|
|
1727
1729
|
http://www.apache.org/licenses/
|
|
@@ -1923,151 +1925,151 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
1923
1925
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1924
1926
|
See the License for the specific language governing permissions and
|
|
1925
1927
|
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>
|
|
1928
|
+
</pre>
|
|
1929
|
+
</li>
|
|
1930
|
+
<li class="license">
|
|
1931
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
1932
|
+
<h4>Used by:</h4>
|
|
1933
|
+
<ul class="license-used-by">
|
|
1934
|
+
<li><a
|
|
1935
|
+
href=" https://github.com/cuviper/autocfg ">autocfg
|
|
1936
|
+
1.5.0</a></li>
|
|
1937
|
+
<li><a
|
|
1938
|
+
href=" https://github.com/marshallpierce/rust-base64 ">base64
|
|
1939
|
+
0.22.1</a></li>
|
|
1940
|
+
<li><a
|
|
1941
|
+
href=" https://github.com/bitflags/bitflags ">bitflags
|
|
1942
|
+
2.9.1</a></li>
|
|
1943
|
+
<li><a
|
|
1944
|
+
href=" https://github.com/BurntSushi/bstr ">bstr
|
|
1945
|
+
1.12.0</a></li>
|
|
1946
|
+
<li><a
|
|
1947
|
+
href=" https://github.com/fitzgen/bumpalo ">bumpalo
|
|
1948
|
+
3.19.1</a></li>
|
|
1949
|
+
<li><a
|
|
1950
|
+
href=" https://github.com/rust-lang/cc-rs ">cc
|
|
1951
|
+
1.2.30</a></li>
|
|
1952
|
+
<li><a
|
|
1953
|
+
href=" https://github.com/jethrogb/rust-cexpr ">cexpr
|
|
1954
|
+
0.6.0</a></li>
|
|
1955
|
+
<li><a
|
|
1956
|
+
href=" https://github.com/rust-lang/cfg-if ">cfg-if
|
|
1957
|
+
1.0.1</a></li>
|
|
1958
|
+
<li><a
|
|
1959
|
+
href=" https://github.com/servo/core-foundation-rs ">core-foundation-sys
|
|
1960
|
+
0.8.7</a></li>
|
|
1961
|
+
<li><a
|
|
1962
|
+
href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-channel
|
|
1963
|
+
0.5.15</a></li>
|
|
1964
|
+
<li><a
|
|
1965
|
+
href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-deque
|
|
1966
|
+
0.8.6</a></li>
|
|
1967
|
+
<li><a
|
|
1968
|
+
href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-epoch
|
|
1969
|
+
0.9.18</a></li>
|
|
1970
|
+
<li><a
|
|
1971
|
+
href=" https://github.com/crossbeam-rs/crossbeam ">crossbeam-utils
|
|
1972
|
+
0.8.21</a></li>
|
|
1973
|
+
<li><a
|
|
1974
|
+
href=" https://github.com/yaahc/displaydoc ">displaydoc
|
|
1975
|
+
0.2.5</a></li>
|
|
1976
|
+
<li><a
|
|
1977
|
+
href=" https://github.com/rayon-rs/either ">either
|
|
1978
|
+
1.15.0</a></li>
|
|
1979
|
+
<li><a
|
|
1980
|
+
href=" https://github.com/indexmap-rs/equivalent ">equivalent
|
|
1981
|
+
1.0.2</a></li>
|
|
1982
|
+
<li><a
|
|
1983
|
+
href=" https://github.com/lambda-fairy/rust-errno ">errno
|
|
1984
|
+
0.3.13</a></li>
|
|
1985
|
+
<li><a
|
|
1986
|
+
href=" https://github.com/smol-rs/fastrand ">fastrand
|
|
1987
|
+
2.3.0</a></li>
|
|
1988
|
+
<li><a
|
|
1989
|
+
href=" https://github.com/servo/rust-url ">form_urlencoded
|
|
1990
|
+
1.2.1</a></li>
|
|
1991
|
+
<li><a
|
|
1992
|
+
href=" https://github.com/rust-lang/glob ">glob
|
|
1993
|
+
0.3.2</a></li>
|
|
1994
|
+
<li><a
|
|
1995
|
+
href=" https://github.com/rust-lang/hashbrown ">hashbrown
|
|
1996
|
+
0.15.4</a></li>
|
|
1997
|
+
<li><a
|
|
1998
|
+
href=" https://github.com/withoutboats/heck ">heck
|
|
1999
|
+
0.5.0</a></li>
|
|
2000
|
+
<li><a
|
|
2001
|
+
href=" https://github.com/servo/rust-url/ ">idna
|
|
2002
|
+
1.0.3</a></li>
|
|
2003
|
+
<li><a
|
|
2004
|
+
href=" https://github.com/hsivonen/idna_adapter ">idna_adapter
|
|
2005
|
+
1.2.1</a></li>
|
|
2006
|
+
<li><a
|
|
2007
|
+
href=" https://github.com/indexmap-rs/indexmap ">indexmap
|
|
2008
|
+
2.10.0</a></li>
|
|
2009
|
+
<li><a
|
|
2010
|
+
href=" https://github.com/rust-itertools/itertools ">itertools
|
|
2011
|
+
0.13.0</a></li>
|
|
2012
|
+
<li><a
|
|
2013
|
+
href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys ">js-sys
|
|
2014
|
+
0.3.85</a></li>
|
|
2015
|
+
<li><a
|
|
2016
|
+
href=" https://github.com/sunfishcode/linux-raw-sys ">linux-raw-sys
|
|
2017
|
+
0.9.4</a></li>
|
|
2018
|
+
<li><a
|
|
2019
|
+
href=" https://github.com/rust-lang/log ">log
|
|
2020
|
+
0.4.27</a></li>
|
|
2021
|
+
<li><a
|
|
2022
|
+
href=" https://github.com/rust-num/num-traits ">num-traits
|
|
2023
|
+
0.2.19</a></li>
|
|
2024
|
+
<li><a
|
|
2025
|
+
href=" https://github.com/matklad/once_cell ">once_cell
|
|
2026
|
+
1.21.3</a></li>
|
|
2027
|
+
<li><a
|
|
2028
|
+
href=" https://github.com/servo/rust-url/ ">percent-encoding
|
|
2029
|
+
2.3.1</a></li>
|
|
2030
|
+
<li><a
|
|
2031
|
+
href=" https://github.com/rust-lang/regex/tree/master/regex-automata ">regex-automata
|
|
2032
|
+
0.4.9</a></li>
|
|
2033
|
+
<li><a
|
|
2034
|
+
href=" https://github.com/rust-lang/regex/tree/master/regex-syntax ">regex-syntax
|
|
2035
|
+
0.8.5</a></li>
|
|
2036
|
+
<li><a
|
|
2037
|
+
href=" https://github.com/rust-lang/regex ">regex
|
|
2038
|
+
1.11.1</a></li>
|
|
2039
|
+
<li><a
|
|
2040
|
+
href=" https://github.com/bytecodealliance/rustix ">rustix
|
|
2041
|
+
1.0.8</a></li>
|
|
2042
|
+
<li><a
|
|
2043
|
+
href=" https://github.com/servo/rust-smallvec ">smallvec
|
|
2044
|
+
1.15.1</a></li>
|
|
2045
|
+
<li><a
|
|
2046
|
+
href=" https://github.com/storyyeller/stable_deref_trait ">stable_deref_trait
|
|
2047
|
+
1.2.0</a></li>
|
|
2048
|
+
<li><a
|
|
2049
|
+
href=" https://github.com/Stebalien/tempfile ">tempfile
|
|
2050
|
+
3.20.0</a></li>
|
|
2051
|
+
<li><a
|
|
2052
|
+
href=" https://github.com/servo/rust-url ">url
|
|
2053
|
+
2.5.4</a></li>
|
|
2054
|
+
<li><a
|
|
2055
|
+
href=" https://github.com/alexcrichton/wait-timeout ">wait-timeout
|
|
2056
|
+
0.2.1</a></li>
|
|
2057
|
+
<li><a
|
|
2058
|
+
href=" https://github.com/bytecodealliance/wasi-rs ">wasi
|
|
2059
|
+
0.14.2+wasi-0.2.4</a></li>
|
|
2060
|
+
<li><a
|
|
2061
|
+
href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support ">wasm-bindgen-macro-support
|
|
2062
|
+
0.2.108</a></li>
|
|
2063
|
+
<li><a
|
|
2064
|
+
href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro ">wasm-bindgen-macro
|
|
2065
|
+
0.2.108</a></li>
|
|
2066
|
+
<li><a
|
|
2067
|
+
href=" https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared ">wasm-bindgen-shared
|
|
2068
|
+
0.2.108</a></li>
|
|
2069
|
+
<li><a
|
|
2070
|
+
href=" https://github.com/wasm-bindgen/wasm-bindgen ">wasm-bindgen
|
|
2071
|
+
0.2.108</a></li>
|
|
2072
|
+
</ul>
|
|
2071
2073
|
<pre class="license-text"> Apache License
|
|
2072
2074
|
Version 2.0, January 2004
|
|
2073
2075
|
http://www.apache.org/licenses/
|
|
@@ -2269,16 +2271,16 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
2269
2271
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2270
2272
|
See the License for the specific language governing permissions and
|
|
2271
2273
|
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>
|
|
2274
|
+
</pre>
|
|
2275
|
+
</li>
|
|
2276
|
+
<li class="license">
|
|
2277
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
2278
|
+
<h4>Used by:</h4>
|
|
2279
|
+
<ul class="license-used-by">
|
|
2280
|
+
<li><a
|
|
2281
|
+
href=" https://github.com/Alexhuszagh/minimal-lexical ">minimal-lexical
|
|
2282
|
+
0.2.1</a></li>
|
|
2283
|
+
</ul>
|
|
2282
2284
|
<pre class="license-text"> Apache License
|
|
2283
2285
|
Version 2.0, January 2004
|
|
2284
2286
|
http://www.apache.org/licenses/
|
|
@@ -2480,16 +2482,16 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
2480
2482
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2481
2483
|
See the License for the specific language governing permissions and
|
|
2482
2484
|
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>
|
|
2485
|
+
</pre>
|
|
2486
|
+
</li>
|
|
2487
|
+
<li class="license">
|
|
2488
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
2489
|
+
<h4>Used by:</h4>
|
|
2490
|
+
<ul class="license-used-by">
|
|
2491
|
+
<li><a
|
|
2492
|
+
href=" https://github.com/rust-random/getrandom ">getrandom
|
|
2493
|
+
0.3.3</a></li>
|
|
2494
|
+
</ul>
|
|
2493
2495
|
<pre class="license-text"> Apache License
|
|
2494
2496
|
Version 2.0, January 2004
|
|
2495
2497
|
https://www.apache.org/licenses/
|
|
@@ -2691,16 +2693,16 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
2691
2693
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2692
2694
|
See the License for the specific language governing permissions and
|
|
2693
2695
|
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>
|
|
2696
|
+
</pre>
|
|
2697
|
+
</li>
|
|
2698
|
+
<li class="license">
|
|
2699
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
2700
|
+
<h4>Used by:</h4>
|
|
2701
|
+
<ul class="license-used-by">
|
|
2702
|
+
<li><a
|
|
2703
|
+
href=" https://github.com/rust-analyzer/text-size ">text-size
|
|
2704
|
+
1.1.1</a></li>
|
|
2705
|
+
</ul>
|
|
2704
2706
|
<pre class="license-text"> Apache License
|
|
2705
2707
|
Version 2.0, January 2004
|
|
2706
2708
|
http://www.apache.org/licenses/
|
|
@@ -2902,109 +2904,109 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
2902
2904
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2903
2905
|
See the License for the specific language governing permissions and
|
|
2904
2906
|
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>
|
|
2907
|
+
</pre>
|
|
2908
|
+
</li>
|
|
2909
|
+
<li class="license">
|
|
2910
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
2911
|
+
<h4>Used by:</h4>
|
|
2912
|
+
<ul class="license-used-by">
|
|
2913
|
+
<li><a
|
|
2914
|
+
href=" https://github.com/nical/android_system_properties ">android_system_properties
|
|
2915
|
+
0.1.5</a></li>
|
|
2916
|
+
<li><a
|
|
2917
|
+
href=" https://github.com/dtolnay/async-trait ">async-trait
|
|
2918
|
+
0.1.89</a></li>
|
|
2919
|
+
<li><a
|
|
2920
|
+
href=" https://github.com/dtolnay/dyn-clone ">dyn-clone
|
|
2921
|
+
1.0.20</a></li>
|
|
2922
|
+
<li><a
|
|
2923
|
+
href=" https://github.com/TedDriggs/ident_case ">ident_case
|
|
2924
|
+
1.0.1</a></li>
|
|
2925
|
+
<li><a
|
|
2926
|
+
href=" https://github.com/dtolnay/itoa ">itoa
|
|
2927
|
+
1.0.15</a></li>
|
|
2928
|
+
<li><a
|
|
2929
|
+
href=" https://github.com/rust-lang/libc ">libc
|
|
2930
|
+
0.2.174</a></li>
|
|
2931
|
+
<li><a
|
|
2932
|
+
href=" https://github.com/rust-lang/rust-analyzer/tree/master/lib/line-index ">line-index
|
|
2933
|
+
0.1.2</a></li>
|
|
2934
|
+
<li><a
|
|
2935
|
+
href=" https://github.com/as1100k/pastey ">pastey
|
|
2936
|
+
0.2.1</a></li>
|
|
2937
|
+
<li><a
|
|
2938
|
+
href=" https://github.com/taiki-e/pin-project-lite ">pin-project-lite
|
|
2939
|
+
0.2.16</a></li>
|
|
2940
|
+
<li><a
|
|
2941
|
+
href=" https://github.com/dtolnay/prettyplease ">prettyplease
|
|
2942
|
+
0.2.36</a></li>
|
|
2943
|
+
<li><a
|
|
2944
|
+
href=" https://github.com/dtolnay/proc-macro2 ">proc-macro2
|
|
2945
|
+
1.0.95</a></li>
|
|
2946
|
+
<li><a
|
|
2947
|
+
href=" https://github.com/dtolnay/quote ">quote
|
|
2948
|
+
1.0.40</a></li>
|
|
2949
|
+
<li><a
|
|
2950
|
+
href=" https://github.com/r-efi/r-efi ">r-efi
|
|
2951
|
+
5.3.0</a></li>
|
|
2952
|
+
<li><a
|
|
2953
|
+
href=" https://github.com/dtolnay/ref-cast ">ref-cast-impl
|
|
2954
|
+
1.0.25</a></li>
|
|
2955
|
+
<li><a
|
|
2956
|
+
href=" https://github.com/dtolnay/ref-cast ">ref-cast
|
|
2957
|
+
1.0.25</a></li>
|
|
2958
|
+
<li><a
|
|
2959
|
+
href=" https://github.com/modelcontextprotocol/rust-sdk/ ">rmcp-macros
|
|
2960
|
+
0.15.0</a></li>
|
|
2961
|
+
<li><a
|
|
2962
|
+
href=" https://github.com/modelcontextprotocol/rust-sdk/ ">rmcp
|
|
2963
|
+
0.15.0</a></li>
|
|
2964
|
+
<li><a
|
|
2965
|
+
href=" https://github.com/rust-lang/rustc-hash ">rustc-hash
|
|
2966
|
+
2.1.1</a></li>
|
|
2967
|
+
<li><a
|
|
2968
|
+
href=" https://github.com/dtolnay/rustversion ">rustversion
|
|
2969
|
+
1.0.22</a></li>
|
|
2970
|
+
<li><a
|
|
2971
|
+
href=" https://github.com/dtolnay/ryu ">ryu
|
|
2972
|
+
1.0.20</a></li>
|
|
2973
|
+
<li><a
|
|
2974
|
+
href=" https://github.com/serde-rs/serde ">serde
|
|
2975
|
+
1.0.219</a></li>
|
|
2976
|
+
<li><a
|
|
2977
|
+
href=" https://github.com/serde-rs/serde ">serde_derive
|
|
2978
|
+
1.0.219</a></li>
|
|
2979
|
+
<li><a
|
|
2980
|
+
href=" https://github.com/serde-rs/serde ">serde_derive_internals
|
|
2981
|
+
0.29.1</a></li>
|
|
2982
|
+
<li><a
|
|
2983
|
+
href=" https://github.com/serde-rs/json ">serde_json
|
|
2984
|
+
1.0.141</a></li>
|
|
2985
|
+
<li><a
|
|
2986
|
+
href=" https://github.com/dtolnay/serde-yaml ">serde_yaml
|
|
2987
|
+
0.9.34+deprecated</a></li>
|
|
2988
|
+
<li><a
|
|
2989
|
+
href=" https://github.com/comex/rust-shlex ">shlex
|
|
2990
|
+
1.3.0</a></li>
|
|
2991
|
+
<li><a
|
|
2992
|
+
href=" https://github.com/dtolnay/syn ">syn
|
|
2993
|
+
2.0.104</a></li>
|
|
2994
|
+
<li><a
|
|
2995
|
+
href=" https://github.com/dtolnay/thiserror ">thiserror-impl
|
|
2996
|
+
2.0.18</a></li>
|
|
2997
|
+
<li><a
|
|
2998
|
+
href=" https://github.com/dtolnay/thiserror ">thiserror
|
|
2999
|
+
2.0.18</a></li>
|
|
3000
|
+
<li><a
|
|
3001
|
+
href=" https://github.com/dtolnay/unicode-ident ">unicode-ident
|
|
3002
|
+
1.0.18</a></li>
|
|
3003
|
+
<li><a
|
|
3004
|
+
href=" https://github.com/alacritty/vte ">utf8parse
|
|
3005
|
+
0.2.2</a></li>
|
|
3006
|
+
<li><a
|
|
3007
|
+
href=" https://github.com/bytecodealliance/wit-bindgen ">wit-bindgen-rt
|
|
3008
|
+
0.39.0</a></li>
|
|
3009
|
+
</ul>
|
|
3008
3010
|
<pre class="license-text">Apache License
|
|
3009
3011
|
Version 2.0, January 2004
|
|
3010
3012
|
http://www.apache.org/licenses/
|
|
@@ -3078,16 +3080,16 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
3078
3080
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3079
3081
|
See the License for the specific language governing permissions and
|
|
3080
3082
|
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>
|
|
3083
|
+
</pre>
|
|
3084
|
+
</li>
|
|
3085
|
+
<li class="license">
|
|
3086
|
+
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
|
3087
|
+
<h4>Used by:</h4>
|
|
3088
|
+
<ul class="license-used-by">
|
|
3089
|
+
<li><a
|
|
3090
|
+
href=" https://github.com/chronotope/chrono ">chrono
|
|
3091
|
+
0.4.43</a></li>
|
|
3092
|
+
</ul>
|
|
3091
3093
|
<pre class="license-text">Rust-chrono is dual-licensed under The MIT License [1] and
|
|
3092
3094
|
Apache 2.0 License [2]. Copyright (c) 2014--2026, Kang Seonghoon and
|
|
3093
3095
|
contributors.
|
|
@@ -3328,19 +3330,19 @@ See the License for the specific language governing permissions and
|
|
|
3328
3330
|
limitations under the License.
|
|
3329
3331
|
~~~~
|
|
3330
3332
|
|
|
3331
|
-
</pre>
|
|
3332
|
-
</li>
|
|
3333
|
-
<li class="license">
|
|
3334
|
-
<h3 id="BSD-2-Clause">BSD 2-Clause "Simplified" 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>
|
|
3333
|
+
</pre>
|
|
3334
|
+
</li>
|
|
3335
|
+
<li class="license">
|
|
3336
|
+
<h3 id="BSD-2-Clause">BSD 2-Clause "Simplified" License</h3>
|
|
3337
|
+
<h4>Used by:</h4>
|
|
3338
|
+
<ul class="license-used-by">
|
|
3339
|
+
<li><a
|
|
3340
|
+
href=" https://github.com/ruby/rbs.git ">ruby-rbs-sys
|
|
3341
|
+
0.3.0</a></li>
|
|
3342
|
+
<li><a
|
|
3343
|
+
href=" https://github.com/ruby/rbs.git ">ruby-rbs
|
|
3344
|
+
0.3.0</a></li>
|
|
3345
|
+
</ul>
|
|
3344
3346
|
<pre class="license-text">Copyright (c) <year> <owner>
|
|
3345
3347
|
|
|
3346
3348
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
@@ -3350,16 +3352,16 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
|
3350
3352
|
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
3353
|
|
|
3352
3354
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 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 "New" or "Revised" 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>
|
|
3355
|
+
</pre>
|
|
3356
|
+
</li>
|
|
3357
|
+
<li class="license">
|
|
3358
|
+
<h3 id="BSD-3-Clause">BSD 3-Clause "New" or "Revised" License</h3>
|
|
3359
|
+
<h4>Used by:</h4>
|
|
3360
|
+
<ul class="license-used-by">
|
|
3361
|
+
<li><a
|
|
3362
|
+
href=" https://github.com/rust-lang/rust-bindgen ">bindgen
|
|
3363
|
+
0.72.1</a></li>
|
|
3364
|
+
</ul>
|
|
3363
3365
|
<pre class="license-text">BSD 3-Clause License
|
|
3364
3366
|
|
|
3365
3367
|
Copyright (c) 2013, Jyun-Yan You
|
|
@@ -3389,16 +3391,16 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
3389
3391
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3390
3392
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3391
3393
|
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>
|
|
3394
|
+
</pre>
|
|
3395
|
+
</li>
|
|
3396
|
+
<li class="license">
|
|
3397
|
+
<h3 id="BSL-1.0">Boost Software License 1.0</h3>
|
|
3398
|
+
<h4>Used by:</h4>
|
|
3399
|
+
<ul class="license-used-by">
|
|
3400
|
+
<li><a
|
|
3401
|
+
href=" https://github.com/DoumanAsh/xxhash-rust ">xxhash-rust
|
|
3402
|
+
0.8.15</a></li>
|
|
3403
|
+
</ul>
|
|
3402
3404
|
<pre class="license-text">Boost Software License - Version 1.0 - August 17th, 2003
|
|
3403
3405
|
|
|
3404
3406
|
Permission is hereby granted, free of charge, to any person or organization
|
|
@@ -3422,16 +3424,16 @@ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
|
3422
3424
|
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
3423
3425
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3424
3426
|
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>
|
|
3427
|
+
</pre>
|
|
3428
|
+
</li>
|
|
3429
|
+
<li class="license">
|
|
3430
|
+
<h3 id="ISC">ISC License</h3>
|
|
3431
|
+
<h4>Used by:</h4>
|
|
3432
|
+
<ul class="license-used-by">
|
|
3433
|
+
<li><a
|
|
3434
|
+
href=" https://github.com/nagisa/rust_libloading/ ">libloading
|
|
3435
|
+
0.8.8</a></li>
|
|
3436
|
+
</ul>
|
|
3435
3437
|
<pre class="license-text">Copyright © 2015, Simonas Kazlauskas
|
|
3436
3438
|
|
|
3437
3439
|
Permission to use, copy, modify, and/or distribute this software for any purpose with or without
|
|
@@ -3444,16 +3446,16 @@ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR
|
|
|
3444
3446
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
3445
3447
|
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3446
3448
|
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>
|
|
3449
|
+
</pre>
|
|
3450
|
+
</li>
|
|
3451
|
+
<li class="license">
|
|
3452
|
+
<h3 id="MIT">MIT License</h3>
|
|
3453
|
+
<h4>Used by:</h4>
|
|
3454
|
+
<ul class="license-used-by">
|
|
3455
|
+
<li><a
|
|
3456
|
+
href=" https://github.com/Geal/nom ">nom
|
|
3457
|
+
7.1.3</a></li>
|
|
3458
|
+
</ul>
|
|
3457
3459
|
<pre class="license-text">Copyright (c) 2014-2019 Geoffroy Couprie
|
|
3458
3460
|
|
|
3459
3461
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
@@ -3474,16 +3476,16 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
3474
3476
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3475
3477
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3476
3478
|
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>
|
|
3479
|
+
</pre>
|
|
3480
|
+
</li>
|
|
3481
|
+
<li class="license">
|
|
3482
|
+
<h3 id="MIT">MIT License</h3>
|
|
3483
|
+
<h4>Used by:</h4>
|
|
3484
|
+
<ul class="license-used-by">
|
|
3485
|
+
<li><a
|
|
3486
|
+
href=" https://github.com/mikedilger/float-cmp ">float-cmp
|
|
3487
|
+
0.10.0</a></li>
|
|
3488
|
+
</ul>
|
|
3487
3489
|
<pre class="license-text">Copyright (c) 2014-2020 Optimal Computing (NZ) Ltd
|
|
3488
3490
|
|
|
3489
3491
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
@@ -3503,16 +3505,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3503
3505
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
3504
3506
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
3505
3507
|
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>
|
|
3508
|
+
</pre>
|
|
3509
|
+
</li>
|
|
3510
|
+
<li class="license">
|
|
3511
|
+
<h3 id="MIT">MIT License</h3>
|
|
3512
|
+
<h4>Used by:</h4>
|
|
3513
|
+
<ul class="license-used-by">
|
|
3514
|
+
<li><a
|
|
3515
|
+
href=" https://github.com/tokio-rs/bytes ">bytes
|
|
3516
|
+
1.11.1</a></li>
|
|
3517
|
+
</ul>
|
|
3516
3518
|
<pre class="license-text">Copyright (c) 2018 Carl Lerche
|
|
3517
3519
|
|
|
3518
3520
|
Permission is hereby granted, free of charge, to any
|
|
@@ -3538,16 +3540,16 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
3538
3540
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
3539
3541
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3540
3542
|
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>
|
|
3543
|
+
</pre>
|
|
3544
|
+
</li>
|
|
3545
|
+
<li class="license">
|
|
3546
|
+
<h3 id="MIT">MIT License</h3>
|
|
3547
|
+
<h4>Used by:</h4>
|
|
3548
|
+
<ul class="license-used-by">
|
|
3549
|
+
<li><a
|
|
3550
|
+
href=" https://github.com/tokio-rs/slab ">slab
|
|
3551
|
+
0.4.12</a></li>
|
|
3552
|
+
</ul>
|
|
3551
3553
|
<pre class="license-text">Copyright (c) 2019 Carl Lerche
|
|
3552
3554
|
|
|
3553
3555
|
Permission is hereby granted, free of charge, to any
|
|
@@ -3573,22 +3575,22 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
3573
3575
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
3574
3576
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3575
3577
|
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>
|
|
3578
|
+
</pre>
|
|
3579
|
+
</li>
|
|
3580
|
+
<li class="license">
|
|
3581
|
+
<h3 id="MIT">MIT License</h3>
|
|
3582
|
+
<h4>Used by:</h4>
|
|
3583
|
+
<ul class="license-used-by">
|
|
3584
|
+
<li><a
|
|
3585
|
+
href=" https://github.com/tokio-rs/tracing ">tracing-attributes
|
|
3586
|
+
0.1.31</a></li>
|
|
3587
|
+
<li><a
|
|
3588
|
+
href=" https://github.com/tokio-rs/tracing ">tracing-core
|
|
3589
|
+
0.1.36</a></li>
|
|
3590
|
+
<li><a
|
|
3591
|
+
href=" https://github.com/tokio-rs/tracing ">tracing
|
|
3592
|
+
0.1.44</a></li>
|
|
3593
|
+
</ul>
|
|
3592
3594
|
<pre class="license-text">Copyright (c) 2019 Tokio Contributors
|
|
3593
3595
|
|
|
3594
3596
|
Permission is hereby granted, free of charge, to any
|
|
@@ -3614,16 +3616,16 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
3614
3616
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
3615
3617
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3616
3618
|
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>
|
|
3619
|
+
</pre>
|
|
3620
|
+
</li>
|
|
3621
|
+
<li class="license">
|
|
3622
|
+
<h3 id="MIT">MIT License</h3>
|
|
3623
|
+
<h4>Used by:</h4>
|
|
3624
|
+
<ul class="license-used-by">
|
|
3625
|
+
<li><a
|
|
3626
|
+
href=" https://github.com/rust-cli/termtree ">termtree
|
|
3627
|
+
0.5.1</a></li>
|
|
3628
|
+
</ul>
|
|
3627
3629
|
<pre class="license-text">Copyright (c) Individual contributors
|
|
3628
3630
|
|
|
3629
3631
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
@@ -3643,16 +3645,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3643
3645
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3644
3646
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3645
3647
|
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>
|
|
3648
|
+
</pre>
|
|
3649
|
+
</li>
|
|
3650
|
+
<li class="license">
|
|
3651
|
+
<h3 id="MIT">MIT License</h3>
|
|
3652
|
+
<h4>Used by:</h4>
|
|
3653
|
+
<ul class="license-used-by">
|
|
3654
|
+
<li><a
|
|
3655
|
+
href=" https://github.com/mystor/synstructure ">synstructure
|
|
3656
|
+
0.13.2</a></li>
|
|
3657
|
+
</ul>
|
|
3656
3658
|
<pre class="license-text">Copyright 2016 Nika Layzell
|
|
3657
3659
|
|
|
3658
3660
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), 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:
|
|
@@ -3660,19 +3662,19 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
3660
3662
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3661
3663
|
|
|
3662
3664
|
THE SOFTWARE IS PROVIDED "AS IS", 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>
|
|
3665
|
+
</pre>
|
|
3666
|
+
</li>
|
|
3667
|
+
<li class="license">
|
|
3668
|
+
<h3 id="MIT">MIT License</h3>
|
|
3669
|
+
<h4>Used by:</h4>
|
|
3670
|
+
<ul class="license-used-by">
|
|
3671
|
+
<li><a
|
|
3672
|
+
href=" https://github.com/ruby/prism ">ruby-prism-sys
|
|
3673
|
+
1.9.0</a></li>
|
|
3674
|
+
<li><a
|
|
3675
|
+
href=" https://github.com/ruby/prism ">ruby-prism
|
|
3676
|
+
1.9.0</a></li>
|
|
3677
|
+
</ul>
|
|
3676
3678
|
<pre class="license-text">Copyright 2022-present, Shopify Inc.
|
|
3677
3679
|
|
|
3678
3680
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), 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:
|
|
@@ -3680,22 +3682,22 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
3680
3682
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3681
3683
|
|
|
3682
3684
|
THE SOFTWARE IS PROVIDED "AS IS", 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>
|
|
3685
|
+
</pre>
|
|
3686
|
+
</li>
|
|
3687
|
+
<li class="license">
|
|
3688
|
+
<h3 id="MIT">MIT License</h3>
|
|
3689
|
+
<h4>Used by:</h4>
|
|
3690
|
+
<ul class="license-used-by">
|
|
3691
|
+
<li><a
|
|
3692
|
+
href=" https://github.com/TedDriggs/darling ">darling
|
|
3693
|
+
0.23.0</a></li>
|
|
3694
|
+
<li><a
|
|
3695
|
+
href=" https://github.com/TedDriggs/darling ">darling_core
|
|
3696
|
+
0.23.0</a></li>
|
|
3697
|
+
<li><a
|
|
3698
|
+
href=" https://github.com/TedDriggs/darling ">darling_macro
|
|
3699
|
+
0.23.0</a></li>
|
|
3700
|
+
</ul>
|
|
3699
3701
|
<pre class="license-text">MIT License
|
|
3700
3702
|
|
|
3701
3703
|
Copyright (c) 2017 Ted Driggs
|
|
@@ -3717,16 +3719,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3717
3719
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3718
3720
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3719
3721
|
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>
|
|
3722
|
+
</pre>
|
|
3723
|
+
</li>
|
|
3724
|
+
<li class="license">
|
|
3725
|
+
<h3 id="MIT">MIT License</h3>
|
|
3726
|
+
<h4>Used by:</h4>
|
|
3727
|
+
<ul class="license-used-by">
|
|
3728
|
+
<li><a
|
|
3729
|
+
href=" https://github.com/GuillaumeGomez/doc-comment ">doc-comment
|
|
3730
|
+
0.3.3</a></li>
|
|
3731
|
+
</ul>
|
|
3730
3732
|
<pre class="license-text">MIT License
|
|
3731
3733
|
|
|
3732
3734
|
Copyright (c) 2018 Guillaume Gomez
|
|
@@ -3748,19 +3750,19 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3748
3750
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3749
3751
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3750
3752
|
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>
|
|
3753
|
+
</pre>
|
|
3754
|
+
</li>
|
|
3755
|
+
<li class="license">
|
|
3756
|
+
<h3 id="MIT">MIT License</h3>
|
|
3757
|
+
<h4>Used by:</h4>
|
|
3758
|
+
<ul class="license-used-by">
|
|
3759
|
+
<li><a
|
|
3760
|
+
href=" https://github.com/GREsau/schemars ">schemars
|
|
3761
|
+
1.2.1</a></li>
|
|
3762
|
+
<li><a
|
|
3763
|
+
href=" https://github.com/GREsau/schemars ">schemars_derive
|
|
3764
|
+
1.2.1</a></li>
|
|
3765
|
+
</ul>
|
|
3764
3766
|
<pre class="license-text">MIT License
|
|
3765
3767
|
|
|
3766
3768
|
Copyright (c) 2019 Graham Esau
|
|
@@ -3782,16 +3784,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3782
3784
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3783
3785
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3784
3786
|
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>
|
|
3787
|
+
</pre>
|
|
3788
|
+
</li>
|
|
3789
|
+
<li class="license">
|
|
3790
|
+
<h3 id="MIT">MIT License</h3>
|
|
3791
|
+
<h4>Used by:</h4>
|
|
3792
|
+
<ul class="license-used-by">
|
|
3793
|
+
<li><a
|
|
3794
|
+
href=" https://github.com/tokio-rs/tokio ">tokio-macros
|
|
3795
|
+
2.6.0</a></li>
|
|
3796
|
+
</ul>
|
|
3795
3797
|
<pre class="license-text">MIT License
|
|
3796
3798
|
|
|
3797
3799
|
Copyright (c) 2019 Yoshua Wuyts
|
|
@@ -3814,25 +3816,25 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3814
3816
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3815
3817
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3816
3818
|
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>
|
|
3819
|
+
</pre>
|
|
3820
|
+
</li>
|
|
3821
|
+
<li class="license">
|
|
3822
|
+
<h3 id="MIT">MIT License</h3>
|
|
3823
|
+
<h4>Used by:</h4>
|
|
3824
|
+
<ul class="license-used-by">
|
|
3825
|
+
<li><a
|
|
3826
|
+
href=" https://crates.io/crates/rubydex ">rubydex
|
|
3827
|
+
0.1.0</a></li>
|
|
3828
|
+
<li><a
|
|
3829
|
+
href=" https://crates.io/crates/rubydex-mcp ">rubydex-mcp
|
|
3830
|
+
0.1.0</a></li>
|
|
3831
|
+
<li><a
|
|
3832
|
+
href=" https://crates.io/crates/rubydex-sys ">rubydex-sys
|
|
3833
|
+
0.1.0</a></li>
|
|
3834
|
+
<li><a
|
|
3835
|
+
href=" https://github.com/DimaKudosh/difflib ">difflib
|
|
3836
|
+
0.4.0</a></li>
|
|
3837
|
+
</ul>
|
|
3836
3838
|
<pre class="license-text">MIT License
|
|
3837
3839
|
|
|
3838
3840
|
Copyright (c) <year> <copyright holders>
|
|
@@ -3851,19 +3853,19 @@ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE A
|
|
|
3851
3853
|
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3852
3854
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
3853
3855
|
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>
|
|
3856
|
+
</pre>
|
|
3857
|
+
</li>
|
|
3858
|
+
<li class="license">
|
|
3859
|
+
<h3 id="MIT">MIT License</h3>
|
|
3860
|
+
<h4>Used by:</h4>
|
|
3861
|
+
<ul class="license-used-by">
|
|
3862
|
+
<li><a
|
|
3863
|
+
href=" https://github.com/tokio-rs/tokio ">tokio-util
|
|
3864
|
+
0.7.18</a></li>
|
|
3865
|
+
<li><a
|
|
3866
|
+
href=" https://github.com/tokio-rs/tokio ">tokio
|
|
3867
|
+
1.49.0</a></li>
|
|
3868
|
+
</ul>
|
|
3867
3869
|
<pre class="license-text">MIT License
|
|
3868
3870
|
|
|
3869
3871
|
Copyright (c) Tokio Contributors
|
|
@@ -3885,16 +3887,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3885
3887
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3886
3888
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3887
3889
|
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>
|
|
3890
|
+
</pre>
|
|
3891
|
+
</li>
|
|
3892
|
+
<li class="license">
|
|
3893
|
+
<h3 id="MIT">MIT License</h3>
|
|
3894
|
+
<h4>Used by:</h4>
|
|
3895
|
+
<ul class="license-used-by">
|
|
3896
|
+
<li><a
|
|
3897
|
+
href=" https://github.com/dtolnay/unsafe-libyaml ">unsafe-libyaml
|
|
3898
|
+
0.2.11</a></li>
|
|
3899
|
+
</ul>
|
|
3898
3900
|
<pre class="license-text">Permission is hereby granted, free of charge, to any
|
|
3899
3901
|
person obtaining a copy of this software and associated
|
|
3900
3902
|
documentation files (the "Software"), to deal in the
|
|
@@ -3918,16 +3920,16 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
3918
3920
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
3919
3921
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3920
3922
|
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>
|
|
3923
|
+
</pre>
|
|
3924
|
+
</li>
|
|
3925
|
+
<li class="license">
|
|
3926
|
+
<h3 id="MIT">MIT License</h3>
|
|
3927
|
+
<h4>Used by:</h4>
|
|
3928
|
+
<ul class="license-used-by">
|
|
3929
|
+
<li><a
|
|
3930
|
+
href=" https://github.com/winnow-rs/winnow ">winnow
|
|
3931
|
+
0.7.12</a></li>
|
|
3932
|
+
</ul>
|
|
3931
3933
|
<pre class="license-text">Permission is hereby granted, free of charge, to any person obtaining
|
|
3932
3934
|
a copy of this software and associated documentation files (the
|
|
3933
3935
|
"Software"), to deal in the Software without restriction, including
|
|
@@ -3946,19 +3948,19 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
3946
3948
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3947
3949
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
3948
3950
|
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>
|
|
3951
|
+
</pre>
|
|
3952
|
+
</li>
|
|
3953
|
+
<li class="license">
|
|
3954
|
+
<h3 id="MIT">MIT License</h3>
|
|
3955
|
+
<h4>Used by:</h4>
|
|
3956
|
+
<ul class="license-used-by">
|
|
3957
|
+
<li><a
|
|
3958
|
+
href=" https://github.com/BurntSushi/aho-corasick ">aho-corasick
|
|
3959
|
+
1.1.3</a></li>
|
|
3960
|
+
<li><a
|
|
3961
|
+
href=" https://github.com/BurntSushi/memchr ">memchr
|
|
3962
|
+
2.7.5</a></li>
|
|
3963
|
+
</ul>
|
|
3962
3964
|
<pre class="license-text">The MIT License (MIT)
|
|
3963
3965
|
|
|
3964
3966
|
Copyright (c) 2015 Andrew Gallant
|
|
@@ -3980,16 +3982,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
3980
3982
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3981
3983
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3982
3984
|
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>
|
|
3985
|
+
</pre>
|
|
3986
|
+
</li>
|
|
3987
|
+
<li class="license">
|
|
3988
|
+
<h3 id="MIT">MIT License</h3>
|
|
3989
|
+
<h4>Used by:</h4>
|
|
3990
|
+
<ul class="license-used-by">
|
|
3991
|
+
<li><a
|
|
3992
|
+
href=" https://github.com/rapidfuzz/strsim-rs ">strsim
|
|
3993
|
+
0.11.1</a></li>
|
|
3994
|
+
</ul>
|
|
3993
3995
|
<pre class="license-text">The MIT License (MIT)
|
|
3994
3996
|
|
|
3995
3997
|
Copyright (c) 2015 Danny Guo
|
|
@@ -4013,16 +4015,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
4013
4015
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4014
4016
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4015
4017
|
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>
|
|
4018
|
+
</pre>
|
|
4019
|
+
</li>
|
|
4020
|
+
<li class="license">
|
|
4021
|
+
<h3 id="MPL-2.0">Mozilla Public License 2.0</h3>
|
|
4022
|
+
<h4>Used by:</h4>
|
|
4023
|
+
<ul class="license-used-by">
|
|
4024
|
+
<li><a
|
|
4025
|
+
href=" https://github.com/mozilla/cbindgen ">cbindgen
|
|
4026
|
+
0.29.0</a></li>
|
|
4027
|
+
</ul>
|
|
4026
4028
|
<pre class="license-text">Mozilla Public License Version 2.0
|
|
4027
4029
|
==================================
|
|
4028
4030
|
|
|
@@ -4396,16 +4398,16 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
|
4396
4398
|
|
|
4397
4399
|
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
4398
4400
|
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>
|
|
4401
|
+
</pre>
|
|
4402
|
+
</li>
|
|
4403
|
+
<li class="license">
|
|
4404
|
+
<h3 id="Unicode-3.0">Unicode License v3</h3>
|
|
4405
|
+
<h4>Used by:</h4>
|
|
4406
|
+
<ul class="license-used-by">
|
|
4407
|
+
<li><a
|
|
4408
|
+
href=" https://github.com/dtolnay/unicode-ident ">unicode-ident
|
|
4409
|
+
1.0.18</a></li>
|
|
4410
|
+
</ul>
|
|
4409
4411
|
<pre class="license-text">UNICODE LICENSE V3
|
|
4410
4412
|
|
|
4411
4413
|
COPYRIGHT AND PERMISSION NOTICE
|
|
@@ -4445,67 +4447,67 @@ Except as contained in this notice, the name of a copyright holder shall
|
|
|
4445
4447
|
not be used in advertising or otherwise to promote the sale, use or other
|
|
4446
4448
|
dealings in these Data Files or Software without prior written
|
|
4447
4449
|
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>
|
|
4450
|
+
</pre>
|
|
4451
|
+
</li>
|
|
4452
|
+
<li class="license">
|
|
4453
|
+
<h3 id="Unicode-3.0">Unicode License v3</h3>
|
|
4454
|
+
<h4>Used by:</h4>
|
|
4455
|
+
<ul class="license-used-by">
|
|
4456
|
+
<li><a
|
|
4457
|
+
href=" https://github.com/unicode-org/icu4x ">icu_collections
|
|
4458
|
+
2.0.0</a></li>
|
|
4459
|
+
<li><a
|
|
4460
|
+
href=" https://github.com/unicode-org/icu4x ">icu_locale_core
|
|
4461
|
+
2.0.0</a></li>
|
|
4462
|
+
<li><a
|
|
4463
|
+
href=" https://github.com/unicode-org/icu4x ">icu_normalizer
|
|
4464
|
+
2.0.0</a></li>
|
|
4465
|
+
<li><a
|
|
4466
|
+
href=" https://github.com/unicode-org/icu4x ">icu_normalizer_data
|
|
4467
|
+
2.0.0</a></li>
|
|
4468
|
+
<li><a
|
|
4469
|
+
href=" https://github.com/unicode-org/icu4x ">icu_properties
|
|
4470
|
+
2.0.1</a></li>
|
|
4471
|
+
<li><a
|
|
4472
|
+
href=" https://github.com/unicode-org/icu4x ">icu_properties_data
|
|
4473
|
+
2.0.1</a></li>
|
|
4474
|
+
<li><a
|
|
4475
|
+
href=" https://github.com/unicode-org/icu4x ">icu_provider
|
|
4476
|
+
2.0.0</a></li>
|
|
4477
|
+
<li><a
|
|
4478
|
+
href=" https://github.com/unicode-org/icu4x ">litemap
|
|
4479
|
+
0.8.0</a></li>
|
|
4480
|
+
<li><a
|
|
4481
|
+
href=" https://github.com/unicode-org/icu4x ">potential_utf
|
|
4482
|
+
0.1.2</a></li>
|
|
4483
|
+
<li><a
|
|
4484
|
+
href=" https://github.com/unicode-org/icu4x ">tinystr
|
|
4485
|
+
0.8.1</a></li>
|
|
4486
|
+
<li><a
|
|
4487
|
+
href=" https://github.com/unicode-org/icu4x ">writeable
|
|
4488
|
+
0.6.1</a></li>
|
|
4489
|
+
<li><a
|
|
4490
|
+
href=" https://github.com/unicode-org/icu4x ">yoke-derive
|
|
4491
|
+
0.8.0</a></li>
|
|
4492
|
+
<li><a
|
|
4493
|
+
href=" https://github.com/unicode-org/icu4x ">yoke
|
|
4494
|
+
0.8.0</a></li>
|
|
4495
|
+
<li><a
|
|
4496
|
+
href=" https://github.com/unicode-org/icu4x ">zerofrom-derive
|
|
4497
|
+
0.1.6</a></li>
|
|
4498
|
+
<li><a
|
|
4499
|
+
href=" https://github.com/unicode-org/icu4x ">zerofrom
|
|
4500
|
+
0.1.6</a></li>
|
|
4501
|
+
<li><a
|
|
4502
|
+
href=" https://github.com/unicode-org/icu4x ">zerotrie
|
|
4503
|
+
0.2.2</a></li>
|
|
4504
|
+
<li><a
|
|
4505
|
+
href=" https://github.com/unicode-org/icu4x ">zerovec-derive
|
|
4506
|
+
0.11.1</a></li>
|
|
4507
|
+
<li><a
|
|
4508
|
+
href=" https://github.com/unicode-org/icu4x ">zerovec
|
|
4509
|
+
0.11.2</a></li>
|
|
4510
|
+
</ul>
|
|
4509
4511
|
<pre class="license-text">UNICODE LICENSE V3
|
|
4510
4512
|
|
|
4511
4513
|
COPYRIGHT AND PERMISSION NOTICE
|
|
@@ -4552,11 +4554,1082 @@ SPDX-License-Identifier: Unicode-3.0
|
|
|
4552
4554
|
|
|
4553
4555
|
Portions of ICU4X may have been adapted from ICU4C and/or ICU4J.
|
|
4554
4556
|
ICU 1.8.1 to ICU 57.1 © 1995-2016 International Business Machines Corporation and others.
|
|
4555
|
-
</pre>
|
|
4556
|
-
</li>
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
</
|
|
4557
|
+
</pre>
|
|
4558
|
+
</li>
|
|
4559
|
+
<li class="license">
|
|
4560
|
+
<h3 id="mingw-w64-toolchain">MinGW-w64 toolchain and related libraries for Windows precompiled builds</h3>
|
|
4561
|
+
<h4>Used by:</h4>
|
|
4562
|
+
<ul class="license-used-by">
|
|
4563
|
+
<li>libgcc (with GCC Runtime Library Exception), mingw-w64 runtime, winpthreads</li>
|
|
4564
|
+
</ul>
|
|
4565
|
+
<pre class="license-text">
|
|
4566
|
+
The following 3rd-party software packages may be used by or distributed with Rubydex on Windows. Any information
|
|
4567
|
+
relevant to third-party vendors listed below are collected using common, reasonable means.
|
|
4568
|
+
|
|
4569
|
+
https://github.com/mingw-w64/mingw-w64
|
|
4570
|
+
MinGW-w64 runtime licensing
|
|
4571
|
+
***************************
|
|
4572
|
+
|
|
4573
|
+
This program or library was built using MinGW-w64 and statically
|
|
4574
|
+
linked against the MinGW-w64 runtime. Some parts of the runtime
|
|
4575
|
+
are under licenses which require that the copyright and license
|
|
4576
|
+
notices are included when distributing the code in binary form.
|
|
4577
|
+
These notices are listed below.
|
|
4578
|
+
|
|
4579
|
+
|
|
4580
|
+
========================
|
|
4581
|
+
Overall copyright notice
|
|
4582
|
+
========================
|
|
4583
|
+
|
|
4584
|
+
Copyright (c) 2009, 2010, 2011, 2012, 2013 by the mingw-w64 project
|
|
4585
|
+
|
|
4586
|
+
This license has been certified as open source. It has also been designated
|
|
4587
|
+
as GPL compatible by the Free Software Foundation (FSF).
|
|
4588
|
+
|
|
4589
|
+
Redistribution and use in source and binary forms, with or without
|
|
4590
|
+
modification, are permitted provided that the following conditions are met:
|
|
4591
|
+
|
|
4592
|
+
1. Redistributions in source code must retain the accompanying copyright
|
|
4593
|
+
notice, this list of conditions, and the following disclaimer.
|
|
4594
|
+
2. Redistributions in binary form must reproduce the accompanying
|
|
4595
|
+
copyright notice, this list of conditions, and the following disclaimer
|
|
4596
|
+
in the documentation and/or other materials provided with the
|
|
4597
|
+
distribution.
|
|
4598
|
+
3. Names of the copyright holders must not be used to endorse or promote
|
|
4599
|
+
products derived from this software without prior written permission
|
|
4600
|
+
from the copyright holders.
|
|
4601
|
+
4. The right to distribute this software or to use it for any purpose does
|
|
4602
|
+
not give you the right to use Servicemarks (sm) or Trademarks (tm) of
|
|
4603
|
+
the copyright holders. Use of them is covered by separate agreement
|
|
4604
|
+
with the copyright holders.
|
|
4605
|
+
5. If any files are modified, you must cause the modified files to carry
|
|
4606
|
+
prominent notices stating that you changed the files and the date of
|
|
4607
|
+
any change.
|
|
4608
|
+
|
|
4609
|
+
Disclaimer
|
|
4610
|
+
|
|
4611
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
|
4612
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
4613
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
4614
|
+
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
4615
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
4616
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
4617
|
+
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
4618
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
4619
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
4620
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4621
|
+
|
|
4622
|
+
========================================
|
|
4623
|
+
getopt, getopt_long, and getop_long_only
|
|
4624
|
+
========================================
|
|
4625
|
+
|
|
4626
|
+
Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
|
|
4627
|
+
|
|
4628
|
+
Permission to use, copy, modify, and distribute this software for any
|
|
4629
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
4630
|
+
copyright notice and this permission notice appear in all copies.
|
|
4631
|
+
|
|
4632
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
4633
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
4634
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
4635
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4636
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
4637
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
4638
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
4639
|
+
|
|
4640
|
+
Sponsored in part by the Defense Advanced Research Projects
|
|
4641
|
+
Agency (DARPA) and Air Force Research Laboratory, Air Force
|
|
4642
|
+
Materiel Command, USAF, under agreement number F39502-99-1-0512.
|
|
4643
|
+
|
|
4644
|
+
* * * * * * *
|
|
4645
|
+
|
|
4646
|
+
Copyright (c) 2000 The NetBSD Foundation, Inc.
|
|
4647
|
+
All rights reserved.
|
|
4648
|
+
|
|
4649
|
+
This code is derived from software contributed to The NetBSD Foundation
|
|
4650
|
+
by Dieter Baron and Thomas Klausner.
|
|
4651
|
+
|
|
4652
|
+
Redistribution and use in source and binary forms, with or without
|
|
4653
|
+
modification, are permitted provided that the following conditions
|
|
4654
|
+
are met:
|
|
4655
|
+
1. Redistributions of source code must retain the above copyright
|
|
4656
|
+
notice, this list of conditions and the following disclaimer.
|
|
4657
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
4658
|
+
notice, this list of conditions and the following disclaimer in the
|
|
4659
|
+
documentation and/or other materials provided with the distribution.
|
|
4660
|
+
|
|
4661
|
+
THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
4662
|
+
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
4663
|
+
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
4664
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
4665
|
+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
4666
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
4667
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
4668
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
4669
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
4670
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
4671
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
4672
|
+
|
|
4673
|
+
|
|
4674
|
+
===============================================================
|
|
4675
|
+
gdtoa: Converting between IEEE floating point numbers and ASCII
|
|
4676
|
+
===============================================================
|
|
4677
|
+
|
|
4678
|
+
The author of this software is David M. Gay.
|
|
4679
|
+
|
|
4680
|
+
Copyright (C) 1997, 1998, 1999, 2000, 2001 by Lucent Technologies
|
|
4681
|
+
All Rights Reserved
|
|
4682
|
+
|
|
4683
|
+
Permission to use, copy, modify, and distribute this software and
|
|
4684
|
+
its documentation for any purpose and without fee is hereby
|
|
4685
|
+
granted, provided that the above copyright notice appear in all
|
|
4686
|
+
copies and that both that the copyright notice and this
|
|
4687
|
+
permission notice and warranty disclaimer appear in supporting
|
|
4688
|
+
documentation, and that the name of Lucent or any of its entities
|
|
4689
|
+
not be used in advertising or publicity pertaining to
|
|
4690
|
+
distribution of the software without specific, written prior
|
|
4691
|
+
permission.
|
|
4692
|
+
|
|
4693
|
+
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
4694
|
+
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
|
4695
|
+
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
|
|
4696
|
+
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4697
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
|
4698
|
+
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
4699
|
+
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
4700
|
+
THIS SOFTWARE.
|
|
4701
|
+
|
|
4702
|
+
* * * * * * *
|
|
4703
|
+
|
|
4704
|
+
The author of this software is David M. Gay.
|
|
4705
|
+
|
|
4706
|
+
Copyright (C) 2005 by David M. Gay
|
|
4707
|
+
All Rights Reserved
|
|
4708
|
+
|
|
4709
|
+
Permission to use, copy, modify, and distribute this software and its
|
|
4710
|
+
documentation for any purpose and without fee is hereby granted,
|
|
4711
|
+
provided that the above copyright notice appear in all copies and that
|
|
4712
|
+
both that the copyright notice and this permission notice and warranty
|
|
4713
|
+
disclaimer appear in supporting documentation, and that the name of
|
|
4714
|
+
the author or any of his current or former employers not be used in
|
|
4715
|
+
advertising or publicity pertaining to distribution of the software
|
|
4716
|
+
without specific, written prior permission.
|
|
4717
|
+
|
|
4718
|
+
THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
4719
|
+
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
|
|
4720
|
+
NO EVENT SHALL THE AUTHOR OR ANY OF HIS CURRENT OR FORMER EMPLOYERS BE
|
|
4721
|
+
LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
|
|
4722
|
+
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
4723
|
+
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
4724
|
+
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
4725
|
+
SOFTWARE.
|
|
4726
|
+
|
|
4727
|
+
* * * * * * *
|
|
4728
|
+
|
|
4729
|
+
The author of this software is David M. Gay.
|
|
4730
|
+
|
|
4731
|
+
Copyright (C) 2004 by David M. Gay.
|
|
4732
|
+
All Rights Reserved
|
|
4733
|
+
Based on material in the rest of /netlib/fp/gdota.tar.gz,
|
|
4734
|
+
which is copyright (C) 1998, 2000 by Lucent Technologies.
|
|
4735
|
+
|
|
4736
|
+
Permission to use, copy, modify, and distribute this software and
|
|
4737
|
+
its documentation for any purpose and without fee is hereby
|
|
4738
|
+
granted, provided that the above copyright notice appear in all
|
|
4739
|
+
copies and that both that the copyright notice and this
|
|
4740
|
+
permission notice and warranty disclaimer appear in supporting
|
|
4741
|
+
documentation, and that the name of Lucent or any of its entities
|
|
4742
|
+
not be used in advertising or publicity pertaining to
|
|
4743
|
+
distribution of the software without specific, written prior
|
|
4744
|
+
permission.
|
|
4745
|
+
|
|
4746
|
+
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
4747
|
+
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
|
4748
|
+
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
|
|
4749
|
+
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
4750
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
|
4751
|
+
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
4752
|
+
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
4753
|
+
THIS SOFTWARE.
|
|
4754
|
+
|
|
4755
|
+
|
|
4756
|
+
=========================
|
|
4757
|
+
Parts of the math library
|
|
4758
|
+
=========================
|
|
4759
|
+
|
|
4760
|
+
Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
4761
|
+
|
|
4762
|
+
Developed at SunSoft, a Sun Microsystems, Inc. business.
|
|
4763
|
+
Permission to use, copy, modify, and distribute this
|
|
4764
|
+
software is freely granted, provided that this notice
|
|
4765
|
+
is preserved.
|
|
4766
|
+
|
|
4767
|
+
* * * * * * *
|
|
4768
|
+
|
|
4769
|
+
Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
4770
|
+
|
|
4771
|
+
Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
4772
|
+
Permission to use, copy, modify, and distribute this
|
|
4773
|
+
software is freely granted, provided that this notice
|
|
4774
|
+
is preserved.
|
|
4775
|
+
|
|
4776
|
+
* * * * * * *
|
|
4777
|
+
|
|
4778
|
+
FIXME: Cephes math lib
|
|
4779
|
+
Copyright (C) 1984-1998 Stephen L. Moshier
|
|
4780
|
+
|
|
4781
|
+
It sounds vague, but as to be found at
|
|
4782
|
+
<http: //lists.debian.org/debian-legal/2004/12/msg00295.html>, it gives an
|
|
4783
|
+
impression that the author could be willing to give an explicit
|
|
4784
|
+
permission to distribute those files e.g. under a BSD style license. So
|
|
4785
|
+
probably there is no problem here, although it could be good to get a
|
|
4786
|
+
permission from the author and then add a license into the Cephes files
|
|
4787
|
+
in MinGW runtime. At least on follow-up it is marked that debian sees the
|
|
4788
|
+
version a-like BSD one. As MinGW.org (where those cephes parts are coming
|
|
4789
|
+
from) distributes them now over 6 years, it should be fine.
|
|
4790
|
+
|
|
4791
|
+
=================================================
|
|
4792
|
+
Some string, memory and time conversion functions
|
|
4793
|
+
=================================================
|
|
4794
|
+
|
|
4795
|
+
Copyright © 2005-2020 Rich Felker, et al.
|
|
4796
|
+
|
|
4797
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4798
|
+
a copy of this software and associated documentation files (the
|
|
4799
|
+
"Software"), to deal in the Software without restriction, including
|
|
4800
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
4801
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
4802
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
4803
|
+
the following conditions:
|
|
4804
|
+
|
|
4805
|
+
The above copyright notice and this permission notice shall be
|
|
4806
|
+
included in all copies or substantial portions of the Software.
|
|
4807
|
+
|
|
4808
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4809
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4810
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4811
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4812
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
4813
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
4814
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4815
|
+
|
|
4816
|
+
===================================
|
|
4817
|
+
Headers and IDLs imported from Wine
|
|
4818
|
+
===================================
|
|
4819
|
+
|
|
4820
|
+
Some header and IDL files were imported from the Wine project. These files
|
|
4821
|
+
are prominent maked in source. Their copyright belongs to contributors and
|
|
4822
|
+
they are distributed under LGPL license.
|
|
4823
|
+
|
|
4824
|
+
Disclaimer
|
|
4825
|
+
|
|
4826
|
+
This library is free software; you can redistribute it and/or
|
|
4827
|
+
modify it under the terms of the GNU Lesser General Public
|
|
4828
|
+
License as published by the Free Software Foundation; either
|
|
4829
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
4830
|
+
|
|
4831
|
+
This library is distributed in the hope that it will be useful,
|
|
4832
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
4833
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
4834
|
+
Lesser General Public License for more details.
|
|
4835
|
+
|
|
4836
|
+
==========================================================================
|
|
4837
|
+
|
|
4838
|
+
winpthreads
|
|
4839
|
+
|
|
4840
|
+
Copyright (c) 2011 mingw-w64 project
|
|
4841
|
+
|
|
4842
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
4843
|
+
copy of this software and associated documentation files (the "Software"),
|
|
4844
|
+
to deal in the Software without restriction, including without limitation
|
|
4845
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
4846
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
|
4847
|
+
Software is furnished to do so, subject to the following conditions:
|
|
4848
|
+
|
|
4849
|
+
The above copyright notice and this permission notice shall be included in
|
|
4850
|
+
all copies or substantial portions of the Software.
|
|
4851
|
+
|
|
4852
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4853
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4854
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4855
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4856
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
4857
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
4858
|
+
DEALINGS IN THE SOFTWARE.
|
|
4859
|
+
|
|
4860
|
+
|
|
4861
|
+
/*
|
|
4862
|
+
* Parts of this library are derived by:
|
|
4863
|
+
*
|
|
4864
|
+
* Posix Threads library for Microsoft Windows
|
|
4865
|
+
*
|
|
4866
|
+
* Use at own risk, there is no implied warranty to this code.
|
|
4867
|
+
* It uses undocumented features of Microsoft Windows that can change
|
|
4868
|
+
* at any time in the future.
|
|
4869
|
+
*
|
|
4870
|
+
* (C) 2010 Lockless Inc.
|
|
4871
|
+
* All rights reserved.
|
|
4872
|
+
*
|
|
4873
|
+
* Redistribution and use in source and binary forms, with or without modification,
|
|
4874
|
+
* are permitted provided that the following conditions are met:
|
|
4875
|
+
*
|
|
4876
|
+
*
|
|
4877
|
+
* * Redistributions of source code must retain the above copyright notice,
|
|
4878
|
+
* this list of conditions and the following disclaimer.
|
|
4879
|
+
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
4880
|
+
* this list of conditions and the following disclaimer in the documentation
|
|
4881
|
+
* and/or other materials provided with the distribution.
|
|
4882
|
+
* * Neither the name of Lockless Inc. nor the names of its contributors may be
|
|
4883
|
+
* used to endorse or promote products derived from this software without
|
|
4884
|
+
* specific prior written permission.
|
|
4885
|
+
*
|
|
4886
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AN
|
|
4887
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
4888
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
4889
|
+
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
4890
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
4891
|
+
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
4892
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
4893
|
+
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
4894
|
+
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
4895
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4896
|
+
*/
|
|
4897
|
+
|
|
4898
|
+
==========================================================================
|
|
4899
|
+
|
|
4900
|
+
libgcc
|
|
4901
|
+
|
|
4902
|
+
GNU GENERAL PUBLIC LICENSE
|
|
4903
|
+
Version 3, 29 June 2007
|
|
4904
|
+
|
|
4905
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
4906
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
4907
|
+
of this license document, but changing it is not allowed.
|
|
4908
|
+
|
|
4909
|
+
Preamble
|
|
4910
|
+
|
|
4911
|
+
The GNU General Public License is a free, copyleft license for
|
|
4912
|
+
software and other kinds of works.
|
|
4913
|
+
|
|
4914
|
+
The licenses for most software and other practical works are designed
|
|
4915
|
+
to take away your freedom to share and change the works. By contrast,
|
|
4916
|
+
the GNU General Public License is intended to guarantee your freedom to
|
|
4917
|
+
share and change all versions of a program--to make sure it remains free
|
|
4918
|
+
software for all its users. We, the Free Software Foundation, use the
|
|
4919
|
+
GNU General Public License for most of our software; it applies also to
|
|
4920
|
+
any other work released this way by its authors. You can apply it to
|
|
4921
|
+
your programs, too.
|
|
4922
|
+
|
|
4923
|
+
When we speak of free software, we are referring to freedom, not
|
|
4924
|
+
price. Our General Public Licenses are designed to make sure that you
|
|
4925
|
+
have the freedom to distribute copies of free software (and charge for
|
|
4926
|
+
them if you wish), that you receive source code or can get it if you
|
|
4927
|
+
want it, that you can change the software or use pieces of it in new
|
|
4928
|
+
free programs, and that you know you can do these things.
|
|
4929
|
+
|
|
4930
|
+
To protect your rights, we need to prevent others from denying you
|
|
4931
|
+
these rights or asking you to surrender the rights. Therefore, you have
|
|
4932
|
+
certain responsibilities if you distribute copies of the software, or if
|
|
4933
|
+
you modify it: responsibilities to respect the freedom of others.
|
|
4934
|
+
|
|
4935
|
+
For example, if you distribute copies of such a program, whether
|
|
4936
|
+
gratis or for a fee, you must pass on to the recipients the same
|
|
4937
|
+
freedoms that you received. You must make sure that they, too, receive
|
|
4938
|
+
or can get the source code. And you must show them these terms so they
|
|
4939
|
+
know their rights.
|
|
4940
|
+
|
|
4941
|
+
Developers that use the GNU GPL protect your rights with two steps:
|
|
4942
|
+
(1) assert copyright on the software, and (2) offer you this License
|
|
4943
|
+
giving you legal permission to copy, distribute and/or modify it.
|
|
4944
|
+
|
|
4945
|
+
For the developers' and authors' protection, the GPL clearly explains
|
|
4946
|
+
that there is no warranty for this free software. For both users' and
|
|
4947
|
+
authors' sake, the GPL requires that modified versions be marked as
|
|
4948
|
+
changed, so that their problems will not be attributed erroneously to
|
|
4949
|
+
authors of previous versions.
|
|
4950
|
+
|
|
4951
|
+
Some devices are designed to deny users access to install or run
|
|
4952
|
+
modified versions of the software inside them, although the manufacturer
|
|
4953
|
+
can do so. This is fundamentally incompatible with the aim of
|
|
4954
|
+
protecting users' freedom to change the software. The systematic
|
|
4955
|
+
pattern of such abuse occurs in the area of products for individuals to
|
|
4956
|
+
use, which is precisely where it is most unacceptable. Therefore, we
|
|
4957
|
+
have designed this version of the GPL to prohibit the practice for those
|
|
4958
|
+
products. If such problems arise substantially in other domains, we
|
|
4959
|
+
stand ready to extend this provision to those domains in future versions
|
|
4960
|
+
of the GPL, as needed to protect the freedom of users.
|
|
4961
|
+
|
|
4962
|
+
Finally, every program is threatened constantly by software patents.
|
|
4963
|
+
States should not allow patents to restrict development and use of
|
|
4964
|
+
software on general-purpose computers, but in those that do, we wish to
|
|
4965
|
+
avoid the special danger that patents applied to a free program could
|
|
4966
|
+
make it effectively proprietary. To prevent this, the GPL assures that
|
|
4967
|
+
patents cannot be used to render the program non-free.
|
|
4968
|
+
|
|
4969
|
+
The precise terms and conditions for copying, distribution and
|
|
4970
|
+
modification follow.
|
|
4971
|
+
|
|
4972
|
+
TERMS AND CONDITIONS
|
|
4973
|
+
|
|
4974
|
+
0. Definitions.
|
|
4975
|
+
|
|
4976
|
+
"This License" refers to version 3 of the GNU General Public License.
|
|
4977
|
+
|
|
4978
|
+
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
4979
|
+
works, such as semiconductor masks.
|
|
4980
|
+
|
|
4981
|
+
"The Program" refers to any copyrightable work licensed under this
|
|
4982
|
+
License. Each licensee is addressed as "you". "Licensees" and
|
|
4983
|
+
"recipients" may be individuals or organizations.
|
|
4984
|
+
|
|
4985
|
+
To "modify" a work means to copy from or adapt all or part of the work
|
|
4986
|
+
in a fashion requiring copyright permission, other than the making of an
|
|
4987
|
+
exact copy. The resulting work is called a "modified version" of the
|
|
4988
|
+
earlier work or a work "based on" the earlier work.
|
|
4989
|
+
|
|
4990
|
+
A "covered work" means either the unmodified Program or a work based
|
|
4991
|
+
on the Program.
|
|
4992
|
+
|
|
4993
|
+
To "propagate" a work means to do anything with it that, without
|
|
4994
|
+
permission, would make you directly or secondarily liable for
|
|
4995
|
+
infringement under applicable copyright law, except executing it on a
|
|
4996
|
+
computer or modifying a private copy. Propagation includes copying,
|
|
4997
|
+
distribution (with or without modification), making available to the
|
|
4998
|
+
public, and in some countries other activities as well.
|
|
4999
|
+
|
|
5000
|
+
To "convey" a work means any kind of propagation that enables other
|
|
5001
|
+
parties to make or receive copies. Mere interaction with a user through
|
|
5002
|
+
a computer network, with no transfer of a copy, is not conveying.
|
|
5003
|
+
|
|
5004
|
+
An interactive user interface displays "Appropriate Legal Notices"
|
|
5005
|
+
to the extent that it includes a convenient and prominently visible
|
|
5006
|
+
feature that (1) displays an appropriate copyright notice, and (2)
|
|
5007
|
+
tells the user that there is no warranty for the work (except to the
|
|
5008
|
+
extent that warranties are provided), that licensees may convey the
|
|
5009
|
+
work under this License, and how to view a copy of this License. If
|
|
5010
|
+
the interface presents a list of user commands or options, such as a
|
|
5011
|
+
menu, a prominent item in the list meets this criterion.
|
|
5012
|
+
|
|
5013
|
+
1. Source Code.
|
|
5014
|
+
|
|
5015
|
+
The "source code" for a work means the preferred form of the work
|
|
5016
|
+
for making modifications to it. "Object code" means any non-source
|
|
5017
|
+
form of a work.
|
|
5018
|
+
|
|
5019
|
+
A "Standard Interface" means an interface that either is an official
|
|
5020
|
+
standard defined by a recognized standards body, or, in the case of
|
|
5021
|
+
interfaces specified for a particular programming language, one that
|
|
5022
|
+
is widely used among developers working in that language.
|
|
5023
|
+
|
|
5024
|
+
The "System Libraries" of an executable work include anything, other
|
|
5025
|
+
than the work as a whole, that (a) is included in the normal form of
|
|
5026
|
+
packaging a Major Component, but which is not part of that Major
|
|
5027
|
+
Component, and (b) serves only to enable use of the work with that
|
|
5028
|
+
Major Component, or to implement a Standard Interface for which an
|
|
5029
|
+
implementation is available to the public in source code form. A
|
|
5030
|
+
"Major Component", in this context, means a major essential component
|
|
5031
|
+
(kernel, window system, and so on) of the specific operating system
|
|
5032
|
+
(if any) on which the executable work runs, or a compiler used to
|
|
5033
|
+
produce the work, or an object code interpreter used to run it.
|
|
5034
|
+
|
|
5035
|
+
The "Corresponding Source" for a work in object code form means all
|
|
5036
|
+
the source code needed to generate, install, and (for an executable
|
|
5037
|
+
work) run the object code and to modify the work, including scripts to
|
|
5038
|
+
control those activities. However, it does not include the work's
|
|
5039
|
+
System Libraries, or general-purpose tools or generally available free
|
|
5040
|
+
programs which are used unmodified in performing those activities but
|
|
5041
|
+
which are not part of the work. For example, Corresponding Source
|
|
5042
|
+
includes interface definition files associated with source files for
|
|
5043
|
+
the work, and the source code for shared libraries and dynamically
|
|
5044
|
+
linked subprograms that the work is specifically designed to require,
|
|
5045
|
+
such as by intimate data communication or control flow between those
|
|
5046
|
+
subprograms and other parts of the work.
|
|
5047
|
+
|
|
5048
|
+
The Corresponding Source need not include anything that users
|
|
5049
|
+
can regenerate automatically from other parts of the Corresponding
|
|
5050
|
+
Source.
|
|
5051
|
+
|
|
5052
|
+
The Corresponding Source for a work in source code form is that
|
|
5053
|
+
same work.
|
|
5054
|
+
|
|
5055
|
+
2. Basic Permissions.
|
|
5056
|
+
|
|
5057
|
+
All rights granted under this License are granted for the term of
|
|
5058
|
+
copyright on the Program, and are irrevocable provided the stated
|
|
5059
|
+
conditions are met. This License explicitly affirms your unlimited
|
|
5060
|
+
permission to run the unmodified Program. The output from running a
|
|
5061
|
+
covered work is covered by this License only if the output, given its
|
|
5062
|
+
content, constitutes a covered work. This License acknowledges your
|
|
5063
|
+
rights of fair use or other equivalent, as provided by copyright law.
|
|
5064
|
+
|
|
5065
|
+
You may make, run and propagate covered works that you do not
|
|
5066
|
+
convey, without conditions so long as your license otherwise remains
|
|
5067
|
+
in force. You may convey covered works to others for the sole purpose
|
|
5068
|
+
of having them make modifications exclusively for you, or provide you
|
|
5069
|
+
with facilities for running those works, provided that you comply with
|
|
5070
|
+
the terms of this License in conveying all material for which you do
|
|
5071
|
+
not control copyright. Those thus making or running the covered works
|
|
5072
|
+
for you must do so exclusively on your behalf, under your direction
|
|
5073
|
+
and control, on terms that prohibit them from making any copies of
|
|
5074
|
+
your copyrighted material outside their relationship with you.
|
|
5075
|
+
|
|
5076
|
+
Conveying under any other circumstances is permitted solely under
|
|
5077
|
+
the conditions stated below. Sublicensing is not allowed; section 10
|
|
5078
|
+
makes it unnecessary.
|
|
5079
|
+
|
|
5080
|
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
5081
|
+
|
|
5082
|
+
No covered work shall be deemed part of an effective technological
|
|
5083
|
+
measure under any applicable law fulfilling obligations under article
|
|
5084
|
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
5085
|
+
similar laws prohibiting or restricting circumvention of such
|
|
5086
|
+
measures.
|
|
5087
|
+
|
|
5088
|
+
When you convey a covered work, you waive any legal power to forbid
|
|
5089
|
+
circumvention of technological measures to the extent such circumvention
|
|
5090
|
+
is effected by exercising rights under this License with respect to
|
|
5091
|
+
the covered work, and you disclaim any intention to limit operation or
|
|
5092
|
+
modification of the work as a means of enforcing, against the work's
|
|
5093
|
+
users, your or third parties' legal rights to forbid circumvention of
|
|
5094
|
+
technological measures.
|
|
5095
|
+
|
|
5096
|
+
4. Conveying Verbatim Copies.
|
|
5097
|
+
|
|
5098
|
+
You may convey verbatim copies of the Program's source code as you
|
|
5099
|
+
receive it, in any medium, provided that you conspicuously and
|
|
5100
|
+
appropriately publish on each copy an appropriate copyright notice;
|
|
5101
|
+
keep intact all notices stating that this License and any
|
|
5102
|
+
non-permissive terms added in accord with section 7 apply to the code;
|
|
5103
|
+
keep intact all notices of the absence of any warranty; and give all
|
|
5104
|
+
recipients a copy of this License along with the Program.
|
|
5105
|
+
|
|
5106
|
+
You may charge any price or no price for each copy that you convey,
|
|
5107
|
+
and you may offer support or warranty protection for a fee.
|
|
5108
|
+
|
|
5109
|
+
5. Conveying Modified Source Versions.
|
|
5110
|
+
|
|
5111
|
+
You may convey a work based on the Program, or the modifications to
|
|
5112
|
+
produce it from the Program, in the form of source code under the
|
|
5113
|
+
terms of section 4, provided that you also meet all of these conditions:
|
|
5114
|
+
|
|
5115
|
+
a) The work must carry prominent notices stating that you modified
|
|
5116
|
+
it, and giving a relevant date.
|
|
5117
|
+
|
|
5118
|
+
b) The work must carry prominent notices stating that it is
|
|
5119
|
+
released under this License and any conditions added under section
|
|
5120
|
+
7. This requirement modifies the requirement in section 4 to
|
|
5121
|
+
"keep intact all notices".
|
|
5122
|
+
|
|
5123
|
+
c) You must license the entire work, as a whole, under this
|
|
5124
|
+
License to anyone who comes into possession of a copy. This
|
|
5125
|
+
License will therefore apply, along with any applicable section 7
|
|
5126
|
+
additional terms, to the whole of the work, and all its parts,
|
|
5127
|
+
regardless of how they are packaged. This License gives no
|
|
5128
|
+
permission to license the work in any other way, but it does not
|
|
5129
|
+
invalidate such permission if you have separately received it.
|
|
5130
|
+
|
|
5131
|
+
d) If the work has interactive user interfaces, each must display
|
|
5132
|
+
Appropriate Legal Notices; however, if the Program has interactive
|
|
5133
|
+
interfaces that do not display Appropriate Legal Notices, your
|
|
5134
|
+
work need not make them do so.
|
|
5135
|
+
|
|
5136
|
+
A compilation of a covered work with other separate and independent
|
|
5137
|
+
works, which are not by their nature extensions of the covered work,
|
|
5138
|
+
and which are not combined with it such as to form a larger program,
|
|
5139
|
+
in or on a volume of a storage or distribution medium, is called an
|
|
5140
|
+
"aggregate" if the compilation and its resulting copyright are not
|
|
5141
|
+
used to limit the access or legal rights of the compilation's users
|
|
5142
|
+
beyond what the individual works permit. Inclusion of a covered work
|
|
5143
|
+
in an aggregate does not cause this License to apply to the other
|
|
5144
|
+
parts of the aggregate.
|
|
5145
|
+
|
|
5146
|
+
6. Conveying Non-Source Forms.
|
|
5147
|
+
|
|
5148
|
+
You may convey a covered work in object code form under the terms
|
|
5149
|
+
of sections 4 and 5, provided that you also convey the
|
|
5150
|
+
machine-readable Corresponding Source under the terms of this License,
|
|
5151
|
+
in one of these ways:
|
|
5152
|
+
|
|
5153
|
+
a) Convey the object code in, or embodied in, a physical product
|
|
5154
|
+
(including a physical distribution medium), accompanied by the
|
|
5155
|
+
Corresponding Source fixed on a durable physical medium
|
|
5156
|
+
customarily used for software interchange.
|
|
5157
|
+
|
|
5158
|
+
b) Convey the object code in, or embodied in, a physical product
|
|
5159
|
+
(including a physical distribution medium), accompanied by a
|
|
5160
|
+
written offer, valid for at least three years and valid for as
|
|
5161
|
+
long as you offer spare parts or customer support for that product
|
|
5162
|
+
model, to give anyone who possesses the object code either (1) a
|
|
5163
|
+
copy of the Corresponding Source for all the software in the
|
|
5164
|
+
product that is covered by this License, on a durable physical
|
|
5165
|
+
medium customarily used for software interchange, for a price no
|
|
5166
|
+
more than your reasonable cost of physically performing this
|
|
5167
|
+
conveying of source, or (2) access to copy the
|
|
5168
|
+
Corresponding Source from a network server at no charge.
|
|
5169
|
+
|
|
5170
|
+
c) Convey individual copies of the object code with a copy of the
|
|
5171
|
+
written offer to provide the Corresponding Source. This
|
|
5172
|
+
alternative is allowed only occasionally and noncommercially, and
|
|
5173
|
+
only if you received the object code with such an offer, in accord
|
|
5174
|
+
with subsection 6b.
|
|
5175
|
+
|
|
5176
|
+
d) Convey the object code by offering access from a designated
|
|
5177
|
+
place (gratis or for a charge), and offer equivalent access to the
|
|
5178
|
+
Corresponding Source in the same way through the same place at no
|
|
5179
|
+
further charge. You need not require recipients to copy the
|
|
5180
|
+
Corresponding Source along with the object code. If the place to
|
|
5181
|
+
copy the object code is a network server, the Corresponding Source
|
|
5182
|
+
may be on a different server (operated by you or a third party)
|
|
5183
|
+
that supports equivalent copying facilities, provided you maintain
|
|
5184
|
+
clear directions next to the object code saying where to find the
|
|
5185
|
+
Corresponding Source. Regardless of what server hosts the
|
|
5186
|
+
Corresponding Source, you remain obligated to ensure that it is
|
|
5187
|
+
available for as long as needed to satisfy these requirements.
|
|
5188
|
+
|
|
5189
|
+
e) Convey the object code using peer-to-peer transmission, provided
|
|
5190
|
+
you inform other peers where the object code and Corresponding
|
|
5191
|
+
Source of the work are being offered to the general public at no
|
|
5192
|
+
charge under subsection 6d.
|
|
5193
|
+
|
|
5194
|
+
A separable portion of the object code, whose source code is excluded
|
|
5195
|
+
from the Corresponding Source as a System Library, need not be
|
|
5196
|
+
included in conveying the object code work.
|
|
5197
|
+
|
|
5198
|
+
A "User Product" is either (1) a "consumer product", which means any
|
|
5199
|
+
tangible personal property which is normally used for personal, family,
|
|
5200
|
+
or household purposes, or (2) anything designed or sold for incorporation
|
|
5201
|
+
into a dwelling. In determining whether a product is a consumer product,
|
|
5202
|
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
5203
|
+
product received by a particular user, "normally used" refers to a
|
|
5204
|
+
typical or common use of that class of product, regardless of the status
|
|
5205
|
+
of the particular user or of the way in which the particular user
|
|
5206
|
+
actually uses, or expects or is expected to use, the product. A product
|
|
5207
|
+
is a consumer product regardless of whether the product has substantial
|
|
5208
|
+
commercial, industrial or non-consumer uses, unless such uses represent
|
|
5209
|
+
the only significant mode of use of the product.
|
|
5210
|
+
|
|
5211
|
+
"Installation Information" for a User Product means any methods,
|
|
5212
|
+
procedures, authorization keys, or other information required to install
|
|
5213
|
+
and execute modified versions of a covered work in that User Product from
|
|
5214
|
+
a modified version of its Corresponding Source. The information must
|
|
5215
|
+
suffice to ensure that the continued functioning of the modified object
|
|
5216
|
+
code is in no case prevented or interfered with solely because
|
|
5217
|
+
modification has been made.
|
|
5218
|
+
|
|
5219
|
+
If you convey an object code work under this section in, or with, or
|
|
5220
|
+
specifically for use in, a User Product, and the conveying occurs as
|
|
5221
|
+
part of a transaction in which the right of possession and use of the
|
|
5222
|
+
User Product is transferred to the recipient in perpetuity or for a
|
|
5223
|
+
fixed term (regardless of how the transaction is characterized), the
|
|
5224
|
+
Corresponding Source conveyed under this section must be accompanied
|
|
5225
|
+
by the Installation Information. But this requirement does not apply
|
|
5226
|
+
if neither you nor any third party retains the ability to install
|
|
5227
|
+
modified object code on the User Product (for example, the work has
|
|
5228
|
+
been installed in ROM).
|
|
5229
|
+
|
|
5230
|
+
The requirement to provide Installation Information does not include a
|
|
5231
|
+
requirement to continue to provide support service, warranty, or updates
|
|
5232
|
+
for a work that has been modified or installed by the recipient, or for
|
|
5233
|
+
the User Product in which it has been modified or installed. Access to a
|
|
5234
|
+
network may be denied when the modification itself materially and
|
|
5235
|
+
adversely affects the operation of the network or violates the rules and
|
|
5236
|
+
protocols for communication across the network.
|
|
5237
|
+
|
|
5238
|
+
Corresponding Source conveyed, and Installation Information provided,
|
|
5239
|
+
in accord with this section must be in a format that is publicly
|
|
5240
|
+
documented (and with an implementation available to the public in
|
|
5241
|
+
source code form), and must require no special password or key for
|
|
5242
|
+
unpacking, reading or copying.
|
|
5243
|
+
|
|
5244
|
+
7. Additional Terms.
|
|
5245
|
+
|
|
5246
|
+
"Additional permissions" are terms that supplement the terms of this
|
|
5247
|
+
License by making exceptions from one or more of its conditions.
|
|
5248
|
+
Additional permissions that are applicable to the entire Program shall
|
|
5249
|
+
be treated as though they were included in this License, to the extent
|
|
5250
|
+
that they are valid under applicable law. If additional permissions
|
|
5251
|
+
apply only to part of the Program, that part may be used separately
|
|
5252
|
+
under those permissions, but the entire Program remains governed by
|
|
5253
|
+
this License without regard to the additional permissions.
|
|
5254
|
+
|
|
5255
|
+
When you convey a copy of a covered work, you may at your option
|
|
5256
|
+
remove any additional permissions from that copy, or from any part of
|
|
5257
|
+
it. (Additional permissions may be written to require their own
|
|
5258
|
+
removal in certain cases when you modify the work.) You may place
|
|
5259
|
+
additional permissions on material, added by you to a covered work,
|
|
5260
|
+
for which you have or can give appropriate copyright permission.
|
|
5261
|
+
|
|
5262
|
+
Notwithstanding any other provision of this License, for material you
|
|
5263
|
+
add to a covered work, you may (if authorized by the copyright holders of
|
|
5264
|
+
that material) supplement the terms of this License with terms:
|
|
5265
|
+
|
|
5266
|
+
a) Disclaiming warranty or limiting liability differently from the
|
|
5267
|
+
terms of sections 15 and 16 of this License; or
|
|
5268
|
+
|
|
5269
|
+
b) Requiring preservation of specified reasonable legal notices or
|
|
5270
|
+
author attributions in that material or in the Appropriate Legal
|
|
5271
|
+
Notices displayed by works containing it; or
|
|
5272
|
+
|
|
5273
|
+
c) Prohibiting misrepresentation of the origin of that material, or
|
|
5274
|
+
requiring that modified versions of such material be marked in
|
|
5275
|
+
reasonable ways as different from the original version; or
|
|
5276
|
+
|
|
5277
|
+
d) Limiting the use for publicity purposes of names of licensors or
|
|
5278
|
+
authors of the material; or
|
|
5279
|
+
|
|
5280
|
+
e) Declining to grant rights under trademark law for use of some
|
|
5281
|
+
trade names, trademarks, or service marks; or
|
|
5282
|
+
|
|
5283
|
+
f) Requiring indemnification of licensors and authors of that
|
|
5284
|
+
material by anyone who conveys the material (or modified versions of
|
|
5285
|
+
it) with contractual assumptions of liability to the recipient, for
|
|
5286
|
+
any liability that these contractual assumptions directly impose on
|
|
5287
|
+
those licensors and authors.
|
|
5288
|
+
|
|
5289
|
+
All other non-permissive additional terms are considered "further
|
|
5290
|
+
restrictions" within the meaning of section 10. If the Program as you
|
|
5291
|
+
received it, or any part of it, contains a notice stating that it is
|
|
5292
|
+
governed by this License along with a term that is a further
|
|
5293
|
+
restriction, you may remove that term. If a license document contains
|
|
5294
|
+
a further restriction but permits relicensing or conveying under this
|
|
5295
|
+
License, you may add to a covered work material governed by the terms
|
|
5296
|
+
of that license document, provided that the further restriction does
|
|
5297
|
+
not survive such relicensing or conveying.
|
|
5298
|
+
|
|
5299
|
+
If you add terms to a covered work in accord with this section, you
|
|
5300
|
+
must place, in the relevant source files, a statement of the
|
|
5301
|
+
additional terms that apply to those files, or a notice indicating
|
|
5302
|
+
where to find the applicable terms.
|
|
5303
|
+
|
|
5304
|
+
Additional terms, permissive or non-permissive, may be stated in the
|
|
5305
|
+
form of a separately written license, or stated as exceptions;
|
|
5306
|
+
the above requirements apply either way.
|
|
5307
|
+
|
|
5308
|
+
8. Termination.
|
|
5309
|
+
|
|
5310
|
+
You may not propagate or modify a covered work except as expressly
|
|
5311
|
+
provided under this License. Any attempt otherwise to propagate or
|
|
5312
|
+
modify it is void, and will automatically terminate your rights under
|
|
5313
|
+
this License (including any patent licenses granted under the third
|
|
5314
|
+
paragraph of section 11).
|
|
5315
|
+
|
|
5316
|
+
However, if you cease all violation of this License, then your
|
|
5317
|
+
license from a particular copyright holder is reinstated (a)
|
|
5318
|
+
provisionally, unless and until the copyright holder explicitly and
|
|
5319
|
+
finally terminates your license, and (b) permanently, if the copyright
|
|
5320
|
+
holder fails to notify you of the violation by some reasonable means
|
|
5321
|
+
prior to 60 days after the cessation.
|
|
5322
|
+
|
|
5323
|
+
Moreover, your license from a particular copyright holder is
|
|
5324
|
+
reinstated permanently if the copyright holder notifies you of the
|
|
5325
|
+
violation by some reasonable means, this is the first time you have
|
|
5326
|
+
received notice of violation of this License (for any work) from that
|
|
5327
|
+
copyright holder, and you cure the violation prior to 30 days after
|
|
5328
|
+
your receipt of the notice.
|
|
5329
|
+
|
|
5330
|
+
Termination of your rights under this section does not terminate the
|
|
5331
|
+
licenses of parties who have received copies or rights from you under
|
|
5332
|
+
this License. If your rights have been terminated and not permanently
|
|
5333
|
+
reinstated, you do not qualify to receive new licenses for the same
|
|
5334
|
+
material under section 10.
|
|
5335
|
+
|
|
5336
|
+
9. Acceptance Not Required for Having Copies.
|
|
5337
|
+
|
|
5338
|
+
You are not required to accept this License in order to receive or
|
|
5339
|
+
run a copy of the Program. Ancillary propagation of a covered work
|
|
5340
|
+
occurring solely as a consequence of using peer-to-peer transmission
|
|
5341
|
+
to receive a copy likewise does not require acceptance. However,
|
|
5342
|
+
nothing other than this License grants you permission to propagate or
|
|
5343
|
+
modify any covered work. These actions infringe copyright if you do
|
|
5344
|
+
not accept this License. Therefore, by modifying or propagating a
|
|
5345
|
+
covered work, you indicate your acceptance of this License to do so.
|
|
5346
|
+
|
|
5347
|
+
10. Automatic Licensing of Downstream Recipients.
|
|
5348
|
+
|
|
5349
|
+
Each time you convey a covered work, the recipient automatically
|
|
5350
|
+
receives a license from the original licensors, to run, modify and
|
|
5351
|
+
propagate that work, subject to this License. You are not responsible
|
|
5352
|
+
for enforcing compliance by third parties with this License.
|
|
5353
|
+
|
|
5354
|
+
An "entity transaction" is a transaction transferring control of an
|
|
5355
|
+
organization, or substantially all assets of one, or subdividing an
|
|
5356
|
+
organization, or merging organizations. If propagation of a covered
|
|
5357
|
+
work results from an entity transaction, each party to that
|
|
5358
|
+
transaction who receives a copy of the work also receives whatever
|
|
5359
|
+
licenses to the work the party's predecessor in interest had or could
|
|
5360
|
+
give under the previous paragraph, plus a right to possession of the
|
|
5361
|
+
Corresponding Source of the work from the predecessor in interest, if
|
|
5362
|
+
the predecessor has it or can get it with reasonable efforts.
|
|
5363
|
+
|
|
5364
|
+
You may not impose any further restrictions on the exercise of the
|
|
5365
|
+
rights granted or affirmed under this License. For example, you may
|
|
5366
|
+
not impose a license fee, royalty, or other charge for exercise of
|
|
5367
|
+
rights granted under this License, and you may not initiate litigation
|
|
5368
|
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
5369
|
+
any patent claim is infringed by making, using, selling, offering for
|
|
5370
|
+
sale, or importing the Program or any portion of it.
|
|
5371
|
+
|
|
5372
|
+
11. Patents.
|
|
5373
|
+
|
|
5374
|
+
A "contributor" is a copyright holder who authorizes use under this
|
|
5375
|
+
License of the Program or a work on which the Program is based. The
|
|
5376
|
+
work thus licensed is called the contributor's "contributor version".
|
|
5377
|
+
|
|
5378
|
+
A contributor's "essential patent claims" are all patent claims
|
|
5379
|
+
owned or controlled by the contributor, whether already acquired or
|
|
5380
|
+
hereafter acquired, that would be infringed by some manner, permitted
|
|
5381
|
+
by this License, of making, using, or selling its contributor version,
|
|
5382
|
+
but do not include claims that would be infringed only as a
|
|
5383
|
+
consequence of further modification of the contributor version. For
|
|
5384
|
+
purposes of this definition, "control" includes the right to grant
|
|
5385
|
+
patent sublicenses in a manner consistent with the requirements of
|
|
5386
|
+
this License.
|
|
5387
|
+
|
|
5388
|
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
5389
|
+
patent license under the contributor's essential patent claims, to
|
|
5390
|
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
5391
|
+
propagate the contents of its contributor version.
|
|
5392
|
+
|
|
5393
|
+
In the following three paragraphs, a "patent license" is any express
|
|
5394
|
+
agreement or commitment, however denominated, not to enforce a patent
|
|
5395
|
+
(such as an express permission to practice a patent or covenant not to
|
|
5396
|
+
sue for patent infringement). To "grant" such a patent license to a
|
|
5397
|
+
party means to make such an agreement or commitment not to enforce a
|
|
5398
|
+
patent against the party.
|
|
5399
|
+
|
|
5400
|
+
If you convey a covered work, knowingly relying on a patent license,
|
|
5401
|
+
and the Corresponding Source of the work is not available for anyone
|
|
5402
|
+
to copy, free of charge and under the terms of this License, through a
|
|
5403
|
+
publicly available network server or other readily accessible means,
|
|
5404
|
+
then you must either (1) cause the Corresponding Source to be so
|
|
5405
|
+
available, or (2) arrange to deprive yourself of the benefit of the
|
|
5406
|
+
patent license for this particular work, or (3) arrange, in a manner
|
|
5407
|
+
consistent with the requirements of this License, to extend the patent
|
|
5408
|
+
license to downstream recipients. "Knowingly relying" means you have
|
|
5409
|
+
actual knowledge that, but for the patent license, your conveying the
|
|
5410
|
+
covered work in a country, or your recipient's use of the covered work
|
|
5411
|
+
in a country, would infringe one or more identifiable patents in that
|
|
5412
|
+
country that you have reason to believe are valid.
|
|
5413
|
+
|
|
5414
|
+
If, pursuant to or in connection with a single transaction or
|
|
5415
|
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
5416
|
+
covered work, and grant a patent license to some of the parties
|
|
5417
|
+
receiving the covered work authorizing them to use, propagate, modify
|
|
5418
|
+
or convey a specific copy of the covered work, then the patent license
|
|
5419
|
+
you grant is automatically extended to all recipients of the covered
|
|
5420
|
+
work and works based on it.
|
|
5421
|
+
|
|
5422
|
+
A patent license is "discriminatory" if it does not include within
|
|
5423
|
+
the scope of its coverage, prohibits the exercise of, or is
|
|
5424
|
+
conditioned on the non-exercise of one or more of the rights that are
|
|
5425
|
+
specifically granted under this License. You may not convey a covered
|
|
5426
|
+
work if you are a party to an arrangement with a third party that is
|
|
5427
|
+
in the business of distributing software, under which you make payment
|
|
5428
|
+
to the third party based on the extent of your activity of conveying
|
|
5429
|
+
the work, and under which the third party grants, to any of the
|
|
5430
|
+
parties who would receive the covered work from you, a discriminatory
|
|
5431
|
+
patent license (a) in connection with copies of the covered work
|
|
5432
|
+
conveyed by you (or copies made from those copies), or (b) primarily
|
|
5433
|
+
for and in connection with specific products or compilations that
|
|
5434
|
+
contain the covered work, unless you entered into that arrangement,
|
|
5435
|
+
or that patent license was granted, prior to 28 March 2007.
|
|
5436
|
+
|
|
5437
|
+
Nothing in this License shall be construed as excluding or limiting
|
|
5438
|
+
any implied license or other defenses to infringement that may
|
|
5439
|
+
otherwise be available to you under applicable patent law.
|
|
5440
|
+
|
|
5441
|
+
12. No Surrender of Others' Freedom.
|
|
5442
|
+
|
|
5443
|
+
If conditions are imposed on you (whether by court order, agreement or
|
|
5444
|
+
otherwise) that contradict the conditions of this License, they do not
|
|
5445
|
+
excuse you from the conditions of this License. If you cannot convey a
|
|
5446
|
+
covered work so as to satisfy simultaneously your obligations under this
|
|
5447
|
+
License and any other pertinent obligations, then as a consequence you may
|
|
5448
|
+
not convey it at all. For example, if you agree to terms that obligate you
|
|
5449
|
+
to collect a royalty for further conveying from those to whom you convey
|
|
5450
|
+
the Program, the only way you could satisfy both those terms and this
|
|
5451
|
+
License would be to refrain entirely from conveying the Program.
|
|
5452
|
+
|
|
5453
|
+
13. Use with the GNU Affero General Public License.
|
|
5454
|
+
|
|
5455
|
+
Notwithstanding any other provision of this License, you have
|
|
5456
|
+
permission to link or combine any covered work with a work licensed
|
|
5457
|
+
under version 3 of the GNU Affero General Public License into a single
|
|
5458
|
+
combined work, and to convey the resulting work. The terms of this
|
|
5459
|
+
License will continue to apply to the part which is the covered work,
|
|
5460
|
+
but the special requirements of the GNU Affero General Public License,
|
|
5461
|
+
section 13, concerning interaction through a network will apply to the
|
|
5462
|
+
combination as such.
|
|
5463
|
+
|
|
5464
|
+
14. Revised Versions of this License.
|
|
5465
|
+
|
|
5466
|
+
The Free Software Foundation may publish revised and/or new versions of
|
|
5467
|
+
the GNU General Public License from time to time. Such new versions will
|
|
5468
|
+
be similar in spirit to the present version, but may differ in detail to
|
|
5469
|
+
address new problems or concerns.
|
|
5470
|
+
|
|
5471
|
+
Each version is given a distinguishing version number. If the
|
|
5472
|
+
Program specifies that a certain numbered version of the GNU General
|
|
5473
|
+
Public License "or any later version" applies to it, you have the
|
|
5474
|
+
option of following the terms and conditions either of that numbered
|
|
5475
|
+
version or of any later version published by the Free Software
|
|
5476
|
+
Foundation. If the Program does not specify a version number of the
|
|
5477
|
+
GNU General Public License, you may choose any version ever published
|
|
5478
|
+
by the Free Software Foundation.
|
|
5479
|
+
|
|
5480
|
+
If the Program specifies that a proxy can decide which future
|
|
5481
|
+
versions of the GNU General Public License can be used, that proxy's
|
|
5482
|
+
public statement of acceptance of a version permanently authorizes you
|
|
5483
|
+
to choose that version for the Program.
|
|
5484
|
+
|
|
5485
|
+
Later license versions may give you additional or different
|
|
5486
|
+
permissions. However, no additional obligations are imposed on any
|
|
5487
|
+
author or copyright holder as a result of your choosing to follow a
|
|
5488
|
+
later version.
|
|
5489
|
+
|
|
5490
|
+
15. Disclaimer of Warranty.
|
|
5491
|
+
|
|
5492
|
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
5493
|
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
5494
|
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
5495
|
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
5496
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
5497
|
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
5498
|
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
5499
|
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
5500
|
+
|
|
5501
|
+
16. Limitation of Liability.
|
|
5502
|
+
|
|
5503
|
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
5504
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
5505
|
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
5506
|
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
5507
|
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
5508
|
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
5509
|
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
5510
|
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
5511
|
+
SUCH DAMAGES.
|
|
5512
|
+
|
|
5513
|
+
17. Interpretation of Sections 15 and 16.
|
|
5514
|
+
|
|
5515
|
+
If the disclaimer of warranty and limitation of liability provided
|
|
5516
|
+
above cannot be given local legal effect according to their terms,
|
|
5517
|
+
reviewing courts shall apply local law that most closely approximates
|
|
5518
|
+
an absolute waiver of all civil liability in connection with the
|
|
5519
|
+
Program, unless a warranty or assumption of liability accompanies a
|
|
5520
|
+
copy of the Program in return for a fee.
|
|
5521
|
+
|
|
5522
|
+
END OF TERMS AND CONDITIONS
|
|
5523
|
+
|
|
5524
|
+
How to Apply These Terms to Your New Programs
|
|
5525
|
+
|
|
5526
|
+
If you develop a new program, and you want it to be of the greatest
|
|
5527
|
+
possible use to the public, the best way to achieve this is to make it
|
|
5528
|
+
free software which everyone can redistribute and change under these terms.
|
|
5529
|
+
|
|
5530
|
+
To do so, attach the following notices to the program. It is safest
|
|
5531
|
+
to attach them to the start of each source file to most effectively
|
|
5532
|
+
state the exclusion of warranty; and each file should have at least
|
|
5533
|
+
the "copyright" line and a pointer to where the full notice is found.
|
|
5534
|
+
|
|
5535
|
+
<one line to give the program's name and a brief idea of what it does.>
|
|
5536
|
+
Copyright (C) <year> <name of author>
|
|
5537
|
+
|
|
5538
|
+
This program is free software: you can redistribute it and/or modify
|
|
5539
|
+
it under the terms of the GNU General Public License as published by
|
|
5540
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
5541
|
+
(at your option) any later version.
|
|
5542
|
+
|
|
5543
|
+
This program is distributed in the hope that it will be useful,
|
|
5544
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
5545
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
5546
|
+
GNU General Public License for more details.
|
|
5547
|
+
|
|
5548
|
+
You should have received a copy of the GNU General Public License
|
|
5549
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
5550
|
+
|
|
5551
|
+
Also add information on how to contact you by electronic and paper mail.
|
|
5552
|
+
|
|
5553
|
+
If the program does terminal interaction, make it output a short
|
|
5554
|
+
notice like this when it starts in an interactive mode:
|
|
5555
|
+
|
|
5556
|
+
<program> Copyright (C) <year> <name of author>
|
|
5557
|
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
5558
|
+
This is free software, and you are welcome to redistribute it
|
|
5559
|
+
under certain conditions; type `show c' for details.
|
|
5560
|
+
|
|
5561
|
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
5562
|
+
parts of the General Public License. Of course, your program's commands
|
|
5563
|
+
might be different; for a GUI interface, you would use an "about box".
|
|
5564
|
+
|
|
5565
|
+
You should also get your employer (if you work as a programmer) or school,
|
|
5566
|
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
5567
|
+
For more information on this, and how to apply and follow the GNU GPL, see
|
|
5568
|
+
<https://www.gnu.org/licenses/>.
|
|
5569
|
+
|
|
5570
|
+
The GNU General Public License does not permit incorporating your program
|
|
5571
|
+
into proprietary programs. If your program is a subroutine library, you
|
|
5572
|
+
may consider it more useful to permit linking proprietary applications with
|
|
5573
|
+
the library. If this is what you want to do, use the GNU Lesser General
|
|
5574
|
+
Public License instead of this License. But first, please read
|
|
5575
|
+
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
5576
|
+
|
|
5577
|
+
|
|
5578
|
+
GCC RUNTIME LIBRARY EXCEPTION
|
|
5579
|
+
Version 3.1, 31 March 2009
|
|
5580
|
+
|
|
5581
|
+
Copyright © 2009 Free Software Foundation, Inc.
|
|
5582
|
+
<https://fsf.org/>
|
|
5583
|
+
|
|
5584
|
+
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
|
5585
|
+
|
|
5586
|
+
This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public
|
|
5587
|
+
License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the
|
|
5588
|
+
copyright holder of the file stating that the file is governed by GPLv3 along with this Exception.
|
|
5589
|
+
|
|
5590
|
+
When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with
|
|
5591
|
+
the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs
|
|
5592
|
+
to use, in this way, the header files and runtime libraries covered by this Exception.
|
|
5593
|
+
|
|
5594
|
+
0. Definitions.
|
|
5595
|
+
A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process,
|
|
5596
|
+
or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library.
|
|
5597
|
+
|
|
5598
|
+
"GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a
|
|
5599
|
+
specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions
|
|
5600
|
+
published by the FSF.
|
|
5601
|
+
|
|
5602
|
+
"GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination
|
|
5603
|
+
with GCC in accord with the license of GCC.
|
|
5604
|
+
|
|
5605
|
+
"Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form
|
|
5606
|
+
or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not
|
|
5607
|
+
include data in any format that is used as a compiler intermediate representation, or used for producing a compiler
|
|
5608
|
+
intermediate representation.
|
|
5609
|
+
|
|
5610
|
+
The "Compilation Process" transforms code entirely represented in non-intermediate languages designed for human-written
|
|
5611
|
+
code, and/or in Java Virtual Machine byte code, into Target Code. Thus, for example, use of source code generators and
|
|
5612
|
+
preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as
|
|
5613
|
+
starting with the output of the generators or preprocessors.
|
|
5614
|
+
|
|
5615
|
+
A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is
|
|
5616
|
+
done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC
|
|
5617
|
+
intermediate representations would not qualify as an Eligible Compilation Process.
|
|
5618
|
+
|
|
5619
|
+
1. Grant of Additional Permission.
|
|
5620
|
+
You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules,
|
|
5621
|
+
even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by
|
|
5622
|
+
Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the
|
|
5623
|
+
licensing of the Independent Modules.
|
|
5624
|
+
|
|
5625
|
+
2. No Weakening of GCC Copyleft.
|
|
5626
|
+
The availability of this Exception does not imply any general presumption that third-party software is unaffected by the
|
|
5627
|
+
copyleft requirements of the license of GCC.
|
|
5628
|
+
</pre>
|
|
5629
|
+
</li>
|
|
5630
|
+
</ul>
|
|
5631
|
+
</main>
|
|
5632
|
+
</body>
|
|
5633
|
+
|
|
5634
|
+
</html>
|
|
4562
5635
|
|