polars-df 0.20.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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +11 -0
  3. data/Cargo.lock +192 -186
  4. data/LICENSE-THIRD-PARTY.txt +1431 -1810
  5. data/LICENSE.txt +1 -1
  6. data/lib/polars/3.2/polars.bundle +0 -0
  7. data/lib/polars/3.3/polars.bundle +0 -0
  8. data/lib/polars/3.4/polars.bundle +0 -0
  9. data/lib/polars/cat_name_space.rb +3 -43
  10. data/lib/polars/catalog/unity/catalog_info.rb +20 -0
  11. data/lib/polars/catalog/unity/column_info.rb +31 -0
  12. data/lib/polars/catalog/unity/namespace_info.rb +21 -0
  13. data/lib/polars/catalog/unity/table_info.rb +50 -0
  14. data/lib/polars/catalog.rb +448 -0
  15. data/lib/polars/convert.rb +10 -0
  16. data/lib/polars/data_frame.rb +151 -30
  17. data/lib/polars/data_types.rb +47 -3
  18. data/lib/polars/exceptions.rb +7 -2
  19. data/lib/polars/expr.rb +34 -31
  20. data/lib/polars/functions/col.rb +6 -5
  21. data/lib/polars/functions/lazy.rb +114 -15
  22. data/lib/polars/functions/repeat.rb +4 -0
  23. data/lib/polars/io/csv.rb +18 -0
  24. data/lib/polars/io/json.rb +16 -0
  25. data/lib/polars/io/ndjson.rb +13 -0
  26. data/lib/polars/io/parquet.rb +45 -63
  27. data/lib/polars/io/scan_options.rb +47 -0
  28. data/lib/polars/lazy_frame.rb +163 -75
  29. data/lib/polars/list_expr.rb +204 -7
  30. data/lib/polars/list_name_space.rb +120 -1
  31. data/lib/polars/meta_expr.rb +7 -22
  32. data/lib/polars/scan_cast_options.rb +64 -0
  33. data/lib/polars/schema.rb +6 -1
  34. data/lib/polars/selector.rb +138 -0
  35. data/lib/polars/selectors.rb +931 -202
  36. data/lib/polars/series.rb +34 -11
  37. data/lib/polars/string_expr.rb +24 -3
  38. data/lib/polars/string_name_space.rb +11 -0
  39. data/lib/polars/utils/parse.rb +40 -0
  40. data/lib/polars/utils.rb +5 -1
  41. data/lib/polars/version.rb +1 -1
  42. data/lib/polars.rb +8 -0
  43. metadata +10 -2
@@ -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 v1.3.3
86
- https://github.com/servo/bincode
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
@@ -106,11 +110,11 @@ boxcar v0.2.13
106
110
  https://github.com/ibraheemdev/boxcar
107
111
  MIT
108
112
 
109
- brotli v7.0.0
113
+ brotli v8.0.1
110
114
  https://github.com/dropbox/rust-brotli
111
115
  BSD-3-Clause AND MIT
112
116
 
113
- brotli-decompressor v4.0.3
117
+ brotli-decompressor v5.0.0
114
118
  https://github.com/dropbox/rust-brotli-decompressor
115
119
  BSD-3-Clause/MIT
116
120
 
@@ -154,11 +158,7 @@ chrono v0.4.41
154
158
  https://github.com/chronotope/chrono
155
159
  MIT OR Apache-2.0
156
160
 
157
- chrono-tz v0.10.3
158
- https://github.com/chronotope/chrono-tz
159
- MIT OR Apache-2.0
160
-
161
- chrono-tz-build v0.4.1
161
+ chrono-tz v0.10.4
162
162
  https://github.com/chronotope/chrono-tz
163
163
  MIT OR Apache-2.0
164
164
 
@@ -170,7 +170,7 @@ comfy-table v7.1.4
170
170
  https://github.com/nukesor/comfy-table
171
171
  MIT
172
172
 
173
- compact_str v0.8.1
173
+ compact_str v0.9.0
174
174
  https://github.com/ParkMyCar/compact_str
175
175
  MIT
176
176
 
@@ -190,6 +190,10 @@ core-foundation-sys v0.8.7
190
190
  https://github.com/servo/core-foundation-rs
191
191
  MIT OR Apache-2.0
192
192
 
193
+ cpufeatures v0.2.17
194
+ https://github.com/RustCrypto/utils
195
+ MIT OR Apache-2.0
196
+
193
197
  crc v2.1.0
194
198
  https://github.com/mrhooray/crc-rs.git
195
199
  MIT OR Apache-2.0
@@ -354,14 +358,10 @@ h2 v0.4.10
354
358
  https://github.com/hyperium/h2
355
359
  MIT
356
360
 
357
- halfbrown v0.2.5
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.11.3
626
- https://github.com/rust-phf/rust-phf
627
- MIT
628
-
629
- phf_codegen v0.11.3
621
+ phf v0.12.1
630
622
  https://github.com/rust-phf/rust-phf
631
623
  MIT
632
624
 
633
- phf_generator v0.11.3
634
- https://github.com/rust-phf/rust-phf
635
- MIT
636
-
637
- phf_shared v0.11.3
625
+ phf_shared v0.12.1
638
626
  https://github.com/rust-phf/rust-phf
639
627
  MIT
640
628
 
@@ -654,11 +642,11 @@ planus v1.1.1
654
642
  https://github.com/planus-org/planus
655
643
  MIT/Apache-2.0
656
644
 
657
- polars v0.49.1
645
+ polars v0.50.0
658
646
  https://www.pola.rs/
659
647
  MIT
660
648
 
661
- polars-arrow v0.49.1
649
+ polars-arrow v0.50.0
662
650
  https://www.pola.rs/
663
651
  MIT AND Apache-2.0
664
652
 
@@ -666,43 +654,47 @@ polars-arrow-format v0.2.0
666
654
  https://github.com/DataEngineeringLabs/arrow-format
667
655
  Apache-2.0
668
656
 
669
- polars-compute v0.49.1
657
+ polars-compute v0.50.0
670
658
  https://www.pola.rs/
671
659
  MIT
672
660
 
673
- polars-core v0.49.1
661
+ polars-core v0.50.0
674
662
  https://www.pola.rs/
675
663
  MIT
676
664
 
677
- polars-error v0.49.1
665
+ polars-dtype v0.50.0
678
666
  https://www.pola.rs/
679
667
  MIT
680
668
 
681
- polars-expr v0.49.1
669
+ polars-error v0.50.0
682
670
  https://www.pola.rs/
683
671
  MIT
684
672
 
685
- polars-io v0.49.1
673
+ polars-expr v0.50.0
686
674
  https://www.pola.rs/
687
675
  MIT
688
676
 
689
- polars-json v0.49.1
677
+ polars-io v0.50.0
690
678
  https://www.pola.rs/
691
679
  MIT
692
680
 
693
- polars-lazy v0.49.1
681
+ polars-json v0.50.0
694
682
  https://www.pola.rs/
695
683
  MIT
696
684
 
697
- polars-mem-engine v0.49.1
685
+ polars-lazy v0.50.0
698
686
  https://www.pola.rs/
699
687
  MIT
700
688
 
701
- polars-ops v0.49.1
689
+ polars-mem-engine v0.50.0
702
690
  https://www.pola.rs/
703
691
  MIT
704
692
 
705
- polars-parquet v0.49.1
693
+ polars-ops v0.50.0
694
+ https://www.pola.rs/
695
+ MIT
696
+
697
+ polars-parquet v0.50.0
706
698
  https://www.pola.rs/
707
699
  MIT AND Apache-2.0
708
700
 
@@ -710,31 +702,31 @@ polars-parquet-format v0.1.0
710
702
  https://github.com/pola-rs/parquet-format
711
703
  MIT AND Apache-2.0
712
704
 
713
- polars-plan v0.49.1
705
+ polars-plan v0.50.0
714
706
  https://www.pola.rs/
715
707
  MIT
716
708
 
717
- polars-row v0.49.1
709
+ polars-row v0.50.0
718
710
  https://www.pola.rs/
719
711
  MIT
720
712
 
721
- polars-schema v0.49.1
713
+ polars-schema v0.50.0
722
714
  https://www.pola.rs/
723
715
  MIT
724
716
 
725
- polars-sql v0.49.1
717
+ polars-sql v0.50.0
726
718
  https://www.pola.rs/
727
719
  MIT
728
720
 
729
- polars-stream v0.49.1
721
+ polars-stream v0.50.0
730
722
  https://www.pola.rs/
731
723
  MIT
732
724
 
733
- polars-time v0.49.1
725
+ polars-time v0.50.0
734
726
  https://www.pola.rs/
735
727
  MIT
736
728
 
737
- polars-utils v0.49.1
729
+ polars-utils v0.50.0
738
730
  https://www.pola.rs/
739
731
  MIT
740
732
 
@@ -774,31 +766,19 @@ quote v1.0.40
774
766
  https://github.com/dtolnay/quote
775
767
  MIT OR Apache-2.0
776
768
 
777
- rand v0.8.5
778
- https://rust-random.github.io/book
779
- MIT OR Apache-2.0
780
-
781
769
  rand v0.9.1
782
770
  https://rust-random.github.io/book
783
771
  MIT OR Apache-2.0
784
772
 
785
- rand_chacha v0.3.1
786
- https://rust-random.github.io/book
787
- MIT OR Apache-2.0
788
-
789
773
  rand_chacha v0.9.0
790
774
  https://rust-random.github.io/book
791
775
  MIT OR Apache-2.0
792
776
 
793
- rand_core v0.6.4
794
- https://rust-random.github.io/book
795
- MIT OR Apache-2.0
796
-
797
777
  rand_core v0.9.3
798
778
  https://rust-random.github.io/book
799
779
  MIT OR Apache-2.0
800
780
 
801
- rand_distr v0.4.3
781
+ rand_distr v0.5.1
802
782
  https://rust-random.github.io/book
803
783
  MIT OR Apache-2.0
804
784
 
@@ -814,11 +794,11 @@ rayon-core v1.12.1
814
794
  https://github.com/rayon-rs/rayon
815
795
  MIT OR Apache-2.0
816
796
 
817
- rb-sys v0.9.115
797
+ rb-sys v0.9.117
818
798
  https://github.com/oxidize-rb/rb-sys
819
799
  MIT OR Apache-2.0
820
800
 
821
- rb-sys-build v0.9.115
801
+ rb-sys-build v0.9.117
822
802
  https://github.com/oxidize-rb/rb-sys
823
803
  MIT OR Apache-2.0
824
804
 
@@ -950,10 +930,18 @@ serde_json v1.0.140
950
930
  https://github.com/serde-rs/json
951
931
  MIT OR Apache-2.0
952
932
 
933
+ serde_stacker v0.1.12
934
+ https://github.com/dtolnay/serde-stacker
935
+ MIT OR Apache-2.0
936
+
953
937
  serde_urlencoded v0.7.1
954
938
  https://github.com/nox/serde_urlencoded
955
939
  MIT/Apache-2.0
956
940
 
941
+ sha2 v0.10.9
942
+ https://github.com/RustCrypto/hashes
943
+ MIT OR Apache-2.0
944
+
957
945
  shell-words v1.1.0
958
946
  https://github.com/tmiasko/shell-words
959
947
  MIT/Apache-2.0
@@ -970,7 +958,7 @@ signal-hook-registry v1.4.5
970
958
  https://github.com/vorner/signal-hook
971
959
  Apache-2.0/MIT
972
960
 
973
- simd-json v0.14.3
961
+ simd-json v0.15.1
974
962
  https://github.com/simd-lite/simd-json
975
963
  Apache-2.0 OR MIT
976
964
 
@@ -982,8 +970,8 @@ siphasher v1.0.1
982
970
  https://docs.rs/siphasher
983
971
  MIT/Apache-2.0
984
972
 
985
- skiplist v0.5.1
986
- https://www.jpellis.me/projects/rust-skiplist/
973
+ skiplist v0.6.0
974
+ https://jpellis.me/projects/rust-skiplist/
987
975
  MIT
988
976
 
989
977
  slab v0.4.9
@@ -1034,7 +1022,11 @@ strength_reduce v0.2.4
1034
1022
  http://github.com/ejmahler/strength_reduce
1035
1023
  MIT OR Apache-2.0
1036
1024
 
1037
- strum_macros v0.26.4
1025
+ strum v0.27.2
1026
+ https://github.com/Peternator7/strum
1027
+ MIT
1028
+
1029
+ strum_macros v0.27.2
1038
1030
  https://github.com/Peternator7/strum
1039
1031
  MIT
1040
1032
 
@@ -1146,6 +1138,10 @@ untrusted v0.9.0
1146
1138
  https://github.com/briansmith/untrusted
1147
1139
  ISC
1148
1140
 
1141
+ unty v0.0.4
1142
+ https://github.com/bincode-org/unty
1143
+ MIT OR Apache-2.0
1144
+
1149
1145
  url v2.5.4
1150
1146
  https://github.com/servo/rust-url
1151
1147
  MIT OR Apache-2.0
@@ -1158,7 +1154,7 @@ uuid v1.16.0
1158
1154
  https://github.com/uuid-rs/uuid
1159
1155
  Apache-2.0 OR MIT
1160
1156
 
1161
- value-trait v0.10.1
1157
+ value-trait v0.11.0
1162
1158
  https://github.com/simd-lite/value-trait
1163
1159
  Apache-2.0/MIT
1164
1160
 
@@ -1166,6 +1162,10 @@ version_check v0.9.5
1166
1162
  https://github.com/SergioBenitez/version_check
1167
1163
  MIT/Apache-2.0
1168
1164
 
1165
+ virtue v0.0.18
1166
+ https://github.com/bincode-org/virtue
1167
+ MIT
1168
+
1169
1169
  walkdir v2.5.0
1170
1170
  https://github.com/BurntSushi/walkdir
1171
1171
  Unlicense/MIT
@@ -4347,27 +4347,53 @@ THE SOFTWARE.
4347
4347
  bincode LICENSE.md
4348
4348
  ================================================================================
4349
4349
 
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.
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.
4371
4397
 
4372
4398
  ================================================================================
4373
4399
  bindgen LICENSE
@@ -7066,239 +7092,6 @@ this LICENSE file) are in the public domain.
7066
7092
  If the files date.c, newstrftime.3, and strftime.c are present, they
7067
7093
  contain material derived from BSD and use the BSD 3-clause license.
7068
7094
 
