polars-df 0.8.0-aarch64-linux → 0.9.0-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +30 -1
  3. data/Cargo.lock +107 -59
  4. data/Cargo.toml +0 -3
  5. data/LICENSE-THIRD-PARTY.txt +1726 -754
  6. data/LICENSE.txt +1 -1
  7. data/README.md +2 -2
  8. data/lib/polars/3.1/polars.so +0 -0
  9. data/lib/polars/3.2/polars.so +0 -0
  10. data/lib/polars/3.3/polars.so +0 -0
  11. data/lib/polars/array_expr.rb +449 -0
  12. data/lib/polars/array_name_space.rb +346 -0
  13. data/lib/polars/cat_expr.rb +24 -0
  14. data/lib/polars/cat_name_space.rb +75 -0
  15. data/lib/polars/config.rb +2 -2
  16. data/lib/polars/data_frame.rb +179 -43
  17. data/lib/polars/data_types.rb +191 -28
  18. data/lib/polars/date_time_expr.rb +31 -14
  19. data/lib/polars/exceptions.rb +12 -1
  20. data/lib/polars/expr.rb +866 -186
  21. data/lib/polars/functions/aggregation/horizontal.rb +246 -0
  22. data/lib/polars/functions/aggregation/vertical.rb +282 -0
  23. data/lib/polars/functions/as_datatype.rb +248 -0
  24. data/lib/polars/functions/col.rb +47 -0
  25. data/lib/polars/functions/eager.rb +182 -0
  26. data/lib/polars/functions/lazy.rb +1280 -0
  27. data/lib/polars/functions/len.rb +49 -0
  28. data/lib/polars/functions/lit.rb +35 -0
  29. data/lib/polars/functions/random.rb +16 -0
  30. data/lib/polars/functions/range/date_range.rb +103 -0
  31. data/lib/polars/functions/range/int_range.rb +51 -0
  32. data/lib/polars/functions/repeat.rb +144 -0
  33. data/lib/polars/functions/whenthen.rb +27 -0
  34. data/lib/polars/functions.rb +29 -416
  35. data/lib/polars/group_by.rb +2 -2
  36. data/lib/polars/io.rb +18 -25
  37. data/lib/polars/lazy_frame.rb +367 -53
  38. data/lib/polars/list_expr.rb +152 -6
  39. data/lib/polars/list_name_space.rb +102 -0
  40. data/lib/polars/meta_expr.rb +175 -7
  41. data/lib/polars/series.rb +273 -34
  42. data/lib/polars/string_cache.rb +75 -0
  43. data/lib/polars/string_expr.rb +412 -96
  44. data/lib/polars/string_name_space.rb +4 -4
  45. data/lib/polars/testing.rb +507 -0
  46. data/lib/polars/utils.rb +52 -8
  47. data/lib/polars/version.rb +1 -1
  48. data/lib/polars.rb +15 -2
  49. metadata +33 -4
  50. data/lib/polars/lazy_functions.rb +0 -1181
@@ -38,10 +38,6 @@ array-init-cursor v0.2.0
38
38
  https://github.com/planus-org/planus
39
39
  MIT/Apache-2.0
40
40
 
41
- arrow-format v0.8.1
42
- https://github.com/DataEngineeringLabs/arrow-format
43
- Apache-2.0
44
-
45
41
  async-stream v0.3.5
46
42
  https://github.com/tokio-rs/async-stream
47
43
  MIT
@@ -305,7 +301,7 @@ jobserver v0.1.27
305
301
  https://github.com/alexcrichton/jobserver-rs
306
302
  MIT/Apache-2.0
307
303
 
308
- jsonpath_lib v0.3.0
304
+ jsonpath_lib_polars_vendor v0.0.1
309
305
  https://github.com/freestrings/jsonpath
310
306
  MIT
311
307
 
@@ -489,65 +485,68 @@ planus v0.3.1
489
485
  https://github.com/planus-org/planus
490
486
  MIT/Apache-2.0
491
487
 
492
- polars v0.36.2
488
+ polars v0.38.1
493
489
  https://www.pola.rs/
494
490
  MIT
495
491
 
496
- polars-arrow v0.36.2
492
+ polars-arrow v0.38.1
497
493
  https://www.pola.rs/
498
494
 
499
- polars-compute v0.36.2
495
+ polars-arrow-format v0.1.0
496
+ https://github.com/polar-rs/arrow-format
497
+
498
+ polars-compute v0.38.1
500
499
  https://www.pola.rs/
501
500
  MIT
502
501
 
503
- polars-core v0.36.2
502
+ polars-core v0.38.1
504
503
  https://www.pola.rs/
505
504
  MIT
506
505
 
507
- polars-error v0.36.2
506
+ polars-error v0.38.1
508
507
  https://www.pola.rs/
509
508
  MIT
510
509
 
511
- polars-io v0.36.2
510
+ polars-io v0.38.1
512
511
  https://www.pola.rs/
513
512
  MIT
514
513
 
515
- polars-json v0.36.2
514
+ polars-json v0.38.1
516
515
  https://www.pola.rs/
517
516
  MIT
518
517
 
519
- polars-lazy v0.36.2
518
+ polars-lazy v0.38.1
520
519
  https://www.pola.rs/
521
520
  MIT
522
521
 
523
- polars-ops v0.36.2
522
+ polars-ops v0.38.1
524
523
  https://www.pola.rs/
525
524
  MIT
526
525
 
527
- polars-parquet v0.36.2
526
+ polars-parquet v0.38.1
528
527
  https://www.pola.rs/
529
528
 
530
- polars-pipe v0.36.2
529
+ polars-pipe v0.38.1
531
530
  https://www.pola.rs/
532
531
  MIT
533
532
 
534
- polars-plan v0.36.2
533
+ polars-plan v0.38.1
535
534
  https://www.pola.rs/
536
535
  MIT
537
536
 
538
- polars-row v0.36.2
537
+ polars-row v0.38.1
539
538
  https://www.pola.rs/
540
539
  MIT
541
540
 
542
- polars-sql v0.36.2
541
+ polars-sql v0.38.1
543
542
  https://www.pola.rs/
544
543
  MIT
545
544
 
546
- polars-time v0.36.2
545
+ polars-time v0.38.1
547
546
  https://www.pola.rs/
548
547
  MIT
549
548
 
550
- polars-utils v0.36.2
549
+ polars-utils v0.38.1
551
550
  https://www.pola.rs/
552
551
  MIT
553
552
 
@@ -579,19 +578,23 @@ rand_distr v0.4.3
579
578
  https://rust-random.github.io/book
580
579
  MIT OR Apache-2.0
581
580
 
582
- rayon v1.8.0
581
+ raw-cpuid v11.0.1
582
+ https://github.com/gz/rust-cpuid
583
+ MIT
584
+
585
+ rayon v1.9.0
583
586
  https://github.com/rayon-rs/rayon
584
587
  MIT OR Apache-2.0
585
588
 
586
- rayon-core v1.12.0
589
+ rayon-core v1.12.1
587
590
  https://github.com/rayon-rs/rayon
588
591
  MIT OR Apache-2.0
589
592
 
590
- rb-sys v0.9.86
593
+ rb-sys v0.9.90
591
594
  https://github.com/oxidize-rb/rb-sys
592
595
  MIT OR Apache-2.0
593
596
 
594
- rb-sys-build v0.9.86
597
+ rb-sys-build v0.9.90
595
598
  https://github.com/oxidize-rb/rb-sys
596
599
  MIT OR Apache-2.0
597
600
 
@@ -759,10 +762,22 @@ unicode-ident v1.0.12
759
762
  https://github.com/dtolnay/unicode-ident
760
763
  (MIT OR Apache-2.0) AND Unicode-DFS-2016
761
764
 
765
+ unicode-reverse v1.0.8
766
+ https://github.com/mbrubeck/unicode-reverse
767
+ MIT / Apache-2.0
768
+
769
+ unicode-segmentation v1.10.1
770
+ https://github.com/unicode-rs/unicode-segmentation
771
+ MIT/Apache-2.0
772
+
762
773
  unicode-width v0.1.11
763
774
  https://github.com/unicode-rs/unicode-width
764
775
  MIT/Apache-2.0
765
776
 
777
+ uuid v1.7.0
778
+ https://github.com/uuid-rs/uuid
779
+ Apache-2.0 OR MIT
780
+
766
781
  value-trait v0.8.0
767
782
  https://github.com/simd-lite/value-trait
768
783
  Apache-2.0/MIT
@@ -1460,33 +1475,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1460
1475
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1461
1476
  SOFTWARE.
1462
1477
 
1463
- ================================================================================
1464
- array-init-cursor LICENSE-MIT
1465
- ================================================================================
1466
-
1467
- MIT License
1468
-
1469
- Copyright (c) 2021 The Planus Project Developers
1470
-
1471
- Permission is hereby granted, free of charge, to any person obtaining a copy
1472
- of this software and associated documentation files (the "Software"), to deal
1473
- in the Software without restriction, including without limitation the rights
1474
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1475
- copies of the Software, and to permit persons to whom the Software is
1476
- furnished to do so, subject to the following conditions:
1477
-
1478
- The above copyright notice and this permission notice shall be included in all
1479
- copies or substantial portions of the Software.
1480
-
1481
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1482
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1483
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1484
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1485
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1486
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1487
- SOFTWARE.
1488
-
1489
-
1490
1478
  ================================================================================
1491
1479
  array-init-cursor LICENSE-APACHE
1492
1480
  ================================================================================
@@ -1670,200 +1658,31 @@ END OF TERMS AND CONDITIONS
1670
1658
 
1671
1659
 
1672
1660
  ================================================================================
1673
- arrow-format LICENSE
1661
+ array-init-cursor LICENSE-MIT
1674
1662
  ================================================================================
1675
1663
 
1664
+ MIT License
1676
1665
 
1677
- Apache License
1678
- Version 2.0, January 2004
1679
- https://www.apache.org/licenses/
1680
-
1681
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1682
-
1683
- 1. Definitions.
1684
-
1685
- "License" shall mean the terms and conditions for use, reproduction,
1686
- and distribution as defined by Sections 1 through 9 of this document.
1687
-
1688
- "Licensor" shall mean the copyright owner or entity authorized by
1689
- the copyright owner that is granting the License.
1690
-
1691
- "Legal Entity" shall mean the union of the acting entity and all
1692
- other entities that control, are controlled by, or are under common
1693
- control with that entity. For the purposes of this definition,
1694
- "control" means (i) the power, direct or indirect, to cause the
1695
- direction or management of such entity, whether by contract or
1696
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
1697
- outstanding shares, or (iii) beneficial ownership of such entity.
1698
-
1699
- "You" (or "Your") shall mean an individual or Legal Entity
1700
- exercising permissions granted by this License.
1701
-
1702
- "Source" form shall mean the preferred form for making modifications,
1703
- including but not limited to software source code, documentation
1704
- source, and configuration files.
1705
-
1706
- "Object" form shall mean any form resulting from mechanical
1707
- transformation or translation of a Source form, including but
1708
- not limited to compiled object code, generated documentation,
1709
- and conversions to other media types.
1710
-
1711
- "Work" shall mean the work of authorship, whether in Source or
1712
- Object form, made available under the License, as indicated by a
1713
- copyright notice that is included in or attached to the work
1714
- (an example is provided in the Appendix below).
1715
-
1716
- "Derivative Works" shall mean any work, whether in Source or Object
1717
- form, that is based on (or derived from) the Work and for which the
1718
- editorial revisions, annotations, elaborations, or other modifications
1719
- represent, as a whole, an original work of authorship. For the purposes
1720
- of this License, Derivative Works shall not include works that remain
1721
- separable from, or merely link (or bind by name) to the interfaces of,
1722
- the Work and Derivative Works thereof.
1723
-
1724
- "Contribution" shall mean any work of authorship, including
1725
- the original version of the Work and any modifications or additions
1726
- to that Work or Derivative Works thereof, that is intentionally
1727
- submitted to Licensor for inclusion in the Work by the copyright owner
1728
- or by an individual or Legal Entity authorized to submit on behalf of
1729
- the copyright owner. For the purposes of this definition, "submitted"
1730
- means any form of electronic, verbal, or written communication sent
1731
- to the Licensor or its representatives, including but not limited to
1732
- communication on electronic mailing lists, source code control systems,
1733
- and issue tracking systems that are managed by, or on behalf of, the
1734
- Licensor for the purpose of discussing and improving the Work, but
1735
- excluding communication that is conspicuously marked or otherwise
1736
- designated in writing by the copyright owner as "Not a Contribution."
1737
-
1738
- "Contributor" shall mean Licensor and any individual or Legal Entity
1739
- on behalf of whom a Contribution has been received by Licensor and
1740
- subsequently incorporated within the Work.
1741
-
1742
- 2. Grant of Copyright License. Subject to the terms and conditions of
1743
- this License, each Contributor hereby grants to You a perpetual,
1744
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1745
- copyright license to reproduce, prepare Derivative Works of,
1746
- publicly display, publicly perform, sublicense, and distribute the
1747
- Work and such Derivative Works in Source or Object form.
1748
-
1749
- 3. Grant of Patent License. Subject to the terms and conditions of
1750
- this License, each Contributor hereby grants to You a perpetual,
1751
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1752
- (except as stated in this section) patent license to make, have made,
1753
- use, offer to sell, sell, import, and otherwise transfer the Work,
1754
- where such license applies only to those patent claims licensable
1755
- by such Contributor that are necessarily infringed by their
1756
- Contribution(s) alone or by combination of their Contribution(s)
1757
- with the Work to which such Contribution(s) was submitted. If You
1758
- institute patent litigation against any entity (including a
1759
- cross-claim or counterclaim in a lawsuit) alleging that the Work
1760
- or a Contribution incorporated within the Work constitutes direct
1761
- or contributory patent infringement, then any patent licenses
1762
- granted to You under this License for that Work shall terminate
1763
- as of the date such litigation is filed.
1764
-
1765
- 4. Redistribution. You may reproduce and distribute copies of the
1766
- Work or Derivative Works thereof in any medium, with or without
1767
- modifications, and in Source or Object form, provided that You
1768
- meet the following conditions:
1769
-
1770
- (a) You must give any other recipients of the Work or
1771
- Derivative Works a copy of this License; and
1772
-
1773
- (b) You must cause any modified files to carry prominent notices
1774
- stating that You changed the files; and
1775
-
1776
- (c) You must retain, in the Source form of any Derivative Works
1777
- that You distribute, all copyright, patent, trademark, and
1778
- attribution notices from the Source form of the Work,
1779
- excluding those notices that do not pertain to any part of
1780
- the Derivative Works; and
1781
-
1782
- (d) If the Work includes a "NOTICE" text file as part of its
1783
- distribution, then any Derivative Works that You distribute must
1784
- include a readable copy of the attribution notices contained
1785
- within such NOTICE file, excluding those notices that do not
1786
- pertain to any part of the Derivative Works, in at least one
1787
- of the following places: within a NOTICE text file distributed
1788
- as part of the Derivative Works; within the Source form or
1789
- documentation, if provided along with the Derivative Works; or,
1790
- within a display generated by the Derivative Works, if and
1791
- wherever such third-party notices normally appear. The contents
1792
- of the NOTICE file are for informational purposes only and
1793
- do not modify the License. You may add Your own attribution
1794
- notices within Derivative Works that You distribute, alongside
1795
- or as an addendum to the NOTICE text from the Work, provided
1796
- that such additional attribution notices cannot be construed
1797
- as modifying the License.
1798
-
1799
- You may add Your own copyright statement to Your modifications and
1800
- may provide additional or different license terms and conditions
1801
- for use, reproduction, or distribution of Your modifications, or
1802
- for any such Derivative Works as a whole, provided Your use,
1803
- reproduction, and distribution of the Work otherwise complies with
1804
- the conditions stated in this License.
1805
-
1806
- 5. Submission of Contributions. Unless You explicitly state otherwise,
1807
- any Contribution intentionally submitted for inclusion in the Work
1808
- by You to the Licensor shall be under the terms and conditions of
1809
- this License, without any additional terms or conditions.
1810
- Notwithstanding the above, nothing herein shall supersede or modify
1811
- the terms of any separate license agreement you may have executed
1812
- with Licensor regarding such Contributions.
1813
-
1814
- 6. Trademarks. This License does not grant permission to use the trade
1815
- names, trademarks, service marks, or product names of the Licensor,
1816
- except as required for reasonable and customary use in describing the
1817
- origin of the Work and reproducing the content of the NOTICE file.
1818
-
1819
- 7. Disclaimer of Warranty. Unless required by applicable law or
1820
- agreed to in writing, Licensor provides the Work (and each
1821
- Contributor provides its Contributions) on an "AS IS" BASIS,
1822
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1823
- implied, including, without limitation, any warranties or conditions
1824
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1825
- PARTICULAR PURPOSE. You are solely responsible for determining the
1826
- appropriateness of using or redistributing the Work and assume any
1827
- risks associated with Your exercise of permissions under this License.
1828
-
1829
- 8. Limitation of Liability. In no event and under no legal theory,
1830
- whether in tort (including negligence), contract, or otherwise,
1831
- unless required by applicable law (such as deliberate and grossly
1832
- negligent acts) or agreed to in writing, shall any Contributor be
1833
- liable to You for damages, including any direct, indirect, special,
1834
- incidental, or consequential damages of any character arising as a
1835
- result of this License or out of the use or inability to use the
1836
- Work (including but not limited to damages for loss of goodwill,
1837
- work stoppage, computer failure or malfunction, or any and all
1838
- other commercial damages or losses), even if such Contributor
1839
- has been advised of the possibility of such damages.
1840
-
1841
- 9. Accepting Warranty or Additional Liability. While redistributing
1842
- the Work or Derivative Works thereof, You may choose to offer,
1843
- and charge a fee for, acceptance of support, warranty, indemnity,
1844
- or other liability obligations and/or rights consistent with this
1845
- License. However, in accepting such obligations, You may act only
1846
- on Your own behalf and on Your sole responsibility, not on behalf
1847
- of any other Contributor, and only if You agree to indemnify,
1848
- defend, and hold each Contributor harmless for any liability
1849
- incurred by, or claims asserted against, such Contributor by reason
1850
- of your accepting any such warranty or additional liability.
1851
-
1852
- END OF TERMS AND CONDITIONS
1666
+ Copyright (c) 2021 The Planus Project Developers
1853
1667
 
