polars-df 0.19.0-x86_64-darwin → 0.21.0-x86_64-darwin
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/CHANGELOG.md +15 -0
- data/Cargo.lock +211 -320
- data/LICENSE-THIRD-PARTY.txt +1256 -2131
- data/LICENSE.txt +1 -1
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +0 -0
- data/lib/polars/3.4/polars.bundle +0 -0
- data/lib/polars/cat_name_space.rb +3 -43
- data/lib/polars/catalog/unity/catalog_info.rb +20 -0
- data/lib/polars/catalog/unity/column_info.rb +31 -0
- data/lib/polars/catalog/unity/namespace_info.rb +21 -0
- data/lib/polars/catalog/unity/table_info.rb +50 -0
- data/lib/polars/catalog.rb +448 -0
- data/lib/polars/convert.rb +10 -0
- data/lib/polars/data_frame.rb +151 -30
- data/lib/polars/data_types.rb +47 -3
- data/lib/polars/exceptions.rb +7 -2
- data/lib/polars/expr.rb +48 -39
- data/lib/polars/functions/col.rb +6 -5
- data/lib/polars/functions/eager.rb +1 -1
- data/lib/polars/functions/lazy.rb +114 -15
- data/lib/polars/functions/repeat.rb +4 -0
- data/lib/polars/io/csv.rb +18 -0
- data/lib/polars/io/json.rb +16 -0
- data/lib/polars/io/ndjson.rb +13 -0
- data/lib/polars/io/parquet.rb +45 -63
- data/lib/polars/io/scan_options.rb +47 -0
- data/lib/polars/lazy_frame.rb +163 -75
- data/lib/polars/list_expr.rb +213 -17
- data/lib/polars/list_name_space.rb +121 -8
- data/lib/polars/meta_expr.rb +14 -29
- data/lib/polars/scan_cast_options.rb +64 -0
- data/lib/polars/schema.rb +6 -1
- data/lib/polars/selector.rb +138 -0
- data/lib/polars/selectors.rb +931 -202
- data/lib/polars/series.rb +46 -19
- data/lib/polars/string_expr.rb +24 -3
- data/lib/polars/string_name_space.rb +12 -1
- data/lib/polars/utils/parse.rb +40 -0
- data/lib/polars/utils.rb +5 -1
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +8 -0
- metadata +10 -2
data/LICENSE-THIRD-PARTY.txt
CHANGED
@@ -82,8 +82,12 @@ base64 v0.22.1
|
|
82
82
|
https://github.com/marshallpierce/rust-base64
|
83
83
|
MIT OR Apache-2.0
|
84
84
|
|
85
|
-
bincode
|
86
|
-
https://github.com/
|
85
|
+
bincode v2.0.1
|
86
|
+
https://github.com/bincode-org/bincode
|
87
|
+
MIT
|
88
|
+
|
89
|
+
bincode_derive v2.0.1
|
90
|
+
https://github.com/bincode-org/bincode
|
87
91
|
MIT
|
88
92
|
|
89
93
|
bindgen v0.69.5
|
@@ -102,11 +106,15 @@ block-buffer v0.10.4
|
|
102
106
|
https://github.com/RustCrypto/utils
|
103
107
|
MIT OR Apache-2.0
|
104
108
|
|
105
|
-
|
109
|
+
boxcar v0.2.13
|
110
|
+
https://github.com/ibraheemdev/boxcar
|
111
|
+
MIT
|
112
|
+
|
113
|
+
brotli v8.0.1
|
106
114
|
https://github.com/dropbox/rust-brotli
|
107
115
|
BSD-3-Clause AND MIT
|
108
116
|
|
109
|
-
brotli-decompressor
|
117
|
+
brotli-decompressor v5.0.0
|
110
118
|
https://github.com/dropbox/rust-brotli-decompressor
|
111
119
|
BSD-3-Clause/MIT
|
112
120
|
|
@@ -150,11 +158,7 @@ chrono v0.4.41
|
|
150
158
|
https://github.com/chronotope/chrono
|
151
159
|
MIT OR Apache-2.0
|
152
160
|
|
153
|
-
chrono-tz v0.10.
|
154
|
-
https://github.com/chronotope/chrono-tz
|
155
|
-
MIT OR Apache-2.0
|
156
|
-
|
157
|
-
chrono-tz-build v0.4.1
|
161
|
+
chrono-tz v0.10.4
|
158
162
|
https://github.com/chronotope/chrono-tz
|
159
163
|
MIT OR Apache-2.0
|
160
164
|
|
@@ -166,7 +170,7 @@ comfy-table v7.1.4
|
|
166
170
|
https://github.com/nukesor/comfy-table
|
167
171
|
MIT
|
168
172
|
|
169
|
-
compact_str v0.
|
173
|
+
compact_str v0.9.0
|
170
174
|
https://github.com/ParkMyCar/compact_str
|
171
175
|
MIT
|
172
176
|
|
@@ -186,6 +190,10 @@ core-foundation-sys v0.8.7
|
|
186
190
|
https://github.com/servo/core-foundation-rs
|
187
191
|
MIT OR Apache-2.0
|
188
192
|
|
193
|
+
cpufeatures v0.2.17
|
194
|
+
https://github.com/RustCrypto/utils
|
195
|
+
MIT OR Apache-2.0
|
196
|
+
|
189
197
|
crc v2.1.0
|
190
198
|
https://github.com/mrhooray/crc-rs.git
|
191
199
|
MIT OR Apache-2.0
|
@@ -242,10 +250,6 @@ either v1.15.0
|
|
242
250
|
https://github.com/rayon-rs/either
|
243
251
|
MIT OR Apache-2.0
|
244
252
|
|
245
|
-
enum_dispatch v0.3.13
|
246
|
-
https://gitlab.com/antonok/enum_dispatch
|
247
|
-
MIT OR Apache-2.0
|
248
|
-
|
249
253
|
equivalent v1.0.2
|
250
254
|
https://github.com/indexmap-rs/equivalent
|
251
255
|
Apache-2.0 OR MIT
|
@@ -354,14 +358,10 @@ h2 v0.4.10
|
|
354
358
|
https://github.com/hyperium/h2
|
355
359
|
MIT
|
356
360
|
|
357
|
-
halfbrown v0.
|
361
|
+
halfbrown v0.3.0
|
358
362
|
https://github.com/Licenser/halfbrown
|
359
363
|
Apache-2.0/MIT
|
360
364
|
|
361
|
-
hashbrown v0.14.5
|
362
|
-
https://github.com/rust-lang/hashbrown
|
363
|
-
MIT OR Apache-2.0
|
364
|
-
|
365
365
|
hashbrown v0.15.3
|
366
366
|
https://github.com/rust-lang/hashbrown
|
367
367
|
MIT OR Apache-2.0
|
@@ -610,10 +610,6 @@ parking_lot_core v0.9.10
|
|
610
610
|
https://github.com/Amanieu/parking_lot
|
611
611
|
MIT OR Apache-2.0
|
612
612
|
|
613
|
-
parse-zoneinfo v0.3.1
|
614
|
-
https://github.com/chronotope/chrono-tz
|
615
|
-
MIT
|
616
|
-
|
617
613
|
paste v1.0.15
|
618
614
|
https://github.com/dtolnay/paste
|
619
615
|
MIT OR Apache-2.0
|
@@ -622,19 +618,11 @@ percent-encoding v2.3.1
|
|
622
618
|
https://github.com/servo/rust-url/
|
623
619
|
MIT OR Apache-2.0
|
624
620
|
|
625
|
-
phf v0.
|
626
|
-
https://github.com/rust-phf/rust-phf
|
627
|
-
MIT
|
628
|
-
|
629
|
-
phf_codegen v0.11.3
|
630
|
-
https://github.com/rust-phf/rust-phf
|
631
|
-
MIT
|
632
|
-
|
633
|
-
phf_generator v0.11.3
|
621
|
+
phf v0.12.1
|
634
622
|
https://github.com/rust-phf/rust-phf
|
635
623
|
MIT
|
636
624
|
|
637
|
-
phf_shared v0.
|
625
|
+
phf_shared v0.12.1
|
638
626
|
https://github.com/rust-phf/rust-phf
|
639
627
|
MIT
|
640
628
|
|
@@ -650,58 +638,63 @@ pkg-config v0.3.32
|
|
650
638
|
https://github.com/rust-lang/pkg-config-rs
|
651
639
|
MIT OR Apache-2.0
|
652
640
|
|
653
|
-
planus
|
641
|
+
planus v1.1.1
|
654
642
|
https://github.com/planus-org/planus
|
655
643
|
MIT/Apache-2.0
|
656
644
|
|
657
|
-
polars v0.
|
645
|
+
polars v0.50.0
|
658
646
|
https://www.pola.rs/
|
659
647
|
MIT
|
660
648
|
|
661
|
-
polars-arrow v0.
|
649
|
+
polars-arrow v0.50.0
|
662
650
|
https://www.pola.rs/
|
663
651
|
MIT AND Apache-2.0
|
664
652
|
|
665
|
-
polars-arrow-format v0.
|
666
|
-
https://github.com/
|
653
|
+
polars-arrow-format v0.2.0
|
654
|
+
https://github.com/DataEngineeringLabs/arrow-format
|
655
|
+
Apache-2.0
|
656
|
+
|
657
|
+
polars-compute v0.50.0
|
658
|
+
https://www.pola.rs/
|
659
|
+
MIT
|
667
660
|
|
668
|
-
polars-
|
661
|
+
polars-core v0.50.0
|
669
662
|
https://www.pola.rs/
|
670
663
|
MIT
|
671
664
|
|
672
|
-
polars-
|
665
|
+
polars-dtype v0.50.0
|
673
666
|
https://www.pola.rs/
|
674
667
|
MIT
|
675
668
|
|
676
|
-
polars-error v0.
|
669
|
+
polars-error v0.50.0
|
677
670
|
https://www.pola.rs/
|
678
671
|
MIT
|
679
672
|
|
680
|
-
polars-expr v0.
|
673
|
+
polars-expr v0.50.0
|
681
674
|
https://www.pola.rs/
|
682
675
|
MIT
|
683
676
|
|
684
|
-
polars-io v0.
|
677
|
+
polars-io v0.50.0
|
685
678
|
https://www.pola.rs/
|
686
679
|
MIT
|
687
680
|
|
688
|
-
polars-json v0.
|
681
|
+
polars-json v0.50.0
|
689
682
|
https://www.pola.rs/
|
690
683
|
MIT
|
691
684
|
|
692
|
-
polars-lazy v0.
|
685
|
+
polars-lazy v0.50.0
|
693
686
|
https://www.pola.rs/
|
694
687
|
MIT
|
695
688
|
|
696
|
-
polars-mem-engine v0.
|
689
|
+
polars-mem-engine v0.50.0
|
697
690
|
https://www.pola.rs/
|
698
691
|
MIT
|
699
692
|
|
700
|
-
polars-ops v0.
|
693
|
+
polars-ops v0.50.0
|
701
694
|
https://www.pola.rs/
|
702
695
|
MIT
|
703
696
|
|
704
|
-
polars-parquet v0.
|
697
|
+
polars-parquet v0.50.0
|
705
698
|
https://www.pola.rs/
|
706
699
|
MIT AND Apache-2.0
|
707
700
|
|
@@ -709,35 +702,31 @@ polars-parquet-format v0.1.0
|
|
709
702
|
https://github.com/pola-rs/parquet-format
|
710
703
|
MIT AND Apache-2.0
|
711
704
|
|
712
|
-
polars-
|
705
|
+
polars-plan v0.50.0
|
713
706
|
https://www.pola.rs/
|
714
707
|
MIT
|
715
708
|
|
716
|
-
polars-
|
709
|
+
polars-row v0.50.0
|
717
710
|
https://www.pola.rs/
|
718
711
|
MIT
|
719
712
|
|
720
|
-
polars-
|
713
|
+
polars-schema v0.50.0
|
721
714
|
https://www.pola.rs/
|
722
715
|
MIT
|
723
716
|
|
724
|
-
polars-
|
717
|
+
polars-sql v0.50.0
|
725
718
|
https://www.pola.rs/
|
726
719
|
MIT
|
727
720
|
|
728
|
-
polars-
|
721
|
+
polars-stream v0.50.0
|
729
722
|
https://www.pola.rs/
|
730
723
|
MIT
|
731
724
|
|
732
|
-
polars-
|
725
|
+
polars-time v0.50.0
|
733
726
|
https://www.pola.rs/
|
734
727
|
MIT
|
735
728
|
|
736
|
-
polars-
|
737
|
-
https://www.pola.rs/
|
738
|
-
MIT
|
739
|
-
|
740
|
-
polars-utils v0.48.0
|
729
|
+
polars-utils v0.50.0
|
741
730
|
https://www.pola.rs/
|
742
731
|
MIT
|
743
732
|
|
@@ -777,31 +766,19 @@ quote v1.0.40
|
|
777
766
|
https://github.com/dtolnay/quote
|
778
767
|
MIT OR Apache-2.0
|
779
768
|
|
780
|
-
rand v0.8.5
|
781
|
-
https://rust-random.github.io/book
|
782
|
-
MIT OR Apache-2.0
|
783
|
-
|
784
769
|
rand v0.9.1
|
785
770
|
https://rust-random.github.io/book
|
786
771
|
MIT OR Apache-2.0
|
787
772
|
|
788
|
-
rand_chacha v0.3.1
|
789
|
-
https://rust-random.github.io/book
|
790
|
-
MIT OR Apache-2.0
|
791
|
-
|
792
773
|
rand_chacha v0.9.0
|
793
774
|
https://rust-random.github.io/book
|
794
775
|
MIT OR Apache-2.0
|
795
776
|
|
796
|
-
rand_core v0.6.4
|
797
|
-
https://rust-random.github.io/book
|
798
|
-
MIT OR Apache-2.0
|
799
|
-
|
800
777
|
rand_core v0.9.3
|
801
778
|
https://rust-random.github.io/book
|
802
779
|
MIT OR Apache-2.0
|
803
780
|
|
804
|
-
rand_distr v0.
|
781
|
+
rand_distr v0.5.1
|
805
782
|
https://rust-random.github.io/book
|
806
783
|
MIT OR Apache-2.0
|
807
784
|
|
@@ -817,11 +794,11 @@ rayon-core v1.12.1
|
|
817
794
|
https://github.com/rayon-rs/rayon
|
818
795
|
MIT OR Apache-2.0
|
819
796
|
|
820
|
-
rb-sys v0.9.
|
797
|
+
rb-sys v0.9.117
|
821
798
|
https://github.com/oxidize-rb/rb-sys
|
822
799
|
MIT OR Apache-2.0
|
823
800
|
|
824
|
-
rb-sys-build v0.9.
|
801
|
+
rb-sys-build v0.9.117
|
825
802
|
https://github.com/oxidize-rb/rb-sys
|
826
803
|
MIT OR Apache-2.0
|
827
804
|
|
@@ -949,18 +926,22 @@ serde_derive v1.0.219
|
|
949
926
|
https://serde.rs
|
950
927
|
MIT OR Apache-2.0
|
951
928
|
|
952
|
-
serde_ignored v0.1.12
|
953
|
-
https://github.com/dtolnay/serde-ignored
|
954
|
-
MIT OR Apache-2.0
|
955
|
-
|
956
929
|
serde_json v1.0.140
|
957
930
|
https://github.com/serde-rs/json
|
958
931
|
MIT OR Apache-2.0
|
959
932
|
|
933
|
+
serde_stacker v0.1.12
|
934
|
+
https://github.com/dtolnay/serde-stacker
|
935
|
+
MIT OR Apache-2.0
|
936
|
+
|
960
937
|
serde_urlencoded v0.7.1
|
961
938
|
https://github.com/nox/serde_urlencoded
|
962
939
|
MIT/Apache-2.0
|
963
940
|
|
941
|
+
sha2 v0.10.9
|
942
|
+
https://github.com/RustCrypto/hashes
|
943
|
+
MIT OR Apache-2.0
|
944
|
+
|
964
945
|
shell-words v1.1.0
|
965
946
|
https://github.com/tmiasko/shell-words
|
966
947
|
MIT/Apache-2.0
|
@@ -977,7 +958,7 @@ signal-hook-registry v1.4.5
|
|
977
958
|
https://github.com/vorner/signal-hook
|
978
959
|
Apache-2.0/MIT
|
979
960
|
|
980
|
-
simd-json v0.
|
961
|
+
simd-json v0.15.1
|
981
962
|
https://github.com/simd-lite/simd-json
|
982
963
|
Apache-2.0 OR MIT
|
983
964
|
|
@@ -989,8 +970,8 @@ siphasher v1.0.1
|
|
989
970
|
https://docs.rs/siphasher
|
990
971
|
MIT/Apache-2.0
|
991
972
|
|
992
|
-
skiplist v0.
|
993
|
-
https://
|
973
|
+
skiplist v0.6.0
|
974
|
+
https://jpellis.me/projects/rust-skiplist/
|
994
975
|
MIT
|
995
976
|
|
996
977
|
slab v0.4.9
|
@@ -1041,7 +1022,11 @@ strength_reduce v0.2.4
|
|
1041
1022
|
http://github.com/ejmahler/strength_reduce
|
1042
1023
|
MIT OR Apache-2.0
|
1043
1024
|
|
1044
|
-
|
1025
|
+
strum v0.27.2
|
1026
|
+
https://github.com/Peternator7/strum
|
1027
|
+
MIT
|
1028
|
+
|
1029
|
+
strum_macros v0.27.2
|
1045
1030
|
https://github.com/Peternator7/strum
|
1046
1031
|
MIT
|
1047
1032
|
|
@@ -1061,10 +1046,6 @@ synstructure v0.13.2
|
|
1061
1046
|
https://github.com/mystor/synstructure
|
1062
1047
|
MIT
|
1063
1048
|
|
1064
|
-
sysinfo v0.33.1
|
1065
|
-
https://github.com/GuillaumeGomez/sysinfo
|
1066
|
-
MIT
|
1067
|
-
|
1068
1049
|
thiserror v2.0.12
|
1069
1050
|
https://github.com/dtolnay/thiserror
|
1070
1051
|
MIT OR Apache-2.0
|
@@ -1157,6 +1138,10 @@ untrusted v0.9.0
|
|
1157
1138
|
https://github.com/briansmith/untrusted
|
1158
1139
|
ISC
|
1159
1140
|
|
1141
|
+
unty v0.0.4
|
1142
|
+
https://github.com/bincode-org/unty
|
1143
|
+
MIT OR Apache-2.0
|
1144
|
+
|
1160
1145
|
url v2.5.4
|
1161
1146
|
https://github.com/servo/rust-url
|
1162
1147
|
MIT OR Apache-2.0
|
@@ -1169,7 +1154,7 @@ uuid v1.16.0
|
|
1169
1154
|
https://github.com/uuid-rs/uuid
|
1170
1155
|
Apache-2.0 OR MIT
|
1171
1156
|
|
1172
|
-
value-trait v0.
|
1157
|
+
value-trait v0.11.0
|
1173
1158
|
https://github.com/simd-lite/value-trait
|
1174
1159
|
Apache-2.0/MIT
|
1175
1160
|
|
@@ -1177,6 +1162,10 @@ version_check v0.9.5
|
|
1177
1162
|
https://github.com/SergioBenitez/version_check
|
1178
1163
|
MIT/Apache-2.0
|
1179
1164
|
|
1165
|
+
virtue v0.0.18
|
1166
|
+
https://github.com/bincode-org/virtue
|
1167
|
+
MIT
|
1168
|
+
|
1180
1169
|
walkdir v2.5.0
|
1181
1170
|
https://github.com/BurntSushi/walkdir
|
1182
1171
|
Unlicense/MIT
|
@@ -4358,27 +4347,53 @@ THE SOFTWARE.
|
|
4358
4347
|
bincode LICENSE.md
|
4359
4348
|
================================================================================
|
4360
4349
|
|
4361
|
-
The MIT License (MIT)
|
4362
|
-
|
4363
|
-
Copyright (c) 2014 Ty Overby
|
4364
|
-
|
4365
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4366
|
-
of this software and associated documentation files (the "Software"), to deal
|
4367
|
-
in the Software without restriction, including without limitation the rights
|
4368
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4369
|
-
copies of the Software, and to permit persons to whom the Software is
|
4370
|
-
furnished to do so, subject to the following conditions:
|
4371
|
-
|
4372
|
-
The above copyright notice and this permission notice shall be included in all
|
4373
|
-
copies or substantial portions of the Software.
|
4374
|
-
|
4375
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4376
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4377
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4378
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4379
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4380
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4381
|
-
SOFTWARE.
|
4350
|
+
The MIT License (MIT)
|
4351
|
+
|
4352
|
+
Copyright (c) 2014 Ty Overby
|
4353
|
+
|
4354
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4355
|
+
of this software and associated documentation files (the "Software"), to deal
|
4356
|
+
in the Software without restriction, including without limitation the rights
|
4357
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4358
|
+
copies of the Software, and to permit persons to whom the Software is
|
4359
|
+
furnished to do so, subject to the following conditions:
|
4360
|
+
|
4361
|
+
The above copyright notice and this permission notice shall be included in all
|
4362
|
+
copies or substantial portions of the Software.
|
4363
|
+
|
4364
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4365
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4366
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4367
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4368
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4369
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4370
|
+
SOFTWARE.
|
4371
|
+
|
4372
|
+
================================================================================
|
4373
|
+
bincode_derive LICENSE.md
|
4374
|
+
================================================================================
|
4375
|
+
|
4376
|
+
The MIT License (MIT)
|
4377
|
+
|
4378
|
+
Copyright (c) 2014 Ty Overby
|
4379
|
+
|
4380
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4381
|
+
of this software and associated documentation files (the "Software"), to deal
|
4382
|
+
in the Software without restriction, including without limitation the rights
|
4383
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4384
|
+
copies of the Software, and to permit persons to whom the Software is
|
4385
|
+
furnished to do so, subject to the following conditions:
|
4386
|
+
|
4387
|
+
The above copyright notice and this permission notice shall be included in all
|
4388
|
+
copies or substantial portions of the Software.
|
4389
|
+
|
4390
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4391
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4392
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4393
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4394
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4395
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4396
|
+
SOFTWARE.
|
4382
4397
|
|
4383
4398
|
================================================================================
|
4384
4399
|
bindgen LICENSE
|
@@ -5444,21 +5459,28 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
5444
5459
|
DEALINGS IN THE SOFTWARE.
|
5445
5460
|
|
5446
5461
|
================================================================================
|
5447
|
-
|
5462
|
+
boxcar LICENSE
|
5448
5463
|
================================================================================
|
5449
5464
|
|
5450
|
-
|
5451
|
-
All rights reserved.
|
5452
|
-
|
5453
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
5454
|
-
|
5455
|
-
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
5465
|
+
MIT License
|
5456
5466
|
|
5457
|
-
|
5467
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5468
|
+
of this software and associated documentation files (the "Software"), to deal
|
5469
|
+
in the Software without restriction, including without limitation the rights
|
5470
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
5471
|
+
copies of the Software, and to permit persons to whom the Software is
|
5472
|
+
furnished to do so, subject to the following conditions:
|
5458
5473
|
|
5459
|
-
|
5474
|
+
The above copyright notice and this permission notice shall be included in all
|
5475
|
+
copies or substantial portions of the Software.
|
5460
5476
|
|
5461
|
-
|
5477
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
5478
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
5479
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
5480
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
5481
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
5482
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
5483
|
+
SOFTWARE.
|
5462
5484
|
|
5463
5485
|
================================================================================
|
5464
5486
|
brotli LICENSE.MIT
|
@@ -5484,6 +5506,23 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5484
5506
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
5485
5507
|
THE SOFTWARE.
|
5486
5508
|
|
5509
|
+
================================================================================
|
5510
|
+
brotli LICENSE.BSD-3-Clause
|
5511
|
+
================================================================================
|
5512
|
+
|
5513
|
+
Copyright (c) 2016 Dropbox, Inc.
|
5514
|
+
All rights reserved.
|
5515
|
+
|
5516
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
5517
|
+
|
5518
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
5519
|
+
|
5520
|
+
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.
|
5521
|
+
|
5522
|
+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
5523
|
+
|
5524
|
+
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.
|
5525
|
+
|
5487
5526
|
================================================================================
|
5488
5527
|
brotli-decompressor LICENSE
|
5489
5528
|
================================================================================
|
@@ -7053,239 +7092,6 @@ this LICENSE file) are in the public domain.
|
|
7053
7092
|
If the files date.c, newstrftime.3, and strftime.c are present, they
|
7054
7093
|
contain material derived from BSD and use the BSD 3-clause license.
|
7055
7094
|
|
7056
|
-
================================================================================
|
7057
|
-
chrono-tz-build LICENSE
|
7058
|
-
================================================================================
|
7059
|
-
|
7060
|
-
Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
|
7061
|
-
The licenses do not apply to files in the tzdb folder which are in the
|
7062
|
-
public domain. parse-zoneinfo was forked from zoneinfo-parse, which
|
7063
|
-
was originally created by Benjamin Sago under the MIT license.
|
7064
|
-
|
7065
|
-
Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers
|
7066
|
-
|
7067
|
-
The MIT License
|
7068
|
-
|
7069
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7070
|
-
of this software and associated documentation files (the "Software"), to deal
|
7071
|
-
in the Software without restriction, including without limitation the rights
|
7072
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7073
|
-
copies of the Software, and to permit persons to whom the Software is
|
7074
|
-
furnished to do so, subject to the following conditions:
|
7075
|
-
|
7076
|
-
The above copyright notice and this permission notice shall be included in all
|
7077
|
-
copies or substantial portions of the Software.
|
7078
|
-
|
7079
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
7080
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
7081
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
7082
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
7083
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
7084
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
7085
|
-
SOFTWARE.
|
7086
|
-
|
7087
|
-
Apache License
|
7088
|
-
Version 2.0, January 2004
|
7089
|
-
http://www.apache.org/licenses/
|
7090
|
-
|
7091
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7092
|
-
|
7093
|
-
1. Definitions.
|
7094
|
-
|
7095
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
7096
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
7097
|
-
|
7098
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
7099
|
-
the copyright owner that is granting the License.
|
7100
|
-
|
7101
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
7102
|
-
other entities that control, are controlled by, or are under common
|
7103
|
-
control with that entity. For the purposes of this definition,
|
7104
|
-
"control" means (i) the power, direct or indirect, to cause the
|
7105
|
-
direction or management of such entity, whether by contract or
|
7106
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
7107
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
7108
|
-
|
7109
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
7110
|
-
exercising permissions granted by this License.
|
7111
|
-
|
7112
|
-
"Source" form shall mean the preferred form for making modifications,
|
7113
|
-
including but not limited to software source code, documentation
|
7114
|
-
source, and configuration files.
|
7115
|
-
|
7116
|
-
"Object" form shall mean any form resulting from mechanical
|
7117
|
-
transformation or translation of a Source form, including but
|
7118
|
-
not limited to compiled object code, generated documentation,
|
7119
|
-
and conversions to other media types.
|
7120
|
-
|
7121
|
-
"Work" shall mean the work of authorship, whether in Source or
|
7122
|
-
Object form, made available under the License, as indicated by a
|
7123
|
-
copyright notice that is included in or attached to the work
|
7124
|
-
(an example is provided in the Appendix below).
|
7125
|
-
|
7126
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
7127
|
-
form, that is based on (or derived from) the Work and for which the
|
7128
|
-
editorial revisions, annotations, elaborations, or other modifications
|
7129
|
-
represent, as a whole, an original work of authorship. For the purposes
|
7130
|
-
of this License, Derivative Works shall not include works that remain
|
7131
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
7132
|
-
the Work and Derivative Works thereof.
|
7133
|
-
|
7134
|
-
"Contribution" shall mean any work of authorship, including
|
7135
|
-
the original version of the Work and any modifications or additions
|
7136
|
-
to that Work or Derivative Works thereof, that is intentionally
|
7137
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
7138
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
7139
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
7140
|
-
means any form of electronic, verbal, or written communication sent
|
7141
|
-
to the Licensor or its representatives, including but not limited to
|
7142
|
-
communication on electronic mailing lists, source code control systems,
|
7143
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
7144
|
-
Licensor for the purpose of discussing and improving the Work, but
|
7145
|
-
excluding communication that is conspicuously marked or otherwise
|
7146
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
7147
|
-
|
7148
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
7149
|
-
on behalf of whom a Contribution has been received by Licensor and
|
7150
|
-
subsequently incorporated within the Work.
|
7151
|
-
|
7152
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
7153
|
-
this License, each Contributor hereby grants to You a perpetual,
|
7154
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
7155
|
-
copyright license to reproduce, prepare Derivative Works of,
|
7156
|
-
publicly display, publicly perform, sublicense, and distribute the
|
7157
|
-
Work and such Derivative Works in Source or Object form.
|
7158
|
-
|
7159
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
7160
|
-
this License, each Contributor hereby grants to You a perpetual,
|
7161
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
7162
|
-
(except as stated in this section) patent license to make, have made,
|
7163
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
7164
|
-
where such license applies only to those patent claims licensable
|
7165
|
-
by such Contributor that are necessarily infringed by their
|
7166
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
7167
|
-
with the Work to which such Contribution(s) was submitted. If You
|
7168
|
-
institute patent litigation against any entity (including a
|
7169
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
7170
|
-
or a Contribution incorporated within the Work constitutes direct
|
7171
|
-
or contributory patent infringement, then any patent licenses
|
7172
|
-
granted to You under this License for that Work shall terminate
|
7173
|
-
as of the date such litigation is filed.
|
7174
|
-
|
7175
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
7176
|
-
Work or Derivative Works thereof in any medium, with or without
|
7177
|
-
modifications, and in Source or Object form, provided that You
|
7178
|
-
meet the following conditions:
|
7179
|
-
|
7180
|
-
(a) You must give any other recipients of the Work or
|
7181
|
-
Derivative Works a copy of this License; and
|
7182
|
-
|
7183
|
-
(b) You must cause any modified files to carry prominent notices
|
7184
|
-
stating that You changed the files; and
|
7185
|
-
|
7186
|
-
(c) You must retain, in the Source form of any Derivative Works
|
7187
|
-
that You distribute, all copyright, patent, trademark, and
|
7188
|
-
attribution notices from the Source form of the Work,
|
7189
|
-
excluding those notices that do not pertain to any part of
|
7190
|
-
the Derivative Works; and
|
7191
|
-
|
7192
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
7193
|
-
distribution, then any Derivative Works that You distribute must
|
7194
|
-
include a readable copy of the attribution notices contained
|
7195
|
-
within such NOTICE file, excluding those notices that do not
|
7196
|
-
pertain to any part of the Derivative Works, in at least one
|
7197
|
-
of the following places: within a NOTICE text file distributed
|
7198
|
-
as part of the Derivative Works; within the Source form or
|
7199
|
-
documentation, if provided along with the Derivative Works; or,
|
7200
|
-
within a display generated by the Derivative Works, if and
|
7201
|
-
wherever such third-party notices normally appear. The contents
|
7202
|
-
of the NOTICE file are for informational purposes only and
|
7203
|
-
do not modify the License. You may add Your own attribution
|
7204
|
-
notices within Derivative Works that You distribute, alongside
|
7205
|
-
or as an addendum to the NOTICE text from the Work, provided
|
7206
|
-
that such additional attribution notices cannot be construed
|
7207
|
-
as modifying the License.
|
7208
|
-
|
7209
|
-
You may add Your own copyright statement to Your modifications and
|
7210
|
-
may provide additional or different license terms and conditions
|
7211
|
-
for use, reproduction, or distribution of Your modifications, or
|
7212
|
-
for any such Derivative Works as a whole, provided Your use,
|
7213
|
-
reproduction, and distribution of the Work otherwise complies with
|
7214
|
-
the conditions stated in this License.
|
7215
|
-
|
7216
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
7217
|
-
any Contribution intentionally submitted for inclusion in the Work
|
7218
|
-
by You to the Licensor shall be under the terms and conditions of
|
7219
|
-
this License, without any additional terms or conditions.
|
7220
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
7221
|
-
the terms of any separate license agreement you may have executed
|
7222
|
-
with Licensor regarding such Contributions.
|
7223
|
-
|
7224
|
-
6. Trademarks. This License does not grant permission to use the trade
|
7225
|
-
names, trademarks, service marks, or product names of the Licensor,
|
7226
|
-
except as required for reasonable and customary use in describing the
|
7227
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
7228
|
-
|
7229
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
7230
|
-
agreed to in writing, Licensor provides the Work (and each
|
7231
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
7232
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
7233
|
-
implied, including, without limitation, any warranties or conditions
|
7234
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
7235
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
7236
|
-
appropriateness of using or redistributing the Work and assume any
|
7237
|
-
risks associated with Your exercise of permissions under this License.
|
7238
|
-
|
7239
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
7240
|
-
whether in tort (including negligence), contract, or otherwise,
|
7241
|
-
unless required by applicable law (such as deliberate and grossly
|
7242
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
7243
|
-
liable to You for damages, including any direct, indirect, special,
|
7244
|
-
incidental, or consequential damages of any character arising as a
|
7245
|
-
result of this License or out of the use or inability to use the
|
7246
|
-
Work (including but not limited to damages for loss of goodwill,
|
7247
|
-
work stoppage, computer failure or malfunction, or any and all
|
7248
|
-
other commercial damages or losses), even if such Contributor
|
7249
|
-
has been advised of the possibility of such damages.
|
7250
|
-
|
7251
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
7252
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
7253
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
7254
|
-
or other liability obligations and/or rights consistent with this
|
7255
|
-
License. However, in accepting such obligations, You may act only
|
7256
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
7257
|
-
of any other Contributor, and only if You agree to indemnify,
|
7258
|
-
defend, and hold each Contributor harmless for any liability
|
7259
|
-
incurred by, or claims asserted against, such Contributor by reason
|
7260
|
-
of your accepting any such warranty or additional liability.
|
7261
|
-
|
7262
|
-
END OF TERMS AND CONDITIONS
|
7263
|
-
|
7264
|
-
APPENDIX: How to apply the Apache License to your work.
|
7265
|
-
|
7266
|
-
To apply the Apache License to your work, attach the following
|
7267
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
7268
|
-
replaced with your own identifying information. (Don't include
|
7269
|
-
the brackets!) The text should be enclosed in the appropriate
|
7270
|
-
comment syntax for the file format. We also recommend that a
|
7271
|
-
file or class name and description of purpose be included on the
|
7272
|
-
same "printed page" as the copyright notice for easier
|
7273
|
-
identification within third-party archives.
|
7274
|
-
|
7275
|
-
Copyright 2016 Djzin
|
7276
|
-
|
7277
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
7278
|
-
you may not use this file except in compliance with the License.
|
7279
|
-
You may obtain a copy of the License at
|
7280
|
-
|
7281
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
7282
|
-
|
7283
|
-
Unless required by applicable law or agreed to in writing, software
|
7284
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
7285
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
7286
|
-
See the License for the specific language governing permissions and
|
7287
|
-
limitations under the License.
|
7288
|
-
|
7289
7095
|
================================================================================
|
7290
7096
|
clang-sys LICENSE.txt
|
7291
7097
|
================================================================================
|
@@ -8577,6 +8383,242 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
8577
8383
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
8578
8384
|
DEALINGS IN THE SOFTWARE.
|
8579
8385
|
|
8386
|
+
================================================================================
|
8387
|
+
cpufeatures LICENSE-APACHE
|
8388
|
+
================================================================================
|
8389
|
+
|
8390
|
+
Apache License
|
8391
|
+
Version 2.0, January 2004
|
8392
|
+
http://www.apache.org/licenses/
|
8393
|
+
|
8394
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
8395
|
+
|
8396
|
+
1. Definitions.
|
8397
|
+
|
8398
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
8399
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
8400
|
+
|
8401
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
8402
|
+
the copyright owner that is granting the License.
|
8403
|
+
|
8404
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
8405
|
+
other entities that control, are controlled by, or are under common
|
8406
|
+
control with that entity. For the purposes of this definition,
|
8407
|
+
"control" means (i) the power, direct or indirect, to cause the
|
8408
|
+
direction or management of such entity, whether by contract or
|
8409
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
8410
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
8411
|
+
|
8412
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
8413
|
+
exercising permissions granted by this License.
|
8414
|
+
|
8415
|
+
"Source" form shall mean the preferred form for making modifications,
|
8416
|
+
including but not limited to software source code, documentation
|
8417
|
+
source, and configuration files.
|
8418
|
+
|
8419
|
+
"Object" form shall mean any form resulting from mechanical
|
8420
|
+
transformation or translation of a Source form, including but
|
8421
|
+
not limited to compiled object code, generated documentation,
|
8422
|
+
and conversions to other media types.
|
8423
|
+
|
8424
|
+
"Work" shall mean the work of authorship, whether in Source or
|
8425
|
+
Object form, made available under the License, as indicated by a
|
8426
|
+
copyright notice that is included in or attached to the work
|
8427
|
+
(an example is provided in the Appendix below).
|
8428
|
+
|
8429
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
8430
|
+
form, that is based on (or derived from) the Work and for which the
|
8431
|
+
editorial revisions, annotations, elaborations, or other modifications
|
8432
|
+
represent, as a whole, an original work of authorship. For the purposes
|
8433
|
+
of this License, Derivative Works shall not include works that remain
|
8434
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
8435
|
+
the Work and Derivative Works thereof.
|
8436
|
+
|
8437
|
+
"Contribution" shall mean any work of authorship, including
|
8438
|
+
the original version of the Work and any modifications or additions
|
8439
|
+
to that Work or Derivative Works thereof, that is intentionally
|
8440
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
8441
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
8442
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
8443
|
+
means any form of electronic, verbal, or written communication sent
|
8444
|
+
to the Licensor or its representatives, including but not limited to
|
8445
|
+
communication on electronic mailing lists, source code control systems,
|
8446
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
8447
|
+
Licensor for the purpose of discussing and improving the Work, but
|
8448
|
+
excluding communication that is conspicuously marked or otherwise
|
8449
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
8450
|
+
|
8451
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
8452
|
+
on behalf of whom a Contribution has been received by Licensor and
|
8453
|
+
subsequently incorporated within the Work.
|
8454
|
+
|
8455
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
8456
|
+
this License, each Contributor hereby grants to You a perpetual,
|
8457
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
8458
|
+
copyright license to reproduce, prepare Derivative Works of,
|
8459
|
+
publicly display, publicly perform, sublicense, and distribute the
|
8460
|
+
Work and such Derivative Works in Source or Object form.
|
8461
|
+
|
8462
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
8463
|
+
this License, each Contributor hereby grants to You a perpetual,
|
8464
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
8465
|
+
(except as stated in this section) patent license to make, have made,
|
8466
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
8467
|
+
where such license applies only to those patent claims licensable
|
8468
|
+
by such Contributor that are necessarily infringed by their
|
8469
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
8470
|
+
with the Work to which such Contribution(s) was submitted. If You
|
8471
|
+
institute patent litigation against any entity (including a
|
8472
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
8473
|
+
or a Contribution incorporated within the Work constitutes direct
|
8474
|
+
or contributory patent infringement, then any patent licenses
|
8475
|
+
granted to You under this License for that Work shall terminate
|
8476
|
+
as of the date such litigation is filed.
|
8477
|
+
|
8478
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
8479
|
+
Work or Derivative Works thereof in any medium, with or without
|
8480
|
+
modifications, and in Source or Object form, provided that You
|
8481
|
+
meet the following conditions:
|
8482
|
+
|
8483
|
+
(a) You must give any other recipients of the Work or
|
8484
|
+
Derivative Works a copy of this License; and
|
8485
|
+
|
8486
|
+
(b) You must cause any modified files to carry prominent notices
|
8487
|
+
stating that You changed the files; and
|
8488
|
+
|
8489
|
+
(c) You must retain, in the Source form of any Derivative Works
|
8490
|
+
that You distribute, all copyright, patent, trademark, and
|
8491
|
+
attribution notices from the Source form of the Work,
|
8492
|
+
excluding those notices that do not pertain to any part of
|
8493
|
+
the Derivative Works; and
|
8494
|
+
|
8495
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
8496
|
+
distribution, then any Derivative Works that You distribute must
|
8497
|
+
include a readable copy of the attribution notices contained
|
8498
|
+
within such NOTICE file, excluding those notices that do not
|
8499
|
+
pertain to any part of the Derivative Works, in at least one
|
8500
|
+
of the following places: within a NOTICE text file distributed
|
8501
|
+
as part of the Derivative Works; within the Source form or
|
8502
|
+
documentation, if provided along with the Derivative Works; or,
|
8503
|
+
within a display generated by the Derivative Works, if and
|
8504
|
+
wherever such third-party notices normally appear. The contents
|
8505
|
+
of the NOTICE file are for informational purposes only and
|
8506
|
+
do not modify the License. You may add Your own attribution
|
8507
|
+
notices within Derivative Works that You distribute, alongside
|
8508
|
+
or as an addendum to the NOTICE text from the Work, provided
|
8509
|
+
that such additional attribution notices cannot be construed
|
8510
|
+
as modifying the License.
|
8511
|
+
|
8512
|
+
You may add Your own copyright statement to Your modifications and
|
8513
|
+
may provide additional or different license terms and conditions
|
8514
|
+
for use, reproduction, or distribution of Your modifications, or
|
8515
|
+
for any such Derivative Works as a whole, provided Your use,
|
8516
|
+
reproduction, and distribution of the Work otherwise complies with
|
8517
|
+
the conditions stated in this License.
|
8518
|
+
|
8519
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
8520
|
+
any Contribution intentionally submitted for inclusion in the Work
|
8521
|
+
by You to the Licensor shall be under the terms and conditions of
|
8522
|
+
this License, without any additional terms or conditions.
|
8523
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
8524
|
+
the terms of any separate license agreement you may have executed
|
8525
|
+
with Licensor regarding such Contributions.
|
8526
|
+
|
8527
|
+
6. Trademarks. This License does not grant permission to use the trade
|
8528
|
+
names, trademarks, service marks, or product names of the Licensor,
|
8529
|
+
except as required for reasonable and customary use in describing the
|
8530
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
8531
|
+
|
8532
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
8533
|
+
agreed to in writing, Licensor provides the Work (and each
|
8534
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
8535
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
8536
|
+
implied, including, without limitation, any warranties or conditions
|
8537
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
8538
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
8539
|
+
appropriateness of using or redistributing the Work and assume any
|
8540
|
+
risks associated with Your exercise of permissions under this License.
|
8541
|
+
|
8542
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
8543
|
+
whether in tort (including negligence), contract, or otherwise,
|
8544
|
+
unless required by applicable law (such as deliberate and grossly
|
8545
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
8546
|
+
liable to You for damages, including any direct, indirect, special,
|
8547
|
+
incidental, or consequential damages of any character arising as a
|
8548
|
+
result of this License or out of the use or inability to use the
|
8549
|
+
Work (including but not limited to damages for loss of goodwill,
|
8550
|
+
work stoppage, computer failure or malfunction, or any and all
|
8551
|
+
other commercial damages or losses), even if such Contributor
|
8552
|
+
has been advised of the possibility of such damages.
|
8553
|
+
|
8554
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
8555
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
8556
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
8557
|
+
or other liability obligations and/or rights consistent with this
|
8558
|
+
License. However, in accepting such obligations, You may act only
|
8559
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
8560
|
+
of any other Contributor, and only if You agree to indemnify,
|
8561
|
+
defend, and hold each Contributor harmless for any liability
|
8562
|
+
incurred by, or claims asserted against, such Contributor by reason
|
8563
|
+
of your accepting any such warranty or additional liability.
|
8564
|
+
|
8565
|
+
END OF TERMS AND CONDITIONS
|
8566
|
+
|
8567
|
+
APPENDIX: How to apply the Apache License to your work.
|
8568
|
+
|
8569
|
+
To apply the Apache License to your work, attach the following
|
8570
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
8571
|
+
replaced with your own identifying information. (Don't include
|
8572
|
+
the brackets!) The text should be enclosed in the appropriate
|
8573
|
+
comment syntax for the file format. We also recommend that a
|
8574
|
+
file or class name and description of purpose be included on the
|
8575
|
+
same "printed page" as the copyright notice for easier
|
8576
|
+
identification within third-party archives.
|
8577
|
+
|
8578
|
+
Copyright [yyyy] [name of copyright owner]
|
8579
|
+
|
8580
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
8581
|
+
you may not use this file except in compliance with the License.
|
8582
|
+
You may obtain a copy of the License at
|
8583
|
+
|
8584
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8585
|
+
|
8586
|
+
Unless required by applicable law or agreed to in writing, software
|
8587
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
8588
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8589
|
+
See the License for the specific language governing permissions and
|
8590
|
+
limitations under the License.
|
8591
|
+
|
8592
|
+
================================================================================
|
8593
|
+
cpufeatures LICENSE-MIT
|
8594
|
+
================================================================================
|
8595
|
+
|
8596
|
+
Copyright (c) 2020-2025 The RustCrypto Project Developers
|
8597
|
+
|
8598
|
+
Permission is hereby granted, free of charge, to any
|
8599
|
+
person obtaining a copy of this software and associated
|
8600
|
+
documentation files (the "Software"), to deal in the
|
8601
|
+
Software without restriction, including without
|
8602
|
+
limitation the rights to use, copy, modify, merge,
|
8603
|
+
publish, distribute, sublicense, and/or sell copies of
|
8604
|
+
the Software, and to permit persons to whom the Software
|
8605
|
+
is furnished to do so, subject to the following
|
8606
|
+
conditions:
|
8607
|
+
|
8608
|
+
The above copyright notice and this permission notice
|
8609
|
+
shall be included in all copies or substantial portions
|
8610
|
+
of the Software.
|
8611
|
+
|
8612
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
8613
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
8614
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
8615
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
8616
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
8617
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
8618
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
8619
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
8620
|
+
DEALINGS IN THE SOFTWARE.
|
8621
|
+
|
8580
8622
|
================================================================================
|
8581
8623
|
crc LICENSE-APACHE
|
8582
8624
|
================================================================================
|
@@ -12239,32 +12281,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
12239
12281
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
12240
12282
|
DEALINGS IN THE SOFTWARE.
|
12241
12283
|
|
12242
|
-
================================================================================
|
12243
|
-
enum_dispatch LICENSE
|
12244
|
-
================================================================================
|
12245
|
-
|
12246
|
-
MIT License
|
12247
|
-
|
12248
|
-
Copyright (c) 2019 Anton Lazarev
|
12249
|
-
|
12250
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
12251
|
-
of this software and associated documentation files (the "Software"), to deal
|
12252
|
-
in the Software without restriction, including without limitation the rights
|
12253
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12254
|
-
copies of the Software, and to permit persons to whom the Software is
|
12255
|
-
furnished to do so, subject to the following conditions:
|
12256
|
-
|
12257
|
-
The above copyright notice and this permission notice shall be included in all
|
12258
|
-
copies or substantial portions of the Software.
|
12259
|
-
|
12260
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
12261
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
12262
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
12263
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
12264
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
12265
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
12266
|
-
SOFTWARE.
|
12267
|
-
|
12268
12284
|
================================================================================
|
12269
12285
|
equivalent LICENSE-APACHE
|
12270
12286
|
================================================================================
|
@@ -18016,7 +18032,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
18016
18032
|
SOFTWARE.
|
18017
18033
|
|
18018
18034
|
================================================================================
|
18019
|
-
hashbrown
|
18035
|
+
hashbrown LICENSE-APACHE
|
18020
18036
|
================================================================================
|
18021
18037
|
|
18022
18038
|
Apache License
|
@@ -18222,243 +18238,7 @@ See the License for the specific language governing permissions and
|
|
18222
18238
|
limitations under the License.
|
18223
18239
|
|
18224
18240
|
================================================================================
|
18225
|
-
hashbrown
|
18226
|
-
================================================================================
|
18227
|
-
|
18228
|
-
Copyright (c) 2016 Amanieu d'Antras
|
18229
|
-
|
18230
|
-
Permission is hereby granted, free of charge, to any
|
18231
|
-
person obtaining a copy of this software and associated
|
18232
|
-
documentation files (the "Software"), to deal in the
|
18233
|
-
Software without restriction, including without
|
18234
|
-
limitation the rights to use, copy, modify, merge,
|
18235
|
-
publish, distribute, sublicense, and/or sell copies of
|
18236
|
-
the Software, and to permit persons to whom the Software
|
18237
|
-
is furnished to do so, subject to the following
|
18238
|
-
conditions:
|
18239
|
-
|
18240
|
-
The above copyright notice and this permission notice
|
18241
|
-
shall be included in all copies or substantial portions
|
18242
|
-
of the Software.
|
18243
|
-
|
18244
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
18245
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
18246
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
18247
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
18248
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
18249
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
18250
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
18251
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
18252
|
-
DEALINGS IN THE SOFTWARE.
|
18253
|
-
|
18254
|
-
================================================================================
|
18255
|
-
hashbrown v0.15.3 LICENSE-APACHE
|
18256
|
-
================================================================================
|
18257
|
-
|
18258
|
-
Apache License
|
18259
|
-
Version 2.0, January 2004
|
18260
|
-
http://www.apache.org/licenses/
|
18261
|
-
|
18262
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
18263
|
-
|
18264
|
-
1. Definitions.
|
18265
|
-
|
18266
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
18267
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
18268
|
-
|
18269
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
18270
|
-
the copyright owner that is granting the License.
|
18271
|
-
|
18272
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
18273
|
-
other entities that control, are controlled by, or are under common
|
18274
|
-
control with that entity. For the purposes of this definition,
|
18275
|
-
"control" means (i) the power, direct or indirect, to cause the
|
18276
|
-
direction or management of such entity, whether by contract or
|
18277
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
18278
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
18279
|
-
|
18280
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
18281
|
-
exercising permissions granted by this License.
|
18282
|
-
|
18283
|
-
"Source" form shall mean the preferred form for making modifications,
|
18284
|
-
including but not limited to software source code, documentation
|
18285
|
-
source, and configuration files.
|
18286
|
-
|
18287
|
-
"Object" form shall mean any form resulting from mechanical
|
18288
|
-
transformation or translation of a Source form, including but
|
18289
|
-
not limited to compiled object code, generated documentation,
|
18290
|
-
and conversions to other media types.
|
18291
|
-
|
18292
|
-
"Work" shall mean the work of authorship, whether in Source or
|
18293
|
-
Object form, made available under the License, as indicated by a
|
18294
|
-
copyright notice that is included in or attached to the work
|
18295
|
-
(an example is provided in the Appendix below).
|
18296
|
-
|
18297
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
18298
|
-
form, that is based on (or derived from) the Work and for which the
|
18299
|
-
editorial revisions, annotations, elaborations, or other modifications
|
18300
|
-
represent, as a whole, an original work of authorship. For the purposes
|
18301
|
-
of this License, Derivative Works shall not include works that remain
|
18302
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
18303
|
-
the Work and Derivative Works thereof.
|
18304
|
-
|
18305
|
-
"Contribution" shall mean any work of authorship, including
|
18306
|
-
the original version of the Work and any modifications or additions
|
18307
|
-
to that Work or Derivative Works thereof, that is intentionally
|
18308
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
18309
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
18310
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
18311
|
-
means any form of electronic, verbal, or written communication sent
|
18312
|
-
to the Licensor or its representatives, including but not limited to
|
18313
|
-
communication on electronic mailing lists, source code control systems,
|
18314
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
18315
|
-
Licensor for the purpose of discussing and improving the Work, but
|
18316
|
-
excluding communication that is conspicuously marked or otherwise
|
18317
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
18318
|
-
|
18319
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
18320
|
-
on behalf of whom a Contribution has been received by Licensor and
|
18321
|
-
subsequently incorporated within the Work.
|
18322
|
-
|
18323
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
18324
|
-
this License, each Contributor hereby grants to You a perpetual,
|
18325
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
18326
|
-
copyright license to reproduce, prepare Derivative Works of,
|
18327
|
-
publicly display, publicly perform, sublicense, and distribute the
|
18328
|
-
Work and such Derivative Works in Source or Object form.
|
18329
|
-
|
18330
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
18331
|
-
this License, each Contributor hereby grants to You a perpetual,
|
18332
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
18333
|
-
(except as stated in this section) patent license to make, have made,
|
18334
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
18335
|
-
where such license applies only to those patent claims licensable
|
18336
|
-
by such Contributor that are necessarily infringed by their
|
18337
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
18338
|
-
with the Work to which such Contribution(s) was submitted. If You
|
18339
|
-
institute patent litigation against any entity (including a
|
18340
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
18341
|
-
or a Contribution incorporated within the Work constitutes direct
|
18342
|
-
or contributory patent infringement, then any patent licenses
|
18343
|
-
granted to You under this License for that Work shall terminate
|
18344
|
-
as of the date such litigation is filed.
|
18345
|
-
|
18346
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
18347
|
-
Work or Derivative Works thereof in any medium, with or without
|
18348
|
-
modifications, and in Source or Object form, provided that You
|
18349
|
-
meet the following conditions:
|
18350
|
-
|
18351
|
-
(a) You must give any other recipients of the Work or
|
18352
|
-
Derivative Works a copy of this License; and
|
18353
|
-
|
18354
|
-
(b) You must cause any modified files to carry prominent notices
|
18355
|
-
stating that You changed the files; and
|
18356
|
-
|
18357
|
-
(c) You must retain, in the Source form of any Derivative Works
|
18358
|
-
that You distribute, all copyright, patent, trademark, and
|
18359
|
-
attribution notices from the Source form of the Work,
|
18360
|
-
excluding those notices that do not pertain to any part of
|
18361
|
-
the Derivative Works; and
|
18362
|
-
|
18363
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
18364
|
-
distribution, then any Derivative Works that You distribute must
|
18365
|
-
include a readable copy of the attribution notices contained
|
18366
|
-
within such NOTICE file, excluding those notices that do not
|
18367
|
-
pertain to any part of the Derivative Works, in at least one
|
18368
|
-
of the following places: within a NOTICE text file distributed
|
18369
|
-
as part of the Derivative Works; within the Source form or
|
18370
|
-
documentation, if provided along with the Derivative Works; or,
|
18371
|
-
within a display generated by the Derivative Works, if and
|
18372
|
-
wherever such third-party notices normally appear. The contents
|
18373
|
-
of the NOTICE file are for informational purposes only and
|
18374
|
-
do not modify the License. You may add Your own attribution
|
18375
|
-
notices within Derivative Works that You distribute, alongside
|
18376
|
-
or as an addendum to the NOTICE text from the Work, provided
|
18377
|
-
that such additional attribution notices cannot be construed
|
18378
|
-
as modifying the License.
|
18379
|
-
|
18380
|
-
You may add Your own copyright statement to Your modifications and
|
18381
|
-
may provide additional or different license terms and conditions
|
18382
|
-
for use, reproduction, or distribution of Your modifications, or
|
18383
|
-
for any such Derivative Works as a whole, provided Your use,
|
18384
|
-
reproduction, and distribution of the Work otherwise complies with
|
18385
|
-
the conditions stated in this License.
|
18386
|
-
|
18387
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
18388
|
-
any Contribution intentionally submitted for inclusion in the Work
|
18389
|
-
by You to the Licensor shall be under the terms and conditions of
|
18390
|
-
this License, without any additional terms or conditions.
|
18391
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
18392
|
-
the terms of any separate license agreement you may have executed
|
18393
|
-
with Licensor regarding such Contributions.
|
18394
|
-
|
18395
|
-
6. Trademarks. This License does not grant permission to use the trade
|
18396
|
-
names, trademarks, service marks, or product names of the Licensor,
|
18397
|
-
except as required for reasonable and customary use in describing the
|
18398
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
18399
|
-
|
18400
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
18401
|
-
agreed to in writing, Licensor provides the Work (and each
|
18402
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
18403
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
18404
|
-
implied, including, without limitation, any warranties or conditions
|
18405
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
18406
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
18407
|
-
appropriateness of using or redistributing the Work and assume any
|
18408
|
-
risks associated with Your exercise of permissions under this License.
|
18409
|
-
|
18410
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
18411
|
-
whether in tort (including negligence), contract, or otherwise,
|
18412
|
-
unless required by applicable law (such as deliberate and grossly
|
18413
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
18414
|
-
liable to You for damages, including any direct, indirect, special,
|
18415
|
-
incidental, or consequential damages of any character arising as a
|
18416
|
-
result of this License or out of the use or inability to use the
|
18417
|
-
Work (including but not limited to damages for loss of goodwill,
|
18418
|
-
work stoppage, computer failure or malfunction, or any and all
|
18419
|
-
other commercial damages or losses), even if such Contributor
|
18420
|
-
has been advised of the possibility of such damages.
|
18421
|
-
|
18422
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
18423
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
18424
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
18425
|
-
or other liability obligations and/or rights consistent with this
|
18426
|
-
License. However, in accepting such obligations, You may act only
|
18427
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
18428
|
-
of any other Contributor, and only if You agree to indemnify,
|
18429
|
-
defend, and hold each Contributor harmless for any liability
|
18430
|
-
incurred by, or claims asserted against, such Contributor by reason
|
18431
|
-
of your accepting any such warranty or additional liability.
|
18432
|
-
|
18433
|
-
END OF TERMS AND CONDITIONS
|
18434
|
-
|
18435
|
-
APPENDIX: How to apply the Apache License to your work.
|
18436
|
-
|
18437
|
-
To apply the Apache License to your work, attach the following
|
18438
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
18439
|
-
replaced with your own identifying information. (Don't include
|
18440
|
-
the brackets!) The text should be enclosed in the appropriate
|
18441
|
-
comment syntax for the file format. We also recommend that a
|
18442
|
-
file or class name and description of purpose be included on the
|
18443
|
-
same "printed page" as the copyright notice for easier
|
18444
|
-
identification within third-party archives.
|
18445
|
-
|
18446
|
-
Copyright [yyyy] [name of copyright owner]
|
18447
|
-
|
18448
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
18449
|
-
you may not use this file except in compliance with the License.
|
18450
|
-
You may obtain a copy of the License at
|
18451
|
-
|
18452
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
18453
|
-
|
18454
|
-
Unless required by applicable law or agreed to in writing, software
|
18455
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18456
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
18457
|
-
See the License for the specific language governing permissions and
|
18458
|
-
limitations under the License.
|
18459
|
-
|
18460
|
-
================================================================================
|
18461
|
-
hashbrown v0.15.3 LICENSE-MIT
|
18241
|
+
hashbrown LICENSE-MIT
|
18462
18242
|
================================================================================
|
18463
18243
|
|
18464
18244
|
Copyright (c) 2016 Amanieu d'Antras
|
@@ -25016,6 +24796,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25016
24796
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25017
24797
|
SOFTWARE.
|
25018
24798
|
|
24799
|
+
================================================================================
|
24800
|
+
magnus magnus-macros/LICENSE
|
24801
|
+
================================================================================
|
24802
|
+
|
24803
|
+
MIT License
|
24804
|
+
|
24805
|
+
Copyright (c) 2023, 2022, 2021 Matthew Sadler
|
24806
|
+
|
24807
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
24808
|
+
of this software and associated documentation files (the "Software"), to deal
|
24809
|
+
in the Software without restriction, including without limitation the rights
|
24810
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
24811
|
+
copies of the Software, and to permit persons to whom the Software is
|
24812
|
+
furnished to do so, subject to the following conditions:
|
24813
|
+
|
24814
|
+
The above copyright notice and this permission notice shall be included in all
|
24815
|
+
copies or substantial portions of the Software.
|
24816
|
+
|
24817
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
24818
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
24819
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24820
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
24821
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
24822
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
24823
|
+
SOFTWARE.
|
24824
|
+
|
25019
24825
|
================================================================================
|
25020
24826
|
magnus-macros LICENSE
|
25021
24827
|
================================================================================
|
@@ -27861,239 +27667,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
27861
27667
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
27862
27668
|
DEALINGS IN THE SOFTWARE.
|
27863
27669
|
|
27864
|
-
================================================================================
|
27865
|
-
parse-zoneinfo LICENSE
|
27866
|
-
================================================================================
|
27867
|
-
|
27868
|
-
Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
|
27869
|
-
The licenses do not apply to files in the tzdb folder which are in the
|
27870
|
-
public domain. parse-zoneinfo was forked from zoneinfo-parse, which
|
27871
|
-
was originally created by Benjamin Sago under the MIT license.
|
27872
|
-
|
27873
|
-
Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers
|
27874
|
-
|
27875
|
-
The MIT License
|
27876
|
-
|
27877
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
27878
|
-
of this software and associated documentation files (the "Software"), to deal
|
27879
|
-
in the Software without restriction, including without limitation the rights
|
27880
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
27881
|
-
copies of the Software, and to permit persons to whom the Software is
|
27882
|
-
furnished to do so, subject to the following conditions:
|
27883
|
-
|
27884
|
-
The above copyright notice and this permission notice shall be included in all
|
27885
|
-
copies or substantial portions of the Software.
|
27886
|
-
|
27887
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
27888
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
27889
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
27890
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
27891
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
27892
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
27893
|
-
SOFTWARE.
|
27894
|
-
|
27895
|
-
Apache License
|
27896
|
-
Version 2.0, January 2004
|
27897
|
-
http://www.apache.org/licenses/
|
27898
|
-
|
27899
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
27900
|
-
|
27901
|
-
1. Definitions.
|
27902
|
-
|
27903
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
27904
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
27905
|
-
|
27906
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
27907
|
-
the copyright owner that is granting the License.
|
27908
|
-
|
27909
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
27910
|
-
other entities that control, are controlled by, or are under common
|
27911
|
-
control with that entity. For the purposes of this definition,
|
27912
|
-
"control" means (i) the power, direct or indirect, to cause the
|
27913
|
-
direction or management of such entity, whether by contract or
|
27914
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
27915
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
27916
|
-
|
27917
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
27918
|
-
exercising permissions granted by this License.
|
27919
|
-
|
27920
|
-
"Source" form shall mean the preferred form for making modifications,
|
27921
|
-
including but not limited to software source code, documentation
|
27922
|
-
source, and configuration files.
|
27923
|
-
|
27924
|
-
"Object" form shall mean any form resulting from mechanical
|
27925
|
-
transformation or translation of a Source form, including but
|
27926
|
-
not limited to compiled object code, generated documentation,
|
27927
|
-
and conversions to other media types.
|
27928
|
-
|
27929
|
-
"Work" shall mean the work of authorship, whether in Source or
|
27930
|
-
Object form, made available under the License, as indicated by a
|
27931
|
-
copyright notice that is included in or attached to the work
|
27932
|
-
(an example is provided in the Appendix below).
|
27933
|
-
|
27934
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
27935
|
-
form, that is based on (or derived from) the Work and for which the
|
27936
|
-
editorial revisions, annotations, elaborations, or other modifications
|
27937
|
-
represent, as a whole, an original work of authorship. For the purposes
|
27938
|
-
of this License, Derivative Works shall not include works that remain
|
27939
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
27940
|
-
the Work and Derivative Works thereof.
|
27941
|
-
|
27942
|
-
"Contribution" shall mean any work of authorship, including
|
27943
|
-
the original version of the Work and any modifications or additions
|
27944
|
-
to that Work or Derivative Works thereof, that is intentionally
|
27945
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
27946
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
27947
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
27948
|
-
means any form of electronic, verbal, or written communication sent
|
27949
|
-
to the Licensor or its representatives, including but not limited to
|
27950
|
-
communication on electronic mailing lists, source code control systems,
|
27951
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
27952
|
-
Licensor for the purpose of discussing and improving the Work, but
|
27953
|
-
excluding communication that is conspicuously marked or otherwise
|
27954
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
27955
|
-
|
27956
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
27957
|
-
on behalf of whom a Contribution has been received by Licensor and
|
27958
|
-
subsequently incorporated within the Work.
|
27959
|
-
|
27960
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
27961
|
-
this License, each Contributor hereby grants to You a perpetual,
|
27962
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
27963
|
-
copyright license to reproduce, prepare Derivative Works of,
|
27964
|
-
publicly display, publicly perform, sublicense, and distribute the
|
27965
|
-
Work and such Derivative Works in Source or Object form.
|
27966
|
-
|
27967
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
27968
|
-
this License, each Contributor hereby grants to You a perpetual,
|
27969
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
27970
|
-
(except as stated in this section) patent license to make, have made,
|
27971
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
27972
|
-
where such license applies only to those patent claims licensable
|
27973
|
-
by such Contributor that are necessarily infringed by their
|
27974
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
27975
|
-
with the Work to which such Contribution(s) was submitted. If You
|
27976
|
-
institute patent litigation against any entity (including a
|
27977
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
27978
|
-
or a Contribution incorporated within the Work constitutes direct
|
27979
|
-
or contributory patent infringement, then any patent licenses
|
27980
|
-
granted to You under this License for that Work shall terminate
|
27981
|
-
as of the date such litigation is filed.
|
27982
|
-
|
27983
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
27984
|
-
Work or Derivative Works thereof in any medium, with or without
|
27985
|
-
modifications, and in Source or Object form, provided that You
|
27986
|
-
meet the following conditions:
|
27987
|
-
|
27988
|
-
(a) You must give any other recipients of the Work or
|
27989
|
-
Derivative Works a copy of this License; and
|
27990
|
-
|
27991
|
-
(b) You must cause any modified files to carry prominent notices
|
27992
|
-
stating that You changed the files; and
|
27993
|
-
|
27994
|
-
(c) You must retain, in the Source form of any Derivative Works
|
27995
|
-
that You distribute, all copyright, patent, trademark, and
|
27996
|
-
attribution notices from the Source form of the Work,
|
27997
|
-
excluding those notices that do not pertain to any part of
|
27998
|
-
the Derivative Works; and
|
27999
|
-
|
28000
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
28001
|
-
distribution, then any Derivative Works that You distribute must
|
28002
|
-
include a readable copy of the attribution notices contained
|
28003
|
-
within such NOTICE file, excluding those notices that do not
|
28004
|
-
pertain to any part of the Derivative Works, in at least one
|
28005
|
-
of the following places: within a NOTICE text file distributed
|
28006
|
-
as part of the Derivative Works; within the Source form or
|
28007
|
-
documentation, if provided along with the Derivative Works; or,
|
28008
|
-
within a display generated by the Derivative Works, if and
|
28009
|
-
wherever such third-party notices normally appear. The contents
|
28010
|
-
of the NOTICE file are for informational purposes only and
|
28011
|
-
do not modify the License. You may add Your own attribution
|
28012
|
-
notices within Derivative Works that You distribute, alongside
|
28013
|
-
or as an addendum to the NOTICE text from the Work, provided
|
28014
|
-
that such additional attribution notices cannot be construed
|
28015
|
-
as modifying the License.
|
28016
|
-
|
28017
|
-
You may add Your own copyright statement to Your modifications and
|
28018
|
-
may provide additional or different license terms and conditions
|
28019
|
-
for use, reproduction, or distribution of Your modifications, or
|
28020
|
-
for any such Derivative Works as a whole, provided Your use,
|
28021
|
-
reproduction, and distribution of the Work otherwise complies with
|
28022
|
-
the conditions stated in this License.
|
28023
|
-
|
28024
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
28025
|
-
any Contribution intentionally submitted for inclusion in the Work
|
28026
|
-
by You to the Licensor shall be under the terms and conditions of
|
28027
|
-
this License, without any additional terms or conditions.
|
28028
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
28029
|
-
the terms of any separate license agreement you may have executed
|
28030
|
-
with Licensor regarding such Contributions.
|
28031
|
-
|
28032
|
-
6. Trademarks. This License does not grant permission to use the trade
|
28033
|
-
names, trademarks, service marks, or product names of the Licensor,
|
28034
|
-
except as required for reasonable and customary use in describing the
|
28035
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
28036
|
-
|
28037
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
28038
|
-
agreed to in writing, Licensor provides the Work (and each
|
28039
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
28040
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
28041
|
-
implied, including, without limitation, any warranties or conditions
|
28042
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
28043
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
28044
|
-
appropriateness of using or redistributing the Work and assume any
|
28045
|
-
risks associated with Your exercise of permissions under this License.
|
28046
|
-
|
28047
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
28048
|
-
whether in tort (including negligence), contract, or otherwise,
|
28049
|
-
unless required by applicable law (such as deliberate and grossly
|
28050
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
28051
|
-
liable to You for damages, including any direct, indirect, special,
|
28052
|
-
incidental, or consequential damages of any character arising as a
|
28053
|
-
result of this License or out of the use or inability to use the
|
28054
|
-
Work (including but not limited to damages for loss of goodwill,
|
28055
|
-
work stoppage, computer failure or malfunction, or any and all
|
28056
|
-
other commercial damages or losses), even if such Contributor
|
28057
|
-
has been advised of the possibility of such damages.
|
28058
|
-
|
28059
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
28060
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
28061
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
28062
|
-
or other liability obligations and/or rights consistent with this
|
28063
|
-
License. However, in accepting such obligations, You may act only
|
28064
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
28065
|
-
of any other Contributor, and only if You agree to indemnify,
|
28066
|
-
defend, and hold each Contributor harmless for any liability
|
28067
|
-
incurred by, or claims asserted against, such Contributor by reason
|
28068
|
-
of your accepting any such warranty or additional liability.
|
28069
|
-
|
28070
|
-
END OF TERMS AND CONDITIONS
|
28071
|
-
|
28072
|
-
APPENDIX: How to apply the Apache License to your work.
|
28073
|
-
|
28074
|
-
To apply the Apache License to your work, attach the following
|
28075
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
28076
|
-
replaced with your own identifying information. (Don't include
|
28077
|
-
the brackets!) The text should be enclosed in the appropriate
|
28078
|
-
comment syntax for the file format. We also recommend that a
|
28079
|
-
file or class name and description of purpose be included on the
|
28080
|
-
same "printed page" as the copyright notice for easier
|
28081
|
-
identification within third-party archives.
|
28082
|
-
|
28083
|
-
Copyright 2016 Djzin
|
28084
|
-
|
28085
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
28086
|
-
you may not use this file except in compliance with the License.
|
28087
|
-
You may obtain a copy of the License at
|
28088
|
-
|
28089
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
28090
|
-
|
28091
|
-
Unless required by applicable law or agreed to in writing, software
|
28092
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
28093
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
28094
|
-
See the License for the specific language governing permissions and
|
28095
|
-
limitations under the License.
|
28096
|
-
|
28097
27670
|
================================================================================
|
28098
27671
|
paste LICENSE-APACHE
|
28099
27672
|
================================================================================
|
@@ -28564,56 +28137,6 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
28564
28137
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
28565
28138
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28566
28139
|
|
28567
|
-
================================================================================
|
28568
|
-
phf_codegen LICENSE
|
28569
|
-
================================================================================
|
28570
|
-
|
28571
|
-
The MIT License (MIT)
|
28572
|
-
|
28573
|
-
Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi
|
28574
|
-
|
28575
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
28576
|
-
this software and associated documentation files (the "Software"), to deal in
|
28577
|
-
the Software without restriction, including without limitation the rights to
|
28578
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
28579
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
28580
|
-
subject to the following conditions:
|
28581
|
-
|
28582
|
-
The above copyright notice and this permission notice shall be included in all
|
28583
|
-
copies or substantial portions of the Software.
|
28584
|
-
|
28585
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
28586
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
28587
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
28588
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
28589
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
28590
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28591
|
-
|
28592
|
-
================================================================================
|
28593
|
-
phf_generator LICENSE
|
28594
|
-
================================================================================
|
28595
|
-
|
28596
|
-
The MIT License (MIT)
|
28597
|
-
|
28598
|
-
Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi
|
28599
|
-
|
28600
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
28601
|
-
this software and associated documentation files (the "Software"), to deal in
|
28602
|
-
the Software without restriction, including without limitation the rights to
|
28603
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
28604
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
28605
|
-
subject to the following conditions:
|
28606
|
-
|
28607
|
-
The above copyright notice and this permission notice shall be included in all
|
28608
|
-
copies or substantial portions of the Software.
|
28609
|
-
|
28610
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
28611
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
28612
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
28613
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
28614
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
28615
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28616
|
-
|
28617
28140
|
================================================================================
|
28618
28141
|
phf_shared LICENSE
|
28619
28142
|
================================================================================
|
@@ -29321,33 +28844,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
29321
28844
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
29322
28845
|
DEALINGS IN THE SOFTWARE.
|
29323
28846
|
|
29324
|
-
================================================================================
|
29325
|
-
planus LICENSE-MIT
|
29326
|
-
================================================================================
|
29327
|
-
|
29328
|
-
MIT License
|
29329
|
-
|
29330
|
-
Copyright (c) 2021 The Planus Project Developers
|
29331
|
-
|
29332
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
29333
|
-
of this software and associated documentation files (the "Software"), to deal
|
29334
|
-
in the Software without restriction, including without limitation the rights
|
29335
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
29336
|
-
copies of the Software, and to permit persons to whom the Software is
|
29337
|
-
furnished to do so, subject to the following conditions:
|
29338
|
-
|
29339
|
-
The above copyright notice and this permission notice shall be included in all
|
29340
|
-
copies or substantial portions of the Software.
|
29341
|
-
|
29342
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
29343
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
29344
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
29345
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
29346
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
29347
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
29348
|
-
SOFTWARE.
|
29349
|
-
|
29350
|
-
|
29351
28847
|
================================================================================
|
29352
28848
|
planus LICENSE-APACHE
|
29353
28849
|
================================================================================
|
@@ -29530,6 +29026,33 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
29530
29026
|
END OF TERMS AND CONDITIONS
|
29531
29027
|
|
29532
29028
|
|
29029
|
+
================================================================================
|
29030
|
+
planus LICENSE-MIT
|
29031
|
+
================================================================================
|
29032
|
+
|
29033
|
+
MIT License
|
29034
|
+
|
29035
|
+
Copyright (c) 2021 The Planus Project Developers
|
29036
|
+
|
29037
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
29038
|
+
of this software and associated documentation files (the "Software"), to deal
|
29039
|
+
in the Software without restriction, including without limitation the rights
|
29040
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
29041
|
+
copies of the Software, and to permit persons to whom the Software is
|
29042
|
+
furnished to do so, subject to the following conditions:
|
29043
|
+
|
29044
|
+
The above copyright notice and this permission notice shall be included in all
|
29045
|
+
copies or substantial portions of the Software.
|
29046
|
+
|
29047
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
29048
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
29049
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
29050
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
29051
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
29052
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
29053
|
+
SOFTWARE.
|
29054
|
+
|
29055
|
+
|
29533
29056
|
================================================================================
|
29534
29057
|
polars LICENSE
|
29535
29058
|
================================================================================
|
@@ -29952,228 +29475,6 @@ polars-arrow-format LICENSE
|
|
29952
29475
|
See the License for the specific language governing permissions and
|
29953
29476
|
limitations under the License.
|
29954
29477
|
|
29955
|
-
================================================================================
|
29956
|
-
polars-arrow-format src/LICENSE
|
29957
|
-
================================================================================
|
29958
|
-
|
29959
|
-
Some of the code in this crate is subject to the Apache 2 license in 1. as it
|
29960
|
-
was taken from the arrow-format Rust crate in January 2024. Later changes are subject
|
29961
|
-
to the MIT license in 2.
|
29962
|
-
|
29963
|
-
1.
|
29964
|
-
|
29965
|
-
Apache License
|
29966
|
-
Version 2.0, January 2004
|
29967
|
-
https://www.apache.org/licenses/
|
29968
|
-
|
29969
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
29970
|
-
|
29971
|
-
1. Definitions.
|
29972
|
-
|
29973
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
29974
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
29975
|
-
|
29976
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
29977
|
-
the copyright owner that is granting the License.
|
29978
|
-
|
29979
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
29980
|
-
other entities that control, are controlled by, or are under common
|
29981
|
-
control with that entity. For the purposes of this definition,
|
29982
|
-
"control" means (i) the power, direct or indirect, to cause the
|
29983
|
-
direction or management of such entity, whether by contract or
|
29984
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
29985
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
29986
|
-
|
29987
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
29988
|
-
exercising permissions granted by this License.
|
29989
|
-
|
29990
|
-
"Source" form shall mean the preferred form for making modifications,
|
29991
|
-
including but not limited to software source code, documentation
|
29992
|
-
source, and configuration files.
|
29993
|
-
|
29994
|
-
"Object" form shall mean any form resulting from mechanical
|
29995
|
-
transformation or translation of a Source form, including but
|
29996
|
-
not limited to compiled object code, generated documentation,
|
29997
|
-
and conversions to other media types.
|
29998
|
-
|
29999
|
-
"Work" shall mean the work of authorship, whether in Source or
|
30000
|
-
Object form, made available under the License, as indicated by a
|
30001
|
-
copyright notice that is included in or attached to the work
|
30002
|
-
(an example is provided in the Appendix below).
|
30003
|
-
|
30004
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
30005
|
-
form, that is based on (or derived from) the Work and for which the
|
30006
|
-
editorial revisions, annotations, elaborations, or other modifications
|
30007
|
-
represent, as a whole, an original work of authorship. For the purposes
|
30008
|
-
of this License, Derivative Works shall not include works that remain
|
30009
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
30010
|
-
the Work and Derivative Works thereof.
|
30011
|
-
|
30012
|
-
"Contribution" shall mean any work of authorship, including
|
30013
|
-
the original version of the Work and any modifications or additions
|
30014
|
-
to that Work or Derivative Works thereof, that is intentionally
|
30015
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
30016
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
30017
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
30018
|
-
means any form of electronic, verbal, or written communication sent
|
30019
|
-
to the Licensor or its representatives, including but not limited to
|
30020
|
-
communication on electronic mailing lists, source code control systems,
|
30021
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
30022
|
-
Licensor for the purpose of discussing and improving the Work, but
|
30023
|
-
excluding communication that is conspicuously marked or otherwise
|
30024
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
30025
|
-
|
30026
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
30027
|
-
on behalf of whom a Contribution has been received by Licensor and
|
30028
|
-
subsequently incorporated within the Work.
|
30029
|
-
|
30030
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
30031
|
-
this License, each Contributor hereby grants to You a perpetual,
|
30032
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
30033
|
-
copyright license to reproduce, prepare Derivative Works of,
|
30034
|
-
publicly display, publicly perform, sublicense, and distribute the
|
30035
|
-
Work and such Derivative Works in Source or Object form.
|
30036
|
-
|
30037
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
30038
|
-
this License, each Contributor hereby grants to You a perpetual,
|
30039
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
30040
|
-
(except as stated in this section) patent license to make, have made,
|
30041
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
30042
|
-
where such license applies only to those patent claims licensable
|
30043
|
-
by such Contributor that are necessarily infringed by their
|
30044
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
30045
|
-
with the Work to which such Contribution(s) was submitted. If You
|
30046
|
-
institute patent litigation against any entity (including a
|
30047
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
30048
|
-
or a Contribution incorporated within the Work constitutes direct
|
30049
|
-
or contributory patent infringement, then any patent licenses
|
30050
|
-
granted to You under this License for that Work shall terminate
|
30051
|
-
as of the date such litigation is filed.
|
30052
|
-
|
30053
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
30054
|
-
Work or Derivative Works thereof in any medium, with or without
|
30055
|
-
modifications, and in Source or Object form, provided that You
|
30056
|
-
meet the following conditions:
|
30057
|
-
|
30058
|
-
(a) You must give any other recipients of the Work or
|
30059
|
-
Derivative Works a copy of this License; and
|
30060
|
-
|
30061
|
-
(b) You must cause any modified files to carry prominent notices
|
30062
|
-
stating that You changed the files; and
|
30063
|
-
|
30064
|
-
(c) You must retain, in the Source form of any Derivative Works
|
30065
|
-
that You distribute, all copyright, patent, trademark, and
|
30066
|
-
attribution notices from the Source form of the Work,
|
30067
|
-
excluding those notices that do not pertain to any part of
|
30068
|
-
the Derivative Works; and
|
30069
|
-
|
30070
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
30071
|
-
distribution, then any Derivative Works that You distribute must
|
30072
|
-
include a readable copy of the attribution notices contained
|
30073
|
-
within such NOTICE file, excluding those notices that do not
|
30074
|
-
pertain to any part of the Derivative Works, in at least one
|
30075
|
-
of the following places: within a NOTICE text file distributed
|
30076
|
-
as part of the Derivative Works; within the Source form or
|
30077
|
-
documentation, if provided along with the Derivative Works; or,
|
30078
|
-
within a display generated by the Derivative Works, if and
|
30079
|
-
wherever such third-party notices normally appear. The contents
|
30080
|
-
of the NOTICE file are for informational purposes only and
|
30081
|
-
do not modify the License. You may add Your own attribution
|
30082
|
-
notices within Derivative Works that You distribute, alongside
|
30083
|
-
or as an addendum to the NOTICE text from the Work, provided
|
30084
|
-
that such additional attribution notices cannot be construed
|
30085
|
-
as modifying the License.
|
30086
|
-
|
30087
|
-
You may add Your own copyright statement to Your modifications and
|
30088
|
-
may provide additional or different license terms and conditions
|
30089
|
-
for use, reproduction, or distribution of Your modifications, or
|
30090
|
-
for any such Derivative Works as a whole, provided Your use,
|
30091
|
-
reproduction, and distribution of the Work otherwise complies with
|
30092
|
-
the conditions stated in this License.
|
30093
|
-
|
30094
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
30095
|
-
any Contribution intentionally submitted for inclusion in the Work
|
30096
|
-
by You to the Licensor shall be under the terms and conditions of
|
30097
|
-
this License, without any additional terms or conditions.
|
30098
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
30099
|
-
the terms of any separate license agreement you may have executed
|
30100
|
-
with Licensor regarding such Contributions.
|
30101
|
-
|
30102
|
-
6. Trademarks. This License does not grant permission to use the trade
|
30103
|
-
names, trademarks, service marks, or product names of the Licensor,
|
30104
|
-
except as required for reasonable and customary use in describing the
|
30105
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
30106
|
-
|
30107
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
30108
|
-
agreed to in writing, Licensor provides the Work (and each
|
30109
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
30110
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
30111
|
-
implied, including, without limitation, any warranties or conditions
|
30112
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
30113
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
30114
|
-
appropriateness of using or redistributing the Work and assume any
|
30115
|
-
risks associated with Your exercise of permissions under this License.
|
30116
|
-
|
30117
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
30118
|
-
whether in tort (including negligence), contract, or otherwise,
|
30119
|
-
unless required by applicable law (such as deliberate and grossly
|
30120
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
30121
|
-
liable to You for damages, including any direct, indirect, special,
|
30122
|
-
incidental, or consequential damages of any character arising as a
|
30123
|
-
result of this License or out of the use or inability to use the
|
30124
|
-
Work (including but not limited to damages for loss of goodwill,
|
30125
|
-
work stoppage, computer failure or malfunction, or any and all
|
30126
|
-
other commercial damages or losses), even if such Contributor
|
30127
|
-
has been advised of the possibility of such damages.
|
30128
|
-
|
30129
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
30130
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
30131
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
30132
|
-
or other liability obligations and/or rights consistent with this
|
30133
|
-
License. However, in accepting such obligations, You may act only
|
30134
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
30135
|
-
of any other Contributor, and only if You agree to indemnify,
|
30136
|
-
defend, and hold each Contributor harmless for any liability
|
30137
|
-
incurred by, or claims asserted against, such Contributor by reason
|
30138
|
-
of your accepting any such warranty or additional liability.
|
30139
|
-
|
30140
|
-
END OF TERMS AND CONDITIONS
|
30141
|
-
|
30142
|
-
Copyright 2020-2022 Jorge C. Leitão
|
30143
|
-
|
30144
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
30145
|
-
you may not use this file except in compliance with the License.
|
30146
|
-
You may obtain a copy of the License at
|
30147
|
-
|
30148
|
-
https://www.apache.org/licenses/LICENSE-2.0
|
30149
|
-
|
30150
|
-
Unless required by applicable law or agreed to in writing, software
|
30151
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
30152
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
30153
|
-
See the License for the specific language governing permissions and
|
30154
|
-
limitations under the License.
|
30155
|
-
|
30156
|
-
2.
|
30157
|
-
Copyright (c) 2024 Ritchie Vink
|
30158
|
-
|
30159
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
30160
|
-
of this software and associated documentation files (the "Software"), to deal
|
30161
|
-
in the Software without restriction, including without limitation the rights
|
30162
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
30163
|
-
copies of the Software, and to permit persons to whom the Software is
|
30164
|
-
furnished to do so, subject to the following conditions:
|
30165
|
-
|
30166
|
-
The above copyright notice and this permission notice shall be included in all
|
30167
|
-
copies or substantial portions of the Software.
|
30168
|
-
|
30169
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
30170
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
30171
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
30172
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
30173
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
30174
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
30175
|
-
SOFTWARE.
|
30176
|
-
|
30177
29478
|
================================================================================
|
30178
29479
|
polars-compute LICENSE
|
30179
29480
|
================================================================================
|
@@ -30224,6 +29525,31 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
30224
29525
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
30225
29526
|
SOFTWARE.
|
30226
29527
|
|
29528
|
+
================================================================================
|
29529
|
+
polars-dtype LICENSE
|
29530
|
+
================================================================================
|
29531
|
+
|
29532
|
+
Copyright (c) 2025 Ritchie Vink
|
29533
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
29534
|
+
|
29535
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
29536
|
+
of this software and associated documentation files (the "Software"), to deal
|
29537
|
+
in the Software without restriction, including without limitation the rights
|
29538
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
29539
|
+
copies of the Software, and to permit persons to whom the Software is
|
29540
|
+
furnished to do so, subject to the following conditions:
|
29541
|
+
|
29542
|
+
The above copyright notice and this permission notice shall be included in all
|
29543
|
+
copies or substantial portions of the Software.
|
29544
|
+
|
29545
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
29546
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
29547
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
29548
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
29549
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
29550
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
29551
|
+
SOFTWARE.
|
29552
|
+
|
30227
29553
|
================================================================================
|
30228
29554
|
polars-error LICENSE
|
30229
29555
|
================================================================================
|
@@ -30629,31 +29955,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
30629
29955
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
30630
29956
|
IN THE SOFTWARE.
|
30631
29957
|
|
30632
|
-
================================================================================
|
30633
|
-
polars-pipe LICENSE
|
30634
|
-
================================================================================
|
30635
|
-
|
30636
|
-
Copyright (c) 2025 Ritchie Vink
|
30637
|
-
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
30638
|
-
|
30639
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
30640
|
-
of this software and associated documentation files (the "Software"), to deal
|
30641
|
-
in the Software without restriction, including without limitation the rights
|
30642
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
30643
|
-
copies of the Software, and to permit persons to whom the Software is
|
30644
|
-
furnished to do so, subject to the following conditions:
|
30645
|
-
|
30646
|
-
The above copyright notice and this permission notice shall be included in all
|
30647
|
-
copies or substantial portions of the Software.
|
30648
|
-
|
30649
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
30650
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
30651
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
30652
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
30653
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
30654
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
30655
|
-
SOFTWARE.
|
30656
|
-
|
30657
29958
|
================================================================================
|
30658
29959
|
polars-plan LICENSE
|
30659
29960
|
================================================================================
|
@@ -32416,670 +31717,9 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
32416
31717
|
END OF TERMS AND CONDITIONS
|
32417
31718
|
|
32418
31719
|
================================================================================
|
32419
|
-
quote LICENSE-MIT
|
32420
|
-
================================================================================
|
32421
|
-
|
32422
|
-
Permission is hereby granted, free of charge, to any
|
32423
|
-
person obtaining a copy of this software and associated
|
32424
|
-
documentation files (the "Software"), to deal in the
|
32425
|
-
Software without restriction, including without
|
32426
|
-
limitation the rights to use, copy, modify, merge,
|
32427
|
-
publish, distribute, sublicense, and/or sell copies of
|
32428
|
-
the Software, and to permit persons to whom the Software
|
32429
|
-
is furnished to do so, subject to the following
|
32430
|
-
conditions:
|
32431
|
-
|
32432
|
-
The above copyright notice and this permission notice
|
32433
|
-
shall be included in all copies or substantial portions
|
32434
|
-
of the Software.
|
32435
|
-
|
32436
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
32437
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
32438
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
32439
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
32440
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
32441
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
32442
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
32443
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
32444
|
-
DEALINGS IN THE SOFTWARE.
|
32445
|
-
|
32446
|
-
================================================================================
|
32447
|
-
rand v0.8.5 LICENSE-APACHE
|
32448
|
-
================================================================================
|
32449
|
-
|
32450
|
-
Apache License
|
32451
|
-
Version 2.0, January 2004
|
32452
|
-
https://www.apache.org/licenses/
|
32453
|
-
|
32454
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
32455
|
-
|
32456
|
-
1. Definitions.
|
32457
|
-
|
32458
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
32459
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
32460
|
-
|
32461
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
32462
|
-
the copyright owner that is granting the License.
|
32463
|
-
|
32464
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
32465
|
-
other entities that control, are controlled by, or are under common
|
32466
|
-
control with that entity. For the purposes of this definition,
|
32467
|
-
"control" means (i) the power, direct or indirect, to cause the
|
32468
|
-
direction or management of such entity, whether by contract or
|
32469
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
32470
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
32471
|
-
|
32472
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
32473
|
-
exercising permissions granted by this License.
|
32474
|
-
|
32475
|
-
"Source" form shall mean the preferred form for making modifications,
|
32476
|
-
including but not limited to software source code, documentation
|
32477
|
-
source, and configuration files.
|
32478
|
-
|
32479
|
-
"Object" form shall mean any form resulting from mechanical
|
32480
|
-
transformation or translation of a Source form, including but
|
32481
|
-
not limited to compiled object code, generated documentation,
|
32482
|
-
and conversions to other media types.
|
32483
|
-
|
32484
|
-
"Work" shall mean the work of authorship, whether in Source or
|
32485
|
-
Object form, made available under the License, as indicated by a
|
32486
|
-
copyright notice that is included in or attached to the work
|
32487
|
-
(an example is provided in the Appendix below).
|
32488
|
-
|
32489
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
32490
|
-
form, that is based on (or derived from) the Work and for which the
|
32491
|
-
editorial revisions, annotations, elaborations, or other modifications
|
32492
|
-
represent, as a whole, an original work of authorship. For the purposes
|
32493
|
-
of this License, Derivative Works shall not include works that remain
|
32494
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
32495
|
-
the Work and Derivative Works thereof.
|
32496
|
-
|
32497
|
-
"Contribution" shall mean any work of authorship, including
|
32498
|
-
the original version of the Work and any modifications or additions
|
32499
|
-
to that Work or Derivative Works thereof, that is intentionally
|
32500
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
32501
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
32502
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
32503
|
-
means any form of electronic, verbal, or written communication sent
|
32504
|
-
to the Licensor or its representatives, including but not limited to
|
32505
|
-
communication on electronic mailing lists, source code control systems,
|
32506
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
32507
|
-
Licensor for the purpose of discussing and improving the Work, but
|
32508
|
-
excluding communication that is conspicuously marked or otherwise
|
32509
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
32510
|
-
|
32511
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
32512
|
-
on behalf of whom a Contribution has been received by Licensor and
|
32513
|
-
subsequently incorporated within the Work.
|
32514
|
-
|
32515
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
32516
|
-
this License, each Contributor hereby grants to You a perpetual,
|
32517
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
32518
|
-
copyright license to reproduce, prepare Derivative Works of,
|
32519
|
-
publicly display, publicly perform, sublicense, and distribute the
|
32520
|
-
Work and such Derivative Works in Source or Object form.
|
32521
|
-
|
32522
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
32523
|
-
this License, each Contributor hereby grants to You a perpetual,
|
32524
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
32525
|
-
(except as stated in this section) patent license to make, have made,
|
32526
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
32527
|
-
where such license applies only to those patent claims licensable
|
32528
|
-
by such Contributor that are necessarily infringed by their
|
32529
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
32530
|
-
with the Work to which such Contribution(s) was submitted. If You
|
32531
|
-
institute patent litigation against any entity (including a
|
32532
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
32533
|
-
or a Contribution incorporated within the Work constitutes direct
|
32534
|
-
or contributory patent infringement, then any patent licenses
|
32535
|
-
granted to You under this License for that Work shall terminate
|
32536
|
-
as of the date such litigation is filed.
|
32537
|
-
|
32538
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
32539
|
-
Work or Derivative Works thereof in any medium, with or without
|
32540
|
-
modifications, and in Source or Object form, provided that You
|
32541
|
-
meet the following conditions:
|
32542
|
-
|
32543
|
-
(a) You must give any other recipients of the Work or
|
32544
|
-
Derivative Works a copy of this License; and
|
32545
|
-
|
32546
|
-
(b) You must cause any modified files to carry prominent notices
|
32547
|
-
stating that You changed the files; and
|
32548
|
-
|
32549
|
-
(c) You must retain, in the Source form of any Derivative Works
|
32550
|
-
that You distribute, all copyright, patent, trademark, and
|
32551
|
-
attribution notices from the Source form of the Work,
|
32552
|
-
excluding those notices that do not pertain to any part of
|
32553
|
-
the Derivative Works; and
|
32554
|
-
|
32555
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
32556
|
-
distribution, then any Derivative Works that You distribute must
|
32557
|
-
include a readable copy of the attribution notices contained
|
32558
|
-
within such NOTICE file, excluding those notices that do not
|
32559
|
-
pertain to any part of the Derivative Works, in at least one
|
32560
|
-
of the following places: within a NOTICE text file distributed
|
32561
|
-
as part of the Derivative Works; within the Source form or
|
32562
|
-
documentation, if provided along with the Derivative Works; or,
|
32563
|
-
within a display generated by the Derivative Works, if and
|
32564
|
-
wherever such third-party notices normally appear. The contents
|
32565
|
-
of the NOTICE file are for informational purposes only and
|
32566
|
-
do not modify the License. You may add Your own attribution
|
32567
|
-
notices within Derivative Works that You distribute, alongside
|
32568
|
-
or as an addendum to the NOTICE text from the Work, provided
|
32569
|
-
that such additional attribution notices cannot be construed
|
32570
|
-
as modifying the License.
|
32571
|
-
|
32572
|
-
You may add Your own copyright statement to Your modifications and
|
32573
|
-
may provide additional or different license terms and conditions
|
32574
|
-
for use, reproduction, or distribution of Your modifications, or
|
32575
|
-
for any such Derivative Works as a whole, provided Your use,
|
32576
|
-
reproduction, and distribution of the Work otherwise complies with
|
32577
|
-
the conditions stated in this License.
|
32578
|
-
|
32579
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
32580
|
-
any Contribution intentionally submitted for inclusion in the Work
|
32581
|
-
by You to the Licensor shall be under the terms and conditions of
|
32582
|
-
this License, without any additional terms or conditions.
|
32583
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
32584
|
-
the terms of any separate license agreement you may have executed
|
32585
|
-
with Licensor regarding such Contributions.
|
32586
|
-
|
32587
|
-
6. Trademarks. This License does not grant permission to use the trade
|
32588
|
-
names, trademarks, service marks, or product names of the Licensor,
|
32589
|
-
except as required for reasonable and customary use in describing the
|
32590
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
32591
|
-
|
32592
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
32593
|
-
agreed to in writing, Licensor provides the Work (and each
|
32594
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
32595
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
32596
|
-
implied, including, without limitation, any warranties or conditions
|
32597
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
32598
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
32599
|
-
appropriateness of using or redistributing the Work and assume any
|
32600
|
-
risks associated with Your exercise of permissions under this License.
|
32601
|
-
|
32602
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
32603
|
-
whether in tort (including negligence), contract, or otherwise,
|
32604
|
-
unless required by applicable law (such as deliberate and grossly
|
32605
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
32606
|
-
liable to You for damages, including any direct, indirect, special,
|
32607
|
-
incidental, or consequential damages of any character arising as a
|
32608
|
-
result of this License or out of the use or inability to use the
|
32609
|
-
Work (including but not limited to damages for loss of goodwill,
|
32610
|
-
work stoppage, computer failure or malfunction, or any and all
|
32611
|
-
other commercial damages or losses), even if such Contributor
|
32612
|
-
has been advised of the possibility of such damages.
|
32613
|
-
|
32614
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
32615
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
32616
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
32617
|
-
or other liability obligations and/or rights consistent with this
|
32618
|
-
License. However, in accepting such obligations, You may act only
|
32619
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
32620
|
-
of any other Contributor, and only if You agree to indemnify,
|
32621
|
-
defend, and hold each Contributor harmless for any liability
|
32622
|
-
incurred by, or claims asserted against, such Contributor by reason
|
32623
|
-
of your accepting any such warranty or additional liability.
|
32624
|
-
|
32625
|
-
END OF TERMS AND CONDITIONS
|
32626
|
-
|
32627
|
-
================================================================================
|
32628
|
-
rand v0.8.5 LICENSE-MIT
|
32629
|
-
================================================================================
|
32630
|
-
|
32631
|
-
Copyright 2018 Developers of the Rand project
|
32632
|
-
Copyright (c) 2014 The Rust Project Developers
|
32633
|
-
|
32634
|
-
Permission is hereby granted, free of charge, to any
|
32635
|
-
person obtaining a copy of this software and associated
|
32636
|
-
documentation files (the "Software"), to deal in the
|
32637
|
-
Software without restriction, including without
|
32638
|
-
limitation the rights to use, copy, modify, merge,
|
32639
|
-
publish, distribute, sublicense, and/or sell copies of
|
32640
|
-
the Software, and to permit persons to whom the Software
|
32641
|
-
is furnished to do so, subject to the following
|
32642
|
-
conditions:
|
32643
|
-
|
32644
|
-
The above copyright notice and this permission notice
|
32645
|
-
shall be included in all copies or substantial portions
|
32646
|
-
of the Software.
|
32647
|
-
|
32648
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
32649
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
32650
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
32651
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
32652
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
32653
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
32654
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
32655
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
32656
|
-
DEALINGS IN THE SOFTWARE.
|
32657
|
-
|
32658
|
-
================================================================================
|
32659
|
-
rand v0.9.1 LICENSE-APACHE
|
32660
|
-
================================================================================
|
32661
|
-
|
32662
|
-
Apache License
|
32663
|
-
Version 2.0, January 2004
|
32664
|
-
https://www.apache.org/licenses/
|
32665
|
-
|
32666
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
32667
|
-
|
32668
|
-
1. Definitions.
|
32669
|
-
|
32670
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
32671
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
32672
|
-
|
32673
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
32674
|
-
the copyright owner that is granting the License.
|
32675
|
-
|
32676
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
32677
|
-
other entities that control, are controlled by, or are under common
|
32678
|
-
control with that entity. For the purposes of this definition,
|
32679
|
-
"control" means (i) the power, direct or indirect, to cause the
|
32680
|
-
direction or management of such entity, whether by contract or
|
32681
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
32682
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
32683
|
-
|
32684
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
32685
|
-
exercising permissions granted by this License.
|
32686
|
-
|
32687
|
-
"Source" form shall mean the preferred form for making modifications,
|
32688
|
-
including but not limited to software source code, documentation
|
32689
|
-
source, and configuration files.
|
32690
|
-
|
32691
|
-
"Object" form shall mean any form resulting from mechanical
|
32692
|
-
transformation or translation of a Source form, including but
|
32693
|
-
not limited to compiled object code, generated documentation,
|
32694
|
-
and conversions to other media types.
|
32695
|
-
|
32696
|
-
"Work" shall mean the work of authorship, whether in Source or
|
32697
|
-
Object form, made available under the License, as indicated by a
|
32698
|
-
copyright notice that is included in or attached to the work
|
32699
|
-
(an example is provided in the Appendix below).
|
32700
|
-
|
32701
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
32702
|
-
form, that is based on (or derived from) the Work and for which the
|
32703
|
-
editorial revisions, annotations, elaborations, or other modifications
|
32704
|
-
represent, as a whole, an original work of authorship. For the purposes
|
32705
|
-
of this License, Derivative Works shall not include works that remain
|
32706
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
32707
|
-
the Work and Derivative Works thereof.
|
32708
|
-
|
32709
|
-
"Contribution" shall mean any work of authorship, including
|
32710
|
-
the original version of the Work and any modifications or additions
|
32711
|
-
to that Work or Derivative Works thereof, that is intentionally
|
32712
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
32713
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
32714
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
32715
|
-
means any form of electronic, verbal, or written communication sent
|
32716
|
-
to the Licensor or its representatives, including but not limited to
|
32717
|
-
communication on electronic mailing lists, source code control systems,
|
32718
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
32719
|
-
Licensor for the purpose of discussing and improving the Work, but
|
32720
|
-
excluding communication that is conspicuously marked or otherwise
|
32721
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
32722
|
-
|
32723
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
32724
|
-
on behalf of whom a Contribution has been received by Licensor and
|
32725
|
-
subsequently incorporated within the Work.
|
32726
|
-
|
32727
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
32728
|
-
this License, each Contributor hereby grants to You a perpetual,
|
32729
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
32730
|
-
copyright license to reproduce, prepare Derivative Works of,
|
32731
|
-
publicly display, publicly perform, sublicense, and distribute the
|
32732
|
-
Work and such Derivative Works in Source or Object form.
|
32733
|
-
|
32734
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
32735
|
-
this License, each Contributor hereby grants to You a perpetual,
|
32736
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
32737
|
-
(except as stated in this section) patent license to make, have made,
|
32738
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
32739
|
-
where such license applies only to those patent claims licensable
|
32740
|
-
by such Contributor that are necessarily infringed by their
|
32741
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
32742
|
-
with the Work to which such Contribution(s) was submitted. If You
|
32743
|
-
institute patent litigation against any entity (including a
|
32744
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
32745
|
-
or a Contribution incorporated within the Work constitutes direct
|
32746
|
-
or contributory patent infringement, then any patent licenses
|
32747
|
-
granted to You under this License for that Work shall terminate
|
32748
|
-
as of the date such litigation is filed.
|
32749
|
-
|
32750
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
32751
|
-
Work or Derivative Works thereof in any medium, with or without
|
32752
|
-
modifications, and in Source or Object form, provided that You
|
32753
|
-
meet the following conditions:
|
32754
|
-
|
32755
|
-
(a) You must give any other recipients of the Work or
|
32756
|
-
Derivative Works a copy of this License; and
|
32757
|
-
|
32758
|
-
(b) You must cause any modified files to carry prominent notices
|
32759
|
-
stating that You changed the files; and
|
32760
|
-
|
32761
|
-
(c) You must retain, in the Source form of any Derivative Works
|
32762
|
-
that You distribute, all copyright, patent, trademark, and
|
32763
|
-
attribution notices from the Source form of the Work,
|
32764
|
-
excluding those notices that do not pertain to any part of
|
32765
|
-
the Derivative Works; and
|
32766
|
-
|
32767
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
32768
|
-
distribution, then any Derivative Works that You distribute must
|
32769
|
-
include a readable copy of the attribution notices contained
|
32770
|
-
within such NOTICE file, excluding those notices that do not
|
32771
|
-
pertain to any part of the Derivative Works, in at least one
|
32772
|
-
of the following places: within a NOTICE text file distributed
|
32773
|
-
as part of the Derivative Works; within the Source form or
|
32774
|
-
documentation, if provided along with the Derivative Works; or,
|
32775
|
-
within a display generated by the Derivative Works, if and
|
32776
|
-
wherever such third-party notices normally appear. The contents
|
32777
|
-
of the NOTICE file are for informational purposes only and
|
32778
|
-
do not modify the License. You may add Your own attribution
|
32779
|
-
notices within Derivative Works that You distribute, alongside
|
32780
|
-
or as an addendum to the NOTICE text from the Work, provided
|
32781
|
-
that such additional attribution notices cannot be construed
|
32782
|
-
as modifying the License.
|
32783
|
-
|
32784
|
-
You may add Your own copyright statement to Your modifications and
|
32785
|
-
may provide additional or different license terms and conditions
|
32786
|
-
for use, reproduction, or distribution of Your modifications, or
|
32787
|
-
for any such Derivative Works as a whole, provided Your use,
|
32788
|
-
reproduction, and distribution of the Work otherwise complies with
|
32789
|
-
the conditions stated in this License.
|
32790
|
-
|
32791
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
32792
|
-
any Contribution intentionally submitted for inclusion in the Work
|
32793
|
-
by You to the Licensor shall be under the terms and conditions of
|
32794
|
-
this License, without any additional terms or conditions.
|
32795
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
32796
|
-
the terms of any separate license agreement you may have executed
|
32797
|
-
with Licensor regarding such Contributions.
|
32798
|
-
|
32799
|
-
6. Trademarks. This License does not grant permission to use the trade
|
32800
|
-
names, trademarks, service marks, or product names of the Licensor,
|
32801
|
-
except as required for reasonable and customary use in describing the
|
32802
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
32803
|
-
|
32804
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
32805
|
-
agreed to in writing, Licensor provides the Work (and each
|
32806
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
32807
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
32808
|
-
implied, including, without limitation, any warranties or conditions
|
32809
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
32810
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
32811
|
-
appropriateness of using or redistributing the Work and assume any
|
32812
|
-
risks associated with Your exercise of permissions under this License.
|
32813
|
-
|
32814
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
32815
|
-
whether in tort (including negligence), contract, or otherwise,
|
32816
|
-
unless required by applicable law (such as deliberate and grossly
|
32817
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
32818
|
-
liable to You for damages, including any direct, indirect, special,
|
32819
|
-
incidental, or consequential damages of any character arising as a
|
32820
|
-
result of this License or out of the use or inability to use the
|
32821
|
-
Work (including but not limited to damages for loss of goodwill,
|
32822
|
-
work stoppage, computer failure or malfunction, or any and all
|
32823
|
-
other commercial damages or losses), even if such Contributor
|
32824
|
-
has been advised of the possibility of such damages.
|
32825
|
-
|
32826
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
32827
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
32828
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
32829
|
-
or other liability obligations and/or rights consistent with this
|
32830
|
-
License. However, in accepting such obligations, You may act only
|
32831
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
32832
|
-
of any other Contributor, and only if You agree to indemnify,
|
32833
|
-
defend, and hold each Contributor harmless for any liability
|
32834
|
-
incurred by, or claims asserted against, such Contributor by reason
|
32835
|
-
of your accepting any such warranty or additional liability.
|
32836
|
-
|
32837
|
-
END OF TERMS AND CONDITIONS
|
32838
|
-
|
32839
|
-
================================================================================
|
32840
|
-
rand v0.9.1 LICENSE-MIT
|
32841
|
-
================================================================================
|
32842
|
-
|
32843
|
-
Copyright 2018 Developers of the Rand project
|
32844
|
-
Copyright (c) 2014 The Rust Project Developers
|
32845
|
-
|
32846
|
-
Permission is hereby granted, free of charge, to any
|
32847
|
-
person obtaining a copy of this software and associated
|
32848
|
-
documentation files (the "Software"), to deal in the
|
32849
|
-
Software without restriction, including without
|
32850
|
-
limitation the rights to use, copy, modify, merge,
|
32851
|
-
publish, distribute, sublicense, and/or sell copies of
|
32852
|
-
the Software, and to permit persons to whom the Software
|
32853
|
-
is furnished to do so, subject to the following
|
32854
|
-
conditions:
|
32855
|
-
|
32856
|
-
The above copyright notice and this permission notice
|
32857
|
-
shall be included in all copies or substantial portions
|
32858
|
-
of the Software.
|
32859
|
-
|
32860
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
32861
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
32862
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
32863
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
32864
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
32865
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
32866
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
32867
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
32868
|
-
DEALINGS IN THE SOFTWARE.
|
32869
|
-
|
32870
|
-
================================================================================
|
32871
|
-
rand_chacha v0.3.1 LICENSE-APACHE
|
32872
|
-
================================================================================
|
32873
|
-
|
32874
|
-
Apache License
|
32875
|
-
Version 2.0, January 2004
|
32876
|
-
https://www.apache.org/licenses/
|
32877
|
-
|
32878
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
32879
|
-
|
32880
|
-
1. Definitions.
|
32881
|
-
|
32882
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
32883
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
32884
|
-
|
32885
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
32886
|
-
the copyright owner that is granting the License.
|
32887
|
-
|
32888
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
32889
|
-
other entities that control, are controlled by, or are under common
|
32890
|
-
control with that entity. For the purposes of this definition,
|
32891
|
-
"control" means (i) the power, direct or indirect, to cause the
|
32892
|
-
direction or management of such entity, whether by contract or
|
32893
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
32894
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
32895
|
-
|
32896
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
32897
|
-
exercising permissions granted by this License.
|
32898
|
-
|
32899
|
-
"Source" form shall mean the preferred form for making modifications,
|
32900
|
-
including but not limited to software source code, documentation
|
32901
|
-
source, and configuration files.
|
32902
|
-
|
32903
|
-
"Object" form shall mean any form resulting from mechanical
|
32904
|
-
transformation or translation of a Source form, including but
|
32905
|
-
not limited to compiled object code, generated documentation,
|
32906
|
-
and conversions to other media types.
|
32907
|
-
|
32908
|
-
"Work" shall mean the work of authorship, whether in Source or
|
32909
|
-
Object form, made available under the License, as indicated by a
|
32910
|
-
copyright notice that is included in or attached to the work
|
32911
|
-
(an example is provided in the Appendix below).
|
32912
|
-
|
32913
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
32914
|
-
form, that is based on (or derived from) the Work and for which the
|
32915
|
-
editorial revisions, annotations, elaborations, or other modifications
|
32916
|
-
represent, as a whole, an original work of authorship. For the purposes
|
32917
|
-
of this License, Derivative Works shall not include works that remain
|
32918
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
32919
|
-
the Work and Derivative Works thereof.
|
32920
|
-
|
32921
|
-
"Contribution" shall mean any work of authorship, including
|
32922
|
-
the original version of the Work and any modifications or additions
|
32923
|
-
to that Work or Derivative Works thereof, that is intentionally
|
32924
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
32925
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
32926
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
32927
|
-
means any form of electronic, verbal, or written communication sent
|
32928
|
-
to the Licensor or its representatives, including but not limited to
|
32929
|
-
communication on electronic mailing lists, source code control systems,
|
32930
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
32931
|
-
Licensor for the purpose of discussing and improving the Work, but
|
32932
|
-
excluding communication that is conspicuously marked or otherwise
|
32933
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
32934
|
-
|
32935
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
32936
|
-
on behalf of whom a Contribution has been received by Licensor and
|
32937
|
-
subsequently incorporated within the Work.
|
32938
|
-
|
32939
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
32940
|
-
this License, each Contributor hereby grants to You a perpetual,
|
32941
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
32942
|
-
copyright license to reproduce, prepare Derivative Works of,
|
32943
|
-
publicly display, publicly perform, sublicense, and distribute the
|
32944
|
-
Work and such Derivative Works in Source or Object form.
|
32945
|
-
|
32946
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
32947
|
-
this License, each Contributor hereby grants to You a perpetual,
|
32948
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
32949
|
-
(except as stated in this section) patent license to make, have made,
|
32950
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
32951
|
-
where such license applies only to those patent claims licensable
|
32952
|
-
by such Contributor that are necessarily infringed by their
|
32953
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
32954
|
-
with the Work to which such Contribution(s) was submitted. If You
|
32955
|
-
institute patent litigation against any entity (including a
|
32956
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
32957
|
-
or a Contribution incorporated within the Work constitutes direct
|
32958
|
-
or contributory patent infringement, then any patent licenses
|
32959
|
-
granted to You under this License for that Work shall terminate
|
32960
|
-
as of the date such litigation is filed.
|
32961
|
-
|
32962
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
32963
|
-
Work or Derivative Works thereof in any medium, with or without
|
32964
|
-
modifications, and in Source or Object form, provided that You
|
32965
|
-
meet the following conditions:
|
32966
|
-
|
32967
|
-
(a) You must give any other recipients of the Work or
|
32968
|
-
Derivative Works a copy of this License; and
|
32969
|
-
|
32970
|
-
(b) You must cause any modified files to carry prominent notices
|
32971
|
-
stating that You changed the files; and
|
32972
|
-
|
32973
|
-
(c) You must retain, in the Source form of any Derivative Works
|
32974
|
-
that You distribute, all copyright, patent, trademark, and
|
32975
|
-
attribution notices from the Source form of the Work,
|
32976
|
-
excluding those notices that do not pertain to any part of
|
32977
|
-
the Derivative Works; and
|
32978
|
-
|
32979
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
32980
|
-
distribution, then any Derivative Works that You distribute must
|
32981
|
-
include a readable copy of the attribution notices contained
|
32982
|
-
within such NOTICE file, excluding those notices that do not
|
32983
|
-
pertain to any part of the Derivative Works, in at least one
|
32984
|
-
of the following places: within a NOTICE text file distributed
|
32985
|
-
as part of the Derivative Works; within the Source form or
|
32986
|
-
documentation, if provided along with the Derivative Works; or,
|
32987
|
-
within a display generated by the Derivative Works, if and
|
32988
|
-
wherever such third-party notices normally appear. The contents
|
32989
|
-
of the NOTICE file are for informational purposes only and
|
32990
|
-
do not modify the License. You may add Your own attribution
|
32991
|
-
notices within Derivative Works that You distribute, alongside
|
32992
|
-
or as an addendum to the NOTICE text from the Work, provided
|
32993
|
-
that such additional attribution notices cannot be construed
|
32994
|
-
as modifying the License.
|
32995
|
-
|
32996
|
-
You may add Your own copyright statement to Your modifications and
|
32997
|
-
may provide additional or different license terms and conditions
|
32998
|
-
for use, reproduction, or distribution of Your modifications, or
|
32999
|
-
for any such Derivative Works as a whole, provided Your use,
|
33000
|
-
reproduction, and distribution of the Work otherwise complies with
|
33001
|
-
the conditions stated in this License.
|
33002
|
-
|
33003
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
33004
|
-
any Contribution intentionally submitted for inclusion in the Work
|
33005
|
-
by You to the Licensor shall be under the terms and conditions of
|
33006
|
-
this License, without any additional terms or conditions.
|
33007
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
33008
|
-
the terms of any separate license agreement you may have executed
|
33009
|
-
with Licensor regarding such Contributions.
|
33010
|
-
|
33011
|
-
6. Trademarks. This License does not grant permission to use the trade
|
33012
|
-
names, trademarks, service marks, or product names of the Licensor,
|
33013
|
-
except as required for reasonable and customary use in describing the
|
33014
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
33015
|
-
|
33016
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
33017
|
-
agreed to in writing, Licensor provides the Work (and each
|
33018
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
33019
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
33020
|
-
implied, including, without limitation, any warranties or conditions
|
33021
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
33022
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
33023
|
-
appropriateness of using or redistributing the Work and assume any
|
33024
|
-
risks associated with Your exercise of permissions under this License.
|
33025
|
-
|
33026
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
33027
|
-
whether in tort (including negligence), contract, or otherwise,
|
33028
|
-
unless required by applicable law (such as deliberate and grossly
|
33029
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
33030
|
-
liable to You for damages, including any direct, indirect, special,
|
33031
|
-
incidental, or consequential damages of any character arising as a
|
33032
|
-
result of this License or out of the use or inability to use the
|
33033
|
-
Work (including but not limited to damages for loss of goodwill,
|
33034
|
-
work stoppage, computer failure or malfunction, or any and all
|
33035
|
-
other commercial damages or losses), even if such Contributor
|
33036
|
-
has been advised of the possibility of such damages.
|
33037
|
-
|
33038
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
33039
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
33040
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
33041
|
-
or other liability obligations and/or rights consistent with this
|
33042
|
-
License. However, in accepting such obligations, You may act only
|
33043
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
33044
|
-
of any other Contributor, and only if You agree to indemnify,
|
33045
|
-
defend, and hold each Contributor harmless for any liability
|
33046
|
-
incurred by, or claims asserted against, such Contributor by reason
|
33047
|
-
of your accepting any such warranty or additional liability.
|
33048
|
-
|
33049
|
-
END OF TERMS AND CONDITIONS
|
33050
|
-
|
33051
|
-
APPENDIX: How to apply the Apache License to your work.
|
33052
|
-
|
33053
|
-
To apply the Apache License to your work, attach the following
|
33054
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
33055
|
-
replaced with your own identifying information. (Don't include
|
33056
|
-
the brackets!) The text should be enclosed in the appropriate
|
33057
|
-
comment syntax for the file format. We also recommend that a
|
33058
|
-
file or class name and description of purpose be included on the
|
33059
|
-
same "printed page" as the copyright notice for easier
|
33060
|
-
identification within third-party archives.
|
33061
|
-
|
33062
|
-
Copyright [yyyy] [name of copyright owner]
|
33063
|
-
|
33064
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
33065
|
-
you may not use this file except in compliance with the License.
|
33066
|
-
You may obtain a copy of the License at
|
33067
|
-
|
33068
|
-
https://www.apache.org/licenses/LICENSE-2.0
|
33069
|
-
|
33070
|
-
Unless required by applicable law or agreed to in writing, software
|
33071
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
33072
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
33073
|
-
See the License for the specific language governing permissions and
|
33074
|
-
limitations under the License.
|
33075
|
-
|
33076
|
-
================================================================================
|
33077
|
-
rand_chacha v0.3.1 LICENSE-MIT
|
31720
|
+
quote LICENSE-MIT
|
33078
31721
|
================================================================================
|
33079
31722
|
|
33080
|
-
Copyright 2018 Developers of the Rand project
|
33081
|
-
Copyright (c) 2014 The Rust Project Developers
|
33082
|
-
|
33083
31723
|
Permission is hereby granted, free of charge, to any
|
33084
31724
|
person obtaining a copy of this software and associated
|
33085
31725
|
documentation files (the "Software"), to deal in the
|
@@ -33105,7 +31745,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
33105
31745
|
DEALINGS IN THE SOFTWARE.
|
33106
31746
|
|
33107
31747
|
================================================================================
|
33108
|
-
|
31748
|
+
rand LICENSE-APACHE
|
33109
31749
|
================================================================================
|
33110
31750
|
|
33111
31751
|
Apache License
|
@@ -33286,7 +31926,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
33286
31926
|
END OF TERMS AND CONDITIONS
|
33287
31927
|
|
33288
31928
|
================================================================================
|
33289
|
-
|
31929
|
+
rand LICENSE-MIT
|
33290
31930
|
================================================================================
|
33291
31931
|
|
33292
31932
|
Copyright 2018 Developers of the Rand project
|
@@ -33317,7 +31957,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
33317
31957
|
DEALINGS IN THE SOFTWARE.
|
33318
31958
|
|
33319
31959
|
================================================================================
|
33320
|
-
|
31960
|
+
rand_chacha LICENSE-APACHE
|
33321
31961
|
================================================================================
|
33322
31962
|
|
33323
31963
|
Apache License
|
@@ -33497,19 +32137,8 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
33497
32137
|
|
33498
32138
|
END OF TERMS AND CONDITIONS
|
33499
32139
|
|
33500
|
-
APPENDIX: How to apply the Apache License to your work.
|
33501
|
-
|
33502
|
-
To apply the Apache License to your work, attach the following
|
33503
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
33504
|
-
replaced with your own identifying information. (Don't include
|
33505
|
-
the brackets!) The text should be enclosed in the appropriate
|
33506
|
-
comment syntax for the file format. We also recommend that a
|
33507
|
-
file or class name and description of purpose be included on the
|
33508
|
-
same "printed page" as the copyright notice for easier
|
33509
|
-
identification within third-party archives.
|
33510
|
-
|
33511
32140
|
================================================================================
|
33512
|
-
|
32141
|
+
rand_chacha LICENSE-MIT
|
33513
32142
|
================================================================================
|
33514
32143
|
|
33515
32144
|
Copyright 2018 Developers of the Rand project
|
@@ -33540,7 +32169,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
33540
32169
|
DEALINGS IN THE SOFTWARE.
|
33541
32170
|
|
33542
32171
|
================================================================================
|
33543
|
-
rand_core
|
32172
|
+
rand_core LICENSE-APACHE
|
33544
32173
|
================================================================================
|
33545
32174
|
|
33546
32175
|
Apache License
|
@@ -33732,7 +32361,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
33732
32361
|
identification within third-party archives.
|
33733
32362
|
|
33734
32363
|
================================================================================
|
33735
|
-
rand_core
|
32364
|
+
rand_core LICENSE-MIT
|
33736
32365
|
================================================================================
|
33737
32366
|
|
33738
32367
|
Copyright 2018 Developers of the Rand project
|
@@ -40365,58 +38994,476 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
40365
38994
|
|
40366
38995
|
END OF TERMS AND CONDITIONS
|
40367
38996
|
|
40368
|
-
APPENDIX: How to apply the Apache License to your work.
|
40369
|
-
|
40370
|
-
To apply the Apache License to your work, attach the following
|
40371
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
40372
|
-
replaced with your own identifying information. (Don't include
|
40373
|
-
the brackets!) The text should be enclosed in the appropriate
|
40374
|
-
comment syntax for the file format. We also recommend that a
|
40375
|
-
file or class name and description of purpose be included on the
|
40376
|
-
same "printed page" as the copyright notice for easier
|
40377
|
-
identification within third-party archives.
|
40378
|
-
|
40379
|
-
Copyright [yyyy] [name of copyright owner]
|
38997
|
+
APPENDIX: How to apply the Apache License to your work.
|
38998
|
+
|
38999
|
+
To apply the Apache License to your work, attach the following
|
39000
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
39001
|
+
replaced with your own identifying information. (Don't include
|
39002
|
+
the brackets!) The text should be enclosed in the appropriate
|
39003
|
+
comment syntax for the file format. We also recommend that a
|
39004
|
+
file or class name and description of purpose be included on the
|
39005
|
+
same "printed page" as the copyright notice for easier
|
39006
|
+
identification within third-party archives.
|
39007
|
+
|
39008
|
+
Copyright [yyyy] [name of copyright owner]
|
39009
|
+
|
39010
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
39011
|
+
you may not use this file except in compliance with the License.
|
39012
|
+
You may obtain a copy of the License at
|
39013
|
+
|
39014
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
39015
|
+
|
39016
|
+
Unless required by applicable law or agreed to in writing, software
|
39017
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
39018
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
39019
|
+
See the License for the specific language governing permissions and
|
39020
|
+
limitations under the License.
|
39021
|
+
|
39022
|
+
================================================================================
|
39023
|
+
security-framework-sys LICENSE-MIT
|
39024
|
+
================================================================================
|
39025
|
+
|
39026
|
+
The MIT License (MIT)
|
39027
|
+
|
39028
|
+
Copyright (c) 2015 Steven Fackler
|
39029
|
+
|
39030
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
39031
|
+
this software and associated documentation files (the "Software"), to deal in
|
39032
|
+
the Software without restriction, including without limitation the rights to
|
39033
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
39034
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
39035
|
+
subject to the following conditions:
|
39036
|
+
|
39037
|
+
The above copyright notice and this permission notice shall be included in all
|
39038
|
+
copies or substantial portions of the Software.
|
39039
|
+
|
39040
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
39041
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
39042
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
39043
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
39044
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
39045
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
39046
|
+
|
39047
|
+
================================================================================
|
39048
|
+
seq-macro LICENSE-APACHE
|
39049
|
+
================================================================================
|
39050
|
+
|
39051
|
+
Apache License
|
39052
|
+
Version 2.0, January 2004
|
39053
|
+
http://www.apache.org/licenses/
|
39054
|
+
|
39055
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
39056
|
+
|
39057
|
+
1. Definitions.
|
39058
|
+
|
39059
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
39060
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
39061
|
+
|
39062
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
39063
|
+
the copyright owner that is granting the License.
|
39064
|
+
|
39065
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
39066
|
+
other entities that control, are controlled by, or are under common
|
39067
|
+
control with that entity. For the purposes of this definition,
|
39068
|
+
"control" means (i) the power, direct or indirect, to cause the
|
39069
|
+
direction or management of such entity, whether by contract or
|
39070
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
39071
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
39072
|
+
|
39073
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
39074
|
+
exercising permissions granted by this License.
|
39075
|
+
|
39076
|
+
"Source" form shall mean the preferred form for making modifications,
|
39077
|
+
including but not limited to software source code, documentation
|
39078
|
+
source, and configuration files.
|
39079
|
+
|
39080
|
+
"Object" form shall mean any form resulting from mechanical
|
39081
|
+
transformation or translation of a Source form, including but
|
39082
|
+
not limited to compiled object code, generated documentation,
|
39083
|
+
and conversions to other media types.
|
39084
|
+
|
39085
|
+
"Work" shall mean the work of authorship, whether in Source or
|
39086
|
+
Object form, made available under the License, as indicated by a
|
39087
|
+
copyright notice that is included in or attached to the work
|
39088
|
+
(an example is provided in the Appendix below).
|
39089
|
+
|
39090
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
39091
|
+
form, that is based on (or derived from) the Work and for which the
|
39092
|
+
editorial revisions, annotations, elaborations, or other modifications
|
39093
|
+
represent, as a whole, an original work of authorship. For the purposes
|
39094
|
+
of this License, Derivative Works shall not include works that remain
|
39095
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
39096
|
+
the Work and Derivative Works thereof.
|
39097
|
+
|
39098
|
+
"Contribution" shall mean any work of authorship, including
|
39099
|
+
the original version of the Work and any modifications or additions
|
39100
|
+
to that Work or Derivative Works thereof, that is intentionally
|
39101
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
39102
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
39103
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
39104
|
+
means any form of electronic, verbal, or written communication sent
|
39105
|
+
to the Licensor or its representatives, including but not limited to
|
39106
|
+
communication on electronic mailing lists, source code control systems,
|
39107
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
39108
|
+
Licensor for the purpose of discussing and improving the Work, but
|
39109
|
+
excluding communication that is conspicuously marked or otherwise
|
39110
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
39111
|
+
|
39112
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
39113
|
+
on behalf of whom a Contribution has been received by Licensor and
|
39114
|
+
subsequently incorporated within the Work.
|
39115
|
+
|
39116
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
39117
|
+
this License, each Contributor hereby grants to You a perpetual,
|
39118
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
39119
|
+
copyright license to reproduce, prepare Derivative Works of,
|
39120
|
+
publicly display, publicly perform, sublicense, and distribute the
|
39121
|
+
Work and such Derivative Works in Source or Object form.
|
39122
|
+
|
39123
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
39124
|
+
this License, each Contributor hereby grants to You a perpetual,
|
39125
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
39126
|
+
(except as stated in this section) patent license to make, have made,
|
39127
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
39128
|
+
where such license applies only to those patent claims licensable
|
39129
|
+
by such Contributor that are necessarily infringed by their
|
39130
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
39131
|
+
with the Work to which such Contribution(s) was submitted. If You
|
39132
|
+
institute patent litigation against any entity (including a
|
39133
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
39134
|
+
or a Contribution incorporated within the Work constitutes direct
|
39135
|
+
or contributory patent infringement, then any patent licenses
|
39136
|
+
granted to You under this License for that Work shall terminate
|
39137
|
+
as of the date such litigation is filed.
|
39138
|
+
|
39139
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
39140
|
+
Work or Derivative Works thereof in any medium, with or without
|
39141
|
+
modifications, and in Source or Object form, provided that You
|
39142
|
+
meet the following conditions:
|
39143
|
+
|
39144
|
+
(a) You must give any other recipients of the Work or
|
39145
|
+
Derivative Works a copy of this License; and
|
39146
|
+
|
39147
|
+
(b) You must cause any modified files to carry prominent notices
|
39148
|
+
stating that You changed the files; and
|
39149
|
+
|
39150
|
+
(c) You must retain, in the Source form of any Derivative Works
|
39151
|
+
that You distribute, all copyright, patent, trademark, and
|
39152
|
+
attribution notices from the Source form of the Work,
|
39153
|
+
excluding those notices that do not pertain to any part of
|
39154
|
+
the Derivative Works; and
|
39155
|
+
|
39156
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
39157
|
+
distribution, then any Derivative Works that You distribute must
|
39158
|
+
include a readable copy of the attribution notices contained
|
39159
|
+
within such NOTICE file, excluding those notices that do not
|
39160
|
+
pertain to any part of the Derivative Works, in at least one
|
39161
|
+
of the following places: within a NOTICE text file distributed
|
39162
|
+
as part of the Derivative Works; within the Source form or
|
39163
|
+
documentation, if provided along with the Derivative Works; or,
|
39164
|
+
within a display generated by the Derivative Works, if and
|
39165
|
+
wherever such third-party notices normally appear. The contents
|
39166
|
+
of the NOTICE file are for informational purposes only and
|
39167
|
+
do not modify the License. You may add Your own attribution
|
39168
|
+
notices within Derivative Works that You distribute, alongside
|
39169
|
+
or as an addendum to the NOTICE text from the Work, provided
|
39170
|
+
that such additional attribution notices cannot be construed
|
39171
|
+
as modifying the License.
|
39172
|
+
|
39173
|
+
You may add Your own copyright statement to Your modifications and
|
39174
|
+
may provide additional or different license terms and conditions
|
39175
|
+
for use, reproduction, or distribution of Your modifications, or
|
39176
|
+
for any such Derivative Works as a whole, provided Your use,
|
39177
|
+
reproduction, and distribution of the Work otherwise complies with
|
39178
|
+
the conditions stated in this License.
|
39179
|
+
|
39180
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
39181
|
+
any Contribution intentionally submitted for inclusion in the Work
|
39182
|
+
by You to the Licensor shall be under the terms and conditions of
|
39183
|
+
this License, without any additional terms or conditions.
|
39184
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
39185
|
+
the terms of any separate license agreement you may have executed
|
39186
|
+
with Licensor regarding such Contributions.
|
39187
|
+
|
39188
|
+
6. Trademarks. This License does not grant permission to use the trade
|
39189
|
+
names, trademarks, service marks, or product names of the Licensor,
|
39190
|
+
except as required for reasonable and customary use in describing the
|
39191
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
39192
|
+
|
39193
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
39194
|
+
agreed to in writing, Licensor provides the Work (and each
|
39195
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
39196
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
39197
|
+
implied, including, without limitation, any warranties or conditions
|
39198
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
39199
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
39200
|
+
appropriateness of using or redistributing the Work and assume any
|
39201
|
+
risks associated with Your exercise of permissions under this License.
|
39202
|
+
|
39203
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
39204
|
+
whether in tort (including negligence), contract, or otherwise,
|
39205
|
+
unless required by applicable law (such as deliberate and grossly
|
39206
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
39207
|
+
liable to You for damages, including any direct, indirect, special,
|
39208
|
+
incidental, or consequential damages of any character arising as a
|
39209
|
+
result of this License or out of the use or inability to use the
|
39210
|
+
Work (including but not limited to damages for loss of goodwill,
|
39211
|
+
work stoppage, computer failure or malfunction, or any and all
|
39212
|
+
other commercial damages or losses), even if such Contributor
|
39213
|
+
has been advised of the possibility of such damages.
|
39214
|
+
|
39215
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
39216
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
39217
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
39218
|
+
or other liability obligations and/or rights consistent with this
|
39219
|
+
License. However, in accepting such obligations, You may act only
|
39220
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
39221
|
+
of any other Contributor, and only if You agree to indemnify,
|
39222
|
+
defend, and hold each Contributor harmless for any liability
|
39223
|
+
incurred by, or claims asserted against, such Contributor by reason
|
39224
|
+
of your accepting any such warranty or additional liability.
|
39225
|
+
|
39226
|
+
END OF TERMS AND CONDITIONS
|
39227
|
+
|
39228
|
+
================================================================================
|
39229
|
+
seq-macro LICENSE-MIT
|
39230
|
+
================================================================================
|
40380
39231
|
|
40381
|
-
|
40382
|
-
|
40383
|
-
|
39232
|
+
Permission is hereby granted, free of charge, to any
|
39233
|
+
person obtaining a copy of this software and associated
|
39234
|
+
documentation files (the "Software"), to deal in the
|
39235
|
+
Software without restriction, including without
|
39236
|
+
limitation the rights to use, copy, modify, merge,
|
39237
|
+
publish, distribute, sublicense, and/or sell copies of
|
39238
|
+
the Software, and to permit persons to whom the Software
|
39239
|
+
is furnished to do so, subject to the following
|
39240
|
+
conditions:
|
40384
39241
|
|
40385
|
-
|
39242
|
+
The above copyright notice and this permission notice
|
39243
|
+
shall be included in all copies or substantial portions
|
39244
|
+
of the Software.
|
40386
39245
|
|
40387
|
-
|
40388
|
-
|
40389
|
-
|
40390
|
-
|
40391
|
-
|
39246
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
39247
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
39248
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
39249
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
39250
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
39251
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
39252
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
39253
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
39254
|
+
DEALINGS IN THE SOFTWARE.
|
40392
39255
|
|
40393
39256
|
================================================================================
|
40394
|
-
|
39257
|
+
serde LICENSE-APACHE
|
40395
39258
|
================================================================================
|
40396
39259
|
|
40397
|
-
|
39260
|
+
Apache License
|
39261
|
+
Version 2.0, January 2004
|
39262
|
+
http://www.apache.org/licenses/
|
40398
39263
|
|
40399
|
-
|
39264
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
40400
39265
|
|
40401
|
-
|
40402
|
-
this software and associated documentation files (the "Software"), to deal in
|
40403
|
-
the Software without restriction, including without limitation the rights to
|
40404
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
40405
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
40406
|
-
subject to the following conditions:
|
39266
|
+
1. Definitions.
|
40407
39267
|
|
40408
|
-
|
40409
|
-
|
39268
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
39269
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
40410
39270
|
|
40411
|
-
|
40412
|
-
|
40413
|
-
|
40414
|
-
|
40415
|
-
|
40416
|
-
|
39271
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
39272
|
+
the copyright owner that is granting the License.
|
39273
|
+
|
39274
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
39275
|
+
other entities that control, are controlled by, or are under common
|
39276
|
+
control with that entity. For the purposes of this definition,
|
39277
|
+
"control" means (i) the power, direct or indirect, to cause the
|
39278
|
+
direction or management of such entity, whether by contract or
|
39279
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
39280
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
39281
|
+
|
39282
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
39283
|
+
exercising permissions granted by this License.
|
39284
|
+
|
39285
|
+
"Source" form shall mean the preferred form for making modifications,
|
39286
|
+
including but not limited to software source code, documentation
|
39287
|
+
source, and configuration files.
|
39288
|
+
|
39289
|
+
"Object" form shall mean any form resulting from mechanical
|
39290
|
+
transformation or translation of a Source form, including but
|
39291
|
+
not limited to compiled object code, generated documentation,
|
39292
|
+
and conversions to other media types.
|
39293
|
+
|
39294
|
+
"Work" shall mean the work of authorship, whether in Source or
|
39295
|
+
Object form, made available under the License, as indicated by a
|
39296
|
+
copyright notice that is included in or attached to the work
|
39297
|
+
(an example is provided in the Appendix below).
|
39298
|
+
|
39299
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
39300
|
+
form, that is based on (or derived from) the Work and for which the
|
39301
|
+
editorial revisions, annotations, elaborations, or other modifications
|
39302
|
+
represent, as a whole, an original work of authorship. For the purposes
|
39303
|
+
of this License, Derivative Works shall not include works that remain
|
39304
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
39305
|
+
the Work and Derivative Works thereof.
|
39306
|
+
|
39307
|
+
"Contribution" shall mean any work of authorship, including
|
39308
|
+
the original version of the Work and any modifications or additions
|
39309
|
+
to that Work or Derivative Works thereof, that is intentionally
|
39310
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
39311
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
39312
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
39313
|
+
means any form of electronic, verbal, or written communication sent
|
39314
|
+
to the Licensor or its representatives, including but not limited to
|
39315
|
+
communication on electronic mailing lists, source code control systems,
|
39316
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
39317
|
+
Licensor for the purpose of discussing and improving the Work, but
|
39318
|
+
excluding communication that is conspicuously marked or otherwise
|
39319
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
39320
|
+
|
39321
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
39322
|
+
on behalf of whom a Contribution has been received by Licensor and
|
39323
|
+
subsequently incorporated within the Work.
|
39324
|
+
|
39325
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
39326
|
+
this License, each Contributor hereby grants to You a perpetual,
|
39327
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
39328
|
+
copyright license to reproduce, prepare Derivative Works of,
|
39329
|
+
publicly display, publicly perform, sublicense, and distribute the
|
39330
|
+
Work and such Derivative Works in Source or Object form.
|
39331
|
+
|
39332
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
39333
|
+
this License, each Contributor hereby grants to You a perpetual,
|
39334
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
39335
|
+
(except as stated in this section) patent license to make, have made,
|
39336
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
39337
|
+
where such license applies only to those patent claims licensable
|
39338
|
+
by such Contributor that are necessarily infringed by their
|
39339
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
39340
|
+
with the Work to which such Contribution(s) was submitted. If You
|
39341
|
+
institute patent litigation against any entity (including a
|
39342
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
39343
|
+
or a Contribution incorporated within the Work constitutes direct
|
39344
|
+
or contributory patent infringement, then any patent licenses
|
39345
|
+
granted to You under this License for that Work shall terminate
|
39346
|
+
as of the date such litigation is filed.
|
39347
|
+
|
39348
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
39349
|
+
Work or Derivative Works thereof in any medium, with or without
|
39350
|
+
modifications, and in Source or Object form, provided that You
|
39351
|
+
meet the following conditions:
|
39352
|
+
|
39353
|
+
(a) You must give any other recipients of the Work or
|
39354
|
+
Derivative Works a copy of this License; and
|
39355
|
+
|
39356
|
+
(b) You must cause any modified files to carry prominent notices
|
39357
|
+
stating that You changed the files; and
|
39358
|
+
|
39359
|
+
(c) You must retain, in the Source form of any Derivative Works
|
39360
|
+
that You distribute, all copyright, patent, trademark, and
|
39361
|
+
attribution notices from the Source form of the Work,
|
39362
|
+
excluding those notices that do not pertain to any part of
|
39363
|
+
the Derivative Works; and
|
39364
|
+
|
39365
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
39366
|
+
distribution, then any Derivative Works that You distribute must
|
39367
|
+
include a readable copy of the attribution notices contained
|
39368
|
+
within such NOTICE file, excluding those notices that do not
|
39369
|
+
pertain to any part of the Derivative Works, in at least one
|
39370
|
+
of the following places: within a NOTICE text file distributed
|
39371
|
+
as part of the Derivative Works; within the Source form or
|
39372
|
+
documentation, if provided along with the Derivative Works; or,
|
39373
|
+
within a display generated by the Derivative Works, if and
|
39374
|
+
wherever such third-party notices normally appear. The contents
|
39375
|
+
of the NOTICE file are for informational purposes only and
|
39376
|
+
do not modify the License. You may add Your own attribution
|
39377
|
+
notices within Derivative Works that You distribute, alongside
|
39378
|
+
or as an addendum to the NOTICE text from the Work, provided
|
39379
|
+
that such additional attribution notices cannot be construed
|
39380
|
+
as modifying the License.
|
39381
|
+
|
39382
|
+
You may add Your own copyright statement to Your modifications and
|
39383
|
+
may provide additional or different license terms and conditions
|
39384
|
+
for use, reproduction, or distribution of Your modifications, or
|
39385
|
+
for any such Derivative Works as a whole, provided Your use,
|
39386
|
+
reproduction, and distribution of the Work otherwise complies with
|
39387
|
+
the conditions stated in this License.
|
39388
|
+
|
39389
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
39390
|
+
any Contribution intentionally submitted for inclusion in the Work
|
39391
|
+
by You to the Licensor shall be under the terms and conditions of
|
39392
|
+
this License, without any additional terms or conditions.
|
39393
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
39394
|
+
the terms of any separate license agreement you may have executed
|
39395
|
+
with Licensor regarding such Contributions.
|
39396
|
+
|
39397
|
+
6. Trademarks. This License does not grant permission to use the trade
|
39398
|
+
names, trademarks, service marks, or product names of the Licensor,
|
39399
|
+
except as required for reasonable and customary use in describing the
|
39400
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
39401
|
+
|
39402
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
39403
|
+
agreed to in writing, Licensor provides the Work (and each
|
39404
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
39405
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
39406
|
+
implied, including, without limitation, any warranties or conditions
|
39407
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
39408
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
39409
|
+
appropriateness of using or redistributing the Work and assume any
|
39410
|
+
risks associated with Your exercise of permissions under this License.
|
39411
|
+
|
39412
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
39413
|
+
whether in tort (including negligence), contract, or otherwise,
|
39414
|
+
unless required by applicable law (such as deliberate and grossly
|
39415
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
39416
|
+
liable to You for damages, including any direct, indirect, special,
|
39417
|
+
incidental, or consequential damages of any character arising as a
|
39418
|
+
result of this License or out of the use or inability to use the
|
39419
|
+
Work (including but not limited to damages for loss of goodwill,
|
39420
|
+
work stoppage, computer failure or malfunction, or any and all
|
39421
|
+
other commercial damages or losses), even if such Contributor
|
39422
|
+
has been advised of the possibility of such damages.
|
39423
|
+
|
39424
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
39425
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
39426
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
39427
|
+
or other liability obligations and/or rights consistent with this
|
39428
|
+
License. However, in accepting such obligations, You may act only
|
39429
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
39430
|
+
of any other Contributor, and only if You agree to indemnify,
|
39431
|
+
defend, and hold each Contributor harmless for any liability
|
39432
|
+
incurred by, or claims asserted against, such Contributor by reason
|
39433
|
+
of your accepting any such warranty or additional liability.
|
39434
|
+
|
39435
|
+
END OF TERMS AND CONDITIONS
|
40417
39436
|
|
40418
39437
|
================================================================================
|
40419
|
-
|
39438
|
+
serde LICENSE-MIT
|
39439
|
+
================================================================================
|
39440
|
+
|
39441
|
+
Permission is hereby granted, free of charge, to any
|
39442
|
+
person obtaining a copy of this software and associated
|
39443
|
+
documentation files (the "Software"), to deal in the
|
39444
|
+
Software without restriction, including without
|
39445
|
+
limitation the rights to use, copy, modify, merge,
|
39446
|
+
publish, distribute, sublicense, and/or sell copies of
|
39447
|
+
the Software, and to permit persons to whom the Software
|
39448
|
+
is furnished to do so, subject to the following
|
39449
|
+
conditions:
|
39450
|
+
|
39451
|
+
The above copyright notice and this permission notice
|
39452
|
+
shall be included in all copies or substantial portions
|
39453
|
+
of the Software.
|
39454
|
+
|
39455
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
39456
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
39457
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
39458
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
39459
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
39460
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
39461
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
39462
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
39463
|
+
DEALINGS IN THE SOFTWARE.
|
39464
|
+
|
39465
|
+
================================================================================
|
39466
|
+
serde_derive LICENSE-APACHE
|
40420
39467
|
================================================================================
|
40421
39468
|
|
40422
39469
|
Apache License
|
@@ -40597,7 +39644,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
40597
39644
|
END OF TERMS AND CONDITIONS
|
40598
39645
|
|
40599
39646
|
================================================================================
|
40600
|
-
|
39647
|
+
serde_derive LICENSE-MIT
|
40601
39648
|
================================================================================
|
40602
39649
|
|
40603
39650
|
Permission is hereby granted, free of charge, to any
|
@@ -40625,7 +39672,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
40625
39672
|
DEALINGS IN THE SOFTWARE.
|
40626
39673
|
|
40627
39674
|
================================================================================
|
40628
|
-
|
39675
|
+
serde_json LICENSE-APACHE
|
40629
39676
|
================================================================================
|
40630
39677
|
|
40631
39678
|
Apache License
|
@@ -40806,7 +39853,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
40806
39853
|
END OF TERMS AND CONDITIONS
|
40807
39854
|
|
40808
39855
|
================================================================================
|
40809
|
-
|
39856
|
+
serde_json LICENSE-MIT
|
40810
39857
|
================================================================================
|
40811
39858
|
|
40812
39859
|
Permission is hereby granted, free of charge, to any
|
@@ -40834,7 +39881,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
40834
39881
|
DEALINGS IN THE SOFTWARE.
|
40835
39882
|
|
40836
39883
|
================================================================================
|
40837
|
-
|
39884
|
+
serde_stacker LICENSE-APACHE
|
40838
39885
|
================================================================================
|
40839
39886
|
|
40840
39887
|
Apache License
|
@@ -41015,7 +40062,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
41015
40062
|
END OF TERMS AND CONDITIONS
|
41016
40063
|
|
41017
40064
|
================================================================================
|
41018
|
-
|
40065
|
+
serde_stacker LICENSE-MIT
|
41019
40066
|
================================================================================
|
41020
40067
|
|
41021
40068
|
Permission is hereby granted, free of charge, to any
|
@@ -41043,7 +40090,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
41043
40090
|
DEALINGS IN THE SOFTWARE.
|
41044
40091
|
|
41045
40092
|
================================================================================
|
41046
|
-
|
40093
|
+
serde_urlencoded LICENSE-APACHE
|
41047
40094
|
================================================================================
|
41048
40095
|
|
41049
40096
|
Apache License
|
@@ -41224,9 +40271,11 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
41224
40271
|
END OF TERMS AND CONDITIONS
|
41225
40272
|
|
41226
40273
|
================================================================================
|
41227
|
-
|
40274
|
+
serde_urlencoded LICENSE-MIT
|
41228
40275
|
================================================================================
|
41229
40276
|
|
40277
|
+
Copyright (c) 2016 Anthony Ramine
|
40278
|
+
|
41230
40279
|
Permission is hereby granted, free of charge, to any
|
41231
40280
|
person obtaining a copy of this software and associated
|
41232
40281
|
documentation files (the "Software"), to deal in the
|
@@ -41252,7 +40301,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
41252
40301
|
DEALINGS IN THE SOFTWARE.
|
41253
40302
|
|
41254
40303
|
================================================================================
|
41255
|
-
|
40304
|
+
sha2 LICENSE-APACHE
|
41256
40305
|
================================================================================
|
41257
40306
|
|
41258
40307
|
Apache License
|
@@ -41432,220 +40481,38 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
41432
40481
|
|
41433
40482
|
END OF TERMS AND CONDITIONS
|
41434
40483
|
|
41435
|
-
|
41436
|
-
serde_json LICENSE-MIT
|
41437
|
-
================================================================================
|
41438
|
-
|
41439
|
-
Permission is hereby granted, free of charge, to any
|
41440
|
-
person obtaining a copy of this software and associated
|
41441
|
-
documentation files (the "Software"), to deal in the
|
41442
|
-
Software without restriction, including without
|
41443
|
-
limitation the rights to use, copy, modify, merge,
|
41444
|
-
publish, distribute, sublicense, and/or sell copies of
|
41445
|
-
the Software, and to permit persons to whom the Software
|
41446
|
-
is furnished to do so, subject to the following
|
41447
|
-
conditions:
|
41448
|
-
|
41449
|
-
The above copyright notice and this permission notice
|
41450
|
-
shall be included in all copies or substantial portions
|
41451
|
-
of the Software.
|
41452
|
-
|
41453
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
41454
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
41455
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
41456
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
41457
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
41458
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
41459
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
41460
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
41461
|
-
DEALINGS IN THE SOFTWARE.
|
41462
|
-
|
41463
|
-
================================================================================
|
41464
|
-
serde_urlencoded LICENSE-APACHE
|
41465
|
-
================================================================================
|
41466
|
-
|
41467
|
-
Apache License
|
41468
|
-
Version 2.0, January 2004
|
41469
|
-
http://www.apache.org/licenses/
|
41470
|
-
|
41471
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
41472
|
-
|
41473
|
-
1. Definitions.
|
41474
|
-
|
41475
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
41476
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
41477
|
-
|
41478
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
41479
|
-
the copyright owner that is granting the License.
|
41480
|
-
|
41481
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
41482
|
-
other entities that control, are controlled by, or are under common
|
41483
|
-
control with that entity. For the purposes of this definition,
|
41484
|
-
"control" means (i) the power, direct or indirect, to cause the
|
41485
|
-
direction or management of such entity, whether by contract or
|
41486
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
41487
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
41488
|
-
|
41489
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
41490
|
-
exercising permissions granted by this License.
|
41491
|
-
|
41492
|
-
"Source" form shall mean the preferred form for making modifications,
|
41493
|
-
including but not limited to software source code, documentation
|
41494
|
-
source, and configuration files.
|
41495
|
-
|
41496
|
-
"Object" form shall mean any form resulting from mechanical
|
41497
|
-
transformation or translation of a Source form, including but
|
41498
|
-
not limited to compiled object code, generated documentation,
|
41499
|
-
and conversions to other media types.
|
41500
|
-
|
41501
|
-
"Work" shall mean the work of authorship, whether in Source or
|
41502
|
-
Object form, made available under the License, as indicated by a
|
41503
|
-
copyright notice that is included in or attached to the work
|
41504
|
-
(an example is provided in the Appendix below).
|
41505
|
-
|
41506
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
41507
|
-
form, that is based on (or derived from) the Work and for which the
|
41508
|
-
editorial revisions, annotations, elaborations, or other modifications
|
41509
|
-
represent, as a whole, an original work of authorship. For the purposes
|
41510
|
-
of this License, Derivative Works shall not include works that remain
|
41511
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
41512
|
-
the Work and Derivative Works thereof.
|
41513
|
-
|
41514
|
-
"Contribution" shall mean any work of authorship, including
|
41515
|
-
the original version of the Work and any modifications or additions
|
41516
|
-
to that Work or Derivative Works thereof, that is intentionally
|
41517
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
41518
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
41519
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
41520
|
-
means any form of electronic, verbal, or written communication sent
|
41521
|
-
to the Licensor or its representatives, including but not limited to
|
41522
|
-
communication on electronic mailing lists, source code control systems,
|
41523
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
41524
|
-
Licensor for the purpose of discussing and improving the Work, but
|
41525
|
-
excluding communication that is conspicuously marked or otherwise
|
41526
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
41527
|
-
|
41528
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
41529
|
-
on behalf of whom a Contribution has been received by Licensor and
|
41530
|
-
subsequently incorporated within the Work.
|
41531
|
-
|
41532
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
41533
|
-
this License, each Contributor hereby grants to You a perpetual,
|
41534
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
41535
|
-
copyright license to reproduce, prepare Derivative Works of,
|
41536
|
-
publicly display, publicly perform, sublicense, and distribute the
|
41537
|
-
Work and such Derivative Works in Source or Object form.
|
41538
|
-
|
41539
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
41540
|
-
this License, each Contributor hereby grants to You a perpetual,
|
41541
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
41542
|
-
(except as stated in this section) patent license to make, have made,
|
41543
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
41544
|
-
where such license applies only to those patent claims licensable
|
41545
|
-
by such Contributor that are necessarily infringed by their
|
41546
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
41547
|
-
with the Work to which such Contribution(s) was submitted. If You
|
41548
|
-
institute patent litigation against any entity (including a
|
41549
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
41550
|
-
or a Contribution incorporated within the Work constitutes direct
|
41551
|
-
or contributory patent infringement, then any patent licenses
|
41552
|
-
granted to You under this License for that Work shall terminate
|
41553
|
-
as of the date such litigation is filed.
|
41554
|
-
|
41555
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
41556
|
-
Work or Derivative Works thereof in any medium, with or without
|
41557
|
-
modifications, and in Source or Object form, provided that You
|
41558
|
-
meet the following conditions:
|
41559
|
-
|
41560
|
-
(a) You must give any other recipients of the Work or
|
41561
|
-
Derivative Works a copy of this License; and
|
41562
|
-
|
41563
|
-
(b) You must cause any modified files to carry prominent notices
|
41564
|
-
stating that You changed the files; and
|
41565
|
-
|
41566
|
-
(c) You must retain, in the Source form of any Derivative Works
|
41567
|
-
that You distribute, all copyright, patent, trademark, and
|
41568
|
-
attribution notices from the Source form of the Work,
|
41569
|
-
excluding those notices that do not pertain to any part of
|
41570
|
-
the Derivative Works; and
|
41571
|
-
|
41572
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
41573
|
-
distribution, then any Derivative Works that You distribute must
|
41574
|
-
include a readable copy of the attribution notices contained
|
41575
|
-
within such NOTICE file, excluding those notices that do not
|
41576
|
-
pertain to any part of the Derivative Works, in at least one
|
41577
|
-
of the following places: within a NOTICE text file distributed
|
41578
|
-
as part of the Derivative Works; within the Source form or
|
41579
|
-
documentation, if provided along with the Derivative Works; or,
|
41580
|
-
within a display generated by the Derivative Works, if and
|
41581
|
-
wherever such third-party notices normally appear. The contents
|
41582
|
-
of the NOTICE file are for informational purposes only and
|
41583
|
-
do not modify the License. You may add Your own attribution
|
41584
|
-
notices within Derivative Works that You distribute, alongside
|
41585
|
-
or as an addendum to the NOTICE text from the Work, provided
|
41586
|
-
that such additional attribution notices cannot be construed
|
41587
|
-
as modifying the License.
|
41588
|
-
|
41589
|
-
You may add Your own copyright statement to Your modifications and
|
41590
|
-
may provide additional or different license terms and conditions
|
41591
|
-
for use, reproduction, or distribution of Your modifications, or
|
41592
|
-
for any such Derivative Works as a whole, provided Your use,
|
41593
|
-
reproduction, and distribution of the Work otherwise complies with
|
41594
|
-
the conditions stated in this License.
|
41595
|
-
|
41596
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
41597
|
-
any Contribution intentionally submitted for inclusion in the Work
|
41598
|
-
by You to the Licensor shall be under the terms and conditions of
|
41599
|
-
this License, without any additional terms or conditions.
|
41600
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
41601
|
-
the terms of any separate license agreement you may have executed
|
41602
|
-
with Licensor regarding such Contributions.
|
40484
|
+
APPENDIX: How to apply the Apache License to your work.
|
41603
40485
|
|
41604
|
-
|
41605
|
-
|
41606
|
-
|
41607
|
-
|
40486
|
+
To apply the Apache License to your work, attach the following
|
40487
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
40488
|
+
replaced with your own identifying information. (Don't include
|
40489
|
+
the brackets!) The text should be enclosed in the appropriate
|
40490
|
+
comment syntax for the file format. We also recommend that a
|
40491
|
+
file or class name and description of purpose be included on the
|
40492
|
+
same "printed page" as the copyright notice for easier
|
40493
|
+
identification within third-party archives.
|
41608
40494
|
|
41609
|
-
|
41610
|
-
agreed to in writing, Licensor provides the Work (and each
|
41611
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
41612
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
41613
|
-
implied, including, without limitation, any warranties or conditions
|
41614
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
41615
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
41616
|
-
appropriateness of using or redistributing the Work and assume any
|
41617
|
-
risks associated with Your exercise of permissions under this License.
|
40495
|
+
Copyright [yyyy] [name of copyright owner]
|
41618
40496
|
|
41619
|
-
|
41620
|
-
|
41621
|
-
|
41622
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
41623
|
-
liable to You for damages, including any direct, indirect, special,
|
41624
|
-
incidental, or consequential damages of any character arising as a
|
41625
|
-
result of this License or out of the use or inability to use the
|
41626
|
-
Work (including but not limited to damages for loss of goodwill,
|
41627
|
-
work stoppage, computer failure or malfunction, or any and all
|
41628
|
-
other commercial damages or losses), even if such Contributor
|
41629
|
-
has been advised of the possibility of such damages.
|
40497
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
40498
|
+
you may not use this file except in compliance with the License.
|
40499
|
+
You may obtain a copy of the License at
|
41630
40500
|
|
41631
|
-
|
41632
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
41633
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
41634
|
-
or other liability obligations and/or rights consistent with this
|
41635
|
-
License. However, in accepting such obligations, You may act only
|
41636
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
41637
|
-
of any other Contributor, and only if You agree to indemnify,
|
41638
|
-
defend, and hold each Contributor harmless for any liability
|
41639
|
-
incurred by, or claims asserted against, such Contributor by reason
|
41640
|
-
of your accepting any such warranty or additional liability.
|
40501
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
41641
40502
|
|
41642
|
-
|
40503
|
+
Unless required by applicable law or agreed to in writing, software
|
40504
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
40505
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
40506
|
+
See the License for the specific language governing permissions and
|
40507
|
+
limitations under the License.
|
41643
40508
|
|
41644
40509
|
================================================================================
|
41645
|
-
|
40510
|
+
sha2 LICENSE-MIT
|
41646
40511
|
================================================================================
|
41647
40512
|
|
41648
|
-
Copyright (c)
|
40513
|
+
Copyright (c) 2006-2009 Graydon Hoare
|
40514
|
+
Copyright (c) 2009-2013 Mozilla Foundation
|
40515
|
+
Copyright (c) 2016 Artyom Pavlov
|
41649
40516
|
|
41650
40517
|
Permission is hereby granted, free of charge, to any
|
41651
40518
|
person obtaining a copy of this software and associated
|
@@ -42880,7 +41747,7 @@ skiplist LICENSE
|
|
42880
41747
|
|
42881
41748
|
The MIT License (MIT)
|
42882
41749
|
|
42883
|
-
Copyright (c) 2015 Joshua Ellis
|
41750
|
+
Copyright (c) 2015-2025 Joshua Ellis
|
42884
41751
|
|
42885
41752
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
42886
41753
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -45054,6 +43921,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
45054
43921
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
45055
43922
|
SOFTWARE.
|
45056
43923
|
|
43924
|
+
================================================================================
|
43925
|
+
strum LICENSE
|
43926
|
+
================================================================================
|
43927
|
+
|
43928
|
+
MIT License
|
43929
|
+
|
43930
|
+
Copyright (c) 2019 Peter Glotfelty
|
43931
|
+
|
43932
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
43933
|
+
of this software and associated documentation files (the "Software"), to deal
|
43934
|
+
in the Software without restriction, including without limitation the rights
|
43935
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
43936
|
+
copies of the Software, and to permit persons to whom the Software is
|
43937
|
+
furnished to do so, subject to the following conditions:
|
43938
|
+
|
43939
|
+
The above copyright notice and this permission notice shall be included in all
|
43940
|
+
copies or substantial portions of the Software.
|
43941
|
+
|
43942
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
43943
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
43944
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
43945
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
43946
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
43947
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
43948
|
+
SOFTWARE.
|
43949
|
+
|
45057
43950
|
================================================================================
|
45058
43951
|
strum_macros LICENSE
|
45059
43952
|
================================================================================
|
@@ -45517,33 +44410,6 @@ The above copyright notice and this permission notice shall be included in all c
|
|
45517
44410
|
|
45518
44411
|
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.
|
45519
44412
|
|
45520
|
-
================================================================================
|
45521
|
-
sysinfo LICENSE
|
45522
|
-
================================================================================
|
45523
|
-
|
45524
|
-
The MIT License (MIT)
|
45525
|
-
|
45526
|
-
Copyright (c) 2015 Guillaume Gomez
|
45527
|
-
|
45528
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
45529
|
-
of this software and associated documentation files (the "Software"), to deal
|
45530
|
-
in the Software without restriction, including without limitation the rights
|
45531
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
45532
|
-
copies of the Software, and to permit persons to whom the Software is
|
45533
|
-
furnished to do so, subject to the following conditions:
|
45534
|
-
|
45535
|
-
The above copyright notice and this permission notice shall be included in all
|
45536
|
-
copies or substantial portions of the Software.
|
45537
|
-
|
45538
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
45539
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
45540
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
45541
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
45542
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
45543
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
45544
|
-
SOFTWARE.
|
45545
|
-
|
45546
|
-
|
45547
44413
|
================================================================================
|
45548
44414
|
thiserror LICENSE-APACHE
|
45549
44415
|
================================================================================
|
@@ -48504,6 +47370,239 @@ untrusted LICENSE.txt
|
|
48504
47370
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
48505
47371
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
48506
47372
|
|
47373
|
+
================================================================================
|
47374
|
+
unty LICENSE-APACHE
|
47375
|
+
================================================================================
|
47376
|
+
|
47377
|
+
|
47378
|
+
Apache License
|
47379
|
+
Version 2.0, January 2004
|
47380
|
+
http://www.apache.org/licenses/
|
47381
|
+
|
47382
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
47383
|
+
|
47384
|
+
1. Definitions.
|
47385
|
+
|
47386
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
47387
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
47388
|
+
|
47389
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
47390
|
+
the copyright owner that is granting the License.
|
47391
|
+
|
47392
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
47393
|
+
other entities that control, are controlled by, or are under common
|
47394
|
+
control with that entity. For the purposes of this definition,
|
47395
|
+
"control" means (i) the power, direct or indirect, to cause the
|
47396
|
+
direction or management of such entity, whether by contract or
|
47397
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
47398
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
47399
|
+
|
47400
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
47401
|
+
exercising permissions granted by this License.
|
47402
|
+
|
47403
|
+
"Source" form shall mean the preferred form for making modifications,
|
47404
|
+
including but not limited to software source code, documentation
|
47405
|
+
source, and configuration files.
|
47406
|
+
|
47407
|
+
"Object" form shall mean any form resulting from mechanical
|
47408
|
+
transformation or translation of a Source form, including but
|
47409
|
+
not limited to compiled object code, generated documentation,
|
47410
|
+
and conversions to other media types.
|
47411
|
+
|
47412
|
+
"Work" shall mean the work of authorship, whether in Source or
|
47413
|
+
Object form, made available under the License, as indicated by a
|
47414
|
+
copyright notice that is included in or attached to the work
|
47415
|
+
(an example is provided in the Appendix below).
|
47416
|
+
|
47417
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
47418
|
+
form, that is based on (or derived from) the Work and for which the
|
47419
|
+
editorial revisions, annotations, elaborations, or other modifications
|
47420
|
+
represent, as a whole, an original work of authorship. For the purposes
|
47421
|
+
of this License, Derivative Works shall not include works that remain
|
47422
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47423
|
+
the Work and Derivative Works thereof.
|
47424
|
+
|
47425
|
+
"Contribution" shall mean any work of authorship, including
|
47426
|
+
the original version of the Work and any modifications or additions
|
47427
|
+
to that Work or Derivative Works thereof, that is intentionally
|
47428
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
47429
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
47430
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
47431
|
+
means any form of electronic, verbal, or written communication sent
|
47432
|
+
to the Licensor or its representatives, including but not limited to
|
47433
|
+
communication on electronic mailing lists, source code control systems,
|
47434
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
47435
|
+
Licensor for the purpose of discussing and improving the Work, but
|
47436
|
+
excluding communication that is conspicuously marked or otherwise
|
47437
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
47438
|
+
|
47439
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
47440
|
+
on behalf of whom a Contribution has been received by Licensor and
|
47441
|
+
subsequently incorporated within the Work.
|
47442
|
+
|
47443
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
47444
|
+
this License, each Contributor hereby grants to You a perpetual,
|
47445
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
47446
|
+
copyright license to reproduce, prepare Derivative Works of,
|
47447
|
+
publicly display, publicly perform, sublicense, and distribute the
|
47448
|
+
Work and such Derivative Works in Source or Object form.
|
47449
|
+
|
47450
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
47451
|
+
this License, each Contributor hereby grants to You a perpetual,
|
47452
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
47453
|
+
(except as stated in this section) patent license to make, have made,
|
47454
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
47455
|
+
where such license applies only to those patent claims licensable
|
47456
|
+
by such Contributor that are necessarily infringed by their
|
47457
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
47458
|
+
with the Work to which such Contribution(s) was submitted. If You
|
47459
|
+
institute patent litigation against any entity (including a
|
47460
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
47461
|
+
or a Contribution incorporated within the Work constitutes direct
|
47462
|
+
or contributory patent infringement, then any patent licenses
|
47463
|
+
granted to You under this License for that Work shall terminate
|
47464
|
+
as of the date such litigation is filed.
|
47465
|
+
|
47466
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
47467
|
+
Work or Derivative Works thereof in any medium, with or without
|
47468
|
+
modifications, and in Source or Object form, provided that You
|
47469
|
+
meet the following conditions:
|
47470
|
+
|
47471
|
+
(a) You must give any other recipients of the Work or
|
47472
|
+
Derivative Works a copy of this License; and
|
47473
|
+
|
47474
|
+
(b) You must cause any modified files to carry prominent notices
|
47475
|
+
stating that You changed the files; and
|
47476
|
+
|
47477
|
+
(c) You must retain, in the Source form of any Derivative Works
|
47478
|
+
that You distribute, all copyright, patent, trademark, and
|
47479
|
+
attribution notices from the Source form of the Work,
|
47480
|
+
excluding those notices that do not pertain to any part of
|
47481
|
+
the Derivative Works; and
|
47482
|
+
|
47483
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
47484
|
+
distribution, then any Derivative Works that You distribute must
|
47485
|
+
include a readable copy of the attribution notices contained
|
47486
|
+
within such NOTICE file, excluding those notices that do not
|
47487
|
+
pertain to any part of the Derivative Works, in at least one
|
47488
|
+
of the following places: within a NOTICE text file distributed
|
47489
|
+
as part of the Derivative Works; within the Source form or
|
47490
|
+
documentation, if provided along with the Derivative Works; or,
|
47491
|
+
within a display generated by the Derivative Works, if and
|
47492
|
+
wherever such third-party notices normally appear. The contents
|
47493
|
+
of the NOTICE file are for informational purposes only and
|
47494
|
+
do not modify the License. You may add Your own attribution
|
47495
|
+
notices within Derivative Works that You distribute, alongside
|
47496
|
+
or as an addendum to the NOTICE text from the Work, provided
|
47497
|
+
that such additional attribution notices cannot be construed
|
47498
|
+
as modifying the License.
|
47499
|
+
|
47500
|
+
You may add Your own copyright statement to Your modifications and
|
47501
|
+
may provide additional or different license terms and conditions
|
47502
|
+
for use, reproduction, or distribution of Your modifications, or
|
47503
|
+
for any such Derivative Works as a whole, provided Your use,
|
47504
|
+
reproduction, and distribution of the Work otherwise complies with
|
47505
|
+
the conditions stated in this License.
|
47506
|
+
|
47507
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
47508
|
+
any Contribution intentionally submitted for inclusion in the Work
|
47509
|
+
by You to the Licensor shall be under the terms and conditions of
|
47510
|
+
this License, without any additional terms or conditions.
|
47511
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
47512
|
+
the terms of any separate license agreement you may have executed
|
47513
|
+
with Licensor regarding such Contributions.
|
47514
|
+
|
47515
|
+
6. Trademarks. This License does not grant permission to use the trade
|
47516
|
+
names, trademarks, service marks, or product names of the Licensor,
|
47517
|
+
except as required for reasonable and customary use in describing the
|
47518
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
47519
|
+
|
47520
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
47521
|
+
agreed to in writing, Licensor provides the Work (and each
|
47522
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
47523
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
47524
|
+
implied, including, without limitation, any warranties or conditions
|
47525
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
47526
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
47527
|
+
appropriateness of using or redistributing the Work and assume any
|
47528
|
+
risks associated with Your exercise of permissions under this License.
|
47529
|
+
|
47530
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
47531
|
+
whether in tort (including negligence), contract, or otherwise,
|
47532
|
+
unless required by applicable law (such as deliberate and grossly
|
47533
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
47534
|
+
liable to You for damages, including any direct, indirect, special,
|
47535
|
+
incidental, or consequential damages of any character arising as a
|
47536
|
+
result of this License or out of the use or inability to use the
|
47537
|
+
Work (including but not limited to damages for loss of goodwill,
|
47538
|
+
work stoppage, computer failure or malfunction, or any and all
|
47539
|
+
other commercial damages or losses), even if such Contributor
|
47540
|
+
has been advised of the possibility of such damages.
|
47541
|
+
|
47542
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
47543
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
47544
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
47545
|
+
or other liability obligations and/or rights consistent with this
|
47546
|
+
License. However, in accepting such obligations, You may act only
|
47547
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
47548
|
+
of any other Contributor, and only if You agree to indemnify,
|
47549
|
+
defend, and hold each Contributor harmless for any liability
|
47550
|
+
incurred by, or claims asserted against, such Contributor by reason
|
47551
|
+
of your accepting any such warranty or additional liability.
|
47552
|
+
|
47553
|
+
END OF TERMS AND CONDITIONS
|
47554
|
+
|
47555
|
+
APPENDIX: How to apply the Apache License to your work.
|
47556
|
+
|
47557
|
+
To apply the Apache License to your work, attach the following
|
47558
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
47559
|
+
replaced with your own identifying information. (Don't include
|
47560
|
+
the brackets!) The text should be enclosed in the appropriate
|
47561
|
+
comment syntax for the file format. We also recommend that a
|
47562
|
+
file or class name and description of purpose be included on the
|
47563
|
+
same "printed page" as the copyright notice for easier
|
47564
|
+
identification within third-party archives.
|
47565
|
+
|
47566
|
+
Copyright 2023 Bincode
|
47567
|
+
|
47568
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
47569
|
+
you may not use this file except in compliance with the License.
|
47570
|
+
You may obtain a copy of the License at
|
47571
|
+
|
47572
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
47573
|
+
|
47574
|
+
Unless required by applicable law or agreed to in writing, software
|
47575
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
47576
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
47577
|
+
See the License for the specific language governing permissions and
|
47578
|
+
limitations under the License.
|
47579
|
+
|
47580
|
+
================================================================================
|
47581
|
+
unty LICENSE-MIT
|
47582
|
+
================================================================================
|
47583
|
+
|
47584
|
+
MIT License
|
47585
|
+
|
47586
|
+
Copyright (c) 2023 Bincode
|
47587
|
+
|
47588
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
47589
|
+
of this software and associated documentation files (the "Software"), to deal
|
47590
|
+
in the Software without restriction, including without limitation the rights
|
47591
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
47592
|
+
copies of the Software, and to permit persons to whom the Software is
|
47593
|
+
furnished to do so, subject to the following conditions:
|
47594
|
+
|
47595
|
+
The above copyright notice and this permission notice shall be included in all
|
47596
|
+
copies or substantial portions of the Software.
|
47597
|
+
|
47598
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
47599
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
47600
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
47601
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
47602
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
47603
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
47604
|
+
SOFTWARE.
|
47605
|
+
|
48507
47606
|
================================================================================
|
48508
47607
|
url LICENSE-APACHE
|
48509
47608
|
================================================================================
|
@@ -49677,6 +48776,32 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
49677
48776
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
49678
48777
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
49679
48778
|
|
48779
|
+
================================================================================
|
48780
|
+
virtue LICENSE.md
|
48781
|
+
================================================================================
|
48782
|
+
|
48783
|
+
The MIT License (MIT)
|
48784
|
+
|
48785
|
+
Copyright (c) 2021 Victor Koenders
|
48786
|
+
|
48787
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
48788
|
+
of this software and associated documentation files (the "Software"), to deal
|
48789
|
+
in the Software without restriction, including without limitation the rights
|
48790
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
48791
|
+
copies of the Software, and to permit persons to whom the Software is
|
48792
|
+
furnished to do so, subject to the following conditions:
|
48793
|
+
|
48794
|
+
The above copyright notice and this permission notice shall be included in all
|
48795
|
+
copies or substantial portions of the Software.
|
48796
|
+
|
48797
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
48798
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
48799
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
48800
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
48801
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
48802
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
48803
|
+
SOFTWARE.
|
48804
|
+
|
49680
48805
|
================================================================================
|
49681
48806
|
walkdir COPYING
|
49682
48807
|
================================================================================
|