7069
- ================================================================================
7070
- chrono-tz-build LICENSE
7071
- ================================================================================
7072
-
7073
- Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
7074
- The licenses do not apply to files in the tzdb folder which are in the
7075
- public domain. parse-zoneinfo was forked from zoneinfo-parse, which
7076
- was originally created by Benjamin Sago under the MIT license.
7077
-
7078
- Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers
7079
-
7080
- The MIT License
7081
-
7082
- Permission is hereby granted, free of charge, to any person obtaining a copy
7083
- of this software and associated documentation files (the "Software"), to deal
7084
- in the Software without restriction, including without limitation the rights
7085
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7086
- copies of the Software, and to permit persons to whom the Software is
7087
- furnished to do so, subject to the following conditions:
7088
-
7089
- The above copyright notice and this permission notice shall be included in all
7090
- copies or substantial portions of the Software.
7091
-
7092
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7093
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7094
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7095
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7096
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
7097
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
7098
- SOFTWARE.
7099
-
7100
- Apache License
7101
- Version 2.0, January 2004
7102
- http://www.apache.org/licenses/
7103
-
7104
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7105
-
7106
- 1. Definitions.
7107
-
7108
- "License" shall mean the terms and conditions for use, reproduction,
7109
- and distribution as defined by Sections 1 through 9 of this document.
7110
-
7111
- "Licensor" shall mean the copyright owner or entity authorized by
7112
- the copyright owner that is granting the License.
7113
-
7114
- "Legal Entity" shall mean the union of the acting entity and all
7115
- other entities that control, are controlled by, or are under common
7116
- control with that entity. For the purposes of this definition,
7117
- "control" means (i) the power, direct or indirect, to cause the
7118
- direction or management of such entity, whether by contract or
7119
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
7120
- outstanding shares, or (iii) beneficial ownership of such entity.
7121
-
7122
- "You" (or "Your") shall mean an individual or Legal Entity
7123
- exercising permissions granted by this License.
7124
-
7125
- "Source" form shall mean the preferred form for making modifications,
7126
- including but not limited to software source code, documentation
7127
- source, and configuration files.
7128
-
7129
- "Object" form shall mean any form resulting from mechanical
7130
- transformation or translation of a Source form, including but
7131
- not limited to compiled object code, generated documentation,
7132
- and conversions to other media types.
7133
-
7134
- "Work" shall mean the work of authorship, whether in Source or
7135
- Object form, made available under the License, as indicated by a
7136
- copyright notice that is included in or attached to the work
7137
- (an example is provided in the Appendix below).
7138
-
7139
- "Derivative Works" shall mean any work, whether in Source or Object
7140
- form, that is based on (or derived from) the Work and for which the
7141
- editorial revisions, annotations, elaborations, or other modifications
7142
- represent, as a whole, an original work of authorship. For the purposes
7143
- of this License, Derivative Works shall not include works that remain
7144
- separable from, or merely link (or bind by name) to the interfaces of,
7145
- the Work and Derivative Works thereof.
7146
-
7147
- "Contribution" shall mean any work of authorship, including
7148
- the original version of the Work and any modifications or additions
7149
- to that Work or Derivative Works thereof, that is intentionally
7150
- submitted to Licensor for inclusion in the Work by the copyright owner
7151
- or by an individual or Legal Entity authorized to submit on behalf of
7152
- the copyright owner. For the purposes of this definition, "submitted"
7153
- means any form of electronic, verbal, or written communication sent
7154
- to the Licensor or its representatives, including but not limited to
7155
- communication on electronic mailing lists, source code control systems,
7156
- and issue tracking systems that are managed by, or on behalf of, the
7157
- Licensor for the purpose of discussing and improving the Work, but
7158
- excluding communication that is conspicuously marked or otherwise
7159
- designated in writing by the copyright owner as "Not a Contribution."
7160
-
7161
- "Contributor" shall mean Licensor and any individual or Legal Entity
7162
- on behalf of whom a Contribution has been received by Licensor and
7163
- subsequently incorporated within the Work.
7164
-
7165
- 2. Grant of Copyright License. Subject to the terms and conditions of
7166
- this License, each Contributor hereby grants to You a perpetual,
7167
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
7168
- copyright license to reproduce, prepare Derivative Works of,
7169
- publicly display, publicly perform, sublicense, and distribute the
7170
- Work and such Derivative Works in Source or Object form.
7171
-
7172
- 3. Grant of Patent License. Subject to the terms and conditions of
7173
- this License, each Contributor hereby grants to You a perpetual,
7174
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
7175
- (except as stated in this section) patent license to make, have made,
7176
- use, offer to sell, sell, import, and otherwise transfer the Work,
7177
- where such license applies only to those patent claims licensable
7178
- by such Contributor that are necessarily infringed by their
7179
- Contribution(s) alone or by combination of their Contribution(s)
7180
- with the Work to which such Contribution(s) was submitted. If You
7181
- institute patent litigation against any entity (including a
7182
- cross-claim or counterclaim in a lawsuit) alleging that the Work
7183
- or a Contribution incorporated within the Work constitutes direct
7184
- or contributory patent infringement, then any patent licenses
7185
- granted to You under this License for that Work shall terminate
7186
- as of the date such litigation is filed.
7187
-
7188
- 4. Redistribution. You may reproduce and distribute copies of the
7189
- Work or Derivative Works thereof in any medium, with or without
7190
- modifications, and in Source or Object form, provided that You
7191
- meet the following conditions:
7192
-
7193
- (a) You must give any other recipients of the Work or
7194
- Derivative Works a copy of this License; and
7195
-
7196
- (b) You must cause any modified files to carry prominent notices
7197
- stating that You changed the files; and
7198
-
7199
- (c) You must retain, in the Source form of any Derivative Works
7200
- that You distribute, all copyright, patent, trademark, and
7201
- attribution notices from the Source form of the Work,
7202
- excluding those notices that do not pertain to any part of
7203
- the Derivative Works; and
7204
-
7205
- (d) If the Work includes a "NOTICE" text file as part of its
7206
- distribution, then any Derivative Works that You distribute must
7207
- include a readable copy of the attribution notices contained
7208
- within such NOTICE file, excluding those notices that do not
7209
- pertain to any part of the Derivative Works, in at least one
7210
- of the following places: within a NOTICE text file distributed
7211
- as part of the Derivative Works; within the Source form or
7212
- documentation, if provided along with the Derivative Works; or,
7213
- within a display generated by the Derivative Works, if and
7214
- wherever such third-party notices normally appear. The contents
7215
- of the NOTICE file are for informational purposes only and
7216
- do not modify the License. You may add Your own attribution
7217
- notices within Derivative Works that You distribute, alongside
7218
- or as an addendum to the NOTICE text from the Work, provided
7219
- that such additional attribution notices cannot be construed
7220
- as modifying the License.
7221
-
7222
- You may add Your own copyright statement to Your modifications and
7223
- may provide additional or different license terms and conditions
7224
- for use, reproduction, or distribution of Your modifications, or
7225
- for any such Derivative Works as a whole, provided Your use,
7226
- reproduction, and distribution of the Work otherwise complies with
7227
- the conditions stated in this License.
7228
-
7229
- 5. Submission of Contributions. Unless You explicitly state otherwise,
7230
- any Contribution intentionally submitted for inclusion in the Work
7231
- by You to the Licensor shall be under the terms and conditions of
7232
- this License, without any additional terms or conditions.
7233
- Notwithstanding the above, nothing herein shall supersede or modify
7234
- the terms of any separate license agreement you may have executed
7235
- with Licensor regarding such Contributions.
7236
-
7237
- 6. Trademarks. This License does not grant permission to use the trade
7238
- names, trademarks, service marks, or product names of the Licensor,
7239
- except as required for reasonable and customary use in describing the
7240
- origin of the Work and reproducing the content of the NOTICE file.
7241
-
7242
- 7. Disclaimer of Warranty. Unless required by applicable law or
7243
- agreed to in writing, Licensor provides the Work (and each
7244
- Contributor provides its Contributions) on an "AS IS" BASIS,
7245
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
7246
- implied, including, without limitation, any warranties or conditions
7247
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
7248
- PARTICULAR PURPOSE. You are solely responsible for determining the
7249
- appropriateness of using or redistributing the Work and assume any
7250
- risks associated with Your exercise of permissions under this License.
7251
-
7252
- 8. Limitation of Liability. In no event and under no legal theory,
7253
- whether in tort (including negligence), contract, or otherwise,
7254
- unless required by applicable law (such as deliberate and grossly
7255
- negligent acts) or agreed to in writing, shall any Contributor be
7256
- liable to You for damages, including any direct, indirect, special,
7257
- incidental, or consequential damages of any character arising as a
7258
- result of this License or out of the use or inability to use the
7259
- Work (including but not limited to damages for loss of goodwill,
7260
- work stoppage, computer failure or malfunction, or any and all
7261
- other commercial damages or losses), even if such Contributor
7262
- has been advised of the possibility of such damages.
7263
-
7264
- 9. Accepting Warranty or Additional Liability. While redistributing
7265
- the Work or Derivative Works thereof, You may choose to offer,
7266
- and charge a fee for, acceptance of support, warranty, indemnity,
7267
- or other liability obligations and/or rights consistent with this
7268
- License. However, in accepting such obligations, You may act only
7269
- on Your own behalf and on Your sole responsibility, not on behalf
7270
- of any other Contributor, and only if You agree to indemnify,
7271
- defend, and hold each Contributor harmless for any liability
7272
- incurred by, or claims asserted against, such Contributor by reason
7273
- of your accepting any such warranty or additional liability.
7274
-
7275
- END OF TERMS AND CONDITIONS
7276
-
7277
- APPENDIX: How to apply the Apache License to your work.
7278
-
7279
- To apply the Apache License to your work, attach the following
7280
- boilerplate notice, with the fields enclosed by brackets "[]"
7281
- replaced with your own identifying information. (Don't include
7282
- the brackets!) The text should be enclosed in the appropriate
7283
- comment syntax for the file format. We also recommend that a
7284
- file or class name and description of purpose be included on the
7285
- same "printed page" as the copyright notice for easier
7286
- identification within third-party archives.
7287
-
7288
- Copyright 2016 Djzin
7289
-
7290
- Licensed under the Apache License, Version 2.0 (the "License");
7291
- you may not use this file except in compliance with the License.
7292
- You may obtain a copy of the License at
7293
-
7294
- http://www.apache.org/licenses/LICENSE-2.0
7295
-
7296
- Unless required by applicable law or agreed to in writing, software
7297
- distributed under the License is distributed on an "AS IS" BASIS,
7298
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7299
- See the License for the specific language governing permissions and
7300
- limitations under the License.
7301
-
7302
7095
  ================================================================================
7303
7096
  clang-sys LICENSE.txt
7304
7097
  ================================================================================
@@ -8590,6 +8383,242 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
8590
8383
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
8591
8384
  DEALINGS IN THE SOFTWARE.
8592
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
+
8593
8622
  ================================================================================
8594
8623
  crc LICENSE-APACHE
8595
8624
  ================================================================================
@@ -18003,243 +18032,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18003
18032
  SOFTWARE.
18004
18033
 
18005
18034
  ================================================================================