1854
- Copyright 2020-2022 Jorge C. Leitão
1668
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1669
+ of this software and associated documentation files (the "Software"), to deal
1670
+ in the Software without restriction, including without limitation the rights
1671
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1672
+ copies of the Software, and to permit persons to whom the Software is
1673
+ furnished to do so, subject to the following conditions:
1855
1674
 
1856
- Licensed under the Apache License, Version 2.0 (the "License");
1857
- you may not use this file except in compliance with the License.
1858
- You may obtain a copy of the License at
1675
+ The above copyright notice and this permission notice shall be included in all
1676
+ copies or substantial portions of the Software.
1859
1677
 
1860
- https://www.apache.org/licenses/LICENSE-2.0
1678
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1679
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1680
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1681
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1682
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1683
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1684
+ SOFTWARE.
1861
1685
 
1862
- Unless required by applicable law or agreed to in writing, software
1863
- distributed under the License is distributed on an "AS IS" BASIS,
1864
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1865
- See the License for the specific language governing permissions and
1866
- limitations under the License.
1867
1686
 
1868
1687
  ================================================================================
1869
1688
  async-stream LICENSE
@@ -14977,7 +14796,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
14977
14796
  DEALINGS IN THE SOFTWARE.
14978
14797
 
14979
14798
  ================================================================================
14980
- jsonpath_lib LICENSE
14799
+ jsonpath_lib_polars_vendor LICENSE
14981
14800
  ================================================================================
14982
14801
 
14983
14802
  MIT License
@@ -24807,33 +24626,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24807
24626
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24808
24627
  DEALINGS IN THE SOFTWARE.
24809
24628
 
24810
- ================================================================================
24811
- planus LICENSE-MIT
24812
- ================================================================================
24813
-
24814
- MIT License
24815
-
24816
- Copyright (c) 2021 The Planus Project Developers
24817
-
24818
- Permission is hereby granted, free of charge, to any person obtaining a copy
24819
- of this software and associated documentation files (the "Software"), to deal
24820
- in the Software without restriction, including without limitation the rights
24821
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24822
- copies of the Software, and to permit persons to whom the Software is
24823
- furnished to do so, subject to the following conditions:
24824
-
24825
- The above copyright notice and this permission notice shall be included in all
24826
- copies or substantial portions of the Software.
24827
-
24828
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24829
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24830
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24831
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24832
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24833
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24834
- SOFTWARE.
24835
-
24836
-
24837
24629
  ================================================================================
24838
24630
  planus LICENSE-APACHE
24839
24631
  ================================================================================
@@ -25016,6 +24808,33 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25016
24808
  END OF TERMS AND CONDITIONS
25017
24809
 
25018
24810
 
24811
+ ================================================================================
24812
+ planus LICENSE-MIT
24813
+ ================================================================================
24814
+
24815
+ MIT License
24816
+
24817
+ Copyright (c) 2021 The Planus Project Developers
24818
+
24819
+ Permission is hereby granted, free of charge, to any person obtaining a copy
24820
+ of this software and associated documentation files (the "Software"), to deal
24821
+ in the Software without restriction, including without limitation the rights
24822
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24823
+ copies of the Software, and to permit persons to whom the Software is
24824
+ furnished to do so, subject to the following conditions:
24825
+
24826
+ The above copyright notice and this permission notice shall be included in all
24827
+ copies or substantial portions of the Software.
24828
+
24829
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24830
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24831
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24832
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24833
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24834
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24835
+ SOFTWARE.
24836
+
24837
+
25019
24838
  ================================================================================
25020
24839
  polars LICENSE
25021
24840
  ================================================================================
@@ -25242,182 +25061,210 @@ to the MIT license in ../../LICENSE.
25242
25061
  limitations under the License.
25243
25062
 
25244
25063
  ================================================================================
25245
- polars-compute LICENSE
25064
+ polars-arrow-format LICENSE
25246
25065
  ================================================================================
25247
25066
 
25248
- Copyright (c) 2020 Ritchie Vink
25249
25067
 
25250
- Permission is hereby granted, free of charge, to any person obtaining a copy
25251
- of this software and associated documentation files (the "Software"), to deal
25252
- in the Software without restriction, including without limitation the rights
25253
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25254
- copies of the Software, and to permit persons to whom the Software is
25255
- furnished to do so, subject to the following conditions:
25256
-
25257
- The above copyright notice and this permission notice shall be included in all
25258
- copies or substantial portions of the Software.
25259
-
25260
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25261
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25262
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25263
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25264
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25265
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25266
- SOFTWARE.
25068
+ Apache License
25069
+ Version 2.0, January 2004
25070
+ https://www.apache.org/licenses/
25267
25071
 
25268
- ================================================================================
25269
- polars-core LICENSE
25270
- ================================================================================
25072
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25271
25073
 
25272
- Copyright (c) 2020 Ritchie Vink
25074
+ 1. Definitions.
25273
25075
 
25274
- Permission is hereby granted, free of charge, to any person obtaining a copy
25275
- of this software and associated documentation files (the "Software"), to deal
25276
- in the Software without restriction, including without limitation the rights
25277
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25278
- copies of the Software, and to permit persons to whom the Software is
25279
- furnished to do so, subject to the following conditions:
25076
+ "License" shall mean the terms and conditions for use, reproduction,
25077
+ and distribution as defined by Sections 1 through 9 of this document.
25280
25078
 
25281
- The above copyright notice and this permission notice shall be included in all
25282
- copies or substantial portions of the Software.
25079
+ "Licensor" shall mean the copyright owner or entity authorized by
25080
+ the copyright owner that is granting the License.
25283
25081
 
25284
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25285
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25286
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25287
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25288
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25289
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25290
- SOFTWARE.
25082
+ "Legal Entity" shall mean the union of the acting entity and all
25083
+ other entities that control, are controlled by, or are under common
25084
+ control with that entity. For the purposes of this definition,
25085
+ "control" means (i) the power, direct or indirect, to cause the
25086
+ direction or management of such entity, whether by contract or
25087
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
25088
+ outstanding shares, or (iii) beneficial ownership of such entity.
25291
25089
 
25292
- ================================================================================
25293
- polars-error LICENSE
25294
- ================================================================================
25090
+ "You" (or "Your") shall mean an individual or Legal Entity
25091
+ exercising permissions granted by this License.
25295
25092
 
25296
- Copyright (c) 2020 Ritchie Vink
25093
+ "Source" form shall mean the preferred form for making modifications,
25094
+ including but not limited to software source code, documentation
25095
+ source, and configuration files.
25297
25096
 
25298
- Permission is hereby granted, free of charge, to any person obtaining a copy
25299
- of this software and associated documentation files (the "Software"), to deal
25300
- in the Software without restriction, including without limitation the rights
25301
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25302
- copies of the Software, and to permit persons to whom the Software is
25303
- furnished to do so, subject to the following conditions:
25097
+ "Object" form shall mean any form resulting from mechanical
25098
+ transformation or translation of a Source form, including but
25099
+ not limited to compiled object code, generated documentation,
25100
+ and conversions to other media types.
25304
25101
 
25305
- The above copyright notice and this permission notice shall be included in all
25306
- copies or substantial portions of the Software.
25102
+ "Work" shall mean the work of authorship, whether in Source or
25103
+ Object form, made available under the License, as indicated by a
25104
+ copyright notice that is included in or attached to the work
25105
+ (an example is provided in the Appendix below).
25307
25106
 
25308
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25309
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25310
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25311
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25312
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25313
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25314
- SOFTWARE.
25107
+ "Derivative Works" shall mean any work, whether in Source or Object
25108
+ form, that is based on (or derived from) the Work and for which the
25109
+ editorial revisions, annotations, elaborations, or other modifications
25110
+ represent, as a whole, an original work of authorship. For the purposes
25111
+ of this License, Derivative Works shall not include works that remain
25112
+ separable from, or merely link (or bind by name) to the interfaces of,
25113
+ the Work and Derivative Works thereof.
25315
25114
 
25316
- ================================================================================
25317
- polars-io LICENSE
25318
- ================================================================================
25115
+ "Contribution" shall mean any work of authorship, including
25116
+ the original version of the Work and any modifications or additions
25117
+ to that Work or Derivative Works thereof, that is intentionally
25118
+ submitted to Licensor for inclusion in the Work by the copyright owner
25119
+ or by an individual or Legal Entity authorized to submit on behalf of
25120
+ the copyright owner. For the purposes of this definition, "submitted"
25121
+ means any form of electronic, verbal, or written communication sent
25122
+ to the Licensor or its representatives, including but not limited to
25123
+ communication on electronic mailing lists, source code control systems,
25124
+ and issue tracking systems that are managed by, or on behalf of, the
25125
+ Licensor for the purpose of discussing and improving the Work, but
25126
+ excluding communication that is conspicuously marked or otherwise
25127
+ designated in writing by the copyright owner as "Not a Contribution."
25319
25128
 
25320
- Copyright (c) 2020 Ritchie Vink
25129
+ "Contributor" shall mean Licensor and any individual or Legal Entity
25130
+ on behalf of whom a Contribution has been received by Licensor and
25131
+ subsequently incorporated within the Work.
25321
25132
 
25322
- Permission is hereby granted, free of charge, to any person obtaining a copy
25323
- of this software and associated documentation files (the "Software"), to deal
25324
- in the Software without restriction, including without limitation the rights
25325
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25326
- copies of the Software, and to permit persons to whom the Software is
25327
- furnished to do so, subject to the following conditions:
25133
+ 2. Grant of Copyright License. Subject to the terms and conditions of
25134
+ this License, each Contributor hereby grants to You a perpetual,
25135
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25136
+ copyright license to reproduce, prepare Derivative Works of,
25137
+ publicly display, publicly perform, sublicense, and distribute the
25138
+ Work and such Derivative Works in Source or Object form.
25328
25139
 