18006
- hashbrown v0.14.5 LICENSE-APACHE
18007
- ================================================================================
18008
-
18009
- Apache License
18010
- Version 2.0, January 2004
18011
- http://www.apache.org/licenses/
18012
-
18013
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
18014
-
18015
- 1. Definitions.
18016
-
18017
- "License" shall mean the terms and conditions for use, reproduction,
18018
- and distribution as defined by Sections 1 through 9 of this document.
18019
-
18020
- "Licensor" shall mean the copyright owner or entity authorized by
18021
- the copyright owner that is granting the License.
18022
-
18023
- "Legal Entity" shall mean the union of the acting entity and all
18024
- other entities that control, are controlled by, or are under common
18025
- control with that entity. For the purposes of this definition,
18026
- "control" means (i) the power, direct or indirect, to cause the
18027
- direction or management of such entity, whether by contract or
18028
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
18029
- outstanding shares, or (iii) beneficial ownership of such entity.
18030
-
18031
- "You" (or "Your") shall mean an individual or Legal Entity
18032
- exercising permissions granted by this License.
18033
-
18034
- "Source" form shall mean the preferred form for making modifications,
18035
- including but not limited to software source code, documentation
18036
- source, and configuration files.
18037
-
18038
- "Object" form shall mean any form resulting from mechanical
18039
- transformation or translation of a Source form, including but
18040
- not limited to compiled object code, generated documentation,
18041
- and conversions to other media types.
18042
-
18043
- "Work" shall mean the work of authorship, whether in Source or
18044
- Object form, made available under the License, as indicated by a
18045
- copyright notice that is included in or attached to the work
18046
- (an example is provided in the Appendix below).
18047
-
18048
- "Derivative Works" shall mean any work, whether in Source or Object
18049
- form, that is based on (or derived from) the Work and for which the
18050
- editorial revisions, annotations, elaborations, or other modifications
18051
- represent, as a whole, an original work of authorship. For the purposes
18052
- of this License, Derivative Works shall not include works that remain
18053
- separable from, or merely link (or bind by name) to the interfaces of,
18054
- the Work and Derivative Works thereof.
18055
-
18056
- "Contribution" shall mean any work of authorship, including
18057
- the original version of the Work and any modifications or additions
18058
- to that Work or Derivative Works thereof, that is intentionally
18059
- submitted to Licensor for inclusion in the Work by the copyright owner
18060
- or by an individual or Legal Entity authorized to submit on behalf of
18061
- the copyright owner. For the purposes of this definition, "submitted"
18062
- means any form of electronic, verbal, or written communication sent
18063
- to the Licensor or its representatives, including but not limited to
18064
- communication on electronic mailing lists, source code control systems,
18065
- and issue tracking systems that are managed by, or on behalf of, the
18066
- Licensor for the purpose of discussing and improving the Work, but
18067
- excluding communication that is conspicuously marked or otherwise
18068
- designated in writing by the copyright owner as "Not a Contribution."
18069
-
18070
- "Contributor" shall mean Licensor and any individual or Legal Entity
18071
- on behalf of whom a Contribution has been received by Licensor and
18072
- subsequently incorporated within the Work.
18073
-
18074
- 2. Grant of Copyright License. Subject to the terms and conditions of
18075
- this License, each Contributor hereby grants to You a perpetual,
18076
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
18077
- copyright license to reproduce, prepare Derivative Works of,
18078
- publicly display, publicly perform, sublicense, and distribute the
18079
- Work and such Derivative Works in Source or Object form.
18080
-
18081
- 3. Grant of Patent License. Subject to the terms and conditions of
18082
- this License, each Contributor hereby grants to You a perpetual,
18083
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
18084
- (except as stated in this section) patent license to make, have made,
18085
- use, offer to sell, sell, import, and otherwise transfer the Work,
18086
- where such license applies only to those patent claims licensable
18087
- by such Contributor that are necessarily infringed by their
18088
- Contribution(s) alone or by combination of their Contribution(s)
18089
- with the Work to which such Contribution(s) was submitted. If You
18090
- institute patent litigation against any entity (including a
18091
- cross-claim or counterclaim in a lawsuit) alleging that the Work
18092
- or a Contribution incorporated within the Work constitutes direct
18093
- or contributory patent infringement, then any patent licenses
18094
- granted to You under this License for that Work shall terminate
18095
- as of the date such litigation is filed.
18096
-
18097
- 4. Redistribution. You may reproduce and distribute copies of the
18098
- Work or Derivative Works thereof in any medium, with or without
18099
- modifications, and in Source or Object form, provided that You
18100
- meet the following conditions:
18101
-
18102
- (a) You must give any other recipients of the Work or
18103
- Derivative Works a copy of this License; and
18104
-
18105
- (b) You must cause any modified files to carry prominent notices
18106
- stating that You changed the files; and
18107
-
18108
- (c) You must retain, in the Source form of any Derivative Works
18109
- that You distribute, all copyright, patent, trademark, and
18110
- attribution notices from the Source form of the Work,
18111
- excluding those notices that do not pertain to any part of
18112
- the Derivative Works; and
18113
-
18114
- (d) If the Work includes a "NOTICE" text file as part of its
18115
- distribution, then any Derivative Works that You distribute must
18116
- include a readable copy of the attribution notices contained
18117
- within such NOTICE file, excluding those notices that do not
18118
- pertain to any part of the Derivative Works, in at least one
18119
- of the following places: within a NOTICE text file distributed
18120
- as part of the Derivative Works; within the Source form or
18121
- documentation, if provided along with the Derivative Works; or,
18122
- within a display generated by the Derivative Works, if and
18123
- wherever such third-party notices normally appear. The contents
18124
- of the NOTICE file are for informational purposes only and
18125
- do not modify the License. You may add Your own attribution
18126
- notices within Derivative Works that You distribute, alongside
18127
- or as an addendum to the NOTICE text from the Work, provided
18128
- that such additional attribution notices cannot be construed
18129
- as modifying the License.
18130
-
18131
- You may add Your own copyright statement to Your modifications and
18132
- may provide additional or different license terms and conditions
18133
- for use, reproduction, or distribution of Your modifications, or
18134
- for any such Derivative Works as a whole, provided Your use,
18135
- reproduction, and distribution of the Work otherwise complies with
18136
- the conditions stated in this License.
18137
-
18138
- 5. Submission of Contributions. Unless You explicitly state otherwise,
18139
- any Contribution intentionally submitted for inclusion in the Work
18140
- by You to the Licensor shall be under the terms and conditions of
18141
- this License, without any additional terms or conditions.
18142
- Notwithstanding the above, nothing herein shall supersede or modify
18143
- the terms of any separate license agreement you may have executed
18144
- with Licensor regarding such Contributions.
18145
-
18146
- 6. Trademarks. This License does not grant permission to use the trade
18147
- names, trademarks, service marks, or product names of the Licensor,
18148
- except as required for reasonable and customary use in describing the
18149
- origin of the Work and reproducing the content of the NOTICE file.
18150
-
18151
- 7. Disclaimer of Warranty. Unless required by applicable law or
18152
- agreed to in writing, Licensor provides the Work (and each
18153
- Contributor provides its Contributions) on an "AS IS" BASIS,
18154
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
18155
- implied, including, without limitation, any warranties or conditions
18156
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
18157
- PARTICULAR PURPOSE. You are solely responsible for determining the
18158
- appropriateness of using or redistributing the Work and assume any
18159
- risks associated with Your exercise of permissions under this License.
18160
-
18161
- 8. Limitation of Liability. In no event and under no legal theory,
18162
- whether in tort (including negligence), contract, or otherwise,
18163
- unless required by applicable law (such as deliberate and grossly
18164
- negligent acts) or agreed to in writing, shall any Contributor be
18165
- liable to You for damages, including any direct, indirect, special,
18166
- incidental, or consequential damages of any character arising as a
18167
- result of this License or out of the use or inability to use the
18168
- Work (including but not limited to damages for loss of goodwill,
18169
- work stoppage, computer failure or malfunction, or any and all
18170
- other commercial damages or losses), even if such Contributor
18171
- has been advised of the possibility of such damages.
18172
-
18173
- 9. Accepting Warranty or Additional Liability. While redistributing
18174
- the Work or Derivative Works thereof, You may choose to offer,
18175
- and charge a fee for, acceptance of support, warranty, indemnity,
18176
- or other liability obligations and/or rights consistent with this
18177
- License. However, in accepting such obligations, You may act only
18178
- on Your own behalf and on Your sole responsibility, not on behalf
18179
- of any other Contributor, and only if You agree to indemnify,
18180
- defend, and hold each Contributor harmless for any liability
18181
- incurred by, or claims asserted against, such Contributor by reason
18182
- of your accepting any such warranty or additional liability.
18183
-
18184
- END OF TERMS AND CONDITIONS
18185
-
18186
- APPENDIX: How to apply the Apache License to your work.
18187
-
18188
- To apply the Apache License to your work, attach the following
18189
- boilerplate notice, with the fields enclosed by brackets "[]"
18190
- replaced with your own identifying information. (Don't include
18191
- the brackets!) The text should be enclosed in the appropriate
18192
- comment syntax for the file format. We also recommend that a
18193
- file or class name and description of purpose be included on the
18194
- same "printed page" as the copyright notice for easier
18195
- identification within third-party archives.
18196
-
18197
- Copyright [yyyy] [name of copyright owner]
18198
-
18199
- Licensed under the Apache License, Version 2.0 (the "License");
18200
- you may not use this file except in compliance with the License.
18201
- You may obtain a copy of the License at
18202
-
18203
- http://www.apache.org/licenses/LICENSE-2.0
18204
-
18205
- Unless required by applicable law or agreed to in writing, software
18206
- distributed under the License is distributed on an "AS IS" BASIS,
18207
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18208
- See the License for the specific language governing permissions and
18209
- limitations under the License.
18210
-
18211
- ================================================================================
18212
- hashbrown v0.14.5 LICENSE-MIT
18213
- ================================================================================
18214
-
18215
- Copyright (c) 2016 Amanieu d'Antras
18216
-
18217
- Permission is hereby granted, free of charge, to any
18218
- person obtaining a copy of this software and associated
18219
- documentation files (the "Software"), to deal in the
18220
- Software without restriction, including without
18221
- limitation the rights to use, copy, modify, merge,
18222
- publish, distribute, sublicense, and/or sell copies of
18223
- the Software, and to permit persons to whom the Software
18224
- is furnished to do so, subject to the following
18225
- conditions:
18226
-
18227
- The above copyright notice and this permission notice
18228
- shall be included in all copies or substantial portions
18229
- of the Software.
18230
-
18231
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18232
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18233
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
18234
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
18235
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18236
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
18237
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
18238
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18239
- DEALINGS IN THE SOFTWARE.
18240
-
18241
- ================================================================================
18242
- hashbrown v0.15.3 LICENSE-APACHE
18035
+ hashbrown LICENSE-APACHE
18243
18036
  ================================================================================
18244
18037
 
18245
18038
  Apache License
@@ -18445,7 +18238,7 @@ See the License for the specific language governing permissions and
18445
18238
  limitations under the License.
18446
18239
 
18447
18240
  ================================================================================
18448
- hashbrown v0.15.3 LICENSE-MIT
18241
+ hashbrown LICENSE-MIT
18449
18242
  ================================================================================
18450
18243
 
18451
18244
  Copyright (c) 2016 Amanieu d'Antras
@@ -25003,6 +24796,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25003
24796
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25004
24797
  SOFTWARE.
25005
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
+
25006
24825
  ================================================================================
25007
24826
  magnus-macros LICENSE
25008
24827
  ================================================================================
@@ -27848,239 +27667,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
27848
27667
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27849
27668
  DEALINGS IN THE SOFTWARE.
27850
27669
 
27851
- ================================================================================
27852
- parse-zoneinfo LICENSE
27853
- ================================================================================
27854
-
27855
- Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
27856
- The licenses do not apply to files in the tzdb folder which are in the
27857
- public domain. parse-zoneinfo was forked from zoneinfo-parse, which
27858
- was originally created by Benjamin Sago under the MIT license.
27859
-
27860
- Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers
27861
-
27862
- The MIT License
27863
-
27864
- Permission is hereby granted, free of charge, to any person obtaining a copy
27865
- of this software and associated documentation files (the "Software"), to deal
27866
- in the Software without restriction, including without limitation the rights
27867
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27868
- copies of the Software, and to permit persons to whom the Software is
27869
- furnished to do so, subject to the following conditions:
27870
-
27871
- The above copyright notice and this permission notice shall be included in all
27872
- copies or substantial portions of the Software.
27873
-
27874
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27875
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27876
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27877
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27878
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27879
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27880
- SOFTWARE.
27881
-
27882
- Apache License
27883
- Version 2.0, January 2004
27884
- http://www.apache.org/licenses/
27885
-
27886
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
27887
-
27888
- 1. Definitions.
27889
-
27890
- "License" shall mean the terms and conditions for use, reproduction,
27891
- and distribution as defined by Sections 1 through 9 of this document.
27892
-
27893
- "Licensor" shall mean the copyright owner or entity authorized by
27894
- the copyright owner that is granting the License.
27895
-
27896
- "Legal Entity" shall mean the union of the acting entity and all
27897
- other entities that control, are controlled by, or are under common
27898
- control with that entity. For the purposes of this definition,
27899
- "control" means (i) the power, direct or indirect, to cause the
27900
- direction or management of such entity, whether by contract or
27901
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
27902
- outstanding shares, or (iii) beneficial ownership of such entity.
27903
-
27904
- "You" (or "Your") shall mean an individual or Legal Entity
27905
- exercising permissions granted by this License.
27906
-
27907
- "Source" form shall mean the preferred form for making modifications,
27908
- including but not limited to software source code, documentation
27909
- source, and configuration files.
27910
-
27911
- "Object" form shall mean any form resulting from mechanical
27912
- transformation or translation of a Source form, including but
27913
- not limited to compiled object code, generated documentation,
27914
- and conversions to other media types.
27915
-
27916
- "Work" shall mean the work of authorship, whether in Source or
27917
- Object form, made available under the License, as indicated by a
27918
- copyright notice that is included in or attached to the work
27919
- (an example is provided in the Appendix below).
27920
-
27921
- "Derivative Works" shall mean any work, whether in Source or Object
27922
- form, that is based on (or derived from) the Work and for which the
27923
- editorial revisions, annotations, elaborations, or other modifications
27924
- represent, as a whole, an original work of authorship. For the purposes
27925
- of this License, Derivative Works shall not include works that remain
27926
- separable from, or merely link (or bind by name) to the interfaces of,
27927
- the Work and Derivative Works thereof.
27928
-
27929
- "Contribution" shall mean any work of authorship, including
27930
- the original version of the Work and any modifications or additions
27931
- to that Work or Derivative Works thereof, that is intentionally
27932
- submitted to Licensor for inclusion in the Work by the copyright owner
27933
- or by an individual or Legal Entity authorized to submit on behalf of
27934
- the copyright owner. For the purposes of this definition, "submitted"
27935
- means any form of electronic, verbal, or written communication sent
27936
- to the Licensor or its representatives, including but not limited to
27937
- communication on electronic mailing lists, source code control systems,
27938
- and issue tracking systems that are managed by, or on behalf of, the
27939
- Licensor for the purpose of discussing and improving the Work, but
27940
- excluding communication that is conspicuously marked or otherwise
27941
- designated in writing by the copyright owner as "Not a Contribution."
27942
-
27943
- "Contributor" shall mean Licensor and any individual or Legal Entity
27944
- on behalf of whom a Contribution has been received by Licensor and
27945
- subsequently incorporated within the Work.
27946
-
27947
- 2. Grant of Copyright License. Subject to the terms and conditions of
27948
- this License, each Contributor hereby grants to You a perpetual,
27949
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
27950
- copyright license to reproduce, prepare Derivative Works of,
27951
- publicly display, publicly perform, sublicense, and distribute the
27952
- Work and such Derivative Works in Source or Object form.
27953
-
27954
- 3. Grant of Patent License. Subject to the terms and conditions of
27955
- this License, each Contributor hereby grants to You a perpetual,
27956
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
27957
- (except as stated in this section) patent license to make, have made,
27958
- use, offer to sell, sell, import, and otherwise transfer the Work,
27959
- where such license applies only to those patent claims licensable
27960
- by such Contributor that are necessarily infringed by their
27961
- Contribution(s) alone or by combination of their Contribution(s)
27962
- with the Work to which such Contribution(s) was submitted. If You
27963
- institute patent litigation against any entity (including a
27964
- cross-claim or counterclaim in a lawsuit) alleging that the Work
27965
- or a Contribution incorporated within the Work constitutes direct
27966
- or contributory patent infringement, then any patent licenses
27967
- granted to You under this License for that Work shall terminate
27968
- as of the date such litigation is filed.
27969
-
27970
- 4. Redistribution. You may reproduce and distribute copies of the
27971
- Work or Derivative Works thereof in any medium, with or without
27972
- modifications, and in Source or Object form, provided that You
27973
- meet the following conditions:
27974
-
27975
- (a) You must give any other recipients of the Work or
27976
- Derivative Works a copy of this License; and
27977
-
27978
- (b) You must cause any modified files to carry prominent notices
27979
- stating that You changed the files; and
27980
-
27981
- (c) You must retain, in the Source form of any Derivative Works
27982
- that You distribute, all copyright, patent, trademark, and
27983
- attribution notices from the Source form of the Work,
27984
- excluding those notices that do not pertain to any part of
27985
- the Derivative Works; and
27986
-
27987
- (d) If the Work includes a "NOTICE" text file as part of its
27988
- distribution, then any Derivative Works that You distribute must
27989
- include a readable copy of the attribution notices contained
27990
- within such NOTICE file, excluding those notices that do not
27991
- pertain to any part of the Derivative Works, in at least one
27992
- of the following places: within a NOTICE text file distributed
27993
- as part of the Derivative Works; within the Source form or
27994
- documentation, if provided along with the Derivative Works; or,
27995
- within a display generated by the Derivative Works, if and
27996
- wherever such third-party notices normally appear. The contents
27997
- of the NOTICE file are for informational purposes only and
27998
- do not modify the License. You may add Your own attribution
27999
- notices within Derivative Works that You distribute, alongside
28000
- or as an addendum to the NOTICE text from the Work, provided
28001
- that such additional attribution notices cannot be construed
28002
- as modifying the License.
28003
-
28004
- You may add Your own copyright statement to Your modifications and
28005
- may provide additional or different license terms and conditions
28006
- for use, reproduction, or distribution of Your modifications, or
28007
- for any such Derivative Works as a whole, provided Your use,
28008
- reproduction, and distribution of the Work otherwise complies with
28009
- the conditions stated in this License.
28010
-
28011
- 5. Submission of Contributions. Unless You explicitly state otherwise,
28012
- any Contribution intentionally submitted for inclusion in the Work
28013
- by You to the Licensor shall be under the terms and conditions of
28014
- this License, without any additional terms or conditions.
28015
- Notwithstanding the above, nothing herein shall supersede or modify
28016
- the terms of any separate license agreement you may have executed
28017
- with Licensor regarding such Contributions.
28018
-
28019
- 6. Trademarks. This License does not grant permission to use the trade
28020
- names, trademarks, service marks, or product names of the Licensor,
28021
- except as required for reasonable and customary use in describing the
28022
- origin of the Work and reproducing the content of the NOTICE file.
28023
-
28024
- 7. Disclaimer of Warranty. Unless required by applicable law or
28025
- agreed to in writing, Licensor provides the Work (and each
28026
- Contributor provides its Contributions) on an "AS IS" BASIS,
28027
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
28028
- implied, including, without limitation, any warranties or conditions
28029
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
28030
- PARTICULAR PURPOSE. You are solely responsible for determining the
28031
- appropriateness of using or redistributing the Work and assume any
28032
- risks associated with Your exercise of permissions under this License.
28033
-
28034
- 8. Limitation of Liability. In no event and under no legal theory,
28035
- whether in tort (including negligence), contract, or otherwise,
28036
- unless required by applicable law (such as deliberate and grossly
28037
- negligent acts) or agreed to in writing, shall any Contributor be
28038
- liable to You for damages, including any direct, indirect, special,
28039
- incidental, or consequential damages of any character arising as a
28040
- result of this License or out of the use or inability to use the
28041
- Work (including but not limited to damages for loss of goodwill,
28042
- work stoppage, computer failure or malfunction, or any and all
28043
- other commercial damages or losses), even if such Contributor
28044
- has been advised of the possibility of such damages.
28045
-
28046
- 9. Accepting Warranty or Additional Liability. While redistributing
28047
- the Work or Derivative Works thereof, You may choose to offer,
28048
- and charge a fee for, acceptance of support, warranty, indemnity,
28049
- or other liability obligations and/or rights consistent with this
28050
- License. However, in accepting such obligations, You may act only
28051
- on Your own behalf and on Your sole responsibility, not on behalf
28052
- of any other Contributor, and only if You agree to indemnify,
28053
- defend, and hold each Contributor harmless for any liability
28054
- incurred by, or claims asserted against, such Contributor by reason
28055
- of your accepting any such warranty or additional liability.
28056
-
28057
- END OF TERMS AND CONDITIONS
28058
-
28059
- APPENDIX: How to apply the Apache License to your work.
28060
-
28061
- To apply the Apache License to your work, attach the following
28062
- boilerplate notice, with the fields enclosed by brackets "[]"
28063
- replaced with your own identifying information. (Don't include
28064
- the brackets!) The text should be enclosed in the appropriate
28065
- comment syntax for the file format. We also recommend that a
28066
- file or class name and description of purpose be included on the
28067
- same "printed page" as the copyright notice for easier
28068
- identification within third-party archives.
28069
-
28070
- Copyright 2016 Djzin
28071
-
28072
- Licensed under the Apache License, Version 2.0 (the "License");
28073
- you may not use this file except in compliance with the License.
28074
- You may obtain a copy of the License at
28075
-
28076
- http://www.apache.org/licenses/LICENSE-2.0
28077
-
28078
- Unless required by applicable law or agreed to in writing, software
28079
- distributed under the License is distributed on an "AS IS" BASIS,
28080
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28081
- See the License for the specific language governing permissions and
28082
- limitations under the License.
28083
-
28084
27670
  ================================================================================
28085
27671
  paste LICENSE-APACHE
28086
27672
  ================================================================================
@@ -28551,56 +28137,6 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
28551
28137
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28552
28138
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28553
28139
 
28554
- ================================================================================
28555
- phf_codegen LICENSE
28556
- ================================================================================
28557
-
28558
- The MIT License (MIT)
28559
-
28560
- Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi
28561
-
28562
- Permission is hereby granted, free of charge, to any person obtaining a copy of
28563
- this software and associated documentation files (the "Software"), to deal in
28564
- the Software without restriction, including without limitation the rights to
28565
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
28566
- the Software, and to permit persons to whom the Software is furnished to do so,
28567
- subject to the following conditions:
28568
-
28569
- The above copyright notice and this permission notice shall be included in all
28570
- copies or substantial portions of the Software.
28571
-
28572
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28573
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
28574
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
28575
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
28576
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28577
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28578
-
28579
- ================================================================================
28580
- phf_generator LICENSE
28581
- ================================================================================
28582
-
28583
- The MIT License (MIT)
28584
-
28585
- Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi
28586
-
28587
- Permission is hereby granted, free of charge, to any person obtaining a copy of
28588
- this software and associated documentation files (the "Software"), to deal in
28589
- the Software without restriction, including without limitation the rights to
28590
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
28591
- the Software, and to permit persons to whom the Software is furnished to do so,
28592
- subject to the following conditions:
28593
-
28594
- The above copyright notice and this permission notice shall be included in all
28595
- copies or substantial portions of the Software.
28596
-
28597
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28598
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
28599
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
28600
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
28601
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28602
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28603
-
28604
28140
  ================================================================================
28605
28141
  phf_shared LICENSE
28606
28142
  ================================================================================
@@ -29990,7 +29526,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29990
29526
  SOFTWARE.
29991
29527
 
29992
29528
  ================================================================================
29993
- polars-error LICENSE
29529
+ polars-dtype LICENSE
29994
29530
  ================================================================================
29995
29531
 
29996
29532
  Copyright (c) 2025 Ritchie Vink
@@ -30015,7 +29551,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30015
29551
  SOFTWARE.
30016
29552
 
30017
29553
  ================================================================================
30018
- polars-expr LICENSE
29554
+ polars-error LICENSE
30019
29555
  ================================================================================
30020
29556
 
30021
29557
  Copyright (c) 2025 Ritchie Vink
@@ -30040,7 +29576,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30040
29576
  SOFTWARE.
30041
29577
 
30042
29578
  ================================================================================
30043
- polars-io LICENSE
29579
+ polars-expr LICENSE
30044
29580
  ================================================================================
30045
29581
 
30046
29582
  Copyright (c) 2025 Ritchie Vink
@@ -30065,7 +29601,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30065
29601
  SOFTWARE.
30066
29602
 
30067
29603
  ================================================================================
30068
- polars-json LICENSE
29604
+ polars-io LICENSE
30069
29605
  ================================================================================
30070
29606
 
30071
29607
  Copyright (c) 2025 Ritchie Vink
@@ -30090,7 +29626,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30090
29626
  SOFTWARE.
30091
29627
 
30092
29628
  ================================================================================
30093
- polars-lazy LICENSE
29629
+ polars-json LICENSE
30094
29630
  ================================================================================
30095
29631
 
30096
29632
  Copyright (c) 2025 Ritchie Vink
@@ -30115,7 +29651,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30115
29651
  SOFTWARE.
30116
29652
 
30117
29653
  ================================================================================
30118
- polars-mem-engine LICENSE
29654
+ polars-lazy LICENSE
30119
29655
  ================================================================================
30120
29656
 
30121
29657
  Copyright (c) 2025 Ritchie Vink
@@ -30140,7 +29676,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30140
29676
  SOFTWARE.
30141
29677
 
30142
29678
  ================================================================================
30143
- polars-ops LICENSE
29679
+ polars-mem-engine LICENSE
30144
29680
  ================================================================================
30145
29681
 
30146
29682
  Copyright (c) 2025 Ritchie Vink
@@ -30165,237 +29701,262 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30165
29701
  SOFTWARE.
30166
29702
 
30167
29703
  ================================================================================