25329
- The above copyright notice and this permission notice shall be included in all
25330
- copies or substantial portions of the Software.
25140
+ 3. Grant of Patent License. Subject to the terms and conditions of
25141
+ this License, each Contributor hereby grants to You a perpetual,
25142
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25143
+ (except as stated in this section) patent license to make, have made,
25144
+ use, offer to sell, sell, import, and otherwise transfer the Work,
25145
+ where such license applies only to those patent claims licensable
25146
+ by such Contributor that are necessarily infringed by their
25147
+ Contribution(s) alone or by combination of their Contribution(s)
25148
+ with the Work to which such Contribution(s) was submitted. If You
25149
+ institute patent litigation against any entity (including a
25150
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
25151
+ or a Contribution incorporated within the Work constitutes direct
25152
+ or contributory patent infringement, then any patent licenses
25153
+ granted to You under this License for that Work shall terminate
25154
+ as of the date such litigation is filed.
25331
25155
 
25332
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25333
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25334
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25335
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25336
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25337
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25338
- SOFTWARE.
25156
+ 4. Redistribution. You may reproduce and distribute copies of the
25157
+ Work or Derivative Works thereof in any medium, with or without
25158
+ modifications, and in Source or Object form, provided that You
25159
+ meet the following conditions:
25339
25160
 
25340
- ================================================================================
25341
- polars-json LICENSE
25342
- ================================================================================
25161
+ (a) You must give any other recipients of the Work or
25162
+ Derivative Works a copy of this License; and
25343
25163
 
25344
- Copyright (c) 2020 Ritchie Vink
25164
+ (b) You must cause any modified files to carry prominent notices
25165
+ stating that You changed the files; and
25345
25166
 
25346
- Permission is hereby granted, free of charge, to any person obtaining a copy
25347
- of this software and associated documentation files (the "Software"), to deal
25348
- in the Software without restriction, including without limitation the rights
25349
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25350
- copies of the Software, and to permit persons to whom the Software is
25351
- furnished to do so, subject to the following conditions:
25167
+ (c) You must retain, in the Source form of any Derivative Works
25168
+ that You distribute, all copyright, patent, trademark, and
25169
+ attribution notices from the Source form of the Work,
25170
+ excluding those notices that do not pertain to any part of
25171
+ the Derivative Works; and
25352
25172
 
25353
- The above copyright notice and this permission notice shall be included in all
25354
- copies or substantial portions of the Software.
25173
+ (d) If the Work includes a "NOTICE" text file as part of its
25174
+ distribution, then any Derivative Works that You distribute must
25175
+ include a readable copy of the attribution notices contained
25176
+ within such NOTICE file, excluding those notices that do not
25177
+ pertain to any part of the Derivative Works, in at least one
25178
+ of the following places: within a NOTICE text file distributed
25179
+ as part of the Derivative Works; within the Source form or
25180
+ documentation, if provided along with the Derivative Works; or,
25181
+ within a display generated by the Derivative Works, if and
25182
+ wherever such third-party notices normally appear. The contents
25183
+ of the NOTICE file are for informational purposes only and
25184
+ do not modify the License. You may add Your own attribution
25185
+ notices within Derivative Works that You distribute, alongside
25186
+ or as an addendum to the NOTICE text from the Work, provided
25187
+ that such additional attribution notices cannot be construed
25188
+ as modifying the License.
25355
25189
 
25356
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25357
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25358
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25359
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25360
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25361
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25362
- SOFTWARE.
25190
+ You may add Your own copyright statement to Your modifications and
25191
+ may provide additional or different license terms and conditions
25192
+ for use, reproduction, or distribution of Your modifications, or
25193
+ for any such Derivative Works as a whole, provided Your use,
25194
+ reproduction, and distribution of the Work otherwise complies with
25195
+ the conditions stated in this License.
25363
25196
 
25364
- ================================================================================
25365
- polars-lazy LICENSE
25366
- ================================================================================
25197
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
25198
+ any Contribution intentionally submitted for inclusion in the Work
25199
+ by You to the Licensor shall be under the terms and conditions of
25200
+ this License, without any additional terms or conditions.
25201
+ Notwithstanding the above, nothing herein shall supersede or modify
25202
+ the terms of any separate license agreement you may have executed
25203
+ with Licensor regarding such Contributions.
25367
25204
 
25368
- Copyright (c) 2020 Ritchie Vink
25205
+ 6. Trademarks. This License does not grant permission to use the trade
25206
+ names, trademarks, service marks, or product names of the Licensor,
25207
+ except as required for reasonable and customary use in describing the
25208
+ origin of the Work and reproducing the content of the NOTICE file.
25369
25209
 
25370
- Permission is hereby granted, free of charge, to any person obtaining a copy
25371
- of this software and associated documentation files (the "Software"), to deal
25372
- in the Software without restriction, including without limitation the rights
25373
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25374
- copies of the Software, and to permit persons to whom the Software is
25375
- furnished to do so, subject to the following conditions:
25210
+ 7. Disclaimer of Warranty. Unless required by applicable law or
25211
+ agreed to in writing, Licensor provides the Work (and each
25212
+ Contributor provides its Contributions) on an "AS IS" BASIS,
25213
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25214
+ implied, including, without limitation, any warranties or conditions
25215
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
25216
+ PARTICULAR PURPOSE. You are solely responsible for determining the
25217
+ appropriateness of using or redistributing the Work and assume any
25218
+ risks associated with Your exercise of permissions under this License.
25376
25219
 
25377
- The above copyright notice and this permission notice shall be included in all
25378
- copies or substantial portions of the Software.
25220
+ 8. Limitation of Liability. In no event and under no legal theory,
25221
+ whether in tort (including negligence), contract, or otherwise,
25222
+ unless required by applicable law (such as deliberate and grossly
25223
+ negligent acts) or agreed to in writing, shall any Contributor be
25224
+ liable to You for damages, including any direct, indirect, special,
25225
+ incidental, or consequential damages of any character arising as a
25226
+ result of this License or out of the use or inability to use the
25227
+ Work (including but not limited to damages for loss of goodwill,
25228
+ work stoppage, computer failure or malfunction, or any and all
25229
+ other commercial damages or losses), even if such Contributor
25230
+ has been advised of the possibility of such damages.
25379
25231
 
25380
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25381
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25382
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25383
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25384
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25385
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25386
- SOFTWARE.
25232
+ 9. Accepting Warranty or Additional Liability. While redistributing
25233
+ the Work or Derivative Works thereof, You may choose to offer,
25234
+ and charge a fee for, acceptance of support, warranty, indemnity,
25235
+ or other liability obligations and/or rights consistent with this
25236
+ License. However, in accepting such obligations, You may act only
25237
+ on Your own behalf and on Your sole responsibility, not on behalf
25238
+ of any other Contributor, and only if You agree to indemnify,
25239
+ defend, and hold each Contributor harmless for any liability
25240
+ incurred by, or claims asserted against, such Contributor by reason
25241
+ of your accepting any such warranty or additional liability.
25387
25242
 
25388
- ================================================================================
25389
- polars-ops LICENSE
25390
- ================================================================================
25243
+ END OF TERMS AND CONDITIONS
25391
25244
 
25392
- Copyright (c) 2020 Ritchie Vink
25245
+ Copyright 2020-2022 Jorge C. Leitão
25393
25246
 
25394
- Permission is hereby granted, free of charge, to any person obtaining a copy
25395
- of this software and associated documentation files (the "Software"), to deal
25396
- in the Software without restriction, including without limitation the rights
25397
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25398
- copies of the Software, and to permit persons to whom the Software is
25399
- furnished to do so, subject to the following conditions:
25247
+ Licensed under the Apache License, Version 2.0 (the "License");
25248
+ you may not use this file except in compliance with the License.
25249
+ You may obtain a copy of the License at
25400
25250
 
25401
- The above copyright notice and this permission notice shall be included in all
25402
- copies or substantial portions of the Software.
25251
+ https://www.apache.org/licenses/LICENSE-2.0
25403
25252
 
25404
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25405
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25406
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25407
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25408
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25409
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25410
- SOFTWARE.
25253
+ Unless required by applicable law or agreed to in writing, software
25254
+ distributed under the License is distributed on an "AS IS" BASIS,
25255
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25256
+ See the License for the specific language governing permissions and
25257
+ limitations under the License.
25411
25258
 
25412
25259
  ================================================================================
25413
- polars-parquet LICENSE
25260
+ polars-arrow-format src/LICENSE
25414
25261
  ================================================================================
25415
25262
 
25416
- Some of the code in this crate is subject to the Apache 2 license below, as it
25417
- was taken from the arrow2 and parquet2 Rust crate in October 2023. Later changes are subject
25418
- to the MIT license in ../../LICENSE.
25419
-
25263
+ Some of the code in this crate is subject to the Apache 2 license in 1. as it
25264
+ was taken from the arrow-format Rust crate in January 2024. Later changes are subject
25265
+ to the MIT license in 2.
25420
25266
 
25267
+ 1.
25421
25268
 
25422
25269
  Apache License
25423
25270
  Version 2.0, January 2004
@@ -25610,8 +25457,29 @@ to the MIT license in ../../LICENSE.
25610
25457
  See the License for the specific language governing permissions and
25611
25458
  limitations under the License.
25612
25459
 
25460
+ 2.
25461
+ Copyright (c) 2024 Ritchie Vink
25462
+
25463
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25464
+ of this software and associated documentation files (the "Software"), to deal
25465
+ in the Software without restriction, including without limitation the rights
25466
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25467
+ copies of the Software, and to permit persons to whom the Software is
25468
+ furnished to do so, subject to the following conditions:
25469
+
25470
+ The above copyright notice and this permission notice shall be included in all
25471
+ copies or substantial portions of the Software.
25472
+
25473
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25474
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25475
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25476
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25477
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25478
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25479
+ SOFTWARE.
25480
+
25613
25481
  ================================================================================
25614
- polars-pipe LICENSE
25482
+ polars-compute LICENSE
25615
25483
  ================================================================================
25616
25484
 
25617
25485
  Copyright (c) 2020 Ritchie Vink
@@ -25635,7 +25503,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25635
25503
  SOFTWARE.
25636
25504
 
25637
25505
  ================================================================================
25638
- polars-plan LICENSE
25506
+ polars-core LICENSE
25639
25507
  ================================================================================
25640
25508
 
25641
25509
  Copyright (c) 2020 Ritchie Vink
@@ -25659,7 +25527,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25659
25527
  SOFTWARE.
25660
25528
 
25661
25529
  ================================================================================
25662
- polars-row LICENSE
25530
+ polars-error LICENSE
25663
25531
  ================================================================================
25664
25532
 
25665
25533
  Copyright (c) 2020 Ritchie Vink
@@ -25683,7 +25551,376 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25683
25551
  SOFTWARE.
25684
25552
 
25685
25553
  ================================================================================
25686
- polars-sql LICENSE
25554
+ polars-io LICENSE
25555
+ ================================================================================
25556
+
25557
+ Copyright (c) 2020 Ritchie Vink
25558
+
25559
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25560
+ of this software and associated documentation files (the "Software"), to deal
25561
+ in the Software without restriction, including without limitation the rights
25562
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25563
+ copies of the Software, and to permit persons to whom the Software is
25564
+ furnished to do so, subject to the following conditions:
25565
+
25566
+ The above copyright notice and this permission notice shall be included in all
25567
+ copies or substantial portions of the Software.
25568
+
25569
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25570
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25571
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25572
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25573
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25574
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25575
+ SOFTWARE.
25576
+
25577
+ ================================================================================
25578
+ polars-json LICENSE
25579
+ ================================================================================
25580
+
25581
+ Copyright (c) 2020 Ritchie Vink
25582
+
25583
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25584
+ of this software and associated documentation files (the "Software"), to deal
25585
+ in the Software without restriction, including without limitation the rights
25586
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25587
+ copies of the Software, and to permit persons to whom the Software is
25588
+ furnished to do so, subject to the following conditions:
25589
+
25590
+ The above copyright notice and this permission notice shall be included in all
25591
+ copies or substantial portions of the Software.
25592
+
25593
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25594
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25595
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25596
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25597
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25598
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25599
+ SOFTWARE.
25600
+
25601
+ ================================================================================
25602
+ polars-lazy LICENSE
25603
+ ================================================================================
25604
+
25605
+ Copyright (c) 2020 Ritchie Vink
25606
+
25607
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25608
+ of this software and associated documentation files (the "Software"), to deal
25609
+ in the Software without restriction, including without limitation the rights
25610
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25611
+ copies of the Software, and to permit persons to whom the Software is
25612
+ furnished to do so, subject to the following conditions:
25613
+
25614
+ The above copyright notice and this permission notice shall be included in all
25615
+ copies or substantial portions of the Software.
25616
+
25617
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25618
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25619
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25620
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25621
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25622
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25623
+ SOFTWARE.
25624
+
25625
+ ================================================================================
25626
+ polars-ops LICENSE
25627
+ ================================================================================
25628
+
25629
+ Copyright (c) 2020 Ritchie Vink
25630
+
25631
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25632
+ of this software and associated documentation files (the "Software"), to deal
25633
+ in the Software without restriction, including without limitation the rights
25634
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25635
+ copies of the Software, and to permit persons to whom the Software is
25636
+ furnished to do so, subject to the following conditions:
25637
+
25638
+ The above copyright notice and this permission notice shall be included in all
25639
+ copies or substantial portions of the Software.
25640
+
25641
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25642
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25643
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25644
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25645
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25646
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25647
+ SOFTWARE.
25648
+
25649
+ ================================================================================
25650
+ polars-parquet LICENSE
25651
+ ================================================================================
25652
+
25653
+ Some of the code in this crate is subject to the Apache 2 license below, as it
25654
+ was taken from the arrow2 and parquet2 Rust crate in October 2023. Later changes are subject
25655
+ to the MIT license in ../../LICENSE.
25656
+
25657
+
25658
+
25659
+ Apache License
25660
+ Version 2.0, January 2004
25661
+ https://www.apache.org/licenses/
25662
+
25663
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25664
+
25665
+ 1. Definitions.
25666
+
25667
+ "License" shall mean the terms and conditions for use, reproduction,
25668
+ and distribution as defined by Sections 1 through 9 of this document.
25669
+
25670
+ "Licensor" shall mean the copyright owner or entity authorized by
25671
+ the copyright owner that is granting the License.
25672
+
25673
+ "Legal Entity" shall mean the union of the acting entity and all
25674
+ other entities that control, are controlled by, or are under common
25675
+ control with that entity. For the purposes of this definition,
25676
+ "control" means (i) the power, direct or indirect, to cause the
25677
+ direction or management of such entity, whether by contract or
25678
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
25679
+ outstanding shares, or (iii) beneficial ownership of such entity.
25680
+
25681
+ "You" (or "Your") shall mean an individual or Legal Entity
25682
+ exercising permissions granted by this License.
25683
+
25684
+ "Source" form shall mean the preferred form for making modifications,
25685
+ including but not limited to software source code, documentation
25686
+ source, and configuration files.
25687
+
25688
+ "Object" form shall mean any form resulting from mechanical
25689
+ transformation or translation of a Source form, including but
25690
+ not limited to compiled object code, generated documentation,
25691
+ and conversions to other media types.
25692
+
25693
+ "Work" shall mean the work of authorship, whether in Source or
25694
+ Object form, made available under the License, as indicated by a
25695
+ copyright notice that is included in or attached to the work
25696
+ (an example is provided in the Appendix below).
25697
+
25698
+ "Derivative Works" shall mean any work, whether in Source or Object
25699
+ form, that is based on (or derived from) the Work and for which the
25700
+ editorial revisions, annotations, elaborations, or other modifications
25701
+ represent, as a whole, an original work of authorship. For the purposes
25702
+ of this License, Derivative Works shall not include works that remain
25703
+ separable from, or merely link (or bind by name) to the interfaces of,
25704
+ the Work and Derivative Works thereof.
25705
+
25706
+ "Contribution" shall mean any work of authorship, including
25707
+ the original version of the Work and any modifications or additions
25708
+ to that Work or Derivative Works thereof, that is intentionally
25709
+ submitted to Licensor for inclusion in the Work by the copyright owner
25710
+ or by an individual or Legal Entity authorized to submit on behalf of
25711
+ the copyright owner. For the purposes of this definition, "submitted"
25712
+ means any form of electronic, verbal, or written communication sent
25713
+ to the Licensor or its representatives, including but not limited to
25714
+ communication on electronic mailing lists, source code control systems,
25715
+ and issue tracking systems that are managed by, or on behalf of, the
25716
+ Licensor for the purpose of discussing and improving the Work, but
25717
+ excluding communication that is conspicuously marked or otherwise
25718
+ designated in writing by the copyright owner as "Not a Contribution."
25719
+
25720
+ "Contributor" shall mean Licensor and any individual or Legal Entity
25721
+ on behalf of whom a Contribution has been received by Licensor and
25722
+ subsequently incorporated within the Work.
25723
+
25724
+ 2. Grant of Copyright License. Subject to the terms and conditions of
25725
+ this License, each Contributor hereby grants to You a perpetual,
25726
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25727
+ copyright license to reproduce, prepare Derivative Works of,
25728
+ publicly display, publicly perform, sublicense, and distribute the
25729
+ Work and such Derivative Works in Source or Object form.
25730
+
25731
+ 3. Grant of Patent License. Subject to the terms and conditions of
25732
+ this License, each Contributor hereby grants to You a perpetual,
25733
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25734
+ (except as stated in this section) patent license to make, have made,
25735
+ use, offer to sell, sell, import, and otherwise transfer the Work,
25736
+ where such license applies only to those patent claims licensable
25737
+ by such Contributor that are necessarily infringed by their
25738
+ Contribution(s) alone or by combination of their Contribution(s)
25739
+ with the Work to which such Contribution(s) was submitted. If You
25740
+ institute patent litigation against any entity (including a
25741
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
25742
+ or a Contribution incorporated within the Work constitutes direct
25743
+ or contributory patent infringement, then any patent licenses
25744
+ granted to You under this License for that Work shall terminate
25745
+ as of the date such litigation is filed.
25746
+
25747
+ 4. Redistribution. You may reproduce and distribute copies of the
25748
+ Work or Derivative Works thereof in any medium, with or without
25749
+ modifications, and in Source or Object form, provided that You
25750
+ meet the following conditions:
25751
+
25752
+ (a) You must give any other recipients of the Work or
25753
+ Derivative Works a copy of this License; and
25754
+
25755
+ (b) You must cause any modified files to carry prominent notices
25756
+ stating that You changed the files; and
25757
+
25758
+ (c) You must retain, in the Source form of any Derivative Works
25759
+ that You distribute, all copyright, patent, trademark, and
25760
+ attribution notices from the Source form of the Work,
25761
+ excluding those notices that do not pertain to any part of
25762
+ the Derivative Works; and
25763
+
25764
+ (d) If the Work includes a "NOTICE" text file as part of its
25765
+ distribution, then any Derivative Works that You distribute must
25766
+ include a readable copy of the attribution notices contained
25767
+ within such NOTICE file, excluding those notices that do not
25768
+ pertain to any part of the Derivative Works, in at least one
25769
+ of the following places: within a NOTICE text file distributed
25770
+ as part of the Derivative Works; within the Source form or
25771
+ documentation, if provided along with the Derivative Works; or,
25772
+ within a display generated by the Derivative Works, if and
25773
+ wherever such third-party notices normally appear. The contents
25774
+ of the NOTICE file are for informational purposes only and
25775
+ do not modify the License. You may add Your own attribution
25776
+ notices within Derivative Works that You distribute, alongside
25777
+ or as an addendum to the NOTICE text from the Work, provided
25778
+ that such additional attribution notices cannot be construed
25779
+ as modifying the License.
25780
+
25781
+ You may add Your own copyright statement to Your modifications and
25782
+ may provide additional or different license terms and conditions
25783
+ for use, reproduction, or distribution of Your modifications, or
25784
+ for any such Derivative Works as a whole, provided Your use,
25785
+ reproduction, and distribution of the Work otherwise complies with
25786
+ the conditions stated in this License.
25787
+
25788
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
25789
+ any Contribution intentionally submitted for inclusion in the Work
25790
+ by You to the Licensor shall be under the terms and conditions of
25791
+ this License, without any additional terms or conditions.
25792
+ Notwithstanding the above, nothing herein shall supersede or modify
25793
+ the terms of any separate license agreement you may have executed
25794
+ with Licensor regarding such Contributions.
25795
+
25796
+ 6. Trademarks. This License does not grant permission to use the trade
25797
+ names, trademarks, service marks, or product names of the Licensor,
25798
+ except as required for reasonable and customary use in describing the
25799
+ origin of the Work and reproducing the content of the NOTICE file.
25800
+
25801
+ 7. Disclaimer of Warranty. Unless required by applicable law or
25802
+ agreed to in writing, Licensor provides the Work (and each
25803
+ Contributor provides its Contributions) on an "AS IS" BASIS,
25804
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25805
+ implied, including, without limitation, any warranties or conditions
25806
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
25807
+ PARTICULAR PURPOSE. You are solely responsible for determining the
25808
+ appropriateness of using or redistributing the Work and assume any
25809
+ risks associated with Your exercise of permissions under this License.
25810
+
25811
+ 8. Limitation of Liability. In no event and under no legal theory,
25812
+ whether in tort (including negligence), contract, or otherwise,
25813
+ unless required by applicable law (such as deliberate and grossly
25814
+ negligent acts) or agreed to in writing, shall any Contributor be
25815
+ liable to You for damages, including any direct, indirect, special,
25816
+ incidental, or consequential damages of any character arising as a
25817
+ result of this License or out of the use or inability to use the
25818
+ Work (including but not limited to damages for loss of goodwill,
25819
+ work stoppage, computer failure or malfunction, or any and all
25820
+ other commercial damages or losses), even if such Contributor
25821
+ has been advised of the possibility of such damages.
25822
+
25823
+ 9. Accepting Warranty or Additional Liability. While redistributing
25824
+ the Work or Derivative Works thereof, You may choose to offer,
25825
+ and charge a fee for, acceptance of support, warranty, indemnity,
25826
+ or other liability obligations and/or rights consistent with this
25827
+ License. However, in accepting such obligations, You may act only
25828
+ on Your own behalf and on Your sole responsibility, not on behalf
25829
+ of any other Contributor, and only if You agree to indemnify,
25830
+ defend, and hold each Contributor harmless for any liability
25831
+ incurred by, or claims asserted against, such Contributor by reason
25832
+ of your accepting any such warranty or additional liability.
25833
+
25834
+ END OF TERMS AND CONDITIONS
25835
+
25836
+ Copyright 2020-2022 Jorge C. Leitão
25837
+
25838
+ Licensed under the Apache License, Version 2.0 (the "License");
25839
+ you may not use this file except in compliance with the License.
25840
+ You may obtain a copy of the License at
25841
+
25842
+ https://www.apache.org/licenses/LICENSE-2.0
25843
+
25844
+ Unless required by applicable law or agreed to in writing, software
25845
+ distributed under the License is distributed on an "AS IS" BASIS,
25846
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25847
+ See the License for the specific language governing permissions and
25848
+ limitations under the License.
25849
+
25850
+ ================================================================================
25851
+ polars-pipe LICENSE
25852
+ ================================================================================
25853
+
25854
+ Copyright (c) 2020 Ritchie Vink
25855
+
25856
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25857
+ of this software and associated documentation files (the "Software"), to deal
25858
+ in the Software without restriction, including without limitation the rights
25859
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25860
+ copies of the Software, and to permit persons to whom the Software is
25861
+ furnished to do so, subject to the following conditions:
25862
+
25863
+ The above copyright notice and this permission notice shall be included in all
25864
+ copies or substantial portions of the Software.
25865
+
25866
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25867
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25868
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25869
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25870
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25871
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25872
+ SOFTWARE.
25873
+
25874
+ ================================================================================
25875
+ polars-plan LICENSE
25876
+ ================================================================================
25877
+
25878
+ Copyright (c) 2020 Ritchie Vink
25879
+
25880
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25881
+ of this software and associated documentation files (the "Software"), to deal
25882
+ in the Software without restriction, including without limitation the rights
25883
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25884
+ copies of the Software, and to permit persons to whom the Software is
25885
+ furnished to do so, subject to the following conditions:
25886
+
25887
+ The above copyright notice and this permission notice shall be included in all
25888
+ copies or substantial portions of the Software.
25889
+
25890
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25891
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25892
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25893
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25894
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25895
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25896
+ SOFTWARE.
25897
+
25898
+ ================================================================================
25899
+ polars-row LICENSE
25900
+ ================================================================================
25901
+
25902
+ Copyright (c) 2020 Ritchie Vink
25903
+
25904
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25905
+ of this software and associated documentation files (the "Software"), to deal
25906
+ in the Software without restriction, including without limitation the rights
25907
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25908
+ copies of the Software, and to permit persons to whom the Software is
25909
+ furnished to do so, subject to the following conditions:
25910
+
25911
+ The above copyright notice and this permission notice shall be included in all
25912
+ copies or substantial portions of the Software.
25913
+
25914
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25915
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25916
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25917
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25918
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25919
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25920
+ SOFTWARE.
25921
+
25922
+ ================================================================================
25923
+ polars-sql LICENSE
25687
25924
  ================================================================================
25688
25925
 
25689
25926
  Copyright (c) 2020 Ritchie Vink
@@ -27302,6 +27539,32 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
27302
27539
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27303
27540
  DEALINGS IN THE SOFTWARE.
27304
27541
 
27542
+ ================================================================================
27543
+ raw-cpuid LICENSE.md
27544
+ ================================================================================
27545
+
27546
+ The MIT License (MIT)
27547
+
27548
+ Copyright (c) 2015 Gerd Zellweger
27549
+
27550
+ Permission is hereby granted, free of charge, to any person obtaining a copy
27551
+ of this software and associated documentation files (the "Software"), to deal
27552
+ in the Software without restriction, including without limitation the rights
27553
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27554
+ copies of the Software, and to permit persons to whom the Software is
27555
+ furnished to do so, subject to the following conditions:
27556
+
27557
+ The above copyright notice and this permission notice shall be included in
27558
+ all copies or substantial portions of the Software.
27559
+
27560
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27561
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27562
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27563
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27564
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27565
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27566
+ THE SOFTWARE.
27567
+
27305
27568
  ================================================================================
27306
27569
  rayon LICENSE-APACHE
27307
27570
  ================================================================================
@@ -34373,33 +34636,697 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34373
34636
 
34374
34637
  END OF TERMS AND CONDITIONS
34375
34638
 
34376
- APPENDIX: How to apply the Apache License to your work.
34377
-
34378
- To apply the Apache License to your work, attach the following
34379
- boilerplate notice, with the fields enclosed by brackets "[]"
34380
- replaced with your own identifying information. (Don't include
34381
- the brackets!) The text should be enclosed in the appropriate
34382
- comment syntax for the file format. We also recommend that a
34383
- file or class name and description of purpose be included on the
34384
- same "printed page" as the copyright notice for easier
34385
- identification within third-party archives.
34386
-
34387
- Copyright [yyyy] [name of copyright owner]
34388
-
34389
- Licensed under the Apache License, Version 2.0 (the "License");
34390
- you may not use this file except in compliance with the License.
34391
- You may obtain a copy of the License at
34392
-
34393
- http://www.apache.org/licenses/LICENSE-2.0
34394
-
34395
- Unless required by applicable law or agreed to in writing, software
34396
- distributed under the License is distributed on an "AS IS" BASIS,
34397
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34398
- See the License for the specific language governing permissions and
34399
- limitations under the License.
34400
-
34639
+ APPENDIX: How to apply the Apache License to your work.
34640
+
34641
+ To apply the Apache License to your work, attach the following
34642
+ boilerplate notice, with the fields enclosed by brackets "[]"
34643
+ replaced with your own identifying information. (Don't include
34644
+ the brackets!) The text should be enclosed in the appropriate
34645
+ comment syntax for the file format. We also recommend that a
34646
+ file or class name and description of purpose be included on the
34647
+ same "printed page" as the copyright notice for easier
34648
+ identification within third-party archives.
34649
+
34650
+ Copyright [yyyy] [name of copyright owner]
34651
+
34652
+ Licensed under the Apache License, Version 2.0 (the "License");
34653
+ you may not use this file except in compliance with the License.
34654
+ You may obtain a copy of the License at
34655
+
34656
+ http://www.apache.org/licenses/LICENSE-2.0
34657
+
34658
+ Unless required by applicable law or agreed to in writing, software
34659
+ distributed under the License is distributed on an "AS IS" BASIS,
34660
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34661
+ See the License for the specific language governing permissions and
34662
+ limitations under the License.
34663
+
34664
+ ================================================================================
34665
+ syn v1.0.109 LICENSE-MIT
34666
+ ================================================================================
34667
+
34668
+ Permission is hereby granted, free of charge, to any
34669
+ person obtaining a copy of this software and associated
34670
+ documentation files (the "Software"), to deal in the
34671
+ Software without restriction, including without
34672
+ limitation the rights to use, copy, modify, merge,
34673
+ publish, distribute, sublicense, and/or sell copies of
34674
+ the Software, and to permit persons to whom the Software
34675
+ is furnished to do so, subject to the following
34676
+ conditions:
34677
+
34678
+ The above copyright notice and this permission notice
34679
+ shall be included in all copies or substantial portions
34680
+ of the Software.
34681
+
34682
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
34683
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
34684
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
34685
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
34686
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
34687
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34688
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
34689
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34690
+ DEALINGS IN THE SOFTWARE.
34691
+
34692
+ ================================================================================
34693
+ syn v2.0.46 LICENSE-APACHE
34694
+ ================================================================================
34695
+
34696
+ Apache License
34697
+ Version 2.0, January 2004
34698
+ http://www.apache.org/licenses/
34699
+
34700
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34701
+
34702
+ 1. Definitions.
34703
+
34704
+ "License" shall mean the terms and conditions for use, reproduction,
34705
+ and distribution as defined by Sections 1 through 9 of this document.
34706
+
34707
+ "Licensor" shall mean the copyright owner or entity authorized by
34708
+ the copyright owner that is granting the License.
34709
+
34710
+ "Legal Entity" shall mean the union of the acting entity and all
34711
+ other entities that control, are controlled by, or are under common
34712
+ control with that entity. For the purposes of this definition,
34713
+ "control" means (i) the power, direct or indirect, to cause the
34714
+ direction or management of such entity, whether by contract or
34715
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
34716
+ outstanding shares, or (iii) beneficial ownership of such entity.
34717
+
34718
+ "You" (or "Your") shall mean an individual or Legal Entity
34719
+ exercising permissions granted by this License.
34720
+
34721
+ "Source" form shall mean the preferred form for making modifications,
34722
+ including but not limited to software source code, documentation
34723
+ source, and configuration files.
34724
+
34725
+ "Object" form shall mean any form resulting from mechanical
34726
+ transformation or translation of a Source form, including but
34727
+ not limited to compiled object code, generated documentation,
34728
+ and conversions to other media types.
34729
+
34730
+ "Work" shall mean the work of authorship, whether in Source or
34731
+ Object form, made available under the License, as indicated by a
34732
+ copyright notice that is included in or attached to the work
34733
+ (an example is provided in the Appendix below).
34734
+
34735
+ "Derivative Works" shall mean any work, whether in Source or Object
34736
+ form, that is based on (or derived from) the Work and for which the
34737
+ editorial revisions, annotations, elaborations, or other modifications
34738
+ represent, as a whole, an original work of authorship. For the purposes
34739
+ of this License, Derivative Works shall not include works that remain
34740
+ separable from, or merely link (or bind by name) to the interfaces of,
34741
+ the Work and Derivative Works thereof.
34742
+
34743
+ "Contribution" shall mean any work of authorship, including
34744
+ the original version of the Work and any modifications or additions
34745
+ to that Work or Derivative Works thereof, that is intentionally
34746
+ submitted to Licensor for inclusion in the Work by the copyright owner
34747
+ or by an individual or Legal Entity authorized to submit on behalf of
34748
+ the copyright owner. For the purposes of this definition, "submitted"
34749
+ means any form of electronic, verbal, or written communication sent
34750
+ to the Licensor or its representatives, including but not limited to
34751
+ communication on electronic mailing lists, source code control systems,
34752
+ and issue tracking systems that are managed by, or on behalf of, the
34753
+ Licensor for the purpose of discussing and improving the Work, but
34754
+ excluding communication that is conspicuously marked or otherwise
34755
+ designated in writing by the copyright owner as "Not a Contribution."
34756
+
34757
+ "Contributor" shall mean Licensor and any individual or Legal Entity
34758
+ on behalf of whom a Contribution has been received by Licensor and
34759
+ subsequently incorporated within the Work.
34760
+
34761
+ 2. Grant of Copyright License. Subject to the terms and conditions of
34762
+ this License, each Contributor hereby grants to You a perpetual,
34763
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34764
+ copyright license to reproduce, prepare Derivative Works of,
34765
+ publicly display, publicly perform, sublicense, and distribute the
34766
+ Work and such Derivative Works in Source or Object form.
34767
+
34768
+ 3. Grant of Patent License. Subject to the terms and conditions of
34769
+ this License, each Contributor hereby grants to You a perpetual,
34770
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34771
+ (except as stated in this section) patent license to make, have made,
34772
+ use, offer to sell, sell, import, and otherwise transfer the Work,
34773
+ where such license applies only to those patent claims licensable
34774
+ by such Contributor that are necessarily infringed by their
34775
+ Contribution(s) alone or by combination of their Contribution(s)
34776
+ with the Work to which such Contribution(s) was submitted. If You
34777
+ institute patent litigation against any entity (including a
34778
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
34779
+ or a Contribution incorporated within the Work constitutes direct
34780
+ or contributory patent infringement, then any patent licenses
34781
+ granted to You under this License for that Work shall terminate
34782
+ as of the date such litigation is filed.
34783
+
34784
+ 4. Redistribution. You may reproduce and distribute copies of the
34785
+ Work or Derivative Works thereof in any medium, with or without
34786
+ modifications, and in Source or Object form, provided that You
34787
+ meet the following conditions:
34788
+
34789
+ (a) You must give any other recipients of the Work or
34790
+ Derivative Works a copy of this License; and
34791
+
34792
+ (b) You must cause any modified files to carry prominent notices
34793
+ stating that You changed the files; and
34794
+
34795
+ (c) You must retain, in the Source form of any Derivative Works
34796
+ that You distribute, all copyright, patent, trademark, and
34797
+ attribution notices from the Source form of the Work,
34798
+ excluding those notices that do not pertain to any part of
34799
+ the Derivative Works; and
34800
+
34801
+ (d) If the Work includes a "NOTICE" text file as part of its
34802
+ distribution, then any Derivative Works that You distribute must
34803
+ include a readable copy of the attribution notices contained
34804
+ within such NOTICE file, excluding those notices that do not
34805
+ pertain to any part of the Derivative Works, in at least one
34806
+ of the following places: within a NOTICE text file distributed
34807
+ as part of the Derivative Works; within the Source form or
34808
+ documentation, if provided along with the Derivative Works; or,
34809
+ within a display generated by the Derivative Works, if and
34810
+ wherever such third-party notices normally appear. The contents
34811
+ of the NOTICE file are for informational purposes only and
34812
+ do not modify the License. You may add Your own attribution
34813
+ notices within Derivative Works that You distribute, alongside
34814
+ or as an addendum to the NOTICE text from the Work, provided
34815
+ that such additional attribution notices cannot be construed
34816
+ as modifying the License.
34817
+
34818
+ You may add Your own copyright statement to Your modifications and
34819
+ may provide additional or different license terms and conditions
34820
+ for use, reproduction, or distribution of Your modifications, or
34821
+ for any such Derivative Works as a whole, provided Your use,
34822
+ reproduction, and distribution of the Work otherwise complies with
34823
+ the conditions stated in this License.
34824
+
34825
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
34826
+ any Contribution intentionally submitted for inclusion in the Work
34827
+ by You to the Licensor shall be under the terms and conditions of
34828
+ this License, without any additional terms or conditions.
34829
+ Notwithstanding the above, nothing herein shall supersede or modify
34830
+ the terms of any separate license agreement you may have executed
34831
+ with Licensor regarding such Contributions.
34832
+
34833
+ 6. Trademarks. This License does not grant permission to use the trade
34834
+ names, trademarks, service marks, or product names of the Licensor,
34835
+ except as required for reasonable and customary use in describing the
34836
+ origin of the Work and reproducing the content of the NOTICE file.
34837
+
34838
+ 7. Disclaimer of Warranty. Unless required by applicable law or
34839
+ agreed to in writing, Licensor provides the Work (and each
34840
+ Contributor provides its Contributions) on an "AS IS" BASIS,
34841
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34842
+ implied, including, without limitation, any warranties or conditions
34843
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34844
+ PARTICULAR PURPOSE. You are solely responsible for determining the
34845
+ appropriateness of using or redistributing the Work and assume any
34846
+ risks associated with Your exercise of permissions under this License.
34847
+
34848
+ 8. Limitation of Liability. In no event and under no legal theory,
34849
+ whether in tort (including negligence), contract, or otherwise,
34850
+ unless required by applicable law (such as deliberate and grossly
34851
+ negligent acts) or agreed to in writing, shall any Contributor be
34852
+ liable to You for damages, including any direct, indirect, special,
34853
+ incidental, or consequential damages of any character arising as a
34854
+ result of this License or out of the use or inability to use the
34855
+ Work (including but not limited to damages for loss of goodwill,
34856
+ work stoppage, computer failure or malfunction, or any and all
34857
+ other commercial damages or losses), even if such Contributor
34858
+ has been advised of the possibility of such damages.
34859
+
34860
+ 9. Accepting Warranty or Additional Liability. While redistributing
34861
+ the Work or Derivative Works thereof, You may choose to offer,
34862
+ and charge a fee for, acceptance of support, warranty, indemnity,
34863
+ or other liability obligations and/or rights consistent with this
34864
+ License. However, in accepting such obligations, You may act only
34865
+ on Your own behalf and on Your sole responsibility, not on behalf
34866
+ of any other Contributor, and only if You agree to indemnify,
34867
+ defend, and hold each Contributor harmless for any liability
34868
+ incurred by, or claims asserted against, such Contributor by reason
34869
+ of your accepting any such warranty or additional liability.
34870
+
34871
+ END OF TERMS AND CONDITIONS
34872
+
34873
+ ================================================================================
34874
+ syn v2.0.46 LICENSE-MIT
34875
+ ================================================================================
34876
+
34877
+ Permission is hereby granted, free of charge, to any
34878
+ person obtaining a copy of this software and associated
34879
+ documentation files (the "Software"), to deal in the
34880
+ Software without restriction, including without
34881
+ limitation the rights to use, copy, modify, merge,
34882
+ publish, distribute, sublicense, and/or sell copies of
34883
+ the Software, and to permit persons to whom the Software
34884
+ is furnished to do so, subject to the following
34885
+ conditions:
34886
+
34887
+ The above copyright notice and this permission notice
34888
+ shall be included in all copies or substantial portions
34889
+ of the Software.
34890
+
34891
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
34892
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
34893
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
34894
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
34895
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
34896
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34897
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
34898
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34899
+ DEALINGS IN THE SOFTWARE.
34900
+
34901
+ ================================================================================
34902
+ sysinfo LICENSE
34903
+ ================================================================================
34904
+
34905
+ The MIT License (MIT)
34906
+
34907
+ Copyright (c) 2015 Guillaume Gomez
34908
+
34909
+ Permission is hereby granted, free of charge, to any person obtaining a copy
34910
+ of this software and associated documentation files (the "Software"), to deal
34911
+ in the Software without restriction, including without limitation the rights
34912
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
34913
+ copies of the Software, and to permit persons to whom the Software is
34914
+ furnished to do so, subject to the following conditions:
34915
+
34916
+ The above copyright notice and this permission notice shall be included in all
34917
+ copies or substantial portions of the Software.
34918
+
34919
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34920
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34921
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34922
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34923
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34924
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34925
+ SOFTWARE.
34926
+
34927
+
34928
+ ================================================================================
34929
+ target-features LICENSE-APACHE
34930
+ ================================================================================
34931
+
34932
+
34933
+ Apache License
34934
+ Version 2.0, January 2004
34935
+ http://www.apache.org/licenses/
34936
+
34937
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34938
+
34939
+ 1. Definitions.
34940
+
34941
+ "License" shall mean the terms and conditions for use, reproduction,
34942
+ and distribution as defined by Sections 1 through 9 of this document.
34943
+
34944
+ "Licensor" shall mean the copyright owner or entity authorized by
34945
+ the copyright owner that is granting the License.
34946
+
34947
+ "Legal Entity" shall mean the union of the acting entity and all
34948
+ other entities that control, are controlled by, or are under common
34949
+ control with that entity. For the purposes of this definition,
34950
+ "control" means (i) the power, direct or indirect, to cause the
34951
+ direction or management of such entity, whether by contract or
34952
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
34953
+ outstanding shares, or (iii) beneficial ownership of such entity.
34954
+
34955
+ "You" (or "Your") shall mean an individual or Legal Entity
34956
+ exercising permissions granted by this License.
34957
+
34958
+ "Source" form shall mean the preferred form for making modifications,
34959
+ including but not limited to software source code, documentation
34960
+ source, and configuration files.
34961
+
34962
+ "Object" form shall mean any form resulting from mechanical
34963
+ transformation or translation of a Source form, including but
34964
+ not limited to compiled object code, generated documentation,
34965
+ and conversions to other media types.
34966
+
34967
+ "Work" shall mean the work of authorship, whether in Source or
34968
+ Object form, made available under the License, as indicated by a
34969
+ copyright notice that is included in or attached to the work
34970
+ (an example is provided in the Appendix below).
34971
+
34972
+ "Derivative Works" shall mean any work, whether in Source or Object
34973
+ form, that is based on (or derived from) the Work and for which the
34974
+ editorial revisions, annotations, elaborations, or other modifications
34975
+ represent, as a whole, an original work of authorship. For the purposes
34976
+ of this License, Derivative Works shall not include works that remain
34977
+ separable from, or merely link (or bind by name) to the interfaces of,
34978
+ the Work and Derivative Works thereof.
34979
+
34980
+ "Contribution" shall mean any work of authorship, including
34981
+ the original version of the Work and any modifications or additions
34982
+ to that Work or Derivative Works thereof, that is intentionally
34983
+ submitted to Licensor for inclusion in the Work by the copyright owner
34984
+ or by an individual or Legal Entity authorized to submit on behalf of
34985
+ the copyright owner. For the purposes of this definition, "submitted"
34986
+ means any form of electronic, verbal, or written communication sent
34987
+ to the Licensor or its representatives, including but not limited to
34988
+ communication on electronic mailing lists, source code control systems,
34989
+ and issue tracking systems that are managed by, or on behalf of, the
34990
+ Licensor for the purpose of discussing and improving the Work, but
34991
+ excluding communication that is conspicuously marked or otherwise
34992
+ designated in writing by the copyright owner as "Not a Contribution."
34993
+
34994
+ "Contributor" shall mean Licensor and any individual or Legal Entity
34995
+ on behalf of whom a Contribution has been received by Licensor and
34996
+ subsequently incorporated within the Work.
34997
+
34998
+ 2. Grant of Copyright License. Subject to the terms and conditions of
34999
+ this License, each Contributor hereby grants to You a perpetual,
35000
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
35001
+ copyright license to reproduce, prepare Derivative Works of,
35002
+ publicly display, publicly perform, sublicense, and distribute the
35003
+ Work and such Derivative Works in Source or Object form.
35004
+
35005
+ 3. Grant of Patent License. Subject to the terms and conditions of
35006
+ this License, each Contributor hereby grants to You a perpetual,
35007
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
35008
+ (except as stated in this section) patent license to make, have made,
35009
+ use, offer to sell, sell, import, and otherwise transfer the Work,
35010
+ where such license applies only to those patent claims licensable
35011
+ by such Contributor that are necessarily infringed by their
35012
+ Contribution(s) alone or by combination of their Contribution(s)
35013
+ with the Work to which such Contribution(s) was submitted. If You
35014
+ institute patent litigation against any entity (including a
35015
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
35016
+ or a Contribution incorporated within the Work constitutes direct
35017
+ or contributory patent infringement, then any patent licenses
35018
+ granted to You under this License for that Work shall terminate
35019
+ as of the date such litigation is filed.
35020
+
35021
+ 4. Redistribution. You may reproduce and distribute copies of the
35022
+ Work or Derivative Works thereof in any medium, with or without
35023
+ modifications, and in Source or Object form, provided that You
35024
+ meet the following conditions:
35025
+
35026
+ (a) You must give any other recipients of the Work or
35027
+ Derivative Works a copy of this License; and
35028
+
35029
+ (b) You must cause any modified files to carry prominent notices
35030
+ stating that You changed the files; and
35031
+
35032
+ (c) You must retain, in the Source form of any Derivative Works
35033
+ that You distribute, all copyright, patent, trademark, and
35034
+ attribution notices from the Source form of the Work,
35035
+ excluding those notices that do not pertain to any part of
35036
+ the Derivative Works; and
35037
+
35038
+ (d) If the Work includes a "NOTICE" text file as part of its
35039
+ distribution, then any Derivative Works that You distribute must
35040
+ include a readable copy of the attribution notices contained
35041
+ within such NOTICE file, excluding those notices that do not
35042
+ pertain to any part of the Derivative Works, in at least one
35043
+ of the following places: within a NOTICE text file distributed
35044
+ as part of the Derivative Works; within the Source form or
35045
+ documentation, if provided along with the Derivative Works; or,
35046
+ within a display generated by the Derivative Works, if and
35047
+ wherever such third-party notices normally appear. The contents
35048
+ of the NOTICE file are for informational purposes only and
35049
+ do not modify the License. You may add Your own attribution
35050
+ notices within Derivative Works that You distribute, alongside
35051
+ or as an addendum to the NOTICE text from the Work, provided
35052
+ that such additional attribution notices cannot be construed
35053
+ as modifying the License.
35054
+
35055
+ You may add Your own copyright statement to Your modifications and
35056
+ may provide additional or different license terms and conditions
35057
+ for use, reproduction, or distribution of Your modifications, or
35058
+ for any such Derivative Works as a whole, provided Your use,
35059
+ reproduction, and distribution of the Work otherwise complies with
35060
+ the conditions stated in this License.
35061
+
35062
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
35063
+ any Contribution intentionally submitted for inclusion in the Work
35064
+ by You to the Licensor shall be under the terms and conditions of
35065
+ this License, without any additional terms or conditions.
35066
+ Notwithstanding the above, nothing herein shall supersede or modify
35067
+ the terms of any separate license agreement you may have executed
35068
+ with Licensor regarding such Contributions.
35069
+
35070
+ 6. Trademarks. This License does not grant permission to use the trade
35071
+ names, trademarks, service marks, or product names of the Licensor,
35072
+ except as required for reasonable and customary use in describing the
35073
+ origin of the Work and reproducing the content of the NOTICE file.
35074
+
35075
+ 7. Disclaimer of Warranty. Unless required by applicable law or
35076
+ agreed to in writing, Licensor provides the Work (and each
35077
+ Contributor provides its Contributions) on an "AS IS" BASIS,
35078
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
35079
+ implied, including, without limitation, any warranties or conditions
35080
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
35081
+ PARTICULAR PURPOSE. You are solely responsible for determining the
35082
+ appropriateness of using or redistributing the Work and assume any
35083
+ risks associated with Your exercise of permissions under this License.
35084
+
35085
+ 8. Limitation of Liability. In no event and under no legal theory,
35086
+ whether in tort (including negligence), contract, or otherwise,
35087
+ unless required by applicable law (such as deliberate and grossly
35088
+ negligent acts) or agreed to in writing, shall any Contributor be
35089
+ liable to You for damages, including any direct, indirect, special,
35090
+ incidental, or consequential damages of any character arising as a
35091
+ result of this License or out of the use or inability to use the
35092
+ Work (including but not limited to damages for loss of goodwill,
35093
+ work stoppage, computer failure or malfunction, or any and all
35094
+ other commercial damages or losses), even if such Contributor
35095
+ has been advised of the possibility of such damages.
35096
+
35097
+ 9. Accepting Warranty or Additional Liability. While redistributing
35098
+ the Work or Derivative Works thereof, You may choose to offer,
35099
+ and charge a fee for, acceptance of support, warranty, indemnity,
35100
+ or other liability obligations and/or rights consistent with this
35101
+ License. However, in accepting such obligations, You may act only
35102
+ on Your own behalf and on Your sole responsibility, not on behalf
35103
+ of any other Contributor, and only if You agree to indemnify,
35104
+ defend, and hold each Contributor harmless for any liability
35105
+ incurred by, or claims asserted against, such Contributor by reason
35106
+ of your accepting any such warranty or additional liability.
35107
+
35108
+ END OF TERMS AND CONDITIONS
35109
+
35110
+ APPENDIX: How to apply the Apache License to your work.
35111
+
35112
+ To apply the Apache License to your work, attach the following
35113
+ boilerplate notice, with the fields enclosed by brackets "[]"
35114
+ replaced with your own identifying information. (Don't include
35115
+ the brackets!) The text should be enclosed in the appropriate
35116
+ comment syntax for the file format. We also recommend that a
35117
+ file or class name and description of purpose be included on the
35118
+ same "printed page" as the copyright notice for easier
35119
+ identification within third-party archives.
35120
+
35121
+ Copyright [yyyy] [name of copyright owner]
35122
+
35123
+ Licensed under the Apache License, Version 2.0 (the "License");
35124
+ you may not use this file except in compliance with the License.
35125
+ You may obtain a copy of the License at
35126
+
35127
+ http://www.apache.org/licenses/LICENSE-2.0
35128
+
35129
+ Unless required by applicable law or agreed to in writing, software
35130
+ distributed under the License is distributed on an "AS IS" BASIS,
35131
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35132
+ See the License for the specific language governing permissions and
35133
+ limitations under the License.
35134
+
35135
+ ================================================================================
35136
+ target-features LICENSE-MIT
35137
+ ================================================================================
35138
+
35139
+ Copyright 2022 Caleb Zulawski
35140
+
35141
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
35142
+
35143
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
35144
+
35145
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35146
+
35147
+ ================================================================================
35148
+ thiserror LICENSE-APACHE
35149
+ ================================================================================
35150
+
35151
+ Apache License
35152
+ Version 2.0, January 2004
35153
+ http://www.apache.org/licenses/
35154
+
35155
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35156
+
35157
+ 1. Definitions.
35158
+
35159
+ "License" shall mean the terms and conditions for use, reproduction,
35160
+ and distribution as defined by Sections 1 through 9 of this document.
35161
+
35162
+ "Licensor" shall mean the copyright owner or entity authorized by
35163
+ the copyright owner that is granting the License.
35164
+
35165
+ "Legal Entity" shall mean the union of the acting entity and all
35166
+ other entities that control, are controlled by, or are under common
35167
+ control with that entity. For the purposes of this definition,
35168
+ "control" means (i) the power, direct or indirect, to cause the
35169
+ direction or management of such entity, whether by contract or
35170
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
35171
+ outstanding shares, or (iii) beneficial ownership of such entity.
35172
+
35173
+ "You" (or "Your") shall mean an individual or Legal Entity
35174
+ exercising permissions granted by this License.
35175
+
35176
+ "Source" form shall mean the preferred form for making modifications,
35177
+ including but not limited to software source code, documentation
35178
+ source, and configuration files.
35179
+
35180
+ "Object" form shall mean any form resulting from mechanical
35181
+ transformation or translation of a Source form, including but
35182
+ not limited to compiled object code, generated documentation,
35183
+ and conversions to other media types.
35184
+
35185
+ "Work" shall mean the work of authorship, whether in Source or
35186
+ Object form, made available under the License, as indicated by a
35187
+ copyright notice that is included in or attached to the work
35188
+ (an example is provided in the Appendix below).
35189
+
35190
+ "Derivative Works" shall mean any work, whether in Source or Object
35191
+ form, that is based on (or derived from) the Work and for which the
35192
+ editorial revisions, annotations, elaborations, or other modifications
35193
+ represent, as a whole, an original work of authorship. For the purposes
35194
+ of this License, Derivative Works shall not include works that remain
35195
+ separable from, or merely link (or bind by name) to the interfaces of,
35196
+ the Work and Derivative Works thereof.
35197
+
35198
+ "Contribution" shall mean any work of authorship, including
35199
+ the original version of the Work and any modifications or additions
35200
+ to that Work or Derivative Works thereof, that is intentionally
35201
+ submitted to Licensor for inclusion in the Work by the copyright owner
35202
+ or by an individual or Legal Entity authorized to submit on behalf of
35203
+ the copyright owner. For the purposes of this definition, "submitted"
35204
+ means any form of electronic, verbal, or written communication sent
35205
+ to the Licensor or its representatives, including but not limited to
35206
+ communication on electronic mailing lists, source code control systems,
35207
+ and issue tracking systems that are managed by, or on behalf of, the
35208
+ Licensor for the purpose of discussing and improving the Work, but
35209
+ excluding communication that is conspicuously marked or otherwise
35210
+ designated in writing by the copyright owner as "Not a Contribution."
35211
+
35212
+ "Contributor" shall mean Licensor and any individual or Legal Entity
35213
+ on behalf of whom a Contribution has been received by Licensor and
35214
+ subsequently incorporated within the Work.
35215
+
35216
+ 2. Grant of Copyright License. Subject to the terms and conditions of
35217
+ this License, each Contributor hereby grants to You a perpetual,
35218
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
35219
+ copyright license to reproduce, prepare Derivative Works of,
35220
+ publicly display, publicly perform, sublicense, and distribute the
35221
+ Work and such Derivative Works in Source or Object form.
35222
+
35223
+ 3. Grant of Patent License. Subject to the terms and conditions of
35224
+ this License, each Contributor hereby grants to You a perpetual,
35225
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
35226
+ (except as stated in this section) patent license to make, have made,
35227
+ use, offer to sell, sell, import, and otherwise transfer the Work,
35228
+ where such license applies only to those patent claims licensable
35229
+ by such Contributor that are necessarily infringed by their
35230
+ Contribution(s) alone or by combination of their Contribution(s)
35231
+ with the Work to which such Contribution(s) was submitted. If You
35232
+ institute patent litigation against any entity (including a
35233
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
35234
+ or a Contribution incorporated within the Work constitutes direct
35235
+ or contributory patent infringement, then any patent licenses
35236
+ granted to You under this License for that Work shall terminate
35237
+ as of the date such litigation is filed.
35238
+
35239
+ 4. Redistribution. You may reproduce and distribute copies of the
35240
+ Work or Derivative Works thereof in any medium, with or without
35241
+ modifications, and in Source or Object form, provided that You
35242
+ meet the following conditions:
35243
+
35244
+ (a) You must give any other recipients of the Work or
35245
+ Derivative Works a copy of this License; and
35246
+
35247
+ (b) You must cause any modified files to carry prominent notices
35248
+ stating that You changed the files; and
35249
+
35250
+ (c) You must retain, in the Source form of any Derivative Works
35251
+ that You distribute, all copyright, patent, trademark, and
35252
+ attribution notices from the Source form of the Work,
35253
+ excluding those notices that do not pertain to any part of
35254
+ the Derivative Works; and
35255
+
35256
+ (d) If the Work includes a "NOTICE" text file as part of its
35257
+ distribution, then any Derivative Works that You distribute must
35258
+ include a readable copy of the attribution notices contained
35259
+ within such NOTICE file, excluding those notices that do not
35260
+ pertain to any part of the Derivative Works, in at least one
35261
+ of the following places: within a NOTICE text file distributed
35262
+ as part of the Derivative Works; within the Source form or
35263
+ documentation, if provided along with the Derivative Works; or,
35264
+ within a display generated by the Derivative Works, if and
35265
+ wherever such third-party notices normally appear. The contents
35266
+ of the NOTICE file are for informational purposes only and
35267
+ do not modify the License. You may add Your own attribution
35268
+ notices within Derivative Works that You distribute, alongside
35269
+ or as an addendum to the NOTICE text from the Work, provided
35270
+ that such additional attribution notices cannot be construed
35271
+ as modifying the License.
35272
+
35273
+ You may add Your own copyright statement to Your modifications and
35274
+ may provide additional or different license terms and conditions
35275
+ for use, reproduction, or distribution of Your modifications, or
35276
+ for any such Derivative Works as a whole, provided Your use,
35277
+ reproduction, and distribution of the Work otherwise complies with
35278
+ the conditions stated in this License.
35279
+
35280
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
35281
+ any Contribution intentionally submitted for inclusion in the Work
35282
+ by You to the Licensor shall be under the terms and conditions of
35283
+ this License, without any additional terms or conditions.
35284
+ Notwithstanding the above, nothing herein shall supersede or modify
35285
+ the terms of any separate license agreement you may have executed
35286
+ with Licensor regarding such Contributions.
35287
+
35288
+ 6. Trademarks. This License does not grant permission to use the trade
35289
+ names, trademarks, service marks, or product names of the Licensor,
35290
+ except as required for reasonable and customary use in describing the
35291
+ origin of the Work and reproducing the content of the NOTICE file.
35292
+
35293
+ 7. Disclaimer of Warranty. Unless required by applicable law or
35294
+ agreed to in writing, Licensor provides the Work (and each
35295
+ Contributor provides its Contributions) on an "AS IS" BASIS,
35296
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
35297
+ implied, including, without limitation, any warranties or conditions
35298
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
35299
+ PARTICULAR PURPOSE. You are solely responsible for determining the
35300
+ appropriateness of using or redistributing the Work and assume any
35301
+ risks associated with Your exercise of permissions under this License.
35302
+
35303
+ 8. Limitation of Liability. In no event and under no legal theory,
35304
+ whether in tort (including negligence), contract, or otherwise,
35305
+ unless required by applicable law (such as deliberate and grossly
35306
+ negligent acts) or agreed to in writing, shall any Contributor be
35307
+ liable to You for damages, including any direct, indirect, special,
35308
+ incidental, or consequential damages of any character arising as a
35309
+ result of this License or out of the use or inability to use the
35310
+ Work (including but not limited to damages for loss of goodwill,
35311
+ work stoppage, computer failure or malfunction, or any and all
35312
+ other commercial damages or losses), even if such Contributor
35313
+ has been advised of the possibility of such damages.
35314
+
35315
+ 9. Accepting Warranty or Additional Liability. While redistributing
35316
+ the Work or Derivative Works thereof, You may choose to offer,
35317
+ and charge a fee for, acceptance of support, warranty, indemnity,
35318
+ or other liability obligations and/or rights consistent with this
35319
+ License. However, in accepting such obligations, You may act only
35320
+ on Your own behalf and on Your sole responsibility, not on behalf
35321
+ of any other Contributor, and only if You agree to indemnify,
35322
+ defend, and hold each Contributor harmless for any liability
35323
+ incurred by, or claims asserted against, such Contributor by reason
35324
+ of your accepting any such warranty or additional liability.
35325
+
35326
+ END OF TERMS AND CONDITIONS
35327
+
34401
35328
  ================================================================================
34402
- syn v1.0.109 LICENSE-MIT
35329
+ thiserror LICENSE-MIT
34403
35330
  ================================================================================
34404
35331
 
34405
35332
  Permission is hereby granted, free of charge, to any
@@ -34427,7 +35354,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34427
35354
  DEALINGS IN THE SOFTWARE.
34428
35355
 
34429
35356
  ================================================================================
34430
- syn v2.0.46 LICENSE-APACHE
35357
+ thiserror-impl LICENSE-APACHE
34431
35358
  ================================================================================
34432
35359
 
34433
35360
  Apache License
@@ -34608,7 +35535,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34608
35535
  END OF TERMS AND CONDITIONS
34609
35536
 
34610
35537
  ================================================================================
34611
- syn v2.0.46 LICENSE-MIT
35538
+ thiserror-impl LICENSE-MIT
34612
35539
  ================================================================================
34613
35540
 
34614
35541
  Permission is hereby granted, free of charge, to any
@@ -34636,253 +35563,67 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34636
35563
  DEALINGS IN THE SOFTWARE.
34637
35564
 
34638
35565
  ================================================================================
34639
- sysinfo LICENSE
34640
- ================================================================================
34641
-
34642
- The MIT License (MIT)
34643
-
34644
- Copyright (c) 2015 Guillaume Gomez
34645
-
34646
- Permission is hereby granted, free of charge, to any person obtaining a copy
34647
- of this software and associated documentation files (the "Software"), to deal
34648
- in the Software without restriction, including without limitation the rights
34649
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
34650
- copies of the Software, and to permit persons to whom the Software is
34651
- furnished to do so, subject to the following conditions:
34652
-
34653
- The above copyright notice and this permission notice shall be included in all
34654
- copies or substantial portions of the Software.
34655
-
34656
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34657
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34658
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34659
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34660
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34661
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34662
- SOFTWARE.
34663
-
34664
-
34665
- ================================================================================
34666
- target-features LICENSE-APACHE
35566
+ tokio LICENSE
34667
35567
  ================================================================================
34668
35568
 
35569
+ Copyright (c) 2023 Tokio Contributors
34669
35570
 
34670
- Apache License
34671
- Version 2.0, January 2004
34672
- http://www.apache.org/licenses/
34673
-
34674
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34675
-
34676
- 1. Definitions.
34677
-
34678
- "License" shall mean the terms and conditions for use, reproduction,
34679
- and distribution as defined by Sections 1 through 9 of this document.
34680
-
34681
- "Licensor" shall mean the copyright owner or entity authorized by
34682
- the copyright owner that is granting the License.
34683
-
34684
- "Legal Entity" shall mean the union of the acting entity and all
34685
- other entities that control, are controlled by, or are under common
34686
- control with that entity. For the purposes of this definition,
34687
- "control" means (i) the power, direct or indirect, to cause the
34688
- direction or management of such entity, whether by contract or
34689
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
34690
- outstanding shares, or (iii) beneficial ownership of such entity.
34691
-
34692
- "You" (or "Your") shall mean an individual or Legal Entity
34693
- exercising permissions granted by this License.
34694
-
34695
- "Source" form shall mean the preferred form for making modifications,
34696
- including but not limited to software source code, documentation
34697
- source, and configuration files.
34698
-
34699
- "Object" form shall mean any form resulting from mechanical
34700
- transformation or translation of a Source form, including but
34701
- not limited to compiled object code, generated documentation,
34702
- and conversions to other media types.
34703
-
34704
- "Work" shall mean the work of authorship, whether in Source or
34705
- Object form, made available under the License, as indicated by a
34706
- copyright notice that is included in or attached to the work
34707
- (an example is provided in the Appendix below).
34708
-
34709
- "Derivative Works" shall mean any work, whether in Source or Object
34710
- form, that is based on (or derived from) the Work and for which the
34711
- editorial revisions, annotations, elaborations, or other modifications
34712
- represent, as a whole, an original work of authorship. For the purposes
34713
- of this License, Derivative Works shall not include works that remain
34714
- separable from, or merely link (or bind by name) to the interfaces of,
34715
- the Work and Derivative Works thereof.
34716
-
34717
- "Contribution" shall mean any work of authorship, including
34718
- the original version of the Work and any modifications or additions
34719
- to that Work or Derivative Works thereof, that is intentionally
34720
- submitted to Licensor for inclusion in the Work by the copyright owner
34721
- or by an individual or Legal Entity authorized to submit on behalf of
34722
- the copyright owner. For the purposes of this definition, "submitted"
34723
- means any form of electronic, verbal, or written communication sent
34724
- to the Licensor or its representatives, including but not limited to
34725
- communication on electronic mailing lists, source code control systems,
34726
- and issue tracking systems that are managed by, or on behalf of, the
34727
- Licensor for the purpose of discussing and improving the Work, but
34728
- excluding communication that is conspicuously marked or otherwise
34729
- designated in writing by the copyright owner as "Not a Contribution."
34730
-
34731
- "Contributor" shall mean Licensor and any individual or Legal Entity
34732
- on behalf of whom a Contribution has been received by Licensor and
34733
- subsequently incorporated within the Work.
34734
-
34735
- 2. Grant of Copyright License. Subject to the terms and conditions of
34736
- this License, each Contributor hereby grants to You a perpetual,
34737
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34738
- copyright license to reproduce, prepare Derivative Works of,
34739
- publicly display, publicly perform, sublicense, and distribute the
34740
- Work and such Derivative Works in Source or Object form.
34741
-
34742
- 3. Grant of Patent License. Subject to the terms and conditions of
34743
- this License, each Contributor hereby grants to You a perpetual,
34744
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34745
- (except as stated in this section) patent license to make, have made,
34746
- use, offer to sell, sell, import, and otherwise transfer the Work,
34747
- where such license applies only to those patent claims licensable
34748
- by such Contributor that are necessarily infringed by their
34749
- Contribution(s) alone or by combination of their Contribution(s)
34750
- with the Work to which such Contribution(s) was submitted. If You
34751
- institute patent litigation against any entity (including a
34752
- cross-claim or counterclaim in a lawsuit) alleging that the Work
34753
- or a Contribution incorporated within the Work constitutes direct
34754
- or contributory patent infringement, then any patent licenses
34755
- granted to You under this License for that Work shall terminate
34756
- as of the date such litigation is filed.
34757
-
34758
- 4. Redistribution. You may reproduce and distribute copies of the
34759
- Work or Derivative Works thereof in any medium, with or without
34760
- modifications, and in Source or Object form, provided that You
34761
- meet the following conditions:
34762
-
34763
- (a) You must give any other recipients of the Work or
34764
- Derivative Works a copy of this License; and
34765
-
34766
- (b) You must cause any modified files to carry prominent notices
34767
- stating that You changed the files; and
34768
-
34769
- (c) You must retain, in the Source form of any Derivative Works
34770
- that You distribute, all copyright, patent, trademark, and
34771
- attribution notices from the Source form of the Work,
34772
- excluding those notices that do not pertain to any part of
34773
- the Derivative Works; and
34774
-
34775
- (d) If the Work includes a "NOTICE" text file as part of its
34776
- distribution, then any Derivative Works that You distribute must
34777
- include a readable copy of the attribution notices contained
34778
- within such NOTICE file, excluding those notices that do not
34779
- pertain to any part of the Derivative Works, in at least one
34780
- of the following places: within a NOTICE text file distributed
34781
- as part of the Derivative Works; within the Source form or
34782
- documentation, if provided along with the Derivative Works; or,
34783
- within a display generated by the Derivative Works, if and
34784
- wherever such third-party notices normally appear. The contents
34785
- of the NOTICE file are for informational purposes only and
34786
- do not modify the License. You may add Your own attribution
34787
- notices within Derivative Works that You distribute, alongside
34788
- or as an addendum to the NOTICE text from the Work, provided
34789
- that such additional attribution notices cannot be construed
34790
- as modifying the License.
34791
-
34792
- You may add Your own copyright statement to Your modifications and
34793
- may provide additional or different license terms and conditions
34794
- for use, reproduction, or distribution of Your modifications, or
34795
- for any such Derivative Works as a whole, provided Your use,
34796
- reproduction, and distribution of the Work otherwise complies with
34797
- the conditions stated in this License.
34798
-
34799
- 5. Submission of Contributions. Unless You explicitly state otherwise,
34800
- any Contribution intentionally submitted for inclusion in the Work
34801
- by You to the Licensor shall be under the terms and conditions of
34802
- this License, without any additional terms or conditions.
34803
- Notwithstanding the above, nothing herein shall supersede or modify
34804
- the terms of any separate license agreement you may have executed
34805
- with Licensor regarding such Contributions.
34806
-
34807
- 6. Trademarks. This License does not grant permission to use the trade
34808
- names, trademarks, service marks, or product names of the Licensor,
34809
- except as required for reasonable and customary use in describing the
34810
- origin of the Work and reproducing the content of the NOTICE file.
34811
-
34812
- 7. Disclaimer of Warranty. Unless required by applicable law or
34813
- agreed to in writing, Licensor provides the Work (and each
34814
- Contributor provides its Contributions) on an "AS IS" BASIS,
34815
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34816
- implied, including, without limitation, any warranties or conditions
34817
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34818
- PARTICULAR PURPOSE. You are solely responsible for determining the
34819
- appropriateness of using or redistributing the Work and assume any
34820
- risks associated with Your exercise of permissions under this License.
34821
-
34822
- 8. Limitation of Liability. In no event and under no legal theory,
34823
- whether in tort (including negligence), contract, or otherwise,
34824
- unless required by applicable law (such as deliberate and grossly
34825
- negligent acts) or agreed to in writing, shall any Contributor be
34826
- liable to You for damages, including any direct, indirect, special,
34827
- incidental, or consequential damages of any character arising as a
34828
- result of this License or out of the use or inability to use the
34829
- Work (including but not limited to damages for loss of goodwill,
34830
- work stoppage, computer failure or malfunction, or any and all
34831
- other commercial damages or losses), even if such Contributor
34832
- has been advised of the possibility of such damages.
34833
-
34834
- 9. Accepting Warranty or Additional Liability. While redistributing
34835
- the Work or Derivative Works thereof, You may choose to offer,
34836
- and charge a fee for, acceptance of support, warranty, indemnity,
34837
- or other liability obligations and/or rights consistent with this
34838
- License. However, in accepting such obligations, You may act only
34839
- on Your own behalf and on Your sole responsibility, not on behalf
34840
- of any other Contributor, and only if You agree to indemnify,
34841
- defend, and hold each Contributor harmless for any liability
34842
- incurred by, or claims asserted against, such Contributor by reason
34843
- of your accepting any such warranty or additional liability.
34844
-
34845
- END OF TERMS AND CONDITIONS
34846
-
34847
- APPENDIX: How to apply the Apache License to your work.
34848
-
34849
- To apply the Apache License to your work, attach the following
34850
- boilerplate notice, with the fields enclosed by brackets "[]"
34851
- replaced with your own identifying information. (Don't include
34852
- the brackets!) The text should be enclosed in the appropriate
34853
- comment syntax for the file format. We also recommend that a
34854
- file or class name and description of purpose be included on the
34855
- same "printed page" as the copyright notice for easier
34856
- identification within third-party archives.
34857
-
34858
- Copyright [yyyy] [name of copyright owner]
34859
-
34860
- Licensed under the Apache License, Version 2.0 (the "License");
34861
- you may not use this file except in compliance with the License.
34862
- You may obtain a copy of the License at
35571
+ Permission is hereby granted, free of charge, to any
35572
+ person obtaining a copy of this software and associated
35573
+ documentation files (the "Software"), to deal in the
35574
+ Software without restriction, including without
35575
+ limitation the rights to use, copy, modify, merge,
35576
+ publish, distribute, sublicense, and/or sell copies of
35577
+ the Software, and to permit persons to whom the Software
35578
+ is furnished to do so, subject to the following
35579
+ conditions:
34863
35580
 
34864
- http://www.apache.org/licenses/LICENSE-2.0
35581
+ The above copyright notice and this permission notice
35582
+ shall be included in all copies or substantial portions
35583
+ of the Software.
34865
35584
 
34866
- Unless required by applicable law or agreed to in writing, software
34867
- distributed under the License is distributed on an "AS IS" BASIS,
34868
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34869
- See the License for the specific language governing permissions and
34870
- limitations under the License.
35585
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
35586
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
35587
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35588
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
35589
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
35590
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35591
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
35592
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35593
+ DEALINGS IN THE SOFTWARE.
34871
35594
 
34872
35595
  ================================================================================
34873
- target-features LICENSE-MIT
35596
+ tokio-util LICENSE
34874
35597
  ================================================================================
34875
35598
 
34876
- Copyright 2022 Caleb Zulawski
35599
+ Copyright (c) 2023 Tokio Contributors
34877
35600
 
34878
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
35601
+ Permission is hereby granted, free of charge, to any
35602
+ person obtaining a copy of this software and associated
35603
+ documentation files (the "Software"), to deal in the
35604
+ Software without restriction, including without
35605
+ limitation the rights to use, copy, modify, merge,
35606
+ publish, distribute, sublicense, and/or sell copies of
35607
+ the Software, and to permit persons to whom the Software
35608
+ is furnished to do so, subject to the following
35609
+ conditions:
34879
35610
 
34880
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
35611
+ The above copyright notice and this permission notice
35612
+ shall be included in all copies or substantial portions
35613
+ of the Software.
34881
35614
 
34882
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35615
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
35616
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
35617
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35618
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
35619
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
35620
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35621
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
35622
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35623
+ DEALINGS IN THE SOFTWARE.
34883
35624
 
34884
35625
  ================================================================================
34885
- thiserror LICENSE-APACHE
35626
+ unicode-ident LICENSE-APACHE
34886
35627
  ================================================================================
34887
35628
 
34888
35629
  Apache License
@@ -35063,7 +35804,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35063
35804
  END OF TERMS AND CONDITIONS
35064
35805
 
35065
35806
  ================================================================================
35066
- thiserror LICENSE-MIT
35807
+ unicode-ident LICENSE-MIT
35067
35808
  ================================================================================
35068
35809
 
35069
35810
  Permission is hereby granted, free of charge, to any
@@ -35091,7 +35832,58 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35091
35832
  DEALINGS IN THE SOFTWARE.
35092
35833
 
35093
35834
  ================================================================================
35094
- thiserror-impl LICENSE-APACHE
35835
+ unicode-ident LICENSE-UNICODE
35836
+ ================================================================================
35837
+
35838
+ UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
35839
+
35840
+ See Terms of Use <https://www.unicode.org/copyright.html>
35841
+ for definitions of Unicode Inc.’s Data Files and Software.
35842
+
35843
+ NOTICE TO USER: Carefully read the following legal agreement.
35844
+ BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
35845
+ DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
35846
+ YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
35847
+ TERMS AND CONDITIONS OF THIS AGREEMENT.
35848
+ IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
35849
+ THE DATA FILES OR SOFTWARE.
35850
+
35851
+ COPYRIGHT AND PERMISSION NOTICE
35852
+
35853
+ Copyright © 1991-2022 Unicode, Inc. All rights reserved.
35854
+ Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
35855
+
35856
+ Permission is hereby granted, free of charge, to any person obtaining
35857
+ a copy of the Unicode data files and any associated documentation
35858
+ (the "Data Files") or Unicode software and any associated documentation
35859
+ (the "Software") to deal in the Data Files or Software
35860
+ without restriction, including without limitation the rights to use,
35861
+ copy, modify, merge, publish, distribute, and/or sell copies of
35862
+ the Data Files or Software, and to permit persons to whom the Data Files
35863
+ or Software are furnished to do so, provided that either
35864
+ (a) this copyright and permission notice appear with all copies
35865
+ of the Data Files or Software, or
35866
+ (b) this copyright and permission notice appear in associated
35867
+ Documentation.
35868
+
35869
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
35870
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35871
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35872
+ NONINFRINGEMENT OF THIRD PARTY RIGHTS.
35873
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
35874
+ NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
35875
+ DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
35876
+ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
35877
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
35878
+ PERFORMANCE OF THE DATA FILES OR SOFTWARE.
35879
+
35880
+ Except as contained in this notice, the name of a copyright holder
35881
+ shall not be used in advertising or otherwise to promote the sale,
35882
+ use or other dealings in these Data Files or Software without prior
35883
+ written authorization of the copyright holder.
35884
+
35885
+ ================================================================================
35886
+ unicode-reverse LICENSE-APACHE
35095
35887
  ================================================================================
35096
35888
 
35097
35889
  Apache License
@@ -35271,10 +36063,37 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35271
36063
 
35272
36064
  END OF TERMS AND CONDITIONS
35273
36065
 
36066
+ APPENDIX: How to apply the Apache License to your work.
36067
+
36068
+ To apply the Apache License to your work, attach the following
36069
+ boilerplate notice, with the fields enclosed by brackets "[]"
36070
+ replaced with your own identifying information. (Don't include
36071
+ the brackets!) The text should be enclosed in the appropriate
36072
+ comment syntax for the file format. We also recommend that a
36073
+ file or class name and description of purpose be included on the
36074
+ same "printed page" as the copyright notice for easier
36075
+ identification within third-party archives.
36076
+
36077
+ Copyright [yyyy] [name of copyright owner]
36078
+
36079
+ Licensed under the Apache License, Version 2.0 (the "License");
36080
+ you may not use this file except in compliance with the License.
36081
+ You may obtain a copy of the License at
36082
+
36083
+ http://www.apache.org/licenses/LICENSE-2.0
36084
+
36085
+ Unless required by applicable law or agreed to in writing, software
36086
+ distributed under the License is distributed on an "AS IS" BASIS,
36087
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36088
+ See the License for the specific language governing permissions and
36089
+ limitations under the License.
36090
+
35274
36091
  ================================================================================
35275
- thiserror-impl LICENSE-MIT
36092
+ unicode-reverse LICENSE-MIT
35276
36093
  ================================================================================
35277
36094
 
36095
+ Copyright (c) 2016 Matt Brubeck
36096
+
35278
36097
  Permission is hereby granted, free of charge, to any
35279
36098
  person obtaining a copy of this software and associated
35280
36099
  documentation files (the "Software"), to deal in the
@@ -35300,40 +36119,216 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35300
36119
  DEALINGS IN THE SOFTWARE.
35301
36120
 
35302
36121
  ================================================================================
35303
- tokio LICENSE
36122
+ unicode-segmentation LICENSE-APACHE
35304
36123
  ================================================================================
35305
36124
 
35306
- Copyright (c) 2023 Tokio Contributors
36125
+ Apache License
36126
+ Version 2.0, January 2004
36127
+ http://www.apache.org/licenses/
35307
36128
 
35308
- Permission is hereby granted, free of charge, to any
35309
- person obtaining a copy of this software and associated
35310
- documentation files (the "Software"), to deal in the
35311
- Software without restriction, including without
35312
- limitation the rights to use, copy, modify, merge,
35313
- publish, distribute, sublicense, and/or sell copies of
35314
- the Software, and to permit persons to whom the Software
35315
- is furnished to do so, subject to the following
35316
- conditions:
36129
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35317
36130
 
35318
- The above copyright notice and this permission notice
35319
- shall be included in all copies or substantial portions
35320
- of the Software.
36131
+ 1. Definitions.
35321
36132
 
35322
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
35323
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
35324
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35325
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
35326
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
35327
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35328
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
35329
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35330
- DEALINGS IN THE SOFTWARE.
36133
+ "License" shall mean the terms and conditions for use, reproduction,
36134
+ and distribution as defined by Sections 1 through 9 of this document.
36135
+
36136
+ "Licensor" shall mean the copyright owner or entity authorized by
36137
+ the copyright owner that is granting the License.
36138
+
36139
+ "Legal Entity" shall mean the union of the acting entity and all
36140
+ other entities that control, are controlled by, or are under common
36141
+ control with that entity. For the purposes of this definition,
36142
+ "control" means (i) the power, direct or indirect, to cause the
36143
+ direction or management of such entity, whether by contract or
36144
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
36145
+ outstanding shares, or (iii) beneficial ownership of such entity.
36146
+
36147
+ "You" (or "Your") shall mean an individual or Legal Entity
36148
+ exercising permissions granted by this License.
36149
+
36150
+ "Source" form shall mean the preferred form for making modifications,
36151
+ including but not limited to software source code, documentation
36152
+ source, and configuration files.
36153
+
36154
+ "Object" form shall mean any form resulting from mechanical
36155
+ transformation or translation of a Source form, including but
36156
+ not limited to compiled object code, generated documentation,
36157
+ and conversions to other media types.
36158
+
36159
+ "Work" shall mean the work of authorship, whether in Source or
36160
+ Object form, made available under the License, as indicated by a
36161
+ copyright notice that is included in or attached to the work
36162
+ (an example is provided in the Appendix below).
36163
+
36164
+ "Derivative Works" shall mean any work, whether in Source or Object
36165
+ form, that is based on (or derived from) the Work and for which the
36166
+ editorial revisions, annotations, elaborations, or other modifications
36167
+ represent, as a whole, an original work of authorship. For the purposes
36168
+ of this License, Derivative Works shall not include works that remain
36169
+ separable from, or merely link (or bind by name) to the interfaces of,
36170
+ the Work and Derivative Works thereof.
36171
+
36172
+ "Contribution" shall mean any work of authorship, including
36173
+ the original version of the Work and any modifications or additions
36174
+ to that Work or Derivative Works thereof, that is intentionally
36175
+ submitted to Licensor for inclusion in the Work by the copyright owner
36176
+ or by an individual or Legal Entity authorized to submit on behalf of
36177
+ the copyright owner. For the purposes of this definition, "submitted"
36178
+ means any form of electronic, verbal, or written communication sent
36179
+ to the Licensor or its representatives, including but not limited to
36180
+ communication on electronic mailing lists, source code control systems,
36181
+ and issue tracking systems that are managed by, or on behalf of, the
36182
+ Licensor for the purpose of discussing and improving the Work, but
36183
+ excluding communication that is conspicuously marked or otherwise
36184
+ designated in writing by the copyright owner as "Not a Contribution."
36185
+
36186
+ "Contributor" shall mean Licensor and any individual or Legal Entity
36187
+ on behalf of whom a Contribution has been received by Licensor and
36188
+ subsequently incorporated within the Work.
36189
+
36190
+ 2. Grant of Copyright License. Subject to the terms and conditions of
36191
+ this License, each Contributor hereby grants to You a perpetual,
36192
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
36193
+ copyright license to reproduce, prepare Derivative Works of,
36194
+ publicly display, publicly perform, sublicense, and distribute the
36195
+ Work and such Derivative Works in Source or Object form.
36196
+
36197
+ 3. Grant of Patent License. Subject to the terms and conditions of
36198
+ this License, each Contributor hereby grants to You a perpetual,
36199
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
36200
+ (except as stated in this section) patent license to make, have made,
36201
+ use, offer to sell, sell, import, and otherwise transfer the Work,
36202
+ where such license applies only to those patent claims licensable
36203
+ by such Contributor that are necessarily infringed by their
36204
+ Contribution(s) alone or by combination of their Contribution(s)
36205
+ with the Work to which such Contribution(s) was submitted. If You
36206
+ institute patent litigation against any entity (including a
36207
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
36208
+ or a Contribution incorporated within the Work constitutes direct
36209
+ or contributory patent infringement, then any patent licenses
36210
+ granted to You under this License for that Work shall terminate
36211
+ as of the date such litigation is filed.
36212
+
36213
+ 4. Redistribution. You may reproduce and distribute copies of the
36214
+ Work or Derivative Works thereof in any medium, with or without
36215
+ modifications, and in Source or Object form, provided that You
36216
+ meet the following conditions:
36217
+
36218
+ (a) You must give any other recipients of the Work or
36219
+ Derivative Works a copy of this License; and
36220
+
36221
+ (b) You must cause any modified files to carry prominent notices
36222
+ stating that You changed the files; and
36223
+
36224
+ (c) You must retain, in the Source form of any Derivative Works
36225
+ that You distribute, all copyright, patent, trademark, and
36226
+ attribution notices from the Source form of the Work,
36227
+ excluding those notices that do not pertain to any part of
36228
+ the Derivative Works; and
36229
+
36230
+ (d) If the Work includes a "NOTICE" text file as part of its
36231
+ distribution, then any Derivative Works that You distribute must
36232
+ include a readable copy of the attribution notices contained
36233
+ within such NOTICE file, excluding those notices that do not
36234
+ pertain to any part of the Derivative Works, in at least one
36235
+ of the following places: within a NOTICE text file distributed
36236
+ as part of the Derivative Works; within the Source form or
36237
+ documentation, if provided along with the Derivative Works; or,
36238
+ within a display generated by the Derivative Works, if and
36239
+ wherever such third-party notices normally appear. The contents
36240
+ of the NOTICE file are for informational purposes only and
36241
+ do not modify the License. You may add Your own attribution
36242
+ notices within Derivative Works that You distribute, alongside
36243
+ or as an addendum to the NOTICE text from the Work, provided
36244
+ that such additional attribution notices cannot be construed
36245
+ as modifying the License.
36246
+
36247
+ You may add Your own copyright statement to Your modifications and
36248
+ may provide additional or different license terms and conditions
36249
+ for use, reproduction, or distribution of Your modifications, or
36250
+ for any such Derivative Works as a whole, provided Your use,
36251
+ reproduction, and distribution of the Work otherwise complies with
36252
+ the conditions stated in this License.
36253
+
36254
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
36255
+ any Contribution intentionally submitted for inclusion in the Work
36256
+ by You to the Licensor shall be under the terms and conditions of
36257
+ this License, without any additional terms or conditions.
36258
+ Notwithstanding the above, nothing herein shall supersede or modify
36259
+ the terms of any separate license agreement you may have executed
36260
+ with Licensor regarding such Contributions.
36261
+
36262
+ 6. Trademarks. This License does not grant permission to use the trade
36263
+ names, trademarks, service marks, or product names of the Licensor,
36264
+ except as required for reasonable and customary use in describing the
36265
+ origin of the Work and reproducing the content of the NOTICE file.
36266
+
36267
+ 7. Disclaimer of Warranty. Unless required by applicable law or
36268
+ agreed to in writing, Licensor provides the Work (and each
36269
+ Contributor provides its Contributions) on an "AS IS" BASIS,
36270
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
36271
+ implied, including, without limitation, any warranties or conditions
36272
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
36273
+ PARTICULAR PURPOSE. You are solely responsible for determining the
36274
+ appropriateness of using or redistributing the Work and assume any
36275
+ risks associated with Your exercise of permissions under this License.
36276
+
36277
+ 8. Limitation of Liability. In no event and under no legal theory,
36278
+ whether in tort (including negligence), contract, or otherwise,
36279
+ unless required by applicable law (such as deliberate and grossly
36280
+ negligent acts) or agreed to in writing, shall any Contributor be
36281
+ liable to You for damages, including any direct, indirect, special,
36282
+ incidental, or consequential damages of any character arising as a
36283
+ result of this License or out of the use or inability to use the
36284
+ Work (including but not limited to damages for loss of goodwill,
36285
+ work stoppage, computer failure or malfunction, or any and all
36286
+ other commercial damages or losses), even if such Contributor
36287
+ has been advised of the possibility of such damages.
36288
+
36289
+ 9. Accepting Warranty or Additional Liability. While redistributing
36290
+ the Work or Derivative Works thereof, You may choose to offer,
36291
+ and charge a fee for, acceptance of support, warranty, indemnity,
36292
+ or other liability obligations and/or rights consistent with this
36293
+ License. However, in accepting such obligations, You may act only
36294
+ on Your own behalf and on Your sole responsibility, not on behalf
36295
+ of any other Contributor, and only if You agree to indemnify,
36296
+ defend, and hold each Contributor harmless for any liability
36297
+ incurred by, or claims asserted against, such Contributor by reason
36298
+ of your accepting any such warranty or additional liability.
36299
+
36300
+ END OF TERMS AND CONDITIONS
36301
+
36302
+ APPENDIX: How to apply the Apache License to your work.
36303
+
36304
+ To apply the Apache License to your work, attach the following
36305
+ boilerplate notice, with the fields enclosed by brackets "[]"
36306
+ replaced with your own identifying information. (Don't include
36307
+ the brackets!) The text should be enclosed in the appropriate
36308
+ comment syntax for the file format. We also recommend that a
36309
+ file or class name and description of purpose be included on the
36310
+ same "printed page" as the copyright notice for easier
36311
+ identification within third-party archives.
36312
+
36313
+ Copyright [yyyy] [name of copyright owner]
36314
+
36315
+ Licensed under the Apache License, Version 2.0 (the "License");
36316
+ you may not use this file except in compliance with the License.
36317
+ You may obtain a copy of the License at
36318
+
36319
+ http://www.apache.org/licenses/LICENSE-2.0
36320
+
36321
+ Unless required by applicable law or agreed to in writing, software
36322
+ distributed under the License is distributed on an "AS IS" BASIS,
36323
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36324
+ See the License for the specific language governing permissions and
36325
+ limitations under the License.
35331
36326
 
35332
36327
  ================================================================================
35333
- tokio-util LICENSE
36328
+ unicode-segmentation LICENSE-MIT
35334
36329
  ================================================================================
35335
36330
 
35336
- Copyright (c) 2023 Tokio Contributors
36331
+ Copyright (c) 2015 The Rust Project Developers
35337
36332
 
35338
36333
  Permission is hereby granted, free of charge, to any
35339
36334
  person obtaining a copy of this software and associated
@@ -35360,7 +36355,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35360
36355
  DEALINGS IN THE SOFTWARE.
35361
36356
 
35362
36357
  ================================================================================
35363
- unicode-ident LICENSE-APACHE
36358
+ unicode-width LICENSE-APACHE
35364
36359
  ================================================================================
35365
36360
 
35366
36361
  Apache License
@@ -35540,10 +36535,37 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35540
36535
 
35541
36536
  END OF TERMS AND CONDITIONS
35542
36537
 
36538
+ APPENDIX: How to apply the Apache License to your work.
36539
+
36540
+ To apply the Apache License to your work, attach the following
36541
+ boilerplate notice, with the fields enclosed by brackets "[]"
36542
+ replaced with your own identifying information. (Don't include
36543
+ the brackets!) The text should be enclosed in the appropriate
36544
+ comment syntax for the file format. We also recommend that a
36545
+ file or class name and description of purpose be included on the
36546
+ same "printed page" as the copyright notice for easier
36547
+ identification within third-party archives.
36548
+
36549
+ Copyright [yyyy] [name of copyright owner]
36550
+
36551
+ Licensed under the Apache License, Version 2.0 (the "License");
36552
+ you may not use this file except in compliance with the License.
36553
+ You may obtain a copy of the License at
36554
+
36555
+ http://www.apache.org/licenses/LICENSE-2.0
36556
+
36557
+ Unless required by applicable law or agreed to in writing, software
36558
+ distributed under the License is distributed on an "AS IS" BASIS,
36559
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36560
+ See the License for the specific language governing permissions and
36561
+ limitations under the License.
36562
+
35543
36563
  ================================================================================
35544
- unicode-ident LICENSE-MIT
36564
+ unicode-width LICENSE-MIT
35545
36565
  ================================================================================
35546
36566
 
36567
+ Copyright (c) 2015 The Rust Project Developers
36568
+
35547
36569
  Permission is hereby granted, free of charge, to any
35548
36570
  person obtaining a copy of this software and associated
35549
36571
  documentation files (the "Software"), to deal in the
@@ -35569,58 +36591,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35569
36591
  DEALINGS IN THE SOFTWARE.
35570
36592
 
35571
36593
  ================================================================================
35572
- unicode-ident LICENSE-UNICODE
35573
- ================================================================================
35574
-
35575
- UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
35576
-
35577
- See Terms of Use <https://www.unicode.org/copyright.html>
35578
- for definitions of Unicode Inc.’s Data Files and Software.
35579
-
35580
- NOTICE TO USER: Carefully read the following legal agreement.
35581
- BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
35582
- DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
35583
- YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
35584
- TERMS AND CONDITIONS OF THIS AGREEMENT.
35585
- IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
35586
- THE DATA FILES OR SOFTWARE.
35587
-
35588
- COPYRIGHT AND PERMISSION NOTICE
35589
-
35590
- Copyright © 1991-2022 Unicode, Inc. All rights reserved.
35591
- Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
35592
-
35593
- Permission is hereby granted, free of charge, to any person obtaining
35594
- a copy of the Unicode data files and any associated documentation
35595
- (the "Data Files") or Unicode software and any associated documentation
35596
- (the "Software") to deal in the Data Files or Software
35597
- without restriction, including without limitation the rights to use,
35598
- copy, modify, merge, publish, distribute, and/or sell copies of
35599
- the Data Files or Software, and to permit persons to whom the Data Files
35600
- or Software are furnished to do so, provided that either
35601
- (a) this copyright and permission notice appear with all copies
35602
- of the Data Files or Software, or
35603
- (b) this copyright and permission notice appear in associated
35604
- Documentation.
35605
-
35606
- THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
35607
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35608
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35609
- NONINFRINGEMENT OF THIRD PARTY RIGHTS.
35610
- IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
35611
- NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
35612
- DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
35613
- DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
35614
- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
35615
- PERFORMANCE OF THE DATA FILES OR SOFTWARE.
35616
-
35617
- Except as contained in this notice, the name of a copyright holder
35618
- shall not be used in advertising or otherwise to promote the sale,
35619
- use or other dealings in these Data Files or Software without prior
35620
- written authorization of the copyright holder.
35621
-
35622
- ================================================================================
35623
- unicode-width LICENSE-APACHE
36594
+ uuid LICENSE-APACHE
35624
36595
  ================================================================================
35625
36596
 
35626
36597
  Apache License
@@ -35826,10 +36797,11 @@ See the License for the specific language governing permissions and
35826
36797
  limitations under the License.
35827
36798
 
35828
36799
  ================================================================================
35829
- unicode-width LICENSE-MIT
36800
+ uuid LICENSE-MIT
35830
36801
  ================================================================================
35831
36802
 
35832
- Copyright (c) 2015 The Rust Project Developers
36803
+ Copyright (c) 2014 The Rust Project Developers
36804
+ Copyright (c) 2018 Ashley Mannix, Christopher Armstrong, Dylan DPC, Hunar Roop Kahlon
35833
36805
 
35834
36806
  Permission is hereby granted, free of charge, to any
35835
36807
  person obtaining a copy of this software and associated