30168
- polars-parquet LICENSE
30169
- ================================================================================
30170
-
30171
- Some of the code in this crate is subject to the Apache 2 license below, as it
30172
- was taken from the arrow2 and parquet2 Rust crate in October 2023. Later changes are subject
30173
- to the MIT license in ../../LICENSE.
30174
-
30175
-
30176
-
30177
- Apache License
30178
- Version 2.0, January 2004
30179
- https://www.apache.org/licenses/
30180
-
30181
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
30182
-
30183
- 1. Definitions.
30184
-
30185
- "License" shall mean the terms and conditions for use, reproduction,
30186
- and distribution as defined by Sections 1 through 9 of this document.
30187
-
30188
- "Licensor" shall mean the copyright owner or entity authorized by
30189
- the copyright owner that is granting the License.
30190
-
30191
- "Legal Entity" shall mean the union of the acting entity and all
30192
- other entities that control, are controlled by, or are under common
30193
- control with that entity. For the purposes of this definition,
30194
- "control" means (i) the power, direct or indirect, to cause the
30195
- direction or management of such entity, whether by contract or
30196
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
30197
- outstanding shares, or (iii) beneficial ownership of such entity.
30198
-
30199
- "You" (or "Your") shall mean an individual or Legal Entity
30200
- exercising permissions granted by this License.
30201
-
30202
- "Source" form shall mean the preferred form for making modifications,
30203
- including but not limited to software source code, documentation
30204
- source, and configuration files.
30205
-
30206
- "Object" form shall mean any form resulting from mechanical
30207
- transformation or translation of a Source form, including but
30208
- not limited to compiled object code, generated documentation,
30209
- and conversions to other media types.
30210
-
30211
- "Work" shall mean the work of authorship, whether in Source or
30212
- Object form, made available under the License, as indicated by a
30213
- copyright notice that is included in or attached to the work
30214
- (an example is provided in the Appendix below).
30215
-
30216
- "Derivative Works" shall mean any work, whether in Source or Object
30217
- form, that is based on (or derived from) the Work and for which the
30218
- editorial revisions, annotations, elaborations, or other modifications
30219
- represent, as a whole, an original work of authorship. For the purposes
30220
- of this License, Derivative Works shall not include works that remain
30221
- separable from, or merely link (or bind by name) to the interfaces of,
30222
- the Work and Derivative Works thereof.
30223
-
30224
- "Contribution" shall mean any work of authorship, including
30225
- the original version of the Work and any modifications or additions
30226
- to that Work or Derivative Works thereof, that is intentionally
30227
- submitted to Licensor for inclusion in the Work by the copyright owner
30228
- or by an individual or Legal Entity authorized to submit on behalf of
30229
- the copyright owner. For the purposes of this definition, "submitted"
30230
- means any form of electronic, verbal, or written communication sent
30231
- to the Licensor or its representatives, including but not limited to
30232
- communication on electronic mailing lists, source code control systems,
30233
- and issue tracking systems that are managed by, or on behalf of, the
30234
- Licensor for the purpose of discussing and improving the Work, but
30235
- excluding communication that is conspicuously marked or otherwise
30236
- designated in writing by the copyright owner as "Not a Contribution."
30237
-
30238
- "Contributor" shall mean Licensor and any individual or Legal Entity
30239
- on behalf of whom a Contribution has been received by Licensor and
30240
- subsequently incorporated within the Work.
30241
-
30242
- 2. Grant of Copyright License. Subject to the terms and conditions of
30243
- this License, each Contributor hereby grants to You a perpetual,
30244
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
30245
- copyright license to reproduce, prepare Derivative Works of,
30246
- publicly display, publicly perform, sublicense, and distribute the
30247
- Work and such Derivative Works in Source or Object form.
30248
-
30249
- 3. Grant of Patent License. Subject to the terms and conditions of
30250
- this License, each Contributor hereby grants to You a perpetual,
30251
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
30252
- (except as stated in this section) patent license to make, have made,
30253
- use, offer to sell, sell, import, and otherwise transfer the Work,
30254
- where such license applies only to those patent claims licensable
30255
- by such Contributor that are necessarily infringed by their
30256
- Contribution(s) alone or by combination of their Contribution(s)
30257
- with the Work to which such Contribution(s) was submitted. If You
30258
- institute patent litigation against any entity (including a
30259
- cross-claim or counterclaim in a lawsuit) alleging that the Work
30260
- or a Contribution incorporated within the Work constitutes direct
30261
- or contributory patent infringement, then any patent licenses
30262
- granted to You under this License for that Work shall terminate
30263
- as of the date such litigation is filed.
30264
-
30265
- 4. Redistribution. You may reproduce and distribute copies of the
30266
- Work or Derivative Works thereof in any medium, with or without
30267
- modifications, and in Source or Object form, provided that You
30268
- meet the following conditions:
30269
-
30270
- (a) You must give any other recipients of the Work or
30271
- Derivative Works a copy of this License; and
30272
-
30273
- (b) You must cause any modified files to carry prominent notices
30274
- stating that You changed the files; and
30275
-
30276
- (c) You must retain, in the Source form of any Derivative Works
30277
- that You distribute, all copyright, patent, trademark, and
30278
- attribution notices from the Source form of the Work,
30279
- excluding those notices that do not pertain to any part of
30280
- the Derivative Works; and
30281
-
30282
- (d) If the Work includes a "NOTICE" text file as part of its
30283
- distribution, then any Derivative Works that You distribute must
30284
- include a readable copy of the attribution notices contained
30285
- within such NOTICE file, excluding those notices that do not
30286
- pertain to any part of the Derivative Works, in at least one
30287
- of the following places: within a NOTICE text file distributed
30288
- as part of the Derivative Works; within the Source form or
30289
- documentation, if provided along with the Derivative Works; or,
30290
- within a display generated by the Derivative Works, if and
30291
- wherever such third-party notices normally appear. The contents
30292
- of the NOTICE file are for informational purposes only and
30293
- do not modify the License. You may add Your own attribution
30294
- notices within Derivative Works that You distribute, alongside
30295
- or as an addendum to the NOTICE text from the Work, provided
30296
- that such additional attribution notices cannot be construed
30297
- as modifying the License.
30298
-
30299
- You may add Your own copyright statement to Your modifications and
30300
- may provide additional or different license terms and conditions
30301
- for use, reproduction, or distribution of Your modifications, or
30302
- for any such Derivative Works as a whole, provided Your use,
30303
- reproduction, and distribution of the Work otherwise complies with
30304
- the conditions stated in this License.
30305
-
30306
- 5. Submission of Contributions. Unless You explicitly state otherwise,
30307
- any Contribution intentionally submitted for inclusion in the Work
30308
- by You to the Licensor shall be under the terms and conditions of
30309
- this License, without any additional terms or conditions.
30310
- Notwithstanding the above, nothing herein shall supersede or modify
30311
- the terms of any separate license agreement you may have executed
30312
- with Licensor regarding such Contributions.
30313
-
30314
- 6. Trademarks. This License does not grant permission to use the trade
30315
- names, trademarks, service marks, or product names of the Licensor,
30316
- except as required for reasonable and customary use in describing the
30317
- origin of the Work and reproducing the content of the NOTICE file.
30318
-
30319
- 7. Disclaimer of Warranty. Unless required by applicable law or
30320
- agreed to in writing, Licensor provides the Work (and each
30321
- Contributor provides its Contributions) on an "AS IS" BASIS,
30322
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
30323
- implied, including, without limitation, any warranties or conditions
30324
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
30325
- PARTICULAR PURPOSE. You are solely responsible for determining the
30326
- appropriateness of using or redistributing the Work and assume any
30327
- risks associated with Your exercise of permissions under this License.
30328
-
30329
- 8. Limitation of Liability. In no event and under no legal theory,
30330
- whether in tort (including negligence), contract, or otherwise,
30331
- unless required by applicable law (such as deliberate and grossly
30332
- negligent acts) or agreed to in writing, shall any Contributor be
30333
- liable to You for damages, including any direct, indirect, special,
30334
- incidental, or consequential damages of any character arising as a
30335
- result of this License or out of the use or inability to use the
30336
- Work (including but not limited to damages for loss of goodwill,
30337
- work stoppage, computer failure or malfunction, or any and all
30338
- other commercial damages or losses), even if such Contributor
30339
- has been advised of the possibility of such damages.
30340
-
30341
- 9. Accepting Warranty or Additional Liability. While redistributing
30342
- the Work or Derivative Works thereof, You may choose to offer,
30343
- and charge a fee for, acceptance of support, warranty, indemnity,
30344
- or other liability obligations and/or rights consistent with this
30345
- License. However, in accepting such obligations, You may act only
30346
- on Your own behalf and on Your sole responsibility, not on behalf
30347
- of any other Contributor, and only if You agree to indemnify,
30348
- defend, and hold each Contributor harmless for any liability
30349
- incurred by, or claims asserted against, such Contributor by reason
30350
- of your accepting any such warranty or additional liability.
30351
-
30352
- END OF TERMS AND CONDITIONS
30353
-
30354
- Copyright 2020-2022 Jorge C. Leitão
30355
-
30356
- Licensed under the Apache License, Version 2.0 (the "License");
30357
- you may not use this file except in compliance with the License.
30358
- You may obtain a copy of the License at
30359
-
30360
- https://www.apache.org/licenses/LICENSE-2.0
30361
-
30362
- Unless required by applicable law or agreed to in writing, software
30363
- distributed under the License is distributed on an "AS IS" BASIS,
30364
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30365
- See the License for the specific language governing permissions and
30366
- limitations under the License.
30367
-
30368
- ================================================================================
30369
- polars-parquet-format src/thrift/varint/LICENSE
30370
- ================================================================================
30371
-
30372
- The MIT License (MIT)
30373
-
30374
- Copyright (c) 2016 Google Inc. (lewinb@google.com) -- though not an official
30375
- Google product or in any way related!
30376
- Copyright (c) 2018-2020 Lewin Bormann (lbo@spheniscida.de)
30377
- Copyright (c) 2022 Jorge Leitao (jorgecarleitao@gmail.com)
30378
-
30379
- Permission is hereby granted, free of charge, to any person obtaining a copy
30380
- of this software and associated documentation files (the "Software"), to
30381
- deal in the Software without restriction, including without limitation the
30382
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
30383
- sell copies of the Software, and to permit persons to whom the Software is
30384
- furnished to do so, subject to the following conditions:
30385
-
30386
- The above copyright notice and this permission notice shall be included in
30387
- all copies or substantial portions of the Software.
30388
-
30389
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30390
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30391
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30392
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30393
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30394
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30395
- IN THE SOFTWARE.
30396
-
30397
- ================================================================================
30398
- polars-plan LICENSE
29704
+ polars-ops LICENSE
29705
+ ================================================================================
29706
+
29707
+ Copyright (c) 2025 Ritchie Vink
29708
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
29709
+
29710
+ Permission is hereby granted, free of charge, to any person obtaining a copy
29711
+ of this software and associated documentation files (the "Software"), to deal
29712
+ in the Software without restriction, including without limitation the rights
29713
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
29714
+ copies of the Software, and to permit persons to whom the Software is
29715
+ furnished to do so, subject to the following conditions:
29716
+
29717
+ The above copyright notice and this permission notice shall be included in all
29718
+ copies or substantial portions of the Software.
29719
+
29720
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29721
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29722
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29723
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29724
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29725
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29726
+ SOFTWARE.
29727
+
29728
+ ================================================================================
29729
+ polars-parquet LICENSE
29730
+ ================================================================================
29731
+
29732
+ Some of the code in this crate is subject to the Apache 2 license below, as it
29733
+ was taken from the arrow2 and parquet2 Rust crate in October 2023. Later changes are subject
29734
+ to the MIT license in ../../LICENSE.
29735
+
29736
+
29737
+
29738
+ Apache License
29739
+ Version 2.0, January 2004
29740
+ https://www.apache.org/licenses/
29741
+
29742
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
29743
+
29744
+ 1. Definitions.
29745
+
29746
+ "License" shall mean the terms and conditions for use, reproduction,
29747
+ and distribution as defined by Sections 1 through 9 of this document.
29748
+
29749
+ "Licensor" shall mean the copyright owner or entity authorized by
29750
+ the copyright owner that is granting the License.
29751
+
29752
+ "Legal Entity" shall mean the union of the acting entity and all
29753
+ other entities that control, are controlled by, or are under common
29754
+ control with that entity. For the purposes of this definition,
29755
+ "control" means (i) the power, direct or indirect, to cause the
29756
+ direction or management of such entity, whether by contract or
29757
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
29758
+ outstanding shares, or (iii) beneficial ownership of such entity.
29759
+
29760
+ "You" (or "Your") shall mean an individual or Legal Entity
29761
+ exercising permissions granted by this License.
29762
+
29763
+ "Source" form shall mean the preferred form for making modifications,
29764
+ including but not limited to software source code, documentation
29765
+ source, and configuration files.
29766
+
29767
+ "Object" form shall mean any form resulting from mechanical
29768
+ transformation or translation of a Source form, including but
29769
+ not limited to compiled object code, generated documentation,
29770
+ and conversions to other media types.
29771
+
29772
+ "Work" shall mean the work of authorship, whether in Source or
29773
+ Object form, made available under the License, as indicated by a
29774
+ copyright notice that is included in or attached to the work
29775
+ (an example is provided in the Appendix below).
29776
+
29777
+ "Derivative Works" shall mean any work, whether in Source or Object
29778
+ form, that is based on (or derived from) the Work and for which the
29779
+ editorial revisions, annotations, elaborations, or other modifications
29780
+ represent, as a whole, an original work of authorship. For the purposes
29781
+ of this License, Derivative Works shall not include works that remain
29782
+ separable from, or merely link (or bind by name) to the interfaces of,
29783
+ the Work and Derivative Works thereof.
29784
+
29785
+ "Contribution" shall mean any work of authorship, including
29786
+ the original version of the Work and any modifications or additions
29787
+ to that Work or Derivative Works thereof, that is intentionally
29788
+ submitted to Licensor for inclusion in the Work by the copyright owner
29789
+ or by an individual or Legal Entity authorized to submit on behalf of
29790
+ the copyright owner. For the purposes of this definition, "submitted"
29791
+ means any form of electronic, verbal, or written communication sent
29792
+ to the Licensor or its representatives, including but not limited to
29793
+ communication on electronic mailing lists, source code control systems,
29794
+ and issue tracking systems that are managed by, or on behalf of, the
29795
+ Licensor for the purpose of discussing and improving the Work, but
29796
+ excluding communication that is conspicuously marked or otherwise
29797
+ designated in writing by the copyright owner as "Not a Contribution."
29798
+
29799
+ "Contributor" shall mean Licensor and any individual or Legal Entity
29800
+ on behalf of whom a Contribution has been received by Licensor and
29801
+ subsequently incorporated within the Work.
29802
+
29803
+ 2. Grant of Copyright License. Subject to the terms and conditions of
29804
+ this License, each Contributor hereby grants to You a perpetual,
29805
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
29806
+ copyright license to reproduce, prepare Derivative Works of,
29807
+ publicly display, publicly perform, sublicense, and distribute the
29808
+ Work and such Derivative Works in Source or Object form.
29809
+
29810
+ 3. Grant of Patent License. Subject to the terms and conditions of
29811
+ this License, each Contributor hereby grants to You a perpetual,
29812
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
29813
+ (except as stated in this section) patent license to make, have made,
29814
+ use, offer to sell, sell, import, and otherwise transfer the Work,
29815
+ where such license applies only to those patent claims licensable
29816
+ by such Contributor that are necessarily infringed by their
29817
+ Contribution(s) alone or by combination of their Contribution(s)
29818
+ with the Work to which such Contribution(s) was submitted. If You
29819
+ institute patent litigation against any entity (including a
29820
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
29821
+ or a Contribution incorporated within the Work constitutes direct
29822
+ or contributory patent infringement, then any patent licenses
29823
+ granted to You under this License for that Work shall terminate
29824
+ as of the date such litigation is filed.
29825
+
29826
+ 4. Redistribution. You may reproduce and distribute copies of the
29827
+ Work or Derivative Works thereof in any medium, with or without
29828
+ modifications, and in Source or Object form, provided that You
29829
+ meet the following conditions:
29830
+
29831
+ (a) You must give any other recipients of the Work or
29832
+ Derivative Works a copy of this License; and
29833
+
29834
+ (b) You must cause any modified files to carry prominent notices
29835
+ stating that You changed the files; and
29836
+
29837
+ (c) You must retain, in the Source form of any Derivative Works
29838
+ that You distribute, all copyright, patent, trademark, and
29839
+ attribution notices from the Source form of the Work,
29840
+ excluding those notices that do not pertain to any part of
29841
+ the Derivative Works; and
29842
+
29843
+ (d) If the Work includes a "NOTICE" text file as part of its
29844
+ distribution, then any Derivative Works that You distribute must
29845
+ include a readable copy of the attribution notices contained
29846
+ within such NOTICE file, excluding those notices that do not
29847
+ pertain to any part of the Derivative Works, in at least one
29848
+ of the following places: within a NOTICE text file distributed
29849
+ as part of the Derivative Works; within the Source form or
29850
+ documentation, if provided along with the Derivative Works; or,
29851
+ within a display generated by the Derivative Works, if and
29852
+ wherever such third-party notices normally appear. The contents
29853
+ of the NOTICE file are for informational purposes only and
29854
+ do not modify the License. You may add Your own attribution
29855
+ notices within Derivative Works that You distribute, alongside
29856
+ or as an addendum to the NOTICE text from the Work, provided
29857
+ that such additional attribution notices cannot be construed
29858
+ as modifying the License.
29859
+
29860
+ You may add Your own copyright statement to Your modifications and
29861
+ may provide additional or different license terms and conditions
29862
+ for use, reproduction, or distribution of Your modifications, or
29863
+ for any such Derivative Works as a whole, provided Your use,
29864
+ reproduction, and distribution of the Work otherwise complies with
29865
+ the conditions stated in this License.
29866
+
29867
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
29868
+ any Contribution intentionally submitted for inclusion in the Work
29869
+ by You to the Licensor shall be under the terms and conditions of
29870
+ this License, without any additional terms or conditions.
29871
+ Notwithstanding the above, nothing herein shall supersede or modify
29872
+ the terms of any separate license agreement you may have executed
29873
+ with Licensor regarding such Contributions.
29874
+
29875
+ 6. Trademarks. This License does not grant permission to use the trade
29876
+ names, trademarks, service marks, or product names of the Licensor,
29877
+ except as required for reasonable and customary use in describing the
29878
+ origin of the Work and reproducing the content of the NOTICE file.
29879
+
29880
+ 7. Disclaimer of Warranty. Unless required by applicable law or
29881
+ agreed to in writing, Licensor provides the Work (and each
29882
+ Contributor provides its Contributions) on an "AS IS" BASIS,
29883
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
29884
+ implied, including, without limitation, any warranties or conditions
29885
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
29886
+ PARTICULAR PURPOSE. You are solely responsible for determining the
29887
+ appropriateness of using or redistributing the Work and assume any
29888
+ risks associated with Your exercise of permissions under this License.
29889
+
29890
+ 8. Limitation of Liability. In no event and under no legal theory,
29891
+ whether in tort (including negligence), contract, or otherwise,
29892
+ unless required by applicable law (such as deliberate and grossly
29893
+ negligent acts) or agreed to in writing, shall any Contributor be
29894
+ liable to You for damages, including any direct, indirect, special,
29895
+ incidental, or consequential damages of any character arising as a
29896
+ result of this License or out of the use or inability to use the
29897
+ Work (including but not limited to damages for loss of goodwill,
29898
+ work stoppage, computer failure or malfunction, or any and all
29899
+ other commercial damages or losses), even if such Contributor
29900
+ has been advised of the possibility of such damages.
29901
+
29902
+ 9. Accepting Warranty or Additional Liability. While redistributing
29903
+ the Work or Derivative Works thereof, You may choose to offer,
29904
+ and charge a fee for, acceptance of support, warranty, indemnity,
29905
+ or other liability obligations and/or rights consistent with this
29906
+ License. However, in accepting such obligations, You may act only
29907
+ on Your own behalf and on Your sole responsibility, not on behalf
29908
+ of any other Contributor, and only if You agree to indemnify,
29909
+ defend, and hold each Contributor harmless for any liability
29910
+ incurred by, or claims asserted against, such Contributor by reason
29911
+ of your accepting any such warranty or additional liability.
29912
+
29913
+ END OF TERMS AND CONDITIONS
29914
+
29915
+ Copyright 2020-2022 Jorge C. Leitão
29916
+
29917
+ Licensed under the Apache License, Version 2.0 (the "License");
29918
+ you may not use this file except in compliance with the License.
29919
+ You may obtain a copy of the License at
29920
+
29921
+ https://www.apache.org/licenses/LICENSE-2.0
29922
+
29923
+ Unless required by applicable law or agreed to in writing, software
29924
+ distributed under the License is distributed on an "AS IS" BASIS,
29925
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29926
+ See the License for the specific language governing permissions and
29927
+ limitations under the License.
29928
+
29929
+ ================================================================================
29930
+ polars-parquet-format src/thrift/varint/LICENSE
29931
+ ================================================================================
29932
+
29933
+ The MIT License (MIT)
29934
+
29935
+ Copyright (c) 2016 Google Inc. (lewinb@google.com) -- though not an official
29936
+ Google product or in any way related!
29937
+ Copyright (c) 2018-2020 Lewin Bormann (lbo@spheniscida.de)
29938
+ Copyright (c) 2022 Jorge Leitao (jorgecarleitao@gmail.com)
29939
+
29940
+ Permission is hereby granted, free of charge, to any person obtaining a copy
29941
+ of this software and associated documentation files (the "Software"), to
29942
+ deal in the Software without restriction, including without limitation the
29943
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
29944
+ sell copies of the Software, and to permit persons to whom the Software is
29945
+ furnished to do so, subject to the following conditions:
29946
+
29947
+ The above copyright notice and this permission notice shall be included in
29948
+ all copies or substantial portions of the Software.
29949
+
29950
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29951
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29952
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29953
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29954
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29955
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
29956
+ IN THE SOFTWARE.
29957
+
29958
+ ================================================================================
29959
+ polars-plan LICENSE
30399
29960
  ================================================================================
30400
29961
 
30401
29962
  Copyright (c) 2025 Ritchie Vink
@@ -32156,670 +31717,9 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
32156
31717
  END OF TERMS AND CONDITIONS
32157
31718
 
32158
31719
  ================================================================================
32159
- quote LICENSE-MIT
32160
- ================================================================================
32161
-
32162
- Permission is hereby granted, free of charge, to any
32163
- person obtaining a copy of this software and associated
32164
- documentation files (the "Software"), to deal in the
32165
- Software without restriction, including without
32166
- limitation the rights to use, copy, modify, merge,
32167
- publish, distribute, sublicense, and/or sell copies of
32168
- the Software, and to permit persons to whom the Software
32169
- is furnished to do so, subject to the following
32170
- conditions:
32171
-
32172
- The above copyright notice and this permission notice
32173
- shall be included in all copies or substantial portions
32174
- of the Software.
32175
-
32176
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
32177
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
32178
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
32179
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
32180
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
32181
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32182
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
32183
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32184
- DEALINGS IN THE SOFTWARE.
32185
-
32186
- ================================================================================
32187
- rand v0.8.5 LICENSE-APACHE
32188
- ================================================================================
32189
-
32190
- Apache License
32191
- Version 2.0, January 2004
32192
- https://www.apache.org/licenses/
32193
-
32194
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
32195
-
32196
- 1. Definitions.
32197
-
32198
- "License" shall mean the terms and conditions for use, reproduction,
32199
- and distribution as defined by Sections 1 through 9 of this document.
32200
-
32201
- "Licensor" shall mean the copyright owner or entity authorized by
32202
- the copyright owner that is granting the License.
32203
-
32204
- "Legal Entity" shall mean the union of the acting entity and all
32205
- other entities that control, are controlled by, or are under common
32206
- control with that entity. For the purposes of this definition,
32207
- "control" means (i) the power, direct or indirect, to cause the
32208
- direction or management of such entity, whether by contract or
32209
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
32210
- outstanding shares, or (iii) beneficial ownership of such entity.
32211
-
32212
- "You" (or "Your") shall mean an individual or Legal Entity
32213
- exercising permissions granted by this License.
32214
-
32215
- "Source" form shall mean the preferred form for making modifications,
32216
- including but not limited to software source code, documentation
32217
- source, and configuration files.
32218
-
32219
- "Object" form shall mean any form resulting from mechanical
32220
- transformation or translation of a Source form, including but
32221
- not limited to compiled object code, generated documentation,
32222
- and conversions to other media types.
32223
-
32224
- "Work" shall mean the work of authorship, whether in Source or
32225
- Object form, made available under the License, as indicated by a
32226
- copyright notice that is included in or attached to the work
32227
- (an example is provided in the Appendix below).
32228
-
32229
- "Derivative Works" shall mean any work, whether in Source or Object
32230
- form, that is based on (or derived from) the Work and for which the
32231
- editorial revisions, annotations, elaborations, or other modifications
32232
- represent, as a whole, an original work of authorship. For the purposes
32233
- of this License, Derivative Works shall not include works that remain
32234
- separable from, or merely link (or bind by name) to the interfaces of,
32235
- the Work and Derivative Works thereof.
32236
-
32237
- "Contribution" shall mean any work of authorship, including
32238
- the original version of the Work and any modifications or additions
32239
- to that Work or Derivative Works thereof, that is intentionally
32240
- submitted to Licensor for inclusion in the Work by the copyright owner
32241
- or by an individual or Legal Entity authorized to submit on behalf of
32242
- the copyright owner. For the purposes of this definition, "submitted"
32243
- means any form of electronic, verbal, or written communication sent
32244
- to the Licensor or its representatives, including but not limited to
32245
- communication on electronic mailing lists, source code control systems,
32246
- and issue tracking systems that are managed by, or on behalf of, the
32247
- Licensor for the purpose of discussing and improving the Work, but
32248
- excluding communication that is conspicuously marked or otherwise
32249
- designated in writing by the copyright owner as "Not a Contribution."
32250
-
32251
- "Contributor" shall mean Licensor and any individual or Legal Entity
32252
- on behalf of whom a Contribution has been received by Licensor and
32253
- subsequently incorporated within the Work.
32254
-
32255
- 2. Grant of Copyright License. Subject to the terms and conditions of
32256
- this License, each Contributor hereby grants to You a perpetual,
32257
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
32258
- copyright license to reproduce, prepare Derivative Works of,
32259
- publicly display, publicly perform, sublicense, and distribute the
32260
- Work and such Derivative Works in Source or Object form.
32261
-
32262
- 3. Grant of Patent License. Subject to the terms and conditions of
32263
- this License, each Contributor hereby grants to You a perpetual,
32264
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
32265
- (except as stated in this section) patent license to make, have made,
32266
- use, offer to sell, sell, import, and otherwise transfer the Work,
32267
- where such license applies only to those patent claims licensable
32268
- by such Contributor that are necessarily infringed by their
32269
- Contribution(s) alone or by combination of their Contribution(s)
32270
- with the Work to which such Contribution(s) was submitted. If You
32271
- institute patent litigation against any entity (including a
32272
- cross-claim or counterclaim in a lawsuit) alleging that the Work
32273
- or a Contribution incorporated within the Work constitutes direct
32274
- or contributory patent infringement, then any patent licenses
32275
- granted to You under this License for that Work shall terminate
32276
- as of the date such litigation is filed.
32277
-
32278
- 4. Redistribution. You may reproduce and distribute copies of the
32279
- Work or Derivative Works thereof in any medium, with or without
32280
- modifications, and in Source or Object form, provided that You
32281
- meet the following conditions:
32282
-
32283
- (a) You must give any other recipients of the Work or
32284
- Derivative Works a copy of this License; and
32285
-
32286
- (b) You must cause any modified files to carry prominent notices
32287
- stating that You changed the files; and
32288
-
32289
- (c) You must retain, in the Source form of any Derivative Works
32290
- that You distribute, all copyright, patent, trademark, and
32291
- attribution notices from the Source form of the Work,
32292
- excluding those notices that do not pertain to any part of
32293
- the Derivative Works; and
32294
-
32295
- (d) If the Work includes a "NOTICE" text file as part of its
32296
- distribution, then any Derivative Works that You distribute must
32297
- include a readable copy of the attribution notices contained
32298
- within such NOTICE file, excluding those notices that do not
32299
- pertain to any part of the Derivative Works, in at least one
32300
- of the following places: within a NOTICE text file distributed
32301
- as part of the Derivative Works; within the Source form or
32302
- documentation, if provided along with the Derivative Works; or,
32303
- within a display generated by the Derivative Works, if and
32304
- wherever such third-party notices normally appear. The contents
32305
- of the NOTICE file are for informational purposes only and
32306
- do not modify the License. You may add Your own attribution
32307
- notices within Derivative Works that You distribute, alongside
32308
- or as an addendum to the NOTICE text from the Work, provided
32309
- that such additional attribution notices cannot be construed
32310
- as modifying the License.
32311
-
32312
- You may add Your own copyright statement to Your modifications and
32313
- may provide additional or different license terms and conditions
32314
- for use, reproduction, or distribution of Your modifications, or
32315
- for any such Derivative Works as a whole, provided Your use,
32316
- reproduction, and distribution of the Work otherwise complies with
32317
- the conditions stated in this License.
32318
-
32319
- 5. Submission of Contributions. Unless You explicitly state otherwise,
32320
- any Contribution intentionally submitted for inclusion in the Work
32321
- by You to the Licensor shall be under the terms and conditions of
32322
- this License, without any additional terms or conditions.
32323
- Notwithstanding the above, nothing herein shall supersede or modify
32324
- the terms of any separate license agreement you may have executed
32325
- with Licensor regarding such Contributions.
32326
-
32327
- 6. Trademarks. This License does not grant permission to use the trade
32328
- names, trademarks, service marks, or product names of the Licensor,
32329
- except as required for reasonable and customary use in describing the
32330
- origin of the Work and reproducing the content of the NOTICE file.
32331
-
32332
- 7. Disclaimer of Warranty. Unless required by applicable law or
32333
- agreed to in writing, Licensor provides the Work (and each
32334
- Contributor provides its Contributions) on an "AS IS" BASIS,
32335
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
32336
- implied, including, without limitation, any warranties or conditions
32337
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
32338
- PARTICULAR PURPOSE. You are solely responsible for determining the
32339
- appropriateness of using or redistributing the Work and assume any
32340
- risks associated with Your exercise of permissions under this License.
32341
-
32342
- 8. Limitation of Liability. In no event and under no legal theory,
32343
- whether in tort (including negligence), contract, or otherwise,
32344
- unless required by applicable law (such as deliberate and grossly
32345
- negligent acts) or agreed to in writing, shall any Contributor be
32346
- liable to You for damages, including any direct, indirect, special,
32347
- incidental, or consequential damages of any character arising as a
32348
- result of this License or out of the use or inability to use the
32349
- Work (including but not limited to damages for loss of goodwill,
32350
- work stoppage, computer failure or malfunction, or any and all
32351
- other commercial damages or losses), even if such Contributor
32352
- has been advised of the possibility of such damages.
32353
-
32354
- 9. Accepting Warranty or Additional Liability. While redistributing
32355
- the Work or Derivative Works thereof, You may choose to offer,
32356
- and charge a fee for, acceptance of support, warranty, indemnity,
32357
- or other liability obligations and/or rights consistent with this
32358
- License. However, in accepting such obligations, You may act only
32359
- on Your own behalf and on Your sole responsibility, not on behalf
32360
- of any other Contributor, and only if You agree to indemnify,
32361
- defend, and hold each Contributor harmless for any liability
32362
- incurred by, or claims asserted against, such Contributor by reason
32363
- of your accepting any such warranty or additional liability.
32364
-
32365
- END OF TERMS AND CONDITIONS
32366
-
32367
- ================================================================================
32368
- rand v0.8.5 LICENSE-MIT
32369
- ================================================================================
32370
-
32371
- Copyright 2018 Developers of the Rand project
32372
- Copyright (c) 2014 The Rust Project Developers
32373
-
32374
- Permission is hereby granted, free of charge, to any
32375
- person obtaining a copy of this software and associated
32376
- documentation files (the "Software"), to deal in the
32377
- Software without restriction, including without
32378
- limitation the rights to use, copy, modify, merge,
32379
- publish, distribute, sublicense, and/or sell copies of
32380
- the Software, and to permit persons to whom the Software
32381
- is furnished to do so, subject to the following
32382
- conditions:
32383
-
32384
- The above copyright notice and this permission notice
32385
- shall be included in all copies or substantial portions
32386
- of the Software.
32387
-
32388
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
32389
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
32390
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
32391
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
32392
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
32393
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32394
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
32395
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32396
- DEALINGS IN THE SOFTWARE.
32397
-
32398
- ================================================================================
32399
- rand v0.9.1 LICENSE-APACHE
32400
- ================================================================================
32401
-
32402
- Apache License
32403
- Version 2.0, January 2004
32404
- https://www.apache.org/licenses/
32405
-
32406
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
32407
-
32408
- 1. Definitions.
32409
-
32410
- "License" shall mean the terms and conditions for use, reproduction,
32411
- and distribution as defined by Sections 1 through 9 of this document.
32412
-
32413
- "Licensor" shall mean the copyright owner or entity authorized by
32414
- the copyright owner that is granting the License.
32415
-
32416
- "Legal Entity" shall mean the union of the acting entity and all
32417
- other entities that control, are controlled by, or are under common
32418
- control with that entity. For the purposes of this definition,
32419
- "control" means (i) the power, direct or indirect, to cause the
32420
- direction or management of such entity, whether by contract or
32421
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
32422
- outstanding shares, or (iii) beneficial ownership of such entity.
32423
-
32424
- "You" (or "Your") shall mean an individual or Legal Entity
32425
- exercising permissions granted by this License.
32426
-
32427
- "Source" form shall mean the preferred form for making modifications,
32428
- including but not limited to software source code, documentation
32429
- source, and configuration files.
32430
-
32431
- "Object" form shall mean any form resulting from mechanical
32432
- transformation or translation of a Source form, including but
32433
- not limited to compiled object code, generated documentation,
32434
- and conversions to other media types.
32435
-
32436
- "Work" shall mean the work of authorship, whether in Source or
32437
- Object form, made available under the License, as indicated by a
32438
- copyright notice that is included in or attached to the work
32439
- (an example is provided in the Appendix below).
32440
-
32441
- "Derivative Works" shall mean any work, whether in Source or Object
32442
- form, that is based on (or derived from) the Work and for which the
32443
- editorial revisions, annotations, elaborations, or other modifications
32444
- represent, as a whole, an original work of authorship. For the purposes
32445
- of this License, Derivative Works shall not include works that remain
32446
- separable from, or merely link (or bind by name) to the interfaces of,
32447
- the Work and Derivative Works thereof.
32448
-
32449
- "Contribution" shall mean any work of authorship, including
32450
- the original version of the Work and any modifications or additions
32451
- to that Work or Derivative Works thereof, that is intentionally
32452
- submitted to Licensor for inclusion in the Work by the copyright owner
32453
- or by an individual or Legal Entity authorized to submit on behalf of
32454
- the copyright owner. For the purposes of this definition, "submitted"
32455
- means any form of electronic, verbal, or written communication sent
32456
- to the Licensor or its representatives, including but not limited to
32457
- communication on electronic mailing lists, source code control systems,
32458
- and issue tracking systems that are managed by, or on behalf of, the
32459
- Licensor for the purpose of discussing and improving the Work, but
32460
- excluding communication that is conspicuously marked or otherwise
32461
- designated in writing by the copyright owner as "Not a Contribution."
32462
-
32463
- "Contributor" shall mean Licensor and any individual or Legal Entity
32464
- on behalf of whom a Contribution has been received by Licensor and
32465
- subsequently incorporated within the Work.
32466
-
32467
- 2. Grant of Copyright License. Subject to the terms and conditions of
32468
- this License, each Contributor hereby grants to You a perpetual,
32469
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
32470
- copyright license to reproduce, prepare Derivative Works of,
32471
- publicly display, publicly perform, sublicense, and distribute the
32472
- Work and such Derivative Works in Source or Object form.
32473
-
32474
- 3. Grant of Patent License. Subject to the terms and conditions of
32475
- this License, each Contributor hereby grants to You a perpetual,
32476
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
32477
- (except as stated in this section) patent license to make, have made,
32478
- use, offer to sell, sell, import, and otherwise transfer the Work,
32479
- where such license applies only to those patent claims licensable
32480
- by such Contributor that are necessarily infringed by their
32481
- Contribution(s) alone or by combination of their Contribution(s)
32482
- with the Work to which such Contribution(s) was submitted. If You
32483
- institute patent litigation against any entity (including a
32484
- cross-claim or counterclaim in a lawsuit) alleging that the Work
32485
- or a Contribution incorporated within the Work constitutes direct
32486
- or contributory patent infringement, then any patent licenses
32487
- granted to You under this License for that Work shall terminate
32488
- as of the date such litigation is filed.
32489
-
32490
- 4. Redistribution. You may reproduce and distribute copies of the
32491
- Work or Derivative Works thereof in any medium, with or without
32492
- modifications, and in Source or Object form, provided that You
32493
- meet the following conditions:
32494
-
32495
- (a) You must give any other recipients of the Work or
32496
- Derivative Works a copy of this License; and
32497
-
32498
- (b) You must cause any modified files to carry prominent notices
32499
- stating that You changed the files; and
32500
-
32501
- (c) You must retain, in the Source form of any Derivative Works
32502
- that You distribute, all copyright, patent, trademark, and
32503
- attribution notices from the Source form of the Work,
32504
- excluding those notices that do not pertain to any part of
32505
- the Derivative Works; and
32506
-
32507
- (d) If the Work includes a "NOTICE" text file as part of its
32508
- distribution, then any Derivative Works that You distribute must
32509
- include a readable copy of the attribution notices contained
32510
- within such NOTICE file, excluding those notices that do not
32511
- pertain to any part of the Derivative Works, in at least one
32512
- of the following places: within a NOTICE text file distributed
32513
- as part of the Derivative Works; within the Source form or
32514
- documentation, if provided along with the Derivative Works; or,
32515
- within a display generated by the Derivative Works, if and
32516
- wherever such third-party notices normally appear. The contents
32517
- of the NOTICE file are for informational purposes only and
32518
- do not modify the License. You may add Your own attribution
32519
- notices within Derivative Works that You distribute, alongside
32520
- or as an addendum to the NOTICE text from the Work, provided
32521
- that such additional attribution notices cannot be construed
32522
- as modifying the License.
32523
-
32524
- You may add Your own copyright statement to Your modifications and
32525
- may provide additional or different license terms and conditions
32526
- for use, reproduction, or distribution of Your modifications, or
32527
- for any such Derivative Works as a whole, provided Your use,
32528
- reproduction, and distribution of the Work otherwise complies with
32529
- the conditions stated in this License.
32530
-
32531
- 5. Submission of Contributions. Unless You explicitly state otherwise,
32532
- any Contribution intentionally submitted for inclusion in the Work
32533
- by You to the Licensor shall be under the terms and conditions of
32534
- this License, without any additional terms or conditions.
32535
- Notwithstanding the above, nothing herein shall supersede or modify
32536
- the terms of any separate license agreement you may have executed
32537
- with Licensor regarding such Contributions.
32538
-
32539
- 6. Trademarks. This License does not grant permission to use the trade
32540
- names, trademarks, service marks, or product names of the Licensor,
32541
- except as required for reasonable and customary use in describing the
32542
- origin of the Work and reproducing the content of the NOTICE file.
32543
-
32544
- 7. Disclaimer of Warranty. Unless required by applicable law or
32545
- agreed to in writing, Licensor provides the Work (and each
32546
- Contributor provides its Contributions) on an "AS IS" BASIS,
32547
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
32548
- implied, including, without limitation, any warranties or conditions
32549
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
32550
- PARTICULAR PURPOSE. You are solely responsible for determining the
32551
- appropriateness of using or redistributing the Work and assume any
32552
- risks associated with Your exercise of permissions under this License.
32553
-
32554
- 8. Limitation of Liability. In no event and under no legal theory,
32555
- whether in tort (including negligence), contract, or otherwise,
32556
- unless required by applicable law (such as deliberate and grossly
32557
- negligent acts) or agreed to in writing, shall any Contributor be
32558
- liable to You for damages, including any direct, indirect, special,
32559
- incidental, or consequential damages of any character arising as a
32560
- result of this License or out of the use or inability to use the
32561
- Work (including but not limited to damages for loss of goodwill,
32562
- work stoppage, computer failure or malfunction, or any and all
32563
- other commercial damages or losses), even if such Contributor
32564
- has been advised of the possibility of such damages.
32565
-
32566
- 9. Accepting Warranty or Additional Liability. While redistributing
32567
- the Work or Derivative Works thereof, You may choose to offer,
32568
- and charge a fee for, acceptance of support, warranty, indemnity,
32569
- or other liability obligations and/or rights consistent with this
32570
- License. However, in accepting such obligations, You may act only
32571
- on Your own behalf and on Your sole responsibility, not on behalf
32572
- of any other Contributor, and only if You agree to indemnify,
32573
- defend, and hold each Contributor harmless for any liability
32574
- incurred by, or claims asserted against, such Contributor by reason
32575
- of your accepting any such warranty or additional liability.
32576
-
32577
- END OF TERMS AND CONDITIONS
32578
-
32579
- ================================================================================
32580
- rand v0.9.1 LICENSE-MIT
32581
- ================================================================================
32582
-
32583
- Copyright 2018 Developers of the Rand project
32584
- Copyright (c) 2014 The Rust Project Developers
32585
-
32586
- Permission is hereby granted, free of charge, to any
32587
- person obtaining a copy of this software and associated
32588
- documentation files (the "Software"), to deal in the
32589
- Software without restriction, including without
32590
- limitation the rights to use, copy, modify, merge,
32591
- publish, distribute, sublicense, and/or sell copies of
32592
- the Software, and to permit persons to whom the Software
32593
- is furnished to do so, subject to the following
32594
- conditions:
32595
-
32596
- The above copyright notice and this permission notice
32597
- shall be included in all copies or substantial portions
32598
- of the Software.
32599
-
32600
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
32601
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
32602
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
32603
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
32604
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
32605
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32606
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
32607
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32608
- DEALINGS IN THE SOFTWARE.
32609
-
32610
- ================================================================================
32611
- rand_chacha v0.3.1 LICENSE-APACHE
32612
- ================================================================================
32613
-
32614
- Apache License
32615
- Version 2.0, January 2004
32616
- https://www.apache.org/licenses/
32617
-
32618
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
32619
-
32620
- 1. Definitions.
32621
-
32622
- "License" shall mean the terms and conditions for use, reproduction,
32623
- and distribution as defined by Sections 1 through 9 of this document.
32624
-
32625
- "Licensor" shall mean the copyright owner or entity authorized by
32626
- the copyright owner that is granting the License.
32627
-
32628
- "Legal Entity" shall mean the union of the acting entity and all
32629
- other entities that control, are controlled by, or are under common
32630
- control with that entity. For the purposes of this definition,
32631
- "control" means (i) the power, direct or indirect, to cause the
32632
- direction or management of such entity, whether by contract or
32633
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
32634
- outstanding shares, or (iii) beneficial ownership of such entity.
32635
-
32636
- "You" (or "Your") shall mean an individual or Legal Entity
32637
- exercising permissions granted by this License.
32638
-
32639
- "Source" form shall mean the preferred form for making modifications,
32640
- including but not limited to software source code, documentation
32641
- source, and configuration files.
32642
-
32643
- "Object" form shall mean any form resulting from mechanical
32644
- transformation or translation of a Source form, including but
32645
- not limited to compiled object code, generated documentation,
32646
- and conversions to other media types.
32647
-
32648
- "Work" shall mean the work of authorship, whether in Source or
32649
- Object form, made available under the License, as indicated by a
32650
- copyright notice that is included in or attached to the work
32651
- (an example is provided in the Appendix below).
32652
-
32653
- "Derivative Works" shall mean any work, whether in Source or Object
32654
- form, that is based on (or derived from) the Work and for which the
32655
- editorial revisions, annotations, elaborations, or other modifications
32656
- represent, as a whole, an original work of authorship. For the purposes
32657
- of this License, Derivative Works shall not include works that remain
32658
- separable from, or merely link (or bind by name) to the interfaces of,
32659
- the Work and Derivative Works thereof.
32660
-
32661
- "Contribution" shall mean any work of authorship, including
32662
- the original version of the Work and any modifications or additions
32663
- to that Work or Derivative Works thereof, that is intentionally
32664
- submitted to Licensor for inclusion in the Work by the copyright owner
32665
- or by an individual or Legal Entity authorized to submit on behalf of
32666
- the copyright owner. For the purposes of this definition, "submitted"
32667
- means any form of electronic, verbal, or written communication sent
32668
- to the Licensor or its representatives, including but not limited to
32669
- communication on electronic mailing lists, source code control systems,
32670
- and issue tracking systems that are managed by, or on behalf of, the
32671
- Licensor for the purpose of discussing and improving the Work, but
32672
- excluding communication that is conspicuously marked or otherwise
32673
- designated in writing by the copyright owner as "Not a Contribution."
32674
-
32675
- "Contributor" shall mean Licensor and any individual or Legal Entity
32676
- on behalf of whom a Contribution has been received by Licensor and
32677
- subsequently incorporated within the Work.
32678
-
32679
- 2. Grant of Copyright License. Subject to the terms and conditions of
32680
- this License, each Contributor hereby grants to You a perpetual,
32681
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
32682
- copyright license to reproduce, prepare Derivative Works of,
32683
- publicly display, publicly perform, sublicense, and distribute the
32684
- Work and such Derivative Works in Source or Object form.
32685
-
32686
- 3. Grant of Patent License. Subject to the terms and conditions of
32687
- this License, each Contributor hereby grants to You a perpetual,
32688
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
32689
- (except as stated in this section) patent license to make, have made,
32690
- use, offer to sell, sell, import, and otherwise transfer the Work,
32691
- where such license applies only to those patent claims licensable
32692
- by such Contributor that are necessarily infringed by their
32693
- Contribution(s) alone or by combination of their Contribution(s)
32694
- with the Work to which such Contribution(s) was submitted. If You
32695
- institute patent litigation against any entity (including a
32696
- cross-claim or counterclaim in a lawsuit) alleging that the Work
32697
- or a Contribution incorporated within the Work constitutes direct
32698
- or contributory patent infringement, then any patent licenses
32699
- granted to You under this License for that Work shall terminate
32700
- as of the date such litigation is filed.
32701
-
32702
- 4. Redistribution. You may reproduce and distribute copies of the
32703
- Work or Derivative Works thereof in any medium, with or without
32704
- modifications, and in Source or Object form, provided that You
32705
- meet the following conditions:
32706
-
32707
- (a) You must give any other recipients of the Work or
32708
- Derivative Works a copy of this License; and
32709
-
32710
- (b) You must cause any modified files to carry prominent notices
32711
- stating that You changed the files; and
32712
-
32713
- (c) You must retain, in the Source form of any Derivative Works
32714
- that You distribute, all copyright, patent, trademark, and
32715
- attribution notices from the Source form of the Work,
32716
- excluding those notices that do not pertain to any part of
32717
- the Derivative Works; and
32718
-
32719
- (d) If the Work includes a "NOTICE" text file as part of its
32720
- distribution, then any Derivative Works that You distribute must
32721
- include a readable copy of the attribution notices contained
32722
- within such NOTICE file, excluding those notices that do not
32723
- pertain to any part of the Derivative Works, in at least one
32724
- of the following places: within a NOTICE text file distributed
32725
- as part of the Derivative Works; within the Source form or
32726
- documentation, if provided along with the Derivative Works; or,
32727
- within a display generated by the Derivative Works, if and
32728
- wherever such third-party notices normally appear. The contents
32729
- of the NOTICE file are for informational purposes only and
32730
- do not modify the License. You may add Your own attribution
32731
- notices within Derivative Works that You distribute, alongside
32732
- or as an addendum to the NOTICE text from the Work, provided
32733
- that such additional attribution notices cannot be construed
32734
- as modifying the License.
32735
-
32736
- You may add Your own copyright statement to Your modifications and
32737
- may provide additional or different license terms and conditions
32738
- for use, reproduction, or distribution of Your modifications, or
32739
- for any such Derivative Works as a whole, provided Your use,
32740
- reproduction, and distribution of the Work otherwise complies with
32741
- the conditions stated in this License.
32742
-
32743
- 5. Submission of Contributions. Unless You explicitly state otherwise,
32744
- any Contribution intentionally submitted for inclusion in the Work
32745
- by You to the Licensor shall be under the terms and conditions of
32746
- this License, without any additional terms or conditions.
32747
- Notwithstanding the above, nothing herein shall supersede or modify
32748
- the terms of any separate license agreement you may have executed
32749
- with Licensor regarding such Contributions.
32750
-
32751
- 6. Trademarks. This License does not grant permission to use the trade
32752
- names, trademarks, service marks, or product names of the Licensor,
32753
- except as required for reasonable and customary use in describing the
32754
- origin of the Work and reproducing the content of the NOTICE file.
32755
-
32756
- 7. Disclaimer of Warranty. Unless required by applicable law or
32757
- agreed to in writing, Licensor provides the Work (and each
32758
- Contributor provides its Contributions) on an "AS IS" BASIS,
32759
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
32760
- implied, including, without limitation, any warranties or conditions
32761
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
32762
- PARTICULAR PURPOSE. You are solely responsible for determining the
32763
- appropriateness of using or redistributing the Work and assume any
32764
- risks associated with Your exercise of permissions under this License.
32765
-
32766
- 8. Limitation of Liability. In no event and under no legal theory,
32767
- whether in tort (including negligence), contract, or otherwise,
32768
- unless required by applicable law (such as deliberate and grossly
32769
- negligent acts) or agreed to in writing, shall any Contributor be
32770
- liable to You for damages, including any direct, indirect, special,
32771
- incidental, or consequential damages of any character arising as a
32772
- result of this License or out of the use or inability to use the
32773
- Work (including but not limited to damages for loss of goodwill,
32774
- work stoppage, computer failure or malfunction, or any and all
32775
- other commercial damages or losses), even if such Contributor
32776
- has been advised of the possibility of such damages.
32777
-
32778
- 9. Accepting Warranty or Additional Liability. While redistributing
32779
- the Work or Derivative Works thereof, You may choose to offer,
32780
- and charge a fee for, acceptance of support, warranty, indemnity,
32781
- or other liability obligations and/or rights consistent with this
32782
- License. However, in accepting such obligations, You may act only
32783
- on Your own behalf and on Your sole responsibility, not on behalf
32784
- of any other Contributor, and only if You agree to indemnify,
32785
- defend, and hold each Contributor harmless for any liability
32786
- incurred by, or claims asserted against, such Contributor by reason
32787
- of your accepting any such warranty or additional liability.
32788
-
32789
- END OF TERMS AND CONDITIONS
32790
-
32791
- APPENDIX: How to apply the Apache License to your work.
32792
-
32793
- To apply the Apache License to your work, attach the following
32794
- boilerplate notice, with the fields enclosed by brackets "[]"
32795
- replaced with your own identifying information. (Don't include
32796
- the brackets!) The text should be enclosed in the appropriate
32797
- comment syntax for the file format. We also recommend that a
32798
- file or class name and description of purpose be included on the
32799
- same "printed page" as the copyright notice for easier
32800
- identification within third-party archives.
32801
-
32802
- Copyright [yyyy] [name of copyright owner]
32803
-
32804
- Licensed under the Apache License, Version 2.0 (the "License");
32805
- you may not use this file except in compliance with the License.
32806
- You may obtain a copy of the License at
32807
-
32808
- https://www.apache.org/licenses/LICENSE-2.0
32809
-
32810
- Unless required by applicable law or agreed to in writing, software
32811
- distributed under the License is distributed on an "AS IS" BASIS,
32812
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32813
- See the License for the specific language governing permissions and
32814
- limitations under the License.
32815
-
32816
- ================================================================================
32817
- rand_chacha v0.3.1 LICENSE-MIT
31720
+ quote LICENSE-MIT
32818
31721
  ================================================================================
32819
31722
 
32820
- Copyright 2018 Developers of the Rand project
32821
- Copyright (c) 2014 The Rust Project Developers
32822
-
32823
31723
  Permission is hereby granted, free of charge, to any
32824
31724
  person obtaining a copy of this software and associated
32825
31725
  documentation files (the "Software"), to deal in the
@@ -32845,7 +31745,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32845
31745
  DEALINGS IN THE SOFTWARE.
32846
31746
 
32847
31747
  ================================================================================
32848
- rand_chacha v0.9.0 LICENSE-APACHE
31748
+ rand LICENSE-APACHE
32849
31749
  ================================================================================
32850
31750
 
32851
31751
  Apache License
@@ -33026,7 +31926,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
33026
31926
  END OF TERMS AND CONDITIONS
33027
31927
 
33028
31928
  ================================================================================
33029
- rand_chacha v0.9.0 LICENSE-MIT
31929
+ rand LICENSE-MIT
33030
31930
  ================================================================================
33031
31931
 
33032
31932
  Copyright 2018 Developers of the Rand project
@@ -33057,7 +31957,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
33057
31957
  DEALINGS IN THE SOFTWARE.
33058
31958
 
33059
31959
  ================================================================================
33060
- rand_core v0.6.4 LICENSE-APACHE
31960
+ rand_chacha LICENSE-APACHE
33061
31961
  ================================================================================
33062
31962
 
33063
31963
  Apache License
@@ -33237,19 +32137,8 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
33237
32137
 
33238
32138
  END OF TERMS AND CONDITIONS
33239
32139
 
33240
- APPENDIX: How to apply the Apache License to your work.
33241
-
33242
- To apply the Apache License to your work, attach the following
33243
- boilerplate notice, with the fields enclosed by brackets "[]"
33244
- replaced with your own identifying information. (Don't include
33245
- the brackets!) The text should be enclosed in the appropriate
33246
- comment syntax for the file format. We also recommend that a
33247
- file or class name and description of purpose be included on the
33248
- same "printed page" as the copyright notice for easier
33249
- identification within third-party archives.
33250
-
33251
32140
  ================================================================================
33252
- rand_core v0.6.4 LICENSE-MIT
32141
+ rand_chacha LICENSE-MIT
33253
32142
  ================================================================================
33254
32143
 
33255
32144
  Copyright 2018 Developers of the Rand project
@@ -33280,7 +32169,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
33280
32169
  DEALINGS IN THE SOFTWARE.
33281
32170
 
33282
32171
  ================================================================================
33283
- rand_core v0.9.3 LICENSE-APACHE
32172
+ rand_core LICENSE-APACHE
33284
32173
  ================================================================================
33285
32174
 
33286
32175
  Apache License
@@ -33472,7 +32361,7 @@ APPENDIX: How to apply the Apache License to your work.
33472
32361
  identification within third-party archives.
33473
32362
 
33474
32363
  ================================================================================
33475
- rand_core v0.9.3 LICENSE-MIT
32364
+ rand_core LICENSE-MIT
33476
32365
  ================================================================================
33477
32366
 
33478
32367
  Copyright 2018 Developers of the Rand project
@@ -40105,58 +38994,476 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
40105
38994
 
40106
38995
  END OF TERMS AND CONDITIONS
40107
38996
 
40108
- APPENDIX: How to apply the Apache License to your work.
40109
-
40110
- To apply the Apache License to your work, attach the following
40111
- boilerplate notice, with the fields enclosed by brackets "[]"
40112
- replaced with your own identifying information. (Don't include
40113
- the brackets!) The text should be enclosed in the appropriate
40114
- comment syntax for the file format. We also recommend that a
40115
- file or class name and description of purpose be included on the
40116
- same "printed page" as the copyright notice for easier
40117
- identification within third-party archives.
40118
-
40119
- 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
+ ================================================================================
40120
39231
 
40121
- Licensed under the Apache License, Version 2.0 (the "License");
40122
- you may not use this file except in compliance with the License.
40123
- You may obtain a copy of the License at
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:
40124
39241
 
40125
- http://www.apache.org/licenses/LICENSE-2.0
39242
+ The above copyright notice and this permission notice
39243
+ shall be included in all copies or substantial portions
39244
+ of the Software.
40126
39245
 
40127
- Unless required by applicable law or agreed to in writing, software
40128
- distributed under the License is distributed on an "AS IS" BASIS,
40129
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40130
- See the License for the specific language governing permissions and
40131
- limitations under the License.
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.
40132
39255
 
40133
39256
  ================================================================================
40134
- security-framework-sys LICENSE-MIT
39257
+ serde LICENSE-APACHE
40135
39258
  ================================================================================
40136
39259
 
40137
- The MIT License (MIT)
39260
+ Apache License
39261
+ Version 2.0, January 2004
39262
+ http://www.apache.org/licenses/
40138
39263
 
40139
- Copyright (c) 2015 Steven Fackler
39264
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
40140
39265
 
40141
- Permission is hereby granted, free of charge, to any person obtaining a copy of
40142
- this software and associated documentation files (the "Software"), to deal in
40143
- the Software without restriction, including without limitation the rights to
40144
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
40145
- the Software, and to permit persons to whom the Software is furnished to do so,
40146
- subject to the following conditions:
39266
+ 1. Definitions.
40147
39267
 
40148
- The above copyright notice and this permission notice shall be included in all
40149
- copies or substantial portions of the Software.
39268
+ "License" shall mean the terms and conditions for use, reproduction,
39269
+ and distribution as defined by Sections 1 through 9 of this document.
40150
39270
 
40151
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40152
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
40153
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
40154
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
40155
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
40156
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
40157
39436
 
40158
39437
  ================================================================================
40159
- seq-macro LICENSE-APACHE
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
40160
39467
  ================================================================================
40161
39468
 
40162
39469
  Apache License
@@ -40337,7 +39644,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
40337
39644
  END OF TERMS AND CONDITIONS
40338
39645
 
40339
39646
  ================================================================================
40340
- seq-macro LICENSE-MIT
39647
+ serde_derive LICENSE-MIT
40341
39648
  ================================================================================
40342
39649
 
40343
39650
  Permission is hereby granted, free of charge, to any
@@ -40365,7 +39672,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
40365
39672
  DEALINGS IN THE SOFTWARE.
40366
39673
 
40367
39674
  ================================================================================
40368
- serde LICENSE-APACHE
39675
+ serde_json LICENSE-APACHE
40369
39676
  ================================================================================
40370
39677
 
40371
39678
  Apache License
@@ -40546,7 +39853,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
40546
39853
  END OF TERMS AND CONDITIONS
40547
39854
 
40548
39855
  ================================================================================
40549
- serde LICENSE-MIT
39856
+ serde_json LICENSE-MIT
40550
39857
  ================================================================================
40551
39858
 
40552
39859
  Permission is hereby granted, free of charge, to any
@@ -40574,7 +39881,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
40574
39881
  DEALINGS IN THE SOFTWARE.
40575
39882
 
40576
39883
  ================================================================================
40577
- serde_derive LICENSE-APACHE
39884
+ serde_stacker LICENSE-APACHE
40578
39885
  ================================================================================
40579
39886
 
40580
39887
  Apache License
@@ -40755,7 +40062,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
40755
40062
  END OF TERMS AND CONDITIONS
40756
40063
 
40757
40064
  ================================================================================
40758
- serde_derive LICENSE-MIT
40065
+ serde_stacker LICENSE-MIT
40759
40066
  ================================================================================
40760
40067
 
40761
40068
  Permission is hereby granted, free of charge, to any
@@ -40783,7 +40090,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
40783
40090
  DEALINGS IN THE SOFTWARE.
40784
40091
 
40785
40092
  ================================================================================
40786
- serde_json LICENSE-APACHE
40093
+ serde_urlencoded LICENSE-APACHE
40787
40094
  ================================================================================
40788
40095
 
40789
40096
  Apache License
@@ -40964,9 +40271,11 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
40964
40271
  END OF TERMS AND CONDITIONS
40965
40272
 
40966
40273
  ================================================================================
40967
- serde_json LICENSE-MIT
40274
+ serde_urlencoded LICENSE-MIT
40968
40275
  ================================================================================
40969
40276
 
40277
+ Copyright (c) 2016 Anthony Ramine
40278
+
40970
40279
  Permission is hereby granted, free of charge, to any
40971
40280
  person obtaining a copy of this software and associated
40972
40281
  documentation files (the "Software"), to deal in the
@@ -40992,7 +40301,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
40992
40301
  DEALINGS IN THE SOFTWARE.
40993
40302
 
40994
40303
  ================================================================================
40995
- serde_urlencoded LICENSE-APACHE
40304
+ sha2 LICENSE-APACHE
40996
40305
  ================================================================================
40997
40306
 
40998
40307
  Apache License
@@ -41172,11 +40481,38 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
41172
40481
 
41173
40482
  END OF TERMS AND CONDITIONS
41174
40483
 
40484
+ APPENDIX: How to apply the Apache License to your work.
40485
+
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.
40494
+
40495
+ Copyright [yyyy] [name of copyright owner]
40496
+
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
40500
+
40501
+ http://www.apache.org/licenses/LICENSE-2.0
40502
+
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.
40508
+
41175
40509
  ================================================================================
41176
- serde_urlencoded LICENSE-MIT
40510
+ sha2 LICENSE-MIT
41177
40511
  ================================================================================
41178
40512
 
41179
- Copyright (c) 2016 Anthony Ramine
40513
+ Copyright (c) 2006-2009 Graydon Hoare
40514
+ Copyright (c) 2009-2013 Mozilla Foundation
40515
+ Copyright (c) 2016 Artyom Pavlov
41180
40516
 
41181
40517
  Permission is hereby granted, free of charge, to any
41182
40518
  person obtaining a copy of this software and associated
@@ -42411,7 +41747,7 @@ skiplist LICENSE
42411
41747
 
42412
41748
  The MIT License (MIT)
42413
41749
 
42414
- Copyright (c) 2015 Joshua Ellis
41750
+ Copyright (c) 2015-2025 Joshua Ellis
42415
41751
 
42416
41752
  Permission is hereby granted, free of charge, to any person obtaining a copy
42417
41753
  of this software and associated documentation files (the "Software"), to deal
@@ -44585,6 +43921,32 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
44585
43921
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
44586
43922
  SOFTWARE.
44587
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
+
44588
43950
  ================================================================================
44589
43951
  strum_macros LICENSE
44590
43952
  ================================================================================
@@ -48008,6 +47370,239 @@ untrusted LICENSE.txt
48008
47370
  // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
48009
47371
  // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
48010
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
+
48011
47606
  ================================================================================
48012
47607
  url LICENSE-APACHE
48013
47608
  ================================================================================
@@ -49181,6 +48776,32 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
49181
48776
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
49182
48777
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
49183
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
+
49184
48805
  ================================================================================
49185
48806
  walkdir COPYING
49186
48807
  ================================================================================