polars-df 0.8.0-x86_64-darwin → 0.9.0-x86_64-darwin

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.bundle +0 -0
  9. data/lib/polars/3.2/polars.bundle +0 -0
  10. data/lib/polars/3.3/polars.bundle +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
@@ -301,7 +297,7 @@ jobserver v0.1.27
301
297
  https://github.com/alexcrichton/jobserver-rs
302
298
  MIT/Apache-2.0
303
299
 
304
- jsonpath_lib v0.3.0
300
+ jsonpath_lib_polars_vendor v0.0.1
305
301
  https://github.com/freestrings/jsonpath
306
302
  MIT
307
303
 
@@ -493,65 +489,68 @@ planus v0.3.1
493
489
  https://github.com/planus-org/planus
494
490
  MIT/Apache-2.0
495
491
 
496
- polars v0.36.2
492
+ polars v0.38.1
497
493
  https://www.pola.rs/
498
494
  MIT
499
495
 
500
- polars-arrow v0.36.2
496
+ polars-arrow v0.38.1
501
497
  https://www.pola.rs/
502
498
 
503
- polars-compute v0.36.2
499
+ polars-arrow-format v0.1.0
500
+ https://github.com/polar-rs/arrow-format
501
+
502
+ polars-compute v0.38.1
504
503
  https://www.pola.rs/
505
504
  MIT
506
505
 
507
- polars-core v0.36.2
506
+ polars-core v0.38.1
508
507
  https://www.pola.rs/
509
508
  MIT
510
509
 
511
- polars-error v0.36.2
510
+ polars-error v0.38.1
512
511
  https://www.pola.rs/
513
512
  MIT
514
513
 
515
- polars-io v0.36.2
514
+ polars-io v0.38.1
516
515
  https://www.pola.rs/
517
516
  MIT
518
517
 
519
- polars-json v0.36.2
518
+ polars-json v0.38.1
520
519
  https://www.pola.rs/
521
520
  MIT
522
521
 
523
- polars-lazy v0.36.2
522
+ polars-lazy v0.38.1
524
523
  https://www.pola.rs/
525
524
  MIT
526
525
 
527
- polars-ops v0.36.2
526
+ polars-ops v0.38.1
528
527
  https://www.pola.rs/
529
528
  MIT
530
529
 
531
- polars-parquet v0.36.2
530
+ polars-parquet v0.38.1
532
531
  https://www.pola.rs/
533
532
 
534
- polars-pipe v0.36.2
533
+ polars-pipe v0.38.1
535
534
  https://www.pola.rs/
536
535
  MIT
537
536
 
538
- polars-plan v0.36.2
537
+ polars-plan v0.38.1
539
538
  https://www.pola.rs/
540
539
  MIT
541
540
 
542
- polars-row v0.36.2
541
+ polars-row v0.38.1
543
542
  https://www.pola.rs/
544
543
  MIT
545
544
 
546
- polars-sql v0.36.2
545
+ polars-sql v0.38.1
547
546
  https://www.pola.rs/
548
547
  MIT
549
548
 
550
- polars-time v0.36.2
549
+ polars-time v0.38.1
551
550
  https://www.pola.rs/
552
551
  MIT
553
552
 
554
- polars-utils v0.36.2
553
+ polars-utils v0.38.1
555
554
  https://www.pola.rs/
556
555
  MIT
557
556
 
@@ -583,19 +582,23 @@ rand_distr v0.4.3
583
582
  https://rust-random.github.io/book
584
583
  MIT OR Apache-2.0
585
584
 
586
- rayon v1.8.0
585
+ raw-cpuid v11.0.1
586
+ https://github.com/gz/rust-cpuid
587
+ MIT
588
+
589
+ rayon v1.9.0
587
590
  https://github.com/rayon-rs/rayon
588
591
  MIT OR Apache-2.0
589
592
 
590
- rayon-core v1.12.0
593
+ rayon-core v1.12.1
591
594
  https://github.com/rayon-rs/rayon
592
595
  MIT OR Apache-2.0
593
596
 
594
- rb-sys v0.9.86
597
+ rb-sys v0.9.90
595
598
  https://github.com/oxidize-rb/rb-sys
596
599
  MIT OR Apache-2.0
597
600
 
598
- rb-sys-build v0.9.86
601
+ rb-sys-build v0.9.90
599
602
  https://github.com/oxidize-rb/rb-sys
600
603
  MIT OR Apache-2.0
601
604
 
@@ -763,10 +766,22 @@ unicode-ident v1.0.12
763
766
  https://github.com/dtolnay/unicode-ident
764
767
  (MIT OR Apache-2.0) AND Unicode-DFS-2016
765
768
 
769
+ unicode-reverse v1.0.8
770
+ https://github.com/mbrubeck/unicode-reverse
771
+ MIT / Apache-2.0
772
+
773
+ unicode-segmentation v1.10.1
774
+ https://github.com/unicode-rs/unicode-segmentation
775
+ MIT/Apache-2.0
776
+
766
777
  unicode-width v0.1.11
767
778
  https://github.com/unicode-rs/unicode-width
768
779
  MIT/Apache-2.0
769
780
 
781
+ uuid v1.7.0
782
+ https://github.com/uuid-rs/uuid
783
+ Apache-2.0 OR MIT
784
+
770
785
  value-trait v0.8.0
771
786
  https://github.com/simd-lite/value-trait
772
787
  Apache-2.0/MIT
@@ -1464,33 +1479,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1464
1479
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1465
1480
  SOFTWARE.
1466
1481
 
1467
- ================================================================================
1468
- array-init-cursor LICENSE-MIT
1469
- ================================================================================
1470
-
1471
- MIT License
1472
-
1473
- Copyright (c) 2021 The Planus Project Developers
1474
-
1475
- Permission is hereby granted, free of charge, to any person obtaining a copy
1476
- of this software and associated documentation files (the "Software"), to deal
1477
- in the Software without restriction, including without limitation the rights
1478
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1479
- copies of the Software, and to permit persons to whom the Software is
1480
- furnished to do so, subject to the following conditions:
1481
-
1482
- The above copyright notice and this permission notice shall be included in all
1483
- copies or substantial portions of the Software.
1484
-
1485
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1486
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1487
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1488
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1489
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1490
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1491
- SOFTWARE.
1492
-
1493
-
1494
1482
  ================================================================================
1495
1483
  array-init-cursor LICENSE-APACHE
1496
1484
  ================================================================================
@@ -1674,200 +1662,31 @@ END OF TERMS AND CONDITIONS
1674
1662
 
1675
1663
 
1676
1664
  ================================================================================
1677
- arrow-format LICENSE
1665
+ array-init-cursor LICENSE-MIT
1678
1666
  ================================================================================
1679
1667
 
1668
+ MIT License
1680
1669
 
1681
- Apache License
1682
- Version 2.0, January 2004
1683
- https://www.apache.org/licenses/
1684
-
1685
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1686
-
1687
- 1. Definitions.
1688
-
1689
- "License" shall mean the terms and conditions for use, reproduction,
1690
- and distribution as defined by Sections 1 through 9 of this document.
1691
-
1692
- "Licensor" shall mean the copyright owner or entity authorized by
1693
- the copyright owner that is granting the License.
1694
-
1695
- "Legal Entity" shall mean the union of the acting entity and all
1696
- other entities that control, are controlled by, or are under common
1697
- control with that entity. For the purposes of this definition,
1698
- "control" means (i) the power, direct or indirect, to cause the
1699
- direction or management of such entity, whether by contract or
1700
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
1701
- outstanding shares, or (iii) beneficial ownership of such entity.
1702
-
1703
- "You" (or "Your") shall mean an individual or Legal Entity
1704
- exercising permissions granted by this License.
1705
-
1706
- "Source" form shall mean the preferred form for making modifications,
1707
- including but not limited to software source code, documentation
1708
- source, and configuration files.
1709
-
1710
- "Object" form shall mean any form resulting from mechanical
1711
- transformation or translation of a Source form, including but
1712
- not limited to compiled object code, generated documentation,
1713
- and conversions to other media types.
1714
-
1715
- "Work" shall mean the work of authorship, whether in Source or
1716
- Object form, made available under the License, as indicated by a
1717
- copyright notice that is included in or attached to the work
1718
- (an example is provided in the Appendix below).
1719
-
1720
- "Derivative Works" shall mean any work, whether in Source or Object
1721
- form, that is based on (or derived from) the Work and for which the
1722
- editorial revisions, annotations, elaborations, or other modifications
1723
- represent, as a whole, an original work of authorship. For the purposes
1724
- of this License, Derivative Works shall not include works that remain
1725
- separable from, or merely link (or bind by name) to the interfaces of,
1726
- the Work and Derivative Works thereof.
1727
-
1728
- "Contribution" shall mean any work of authorship, including
1729
- the original version of the Work and any modifications or additions
1730
- to that Work or Derivative Works thereof, that is intentionally
1731
- submitted to Licensor for inclusion in the Work by the copyright owner
1732
- or by an individual or Legal Entity authorized to submit on behalf of
1733
- the copyright owner. For the purposes of this definition, "submitted"
1734
- means any form of electronic, verbal, or written communication sent
1735
- to the Licensor or its representatives, including but not limited to
1736
- communication on electronic mailing lists, source code control systems,
1737
- and issue tracking systems that are managed by, or on behalf of, the
1738
- Licensor for the purpose of discussing and improving the Work, but
1739
- excluding communication that is conspicuously marked or otherwise
1740
- designated in writing by the copyright owner as "Not a Contribution."
1741
-
1742
- "Contributor" shall mean Licensor and any individual or Legal Entity
1743
- on behalf of whom a Contribution has been received by Licensor and
1744
- subsequently incorporated within the Work.
1745
-
1746
- 2. Grant of Copyright License. Subject to the terms and conditions of
1747
- this License, each Contributor hereby grants to You a perpetual,
1748
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1749
- copyright license to reproduce, prepare Derivative Works of,
1750
- publicly display, publicly perform, sublicense, and distribute the
1751
- Work and such Derivative Works in Source or Object form.
1752
-
1753
- 3. Grant of Patent License. Subject to the terms and conditions of
1754
- this License, each Contributor hereby grants to You a perpetual,
1755
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1756
- (except as stated in this section) patent license to make, have made,
1757
- use, offer to sell, sell, import, and otherwise transfer the Work,
1758
- where such license applies only to those patent claims licensable
1759
- by such Contributor that are necessarily infringed by their
1760
- Contribution(s) alone or by combination of their Contribution(s)
1761
- with the Work to which such Contribution(s) was submitted. If You
1762
- institute patent litigation against any entity (including a
1763
- cross-claim or counterclaim in a lawsuit) alleging that the Work
1764
- or a Contribution incorporated within the Work constitutes direct
1765
- or contributory patent infringement, then any patent licenses
1766
- granted to You under this License for that Work shall terminate
1767
- as of the date such litigation is filed.
1768
-
1769
- 4. Redistribution. You may reproduce and distribute copies of the
1770
- Work or Derivative Works thereof in any medium, with or without
1771
- modifications, and in Source or Object form, provided that You
1772
- meet the following conditions:
1773
-
1774
- (a) You must give any other recipients of the Work or
1775
- Derivative Works a copy of this License; and
1776
-
1777
- (b) You must cause any modified files to carry prominent notices
1778
- stating that You changed the files; and
1779
-
1780
- (c) You must retain, in the Source form of any Derivative Works
1781
- that You distribute, all copyright, patent, trademark, and
1782
- attribution notices from the Source form of the Work,
1783
- excluding those notices that do not pertain to any part of
1784
- the Derivative Works; and
1785
-
1786
- (d) If the Work includes a "NOTICE" text file as part of its
1787
- distribution, then any Derivative Works that You distribute must
1788
- include a readable copy of the attribution notices contained
1789
- within such NOTICE file, excluding those notices that do not
1790
- pertain to any part of the Derivative Works, in at least one
1791
- of the following places: within a NOTICE text file distributed
1792
- as part of the Derivative Works; within the Source form or
1793
- documentation, if provided along with the Derivative Works; or,
1794
- within a display generated by the Derivative Works, if and
1795
- wherever such third-party notices normally appear. The contents
1796
- of the NOTICE file are for informational purposes only and
1797
- do not modify the License. You may add Your own attribution
1798
- notices within Derivative Works that You distribute, alongside
1799
- or as an addendum to the NOTICE text from the Work, provided
1800
- that such additional attribution notices cannot be construed
1801
- as modifying the License.
1802
-
1803
- You may add Your own copyright statement to Your modifications and
1804
- may provide additional or different license terms and conditions
1805
- for use, reproduction, or distribution of Your modifications, or
1806
- for any such Derivative Works as a whole, provided Your use,
1807
- reproduction, and distribution of the Work otherwise complies with
1808
- the conditions stated in this License.
1809
-
1810
- 5. Submission of Contributions. Unless You explicitly state otherwise,
1811
- any Contribution intentionally submitted for inclusion in the Work
1812
- by You to the Licensor shall be under the terms and conditions of
1813
- this License, without any additional terms or conditions.
1814
- Notwithstanding the above, nothing herein shall supersede or modify
1815
- the terms of any separate license agreement you may have executed
1816
- with Licensor regarding such Contributions.
1817
-
1818
- 6. Trademarks. This License does not grant permission to use the trade
1819
- names, trademarks, service marks, or product names of the Licensor,
1820
- except as required for reasonable and customary use in describing the
1821
- origin of the Work and reproducing the content of the NOTICE file.
1822
-
1823
- 7. Disclaimer of Warranty. Unless required by applicable law or
1824
- agreed to in writing, Licensor provides the Work (and each
1825
- Contributor provides its Contributions) on an "AS IS" BASIS,
1826
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1827
- implied, including, without limitation, any warranties or conditions
1828
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1829
- PARTICULAR PURPOSE. You are solely responsible for determining the
1830
- appropriateness of using or redistributing the Work and assume any
1831
- risks associated with Your exercise of permissions under this License.
1832
-
1833
- 8. Limitation of Liability. In no event and under no legal theory,
1834
- whether in tort (including negligence), contract, or otherwise,
1835
- unless required by applicable law (such as deliberate and grossly
1836
- negligent acts) or agreed to in writing, shall any Contributor be
1837
- liable to You for damages, including any direct, indirect, special,
1838
- incidental, or consequential damages of any character arising as a
1839
- result of this License or out of the use or inability to use the
1840
- Work (including but not limited to damages for loss of goodwill,
1841
- work stoppage, computer failure or malfunction, or any and all
1842
- other commercial damages or losses), even if such Contributor
1843
- has been advised of the possibility of such damages.
1844
-
1845
- 9. Accepting Warranty or Additional Liability. While redistributing
1846
- the Work or Derivative Works thereof, You may choose to offer,
1847
- and charge a fee for, acceptance of support, warranty, indemnity,
1848
- or other liability obligations and/or rights consistent with this
1849
- License. However, in accepting such obligations, You may act only
1850
- on Your own behalf and on Your sole responsibility, not on behalf
1851
- of any other Contributor, and only if You agree to indemnify,
1852
- defend, and hold each Contributor harmless for any liability
1853
- incurred by, or claims asserted against, such Contributor by reason
1854
- of your accepting any such warranty or additional liability.
1855
-
1856
- END OF TERMS AND CONDITIONS
1670
+ Copyright (c) 2021 The Planus Project Developers
1857
1671
 
1858
- Copyright 2020-2022 Jorge C. Leitão
1672
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1673
+ of this software and associated documentation files (the "Software"), to deal
1674
+ in the Software without restriction, including without limitation the rights
1675
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1676
+ copies of the Software, and to permit persons to whom the Software is
1677
+ furnished to do so, subject to the following conditions:
1859
1678
 
1860
- Licensed under the Apache License, Version 2.0 (the "License");
1861
- you may not use this file except in compliance with the License.
1862
- You may obtain a copy of the License at
1679
+ The above copyright notice and this permission notice shall be included in all
1680
+ copies or substantial portions of the Software.
1863
1681
 
1864
- https://www.apache.org/licenses/LICENSE-2.0
1682
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1683
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1684
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1685
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1686
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1687
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1688
+ SOFTWARE.
1865
1689
 
1866
- Unless required by applicable law or agreed to in writing, software
1867
- distributed under the License is distributed on an "AS IS" BASIS,
1868
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1869
- See the License for the specific language governing permissions and
1870
- limitations under the License.
1871
1690
 
1872
1691
  ================================================================================
1873
1692
  async-stream LICENSE
@@ -14713,7 +14532,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
14713
14532
  DEALINGS IN THE SOFTWARE.
14714
14533
 
14715
14534
  ================================================================================
14716
- jsonpath_lib LICENSE
14535
+ jsonpath_lib_polars_vendor LICENSE
14717
14536
  ================================================================================
14718
14537
 
14719
14538
  MIT License
@@ -24629,33 +24448,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24629
24448
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24630
24449
  DEALINGS IN THE SOFTWARE.
24631
24450
 
24632
- ================================================================================
24633
- planus LICENSE-MIT
24634
- ================================================================================
24635
-
24636
- MIT License
24637
-
24638
- Copyright (c) 2021 The Planus Project Developers
24639
-
24640
- Permission is hereby granted, free of charge, to any person obtaining a copy
24641
- of this software and associated documentation files (the "Software"), to deal
24642
- in the Software without restriction, including without limitation the rights
24643
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24644
- copies of the Software, and to permit persons to whom the Software is
24645
- furnished to do so, subject to the following conditions:
24646
-
24647
- The above copyright notice and this permission notice shall be included in all
24648
- copies or substantial portions of the Software.
24649
-
24650
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24651
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24652
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24653
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24654
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24655
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24656
- SOFTWARE.
24657
-
24658
-
24659
24451
  ================================================================================
24660
24452
  planus LICENSE-APACHE
24661
24453
  ================================================================================
@@ -24838,6 +24630,33 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
24838
24630
  END OF TERMS AND CONDITIONS
24839
24631
 
24840
24632
 
24633
+ ================================================================================
24634
+ planus LICENSE-MIT
24635
+ ================================================================================
24636
+
24637
+ MIT License
24638
+
24639
+ Copyright (c) 2021 The Planus Project Developers
24640
+
24641
+ Permission is hereby granted, free of charge, to any person obtaining a copy
24642
+ of this software and associated documentation files (the "Software"), to deal
24643
+ in the Software without restriction, including without limitation the rights
24644
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24645
+ copies of the Software, and to permit persons to whom the Software is
24646
+ furnished to do so, subject to the following conditions:
24647
+
24648
+ The above copyright notice and this permission notice shall be included in all
24649
+ copies or substantial portions of the Software.
24650
+
24651
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24652
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24653
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24654
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24655
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24656
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24657
+ SOFTWARE.
24658
+
24659
+
24841
24660
  ================================================================================
24842
24661
  polars LICENSE
24843
24662
  ================================================================================
@@ -25064,182 +24883,210 @@ to the MIT license in ../../LICENSE.
25064
24883
  limitations under the License.
25065
24884
 
25066
24885
  ================================================================================
25067
- polars-compute LICENSE
24886
+ polars-arrow-format LICENSE
25068
24887
  ================================================================================
25069
24888
 
25070
- Copyright (c) 2020 Ritchie Vink
25071
24889
 
25072
- Permission is hereby granted, free of charge, to any person obtaining a copy
25073
- of this software and associated documentation files (the "Software"), to deal
25074
- in the Software without restriction, including without limitation the rights
25075
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25076
- copies of the Software, and to permit persons to whom the Software is
25077
- furnished to do so, subject to the following conditions:
25078
-
25079
- The above copyright notice and this permission notice shall be included in all
25080
- copies or substantial portions of the Software.
25081
-
25082
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25083
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25084
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25085
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25086
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25087
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25088
- SOFTWARE.
24890
+ Apache License
24891
+ Version 2.0, January 2004
24892
+ https://www.apache.org/licenses/
25089
24893
 
25090
- ================================================================================
25091
- polars-core LICENSE
25092
- ================================================================================
24894
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25093
24895
 
25094
- Copyright (c) 2020 Ritchie Vink
24896
+ 1. Definitions.
25095
24897
 
25096
- Permission is hereby granted, free of charge, to any person obtaining a copy
25097
- of this software and associated documentation files (the "Software"), to deal
25098
- in the Software without restriction, including without limitation the rights
25099
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25100
- copies of the Software, and to permit persons to whom the Software is
25101
- furnished to do so, subject to the following conditions:
24898
+ "License" shall mean the terms and conditions for use, reproduction,
24899
+ and distribution as defined by Sections 1 through 9 of this document.
25102
24900
 
25103
- The above copyright notice and this permission notice shall be included in all
25104
- copies or substantial portions of the Software.
24901
+ "Licensor" shall mean the copyright owner or entity authorized by
24902
+ the copyright owner that is granting the License.
25105
24903
 
25106
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25107
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25108
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25109
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25110
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25111
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25112
- SOFTWARE.
24904
+ "Legal Entity" shall mean the union of the acting entity and all
24905
+ other entities that control, are controlled by, or are under common
24906
+ control with that entity. For the purposes of this definition,
24907
+ "control" means (i) the power, direct or indirect, to cause the
24908
+ direction or management of such entity, whether by contract or
24909
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
24910
+ outstanding shares, or (iii) beneficial ownership of such entity.
25113
24911
 
25114
- ================================================================================
25115
- polars-error LICENSE
25116
- ================================================================================
24912
+ "You" (or "Your") shall mean an individual or Legal Entity
24913
+ exercising permissions granted by this License.
25117
24914
 
25118
- Copyright (c) 2020 Ritchie Vink
24915
+ "Source" form shall mean the preferred form for making modifications,
24916
+ including but not limited to software source code, documentation
24917
+ source, and configuration files.
25119
24918
 
25120
- Permission is hereby granted, free of charge, to any person obtaining a copy
25121
- of this software and associated documentation files (the "Software"), to deal
25122
- in the Software without restriction, including without limitation the rights
25123
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25124
- copies of the Software, and to permit persons to whom the Software is
25125
- furnished to do so, subject to the following conditions:
24919
+ "Object" form shall mean any form resulting from mechanical
24920
+ transformation or translation of a Source form, including but
24921
+ not limited to compiled object code, generated documentation,
24922
+ and conversions to other media types.
25126
24923
 
25127
- The above copyright notice and this permission notice shall be included in all
25128
- copies or substantial portions of the Software.
24924
+ "Work" shall mean the work of authorship, whether in Source or
24925
+ Object form, made available under the License, as indicated by a
24926
+ copyright notice that is included in or attached to the work
24927
+ (an example is provided in the Appendix below).
25129
24928
 
25130
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25131
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25132
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25133
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25134
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25135
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25136
- SOFTWARE.
24929
+ "Derivative Works" shall mean any work, whether in Source or Object
24930
+ form, that is based on (or derived from) the Work and for which the
24931
+ editorial revisions, annotations, elaborations, or other modifications
24932
+ represent, as a whole, an original work of authorship. For the purposes
24933
+ of this License, Derivative Works shall not include works that remain
24934
+ separable from, or merely link (or bind by name) to the interfaces of,
24935
+ the Work and Derivative Works thereof.
25137
24936
 
25138
- ================================================================================
25139
- polars-io LICENSE
25140
- ================================================================================
24937
+ "Contribution" shall mean any work of authorship, including
24938
+ the original version of the Work and any modifications or additions
24939
+ to that Work or Derivative Works thereof, that is intentionally
24940
+ submitted to Licensor for inclusion in the Work by the copyright owner
24941
+ or by an individual or Legal Entity authorized to submit on behalf of
24942
+ the copyright owner. For the purposes of this definition, "submitted"
24943
+ means any form of electronic, verbal, or written communication sent
24944
+ to the Licensor or its representatives, including but not limited to
24945
+ communication on electronic mailing lists, source code control systems,
24946
+ and issue tracking systems that are managed by, or on behalf of, the
24947
+ Licensor for the purpose of discussing and improving the Work, but
24948
+ excluding communication that is conspicuously marked or otherwise
24949
+ designated in writing by the copyright owner as "Not a Contribution."
25141
24950
 
25142
- Copyright (c) 2020 Ritchie Vink
24951
+ "Contributor" shall mean Licensor and any individual or Legal Entity
24952
+ on behalf of whom a Contribution has been received by Licensor and
24953
+ subsequently incorporated within the Work.
25143
24954
 
25144
- Permission is hereby granted, free of charge, to any person obtaining a copy
25145
- of this software and associated documentation files (the "Software"), to deal
25146
- in the Software without restriction, including without limitation the rights
25147
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25148
- copies of the Software, and to permit persons to whom the Software is
25149
- furnished to do so, subject to the following conditions:
24955
+ 2. Grant of Copyright License. Subject to the terms and conditions of
24956
+ this License, each Contributor hereby grants to You a perpetual,
24957
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
24958
+ copyright license to reproduce, prepare Derivative Works of,
24959
+ publicly display, publicly perform, sublicense, and distribute the
24960
+ Work and such Derivative Works in Source or Object form.
25150
24961
 
25151
- The above copyright notice and this permission notice shall be included in all
25152
- copies or substantial portions of the Software.
24962
+ 3. Grant of Patent License. Subject to the terms and conditions of
24963
+ this License, each Contributor hereby grants to You a perpetual,
24964
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
24965
+ (except as stated in this section) patent license to make, have made,
24966
+ use, offer to sell, sell, import, and otherwise transfer the Work,
24967
+ where such license applies only to those patent claims licensable
24968
+ by such Contributor that are necessarily infringed by their
24969
+ Contribution(s) alone or by combination of their Contribution(s)
24970
+ with the Work to which such Contribution(s) was submitted. If You
24971
+ institute patent litigation against any entity (including a
24972
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
24973
+ or a Contribution incorporated within the Work constitutes direct
24974
+ or contributory patent infringement, then any patent licenses
24975
+ granted to You under this License for that Work shall terminate
24976
+ as of the date such litigation is filed.
25153
24977
 
25154
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25155
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25156
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25157
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25158
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25159
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25160
- SOFTWARE.
24978
+ 4. Redistribution. You may reproduce and distribute copies of the
24979
+ Work or Derivative Works thereof in any medium, with or without
24980
+ modifications, and in Source or Object form, provided that You
24981
+ meet the following conditions:
25161
24982
 
25162
- ================================================================================
25163
- polars-json LICENSE
25164
- ================================================================================
24983
+ (a) You must give any other recipients of the Work or
24984
+ Derivative Works a copy of this License; and
25165
24985
 
25166
- Copyright (c) 2020 Ritchie Vink
24986
+ (b) You must cause any modified files to carry prominent notices
24987
+ stating that You changed the files; and
25167
24988
 
25168
- Permission is hereby granted, free of charge, to any person obtaining a copy
25169
- of this software and associated documentation files (the "Software"), to deal
25170
- in the Software without restriction, including without limitation the rights
25171
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25172
- copies of the Software, and to permit persons to whom the Software is
25173
- furnished to do so, subject to the following conditions:
24989
+ (c) You must retain, in the Source form of any Derivative Works
24990
+ that You distribute, all copyright, patent, trademark, and
24991
+ attribution notices from the Source form of the Work,
24992
+ excluding those notices that do not pertain to any part of
24993
+ the Derivative Works; and
25174
24994
 
25175
- The above copyright notice and this permission notice shall be included in all
25176
- copies or substantial portions of the Software.
24995
+ (d) If the Work includes a "NOTICE" text file as part of its
24996
+ distribution, then any Derivative Works that You distribute must
24997
+ include a readable copy of the attribution notices contained
24998
+ within such NOTICE file, excluding those notices that do not
24999
+ pertain to any part of the Derivative Works, in at least one
25000
+ of the following places: within a NOTICE text file distributed
25001
+ as part of the Derivative Works; within the Source form or
25002
+ documentation, if provided along with the Derivative Works; or,
25003
+ within a display generated by the Derivative Works, if and
25004
+ wherever such third-party notices normally appear. The contents
25005
+ of the NOTICE file are for informational purposes only and
25006
+ do not modify the License. You may add Your own attribution
25007
+ notices within Derivative Works that You distribute, alongside
25008
+ or as an addendum to the NOTICE text from the Work, provided
25009
+ that such additional attribution notices cannot be construed
25010
+ as modifying the License.
25177
25011
 
25178
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25179
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25180
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25181
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25182
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25183
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25184
- SOFTWARE.
25012
+ You may add Your own copyright statement to Your modifications and
25013
+ may provide additional or different license terms and conditions
25014
+ for use, reproduction, or distribution of Your modifications, or
25015
+ for any such Derivative Works as a whole, provided Your use,
25016
+ reproduction, and distribution of the Work otherwise complies with
25017
+ the conditions stated in this License.
25185
25018
 
25186
- ================================================================================
25187
- polars-lazy LICENSE
25188
- ================================================================================
25019
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
25020
+ any Contribution intentionally submitted for inclusion in the Work
25021
+ by You to the Licensor shall be under the terms and conditions of
25022
+ this License, without any additional terms or conditions.
25023
+ Notwithstanding the above, nothing herein shall supersede or modify
25024
+ the terms of any separate license agreement you may have executed
25025
+ with Licensor regarding such Contributions.
25189
25026
 
25190
- Copyright (c) 2020 Ritchie Vink
25027
+ 6. Trademarks. This License does not grant permission to use the trade
25028
+ names, trademarks, service marks, or product names of the Licensor,
25029
+ except as required for reasonable and customary use in describing the
25030
+ origin of the Work and reproducing the content of the NOTICE file.
25191
25031
 
25192
- Permission is hereby granted, free of charge, to any person obtaining a copy
25193
- of this software and associated documentation files (the "Software"), to deal
25194
- in the Software without restriction, including without limitation the rights
25195
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25196
- copies of the Software, and to permit persons to whom the Software is
25197
- furnished to do so, subject to the following conditions:
25032
+ 7. Disclaimer of Warranty. Unless required by applicable law or
25033
+ agreed to in writing, Licensor provides the Work (and each
25034
+ Contributor provides its Contributions) on an "AS IS" BASIS,
25035
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25036
+ implied, including, without limitation, any warranties or conditions
25037
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
25038
+ PARTICULAR PURPOSE. You are solely responsible for determining the
25039
+ appropriateness of using or redistributing the Work and assume any
25040
+ risks associated with Your exercise of permissions under this License.
25198
25041
 
25199
- The above copyright notice and this permission notice shall be included in all
25200
- copies or substantial portions of the Software.
25042
+ 8. Limitation of Liability. In no event and under no legal theory,
25043
+ whether in tort (including negligence), contract, or otherwise,
25044
+ unless required by applicable law (such as deliberate and grossly
25045
+ negligent acts) or agreed to in writing, shall any Contributor be
25046
+ liable to You for damages, including any direct, indirect, special,
25047
+ incidental, or consequential damages of any character arising as a
25048
+ result of this License or out of the use or inability to use the
25049
+ Work (including but not limited to damages for loss of goodwill,
25050
+ work stoppage, computer failure or malfunction, or any and all
25051
+ other commercial damages or losses), even if such Contributor
25052
+ has been advised of the possibility of such damages.
25201
25053
 
25202
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25203
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25204
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25205
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25206
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25207
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25208
- SOFTWARE.
25054
+ 9. Accepting Warranty or Additional Liability. While redistributing
25055
+ the Work or Derivative Works thereof, You may choose to offer,
25056
+ and charge a fee for, acceptance of support, warranty, indemnity,
25057
+ or other liability obligations and/or rights consistent with this
25058
+ License. However, in accepting such obligations, You may act only
25059
+ on Your own behalf and on Your sole responsibility, not on behalf
25060
+ of any other Contributor, and only if You agree to indemnify,
25061
+ defend, and hold each Contributor harmless for any liability
25062
+ incurred by, or claims asserted against, such Contributor by reason
25063
+ of your accepting any such warranty or additional liability.
25209
25064
 
25210
- ================================================================================
25211
- polars-ops LICENSE
25212
- ================================================================================
25065
+ END OF TERMS AND CONDITIONS
25213
25066
 
25214
- Copyright (c) 2020 Ritchie Vink
25067
+ Copyright 2020-2022 Jorge C. Leitão
25215
25068
 
25216
- Permission is hereby granted, free of charge, to any person obtaining a copy
25217
- of this software and associated documentation files (the "Software"), to deal
25218
- in the Software without restriction, including without limitation the rights
25219
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25220
- copies of the Software, and to permit persons to whom the Software is
25221
- furnished to do so, subject to the following conditions:
25069
+ Licensed under the Apache License, Version 2.0 (the "License");
25070
+ you may not use this file except in compliance with the License.
25071
+ You may obtain a copy of the License at
25222
25072
 
25223
- The above copyright notice and this permission notice shall be included in all
25224
- copies or substantial portions of the Software.
25073
+ https://www.apache.org/licenses/LICENSE-2.0
25225
25074
 
25226
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25227
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25228
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25229
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25230
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25231
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25232
- SOFTWARE.
25075
+ Unless required by applicable law or agreed to in writing, software
25076
+ distributed under the License is distributed on an "AS IS" BASIS,
25077
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25078
+ See the License for the specific language governing permissions and
25079
+ limitations under the License.
25233
25080
 
25234
25081
  ================================================================================
25235
- polars-parquet LICENSE
25082
+ polars-arrow-format src/LICENSE
25236
25083
  ================================================================================
25237
25084
 
25238
- Some of the code in this crate is subject to the Apache 2 license below, as it
25239
- was taken from the arrow2 and parquet2 Rust crate in October 2023. Later changes are subject
25240
- to the MIT license in ../../LICENSE.
25241
-
25085
+ Some of the code in this crate is subject to the Apache 2 license in 1. as it
25086
+ was taken from the arrow-format Rust crate in January 2024. Later changes are subject
25087
+ to the MIT license in 2.
25242
25088
 
25089
+ 1.
25243
25090
 
25244
25091
  Apache License
25245
25092
  Version 2.0, January 2004
@@ -25432,8 +25279,29 @@ to the MIT license in ../../LICENSE.
25432
25279
  See the License for the specific language governing permissions and
25433
25280
  limitations under the License.
25434
25281
 
25282
+ 2.
25283
+ Copyright (c) 2024 Ritchie Vink
25284
+
25285
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25286
+ of this software and associated documentation files (the "Software"), to deal
25287
+ in the Software without restriction, including without limitation the rights
25288
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25289
+ copies of the Software, and to permit persons to whom the Software is
25290
+ furnished to do so, subject to the following conditions:
25291
+
25292
+ The above copyright notice and this permission notice shall be included in all
25293
+ copies or substantial portions of the Software.
25294
+
25295
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25296
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25297
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25298
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25299
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25300
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25301
+ SOFTWARE.
25302
+
25435
25303
  ================================================================================
25436
- polars-pipe LICENSE
25304
+ polars-compute LICENSE
25437
25305
  ================================================================================
25438
25306
 
25439
25307
  Copyright (c) 2020 Ritchie Vink
@@ -25457,7 +25325,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25457
25325
  SOFTWARE.
25458
25326
 
25459
25327
  ================================================================================
25460
- polars-plan LICENSE
25328
+ polars-core LICENSE
25461
25329
  ================================================================================
25462
25330
 
25463
25331
  Copyright (c) 2020 Ritchie Vink
@@ -25481,7 +25349,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25481
25349
  SOFTWARE.
25482
25350
 
25483
25351
  ================================================================================
25484
- polars-row LICENSE
25352
+ polars-error LICENSE
25485
25353
  ================================================================================
25486
25354
 
25487
25355
  Copyright (c) 2020 Ritchie Vink
@@ -25505,7 +25373,376 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25505
25373
  SOFTWARE.
25506
25374
 
25507
25375
  ================================================================================
25508
- polars-sql LICENSE
25376
+ polars-io LICENSE
25377
+ ================================================================================
25378
+
25379
+ Copyright (c) 2020 Ritchie Vink
25380
+
25381
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25382
+ of this software and associated documentation files (the "Software"), to deal
25383
+ in the Software without restriction, including without limitation the rights
25384
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25385
+ copies of the Software, and to permit persons to whom the Software is
25386
+ furnished to do so, subject to the following conditions:
25387
+
25388
+ The above copyright notice and this permission notice shall be included in all
25389
+ copies or substantial portions of the Software.
25390
+
25391
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25392
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25393
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25394
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25395
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25396
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25397
+ SOFTWARE.
25398
+
25399
+ ================================================================================
25400
+ polars-json LICENSE
25401
+ ================================================================================
25402
+
25403
+ Copyright (c) 2020 Ritchie Vink
25404
+
25405
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25406
+ of this software and associated documentation files (the "Software"), to deal
25407
+ in the Software without restriction, including without limitation the rights
25408
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25409
+ copies of the Software, and to permit persons to whom the Software is
25410
+ furnished to do so, subject to the following conditions:
25411
+
25412
+ The above copyright notice and this permission notice shall be included in all
25413
+ copies or substantial portions of the Software.
25414
+
25415
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25416
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25417
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25418
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25419
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25420
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25421
+ SOFTWARE.
25422
+
25423
+ ================================================================================
25424
+ polars-lazy LICENSE
25425
+ ================================================================================
25426
+
25427
+ Copyright (c) 2020 Ritchie Vink
25428
+
25429
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25430
+ of this software and associated documentation files (the "Software"), to deal
25431
+ in the Software without restriction, including without limitation the rights
25432
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25433
+ copies of the Software, and to permit persons to whom the Software is
25434
+ furnished to do so, subject to the following conditions:
25435
+
25436
+ The above copyright notice and this permission notice shall be included in all
25437
+ copies or substantial portions of the Software.
25438
+
25439
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25440
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25441
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25442
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25443
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25444
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25445
+ SOFTWARE.
25446
+
25447
+ ================================================================================
25448
+ polars-ops LICENSE
25449
+ ================================================================================
25450
+
25451
+ Copyright (c) 2020 Ritchie Vink
25452
+
25453
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25454
+ of this software and associated documentation files (the "Software"), to deal
25455
+ in the Software without restriction, including without limitation the rights
25456
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25457
+ copies of the Software, and to permit persons to whom the Software is
25458
+ furnished to do so, subject to the following conditions:
25459
+
25460
+ The above copyright notice and this permission notice shall be included in all
25461
+ copies or substantial portions of the Software.
25462
+
25463
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25464
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25465
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25466
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25467
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25468
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25469
+ SOFTWARE.
25470
+
25471
+ ================================================================================
25472
+ polars-parquet LICENSE
25473
+ ================================================================================
25474
+
25475
+ Some of the code in this crate is subject to the Apache 2 license below, as it
25476
+ was taken from the arrow2 and parquet2 Rust crate in October 2023. Later changes are subject
25477
+ to the MIT license in ../../LICENSE.
25478
+
25479
+
25480
+
25481
+ Apache License
25482
+ Version 2.0, January 2004
25483
+ https://www.apache.org/licenses/
25484
+
25485
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25486
+
25487
+ 1. Definitions.
25488
+
25489
+ "License" shall mean the terms and conditions for use, reproduction,
25490
+ and distribution as defined by Sections 1 through 9 of this document.
25491
+
25492
+ "Licensor" shall mean the copyright owner or entity authorized by
25493
+ the copyright owner that is granting the License.
25494
+
25495
+ "Legal Entity" shall mean the union of the acting entity and all
25496
+ other entities that control, are controlled by, or are under common
25497
+ control with that entity. For the purposes of this definition,
25498
+ "control" means (i) the power, direct or indirect, to cause the
25499
+ direction or management of such entity, whether by contract or
25500
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
25501
+ outstanding shares, or (iii) beneficial ownership of such entity.
25502
+
25503
+ "You" (or "Your") shall mean an individual or Legal Entity
25504
+ exercising permissions granted by this License.
25505
+
25506
+ "Source" form shall mean the preferred form for making modifications,
25507
+ including but not limited to software source code, documentation
25508
+ source, and configuration files.
25509
+
25510
+ "Object" form shall mean any form resulting from mechanical
25511
+ transformation or translation of a Source form, including but
25512
+ not limited to compiled object code, generated documentation,
25513
+ and conversions to other media types.
25514
+
25515
+ "Work" shall mean the work of authorship, whether in Source or
25516
+ Object form, made available under the License, as indicated by a
25517
+ copyright notice that is included in or attached to the work
25518
+ (an example is provided in the Appendix below).
25519
+
25520
+ "Derivative Works" shall mean any work, whether in Source or Object
25521
+ form, that is based on (or derived from) the Work and for which the
25522
+ editorial revisions, annotations, elaborations, or other modifications
25523
+ represent, as a whole, an original work of authorship. For the purposes
25524
+ of this License, Derivative Works shall not include works that remain
25525
+ separable from, or merely link (or bind by name) to the interfaces of,
25526
+ the Work and Derivative Works thereof.
25527
+
25528
+ "Contribution" shall mean any work of authorship, including
25529
+ the original version of the Work and any modifications or additions
25530
+ to that Work or Derivative Works thereof, that is intentionally
25531
+ submitted to Licensor for inclusion in the Work by the copyright owner
25532
+ or by an individual or Legal Entity authorized to submit on behalf of
25533
+ the copyright owner. For the purposes of this definition, "submitted"
25534
+ means any form of electronic, verbal, or written communication sent
25535
+ to the Licensor or its representatives, including but not limited to
25536
+ communication on electronic mailing lists, source code control systems,
25537
+ and issue tracking systems that are managed by, or on behalf of, the
25538
+ Licensor for the purpose of discussing and improving the Work, but
25539
+ excluding communication that is conspicuously marked or otherwise
25540
+ designated in writing by the copyright owner as "Not a Contribution."
25541
+
25542
+ "Contributor" shall mean Licensor and any individual or Legal Entity
25543
+ on behalf of whom a Contribution has been received by Licensor and
25544
+ subsequently incorporated within the Work.
25545
+
25546
+ 2. Grant of Copyright License. Subject to the terms and conditions of
25547
+ this License, each Contributor hereby grants to You a perpetual,
25548
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25549
+ copyright license to reproduce, prepare Derivative Works of,
25550
+ publicly display, publicly perform, sublicense, and distribute the
25551
+ Work and such Derivative Works in Source or Object form.
25552
+
25553
+ 3. Grant of Patent License. Subject to the terms and conditions of
25554
+ this License, each Contributor hereby grants to You a perpetual,
25555
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25556
+ (except as stated in this section) patent license to make, have made,
25557
+ use, offer to sell, sell, import, and otherwise transfer the Work,
25558
+ where such license applies only to those patent claims licensable
25559
+ by such Contributor that are necessarily infringed by their
25560
+ Contribution(s) alone or by combination of their Contribution(s)
25561
+ with the Work to which such Contribution(s) was submitted. If You
25562
+ institute patent litigation against any entity (including a
25563
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
25564
+ or a Contribution incorporated within the Work constitutes direct
25565
+ or contributory patent infringement, then any patent licenses
25566
+ granted to You under this License for that Work shall terminate
25567
+ as of the date such litigation is filed.
25568
+
25569
+ 4. Redistribution. You may reproduce and distribute copies of the
25570
+ Work or Derivative Works thereof in any medium, with or without
25571
+ modifications, and in Source or Object form, provided that You
25572
+ meet the following conditions:
25573
+
25574
+ (a) You must give any other recipients of the Work or
25575
+ Derivative Works a copy of this License; and
25576
+
25577
+ (b) You must cause any modified files to carry prominent notices
25578
+ stating that You changed the files; and
25579
+
25580
+ (c) You must retain, in the Source form of any Derivative Works
25581
+ that You distribute, all copyright, patent, trademark, and
25582
+ attribution notices from the Source form of the Work,
25583
+ excluding those notices that do not pertain to any part of
25584
+ the Derivative Works; and
25585
+
25586
+ (d) If the Work includes a "NOTICE" text file as part of its
25587
+ distribution, then any Derivative Works that You distribute must
25588
+ include a readable copy of the attribution notices contained
25589
+ within such NOTICE file, excluding those notices that do not
25590
+ pertain to any part of the Derivative Works, in at least one
25591
+ of the following places: within a NOTICE text file distributed
25592
+ as part of the Derivative Works; within the Source form or
25593
+ documentation, if provided along with the Derivative Works; or,
25594
+ within a display generated by the Derivative Works, if and
25595
+ wherever such third-party notices normally appear. The contents
25596
+ of the NOTICE file are for informational purposes only and
25597
+ do not modify the License. You may add Your own attribution
25598
+ notices within Derivative Works that You distribute, alongside
25599
+ or as an addendum to the NOTICE text from the Work, provided
25600
+ that such additional attribution notices cannot be construed
25601
+ as modifying the License.
25602
+
25603
+ You may add Your own copyright statement to Your modifications and
25604
+ may provide additional or different license terms and conditions
25605
+ for use, reproduction, or distribution of Your modifications, or
25606
+ for any such Derivative Works as a whole, provided Your use,
25607
+ reproduction, and distribution of the Work otherwise complies with
25608
+ the conditions stated in this License.
25609
+
25610
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
25611
+ any Contribution intentionally submitted for inclusion in the Work
25612
+ by You to the Licensor shall be under the terms and conditions of
25613
+ this License, without any additional terms or conditions.
25614
+ Notwithstanding the above, nothing herein shall supersede or modify
25615
+ the terms of any separate license agreement you may have executed
25616
+ with Licensor regarding such Contributions.
25617
+
25618
+ 6. Trademarks. This License does not grant permission to use the trade
25619
+ names, trademarks, service marks, or product names of the Licensor,
25620
+ except as required for reasonable and customary use in describing the
25621
+ origin of the Work and reproducing the content of the NOTICE file.
25622
+
25623
+ 7. Disclaimer of Warranty. Unless required by applicable law or
25624
+ agreed to in writing, Licensor provides the Work (and each
25625
+ Contributor provides its Contributions) on an "AS IS" BASIS,
25626
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25627
+ implied, including, without limitation, any warranties or conditions
25628
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
25629
+ PARTICULAR PURPOSE. You are solely responsible for determining the
25630
+ appropriateness of using or redistributing the Work and assume any
25631
+ risks associated with Your exercise of permissions under this License.
25632
+
25633
+ 8. Limitation of Liability. In no event and under no legal theory,
25634
+ whether in tort (including negligence), contract, or otherwise,
25635
+ unless required by applicable law (such as deliberate and grossly
25636
+ negligent acts) or agreed to in writing, shall any Contributor be
25637
+ liable to You for damages, including any direct, indirect, special,
25638
+ incidental, or consequential damages of any character arising as a
25639
+ result of this License or out of the use or inability to use the
25640
+ Work (including but not limited to damages for loss of goodwill,
25641
+ work stoppage, computer failure or malfunction, or any and all
25642
+ other commercial damages or losses), even if such Contributor
25643
+ has been advised of the possibility of such damages.
25644
+
25645
+ 9. Accepting Warranty or Additional Liability. While redistributing
25646
+ the Work or Derivative Works thereof, You may choose to offer,
25647
+ and charge a fee for, acceptance of support, warranty, indemnity,
25648
+ or other liability obligations and/or rights consistent with this
25649
+ License. However, in accepting such obligations, You may act only
25650
+ on Your own behalf and on Your sole responsibility, not on behalf
25651
+ of any other Contributor, and only if You agree to indemnify,
25652
+ defend, and hold each Contributor harmless for any liability
25653
+ incurred by, or claims asserted against, such Contributor by reason
25654
+ of your accepting any such warranty or additional liability.
25655
+
25656
+ END OF TERMS AND CONDITIONS
25657
+
25658
+ Copyright 2020-2022 Jorge C. Leitão
25659
+
25660
+ Licensed under the Apache License, Version 2.0 (the "License");
25661
+ you may not use this file except in compliance with the License.
25662
+ You may obtain a copy of the License at
25663
+
25664
+ https://www.apache.org/licenses/LICENSE-2.0
25665
+
25666
+ Unless required by applicable law or agreed to in writing, software
25667
+ distributed under the License is distributed on an "AS IS" BASIS,
25668
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25669
+ See the License for the specific language governing permissions and
25670
+ limitations under the License.
25671
+
25672
+ ================================================================================
25673
+ polars-pipe LICENSE
25674
+ ================================================================================
25675
+
25676
+ Copyright (c) 2020 Ritchie Vink
25677
+
25678
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25679
+ of this software and associated documentation files (the "Software"), to deal
25680
+ in the Software without restriction, including without limitation the rights
25681
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25682
+ copies of the Software, and to permit persons to whom the Software is
25683
+ furnished to do so, subject to the following conditions:
25684
+
25685
+ The above copyright notice and this permission notice shall be included in all
25686
+ copies or substantial portions of the Software.
25687
+
25688
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25689
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25690
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25691
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25692
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25693
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25694
+ SOFTWARE.
25695
+
25696
+ ================================================================================
25697
+ polars-plan LICENSE
25698
+ ================================================================================
25699
+
25700
+ Copyright (c) 2020 Ritchie Vink
25701
+
25702
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25703
+ of this software and associated documentation files (the "Software"), to deal
25704
+ in the Software without restriction, including without limitation the rights
25705
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25706
+ copies of the Software, and to permit persons to whom the Software is
25707
+ furnished to do so, subject to the following conditions:
25708
+
25709
+ The above copyright notice and this permission notice shall be included in all
25710
+ copies or substantial portions of the Software.
25711
+
25712
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25713
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25714
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25715
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25716
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25717
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25718
+ SOFTWARE.
25719
+
25720
+ ================================================================================
25721
+ polars-row LICENSE
25722
+ ================================================================================
25723
+
25724
+ Copyright (c) 2020 Ritchie Vink
25725
+
25726
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25727
+ of this software and associated documentation files (the "Software"), to deal
25728
+ in the Software without restriction, including without limitation the rights
25729
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25730
+ copies of the Software, and to permit persons to whom the Software is
25731
+ furnished to do so, subject to the following conditions:
25732
+
25733
+ The above copyright notice and this permission notice shall be included in all
25734
+ copies or substantial portions of the Software.
25735
+
25736
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25737
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25738
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25739
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25740
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25741
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25742
+ SOFTWARE.
25743
+
25744
+ ================================================================================
25745
+ polars-sql LICENSE
25509
25746
  ================================================================================
25510
25747
 
25511
25748
  Copyright (c) 2020 Ritchie Vink
@@ -27124,6 +27361,32 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
27124
27361
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27125
27362
  DEALINGS IN THE SOFTWARE.
27126
27363
 
27364
+ ================================================================================
27365
+ raw-cpuid LICENSE.md
27366
+ ================================================================================
27367
+
27368
+ The MIT License (MIT)
27369
+
27370
+ Copyright (c) 2015 Gerd Zellweger
27371
+
27372
+ Permission is hereby granted, free of charge, to any person obtaining a copy
27373
+ of this software and associated documentation files (the "Software"), to deal
27374
+ in the Software without restriction, including without limitation the rights
27375
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27376
+ copies of the Software, and to permit persons to whom the Software is
27377
+ furnished to do so, subject to the following conditions:
27378
+
27379
+ The above copyright notice and this permission notice shall be included in
27380
+ all copies or substantial portions of the Software.
27381
+
27382
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27383
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27384
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27385
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27386
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27387
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27388
+ THE SOFTWARE.
27389
+
27127
27390
  ================================================================================
27128
27391
  rayon LICENSE-APACHE
27129
27392
  ================================================================================
@@ -34195,33 +34458,697 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34195
34458
 
34196
34459
  END OF TERMS AND CONDITIONS
34197
34460
 
34198
- APPENDIX: How to apply the Apache License to your work.
34199
-
34200
- To apply the Apache License to your work, attach the following
34201
- boilerplate notice, with the fields enclosed by brackets "[]"
34202
- replaced with your own identifying information. (Don't include
34203
- the brackets!) The text should be enclosed in the appropriate
34204
- comment syntax for the file format. We also recommend that a
34205
- file or class name and description of purpose be included on the
34206
- same "printed page" as the copyright notice for easier
34207
- identification within third-party archives.
34208
-
34209
- Copyright [yyyy] [name of copyright owner]
34210
-
34211
- Licensed under the Apache License, Version 2.0 (the "License");
34212
- you may not use this file except in compliance with the License.
34213
- You may obtain a copy of the License at
34214
-
34215
- http://www.apache.org/licenses/LICENSE-2.0
34216
-
34217
- Unless required by applicable law or agreed to in writing, software
34218
- distributed under the License is distributed on an "AS IS" BASIS,
34219
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34220
- See the License for the specific language governing permissions and
34221
- limitations under the License.
34222
-
34461
+ APPENDIX: How to apply the Apache License to your work.
34462
+
34463
+ To apply the Apache License to your work, attach the following
34464
+ boilerplate notice, with the fields enclosed by brackets "[]"
34465
+ replaced with your own identifying information. (Don't include
34466
+ the brackets!) The text should be enclosed in the appropriate
34467
+ comment syntax for the file format. We also recommend that a
34468
+ file or class name and description of purpose be included on the
34469
+ same "printed page" as the copyright notice for easier
34470
+ identification within third-party archives.
34471
+
34472
+ Copyright [yyyy] [name of copyright owner]
34473
+
34474
+ Licensed under the Apache License, Version 2.0 (the "License");
34475
+ you may not use this file except in compliance with the License.
34476
+ You may obtain a copy of the License at
34477
+
34478
+ http://www.apache.org/licenses/LICENSE-2.0
34479
+
34480
+ Unless required by applicable law or agreed to in writing, software
34481
+ distributed under the License is distributed on an "AS IS" BASIS,
34482
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34483
+ See the License for the specific language governing permissions and
34484
+ limitations under the License.
34485
+
34486
+ ================================================================================
34487
+ syn v1.0.109 LICENSE-MIT
34488
+ ================================================================================
34489
+
34490
+ Permission is hereby granted, free of charge, to any
34491
+ person obtaining a copy of this software and associated
34492
+ documentation files (the "Software"), to deal in the
34493
+ Software without restriction, including without
34494
+ limitation the rights to use, copy, modify, merge,
34495
+ publish, distribute, sublicense, and/or sell copies of
34496
+ the Software, and to permit persons to whom the Software
34497
+ is furnished to do so, subject to the following
34498
+ conditions:
34499
+
34500
+ The above copyright notice and this permission notice
34501
+ shall be included in all copies or substantial portions
34502
+ of the Software.
34503
+
34504
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
34505
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
34506
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
34507
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
34508
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
34509
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34510
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
34511
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34512
+ DEALINGS IN THE SOFTWARE.
34513
+
34514
+ ================================================================================
34515
+ syn v2.0.46 LICENSE-APACHE
34516
+ ================================================================================
34517
+
34518
+ Apache License
34519
+ Version 2.0, January 2004
34520
+ http://www.apache.org/licenses/
34521
+
34522
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34523
+
34524
+ 1. Definitions.
34525
+
34526
+ "License" shall mean the terms and conditions for use, reproduction,
34527
+ and distribution as defined by Sections 1 through 9 of this document.
34528
+
34529
+ "Licensor" shall mean the copyright owner or entity authorized by
34530
+ the copyright owner that is granting the License.
34531
+
34532
+ "Legal Entity" shall mean the union of the acting entity and all
34533
+ other entities that control, are controlled by, or are under common
34534
+ control with that entity. For the purposes of this definition,
34535
+ "control" means (i) the power, direct or indirect, to cause the
34536
+ direction or management of such entity, whether by contract or
34537
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
34538
+ outstanding shares, or (iii) beneficial ownership of such entity.
34539
+
34540
+ "You" (or "Your") shall mean an individual or Legal Entity
34541
+ exercising permissions granted by this License.
34542
+
34543
+ "Source" form shall mean the preferred form for making modifications,
34544
+ including but not limited to software source code, documentation
34545
+ source, and configuration files.
34546
+
34547
+ "Object" form shall mean any form resulting from mechanical
34548
+ transformation or translation of a Source form, including but
34549
+ not limited to compiled object code, generated documentation,
34550
+ and conversions to other media types.
34551
+
34552
+ "Work" shall mean the work of authorship, whether in Source or
34553
+ Object form, made available under the License, as indicated by a
34554
+ copyright notice that is included in or attached to the work
34555
+ (an example is provided in the Appendix below).
34556
+
34557
+ "Derivative Works" shall mean any work, whether in Source or Object
34558
+ form, that is based on (or derived from) the Work and for which the
34559
+ editorial revisions, annotations, elaborations, or other modifications
34560
+ represent, as a whole, an original work of authorship. For the purposes
34561
+ of this License, Derivative Works shall not include works that remain
34562
+ separable from, or merely link (or bind by name) to the interfaces of,
34563
+ the Work and Derivative Works thereof.
34564
+
34565
+ "Contribution" shall mean any work of authorship, including
34566
+ the original version of the Work and any modifications or additions
34567
+ to that Work or Derivative Works thereof, that is intentionally
34568
+ submitted to Licensor for inclusion in the Work by the copyright owner
34569
+ or by an individual or Legal Entity authorized to submit on behalf of
34570
+ the copyright owner. For the purposes of this definition, "submitted"
34571
+ means any form of electronic, verbal, or written communication sent
34572
+ to the Licensor or its representatives, including but not limited to
34573
+ communication on electronic mailing lists, source code control systems,
34574
+ and issue tracking systems that are managed by, or on behalf of, the
34575
+ Licensor for the purpose of discussing and improving the Work, but
34576
+ excluding communication that is conspicuously marked or otherwise
34577
+ designated in writing by the copyright owner as "Not a Contribution."
34578
+
34579
+ "Contributor" shall mean Licensor and any individual or Legal Entity
34580
+ on behalf of whom a Contribution has been received by Licensor and
34581
+ subsequently incorporated within the Work.
34582
+
34583
+ 2. Grant of Copyright License. Subject to the terms and conditions of
34584
+ this License, each Contributor hereby grants to You a perpetual,
34585
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34586
+ copyright license to reproduce, prepare Derivative Works of,
34587
+ publicly display, publicly perform, sublicense, and distribute the
34588
+ Work and such Derivative Works in Source or Object form.
34589
+
34590
+ 3. Grant of Patent License. Subject to the terms and conditions of
34591
+ this License, each Contributor hereby grants to You a perpetual,
34592
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34593
+ (except as stated in this section) patent license to make, have made,
34594
+ use, offer to sell, sell, import, and otherwise transfer the Work,
34595
+ where such license applies only to those patent claims licensable
34596
+ by such Contributor that are necessarily infringed by their
34597
+ Contribution(s) alone or by combination of their Contribution(s)
34598
+ with the Work to which such Contribution(s) was submitted. If You
34599
+ institute patent litigation against any entity (including a
34600
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
34601
+ or a Contribution incorporated within the Work constitutes direct
34602
+ or contributory patent infringement, then any patent licenses
34603
+ granted to You under this License for that Work shall terminate
34604
+ as of the date such litigation is filed.
34605
+
34606
+ 4. Redistribution. You may reproduce and distribute copies of the
34607
+ Work or Derivative Works thereof in any medium, with or without
34608
+ modifications, and in Source or Object form, provided that You
34609
+ meet the following conditions:
34610
+
34611
+ (a) You must give any other recipients of the Work or
34612
+ Derivative Works a copy of this License; and
34613
+
34614
+ (b) You must cause any modified files to carry prominent notices
34615
+ stating that You changed the files; and
34616
+
34617
+ (c) You must retain, in the Source form of any Derivative Works
34618
+ that You distribute, all copyright, patent, trademark, and
34619
+ attribution notices from the Source form of the Work,
34620
+ excluding those notices that do not pertain to any part of
34621
+ the Derivative Works; and
34622
+
34623
+ (d) If the Work includes a "NOTICE" text file as part of its
34624
+ distribution, then any Derivative Works that You distribute must
34625
+ include a readable copy of the attribution notices contained
34626
+ within such NOTICE file, excluding those notices that do not
34627
+ pertain to any part of the Derivative Works, in at least one
34628
+ of the following places: within a NOTICE text file distributed
34629
+ as part of the Derivative Works; within the Source form or
34630
+ documentation, if provided along with the Derivative Works; or,
34631
+ within a display generated by the Derivative Works, if and
34632
+ wherever such third-party notices normally appear. The contents
34633
+ of the NOTICE file are for informational purposes only and
34634
+ do not modify the License. You may add Your own attribution
34635
+ notices within Derivative Works that You distribute, alongside
34636
+ or as an addendum to the NOTICE text from the Work, provided
34637
+ that such additional attribution notices cannot be construed
34638
+ as modifying the License.
34639
+
34640
+ You may add Your own copyright statement to Your modifications and
34641
+ may provide additional or different license terms and conditions
34642
+ for use, reproduction, or distribution of Your modifications, or
34643
+ for any such Derivative Works as a whole, provided Your use,
34644
+ reproduction, and distribution of the Work otherwise complies with
34645
+ the conditions stated in this License.
34646
+
34647
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
34648
+ any Contribution intentionally submitted for inclusion in the Work
34649
+ by You to the Licensor shall be under the terms and conditions of
34650
+ this License, without any additional terms or conditions.
34651
+ Notwithstanding the above, nothing herein shall supersede or modify
34652
+ the terms of any separate license agreement you may have executed
34653
+ with Licensor regarding such Contributions.
34654
+
34655
+ 6. Trademarks. This License does not grant permission to use the trade
34656
+ names, trademarks, service marks, or product names of the Licensor,
34657
+ except as required for reasonable and customary use in describing the
34658
+ origin of the Work and reproducing the content of the NOTICE file.
34659
+
34660
+ 7. Disclaimer of Warranty. Unless required by applicable law or
34661
+ agreed to in writing, Licensor provides the Work (and each
34662
+ Contributor provides its Contributions) on an "AS IS" BASIS,
34663
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34664
+ implied, including, without limitation, any warranties or conditions
34665
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34666
+ PARTICULAR PURPOSE. You are solely responsible for determining the
34667
+ appropriateness of using or redistributing the Work and assume any
34668
+ risks associated with Your exercise of permissions under this License.
34669
+
34670
+ 8. Limitation of Liability. In no event and under no legal theory,
34671
+ whether in tort (including negligence), contract, or otherwise,
34672
+ unless required by applicable law (such as deliberate and grossly
34673
+ negligent acts) or agreed to in writing, shall any Contributor be
34674
+ liable to You for damages, including any direct, indirect, special,
34675
+ incidental, or consequential damages of any character arising as a
34676
+ result of this License or out of the use or inability to use the
34677
+ Work (including but not limited to damages for loss of goodwill,
34678
+ work stoppage, computer failure or malfunction, or any and all
34679
+ other commercial damages or losses), even if such Contributor
34680
+ has been advised of the possibility of such damages.
34681
+
34682
+ 9. Accepting Warranty or Additional Liability. While redistributing
34683
+ the Work or Derivative Works thereof, You may choose to offer,
34684
+ and charge a fee for, acceptance of support, warranty, indemnity,
34685
+ or other liability obligations and/or rights consistent with this
34686
+ License. However, in accepting such obligations, You may act only
34687
+ on Your own behalf and on Your sole responsibility, not on behalf
34688
+ of any other Contributor, and only if You agree to indemnify,
34689
+ defend, and hold each Contributor harmless for any liability
34690
+ incurred by, or claims asserted against, such Contributor by reason
34691
+ of your accepting any such warranty or additional liability.
34692
+
34693
+ END OF TERMS AND CONDITIONS
34694
+
34695
+ ================================================================================
34696
+ syn v2.0.46 LICENSE-MIT
34697
+ ================================================================================
34698
+
34699
+ Permission is hereby granted, free of charge, to any
34700
+ person obtaining a copy of this software and associated
34701
+ documentation files (the "Software"), to deal in the
34702
+ Software without restriction, including without
34703
+ limitation the rights to use, copy, modify, merge,
34704
+ publish, distribute, sublicense, and/or sell copies of
34705
+ the Software, and to permit persons to whom the Software
34706
+ is furnished to do so, subject to the following
34707
+ conditions:
34708
+
34709
+ The above copyright notice and this permission notice
34710
+ shall be included in all copies or substantial portions
34711
+ of the Software.
34712
+
34713
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
34714
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
34715
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
34716
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
34717
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
34718
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34719
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
34720
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34721
+ DEALINGS IN THE SOFTWARE.
34722
+
34723
+ ================================================================================
34724
+ sysinfo LICENSE
34725
+ ================================================================================
34726
+
34727
+ The MIT License (MIT)
34728
+
34729
+ Copyright (c) 2015 Guillaume Gomez
34730
+
34731
+ Permission is hereby granted, free of charge, to any person obtaining a copy
34732
+ of this software and associated documentation files (the "Software"), to deal
34733
+ in the Software without restriction, including without limitation the rights
34734
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
34735
+ copies of the Software, and to permit persons to whom the Software is
34736
+ furnished to do so, subject to the following conditions:
34737
+
34738
+ The above copyright notice and this permission notice shall be included in all
34739
+ copies or substantial portions of the Software.
34740
+
34741
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34742
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34743
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34744
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34745
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34746
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34747
+ SOFTWARE.
34748
+
34749
+
34750
+ ================================================================================
34751
+ target-features LICENSE-APACHE
34752
+ ================================================================================
34753
+
34754
+
34755
+ Apache License
34756
+ Version 2.0, January 2004
34757
+ http://www.apache.org/licenses/
34758
+
34759
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34760
+
34761
+ 1. Definitions.
34762
+
34763
+ "License" shall mean the terms and conditions for use, reproduction,
34764
+ and distribution as defined by Sections 1 through 9 of this document.
34765
+
34766
+ "Licensor" shall mean the copyright owner or entity authorized by
34767
+ the copyright owner that is granting the License.
34768
+
34769
+ "Legal Entity" shall mean the union of the acting entity and all
34770
+ other entities that control, are controlled by, or are under common
34771
+ control with that entity. For the purposes of this definition,
34772
+ "control" means (i) the power, direct or indirect, to cause the
34773
+ direction or management of such entity, whether by contract or
34774
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
34775
+ outstanding shares, or (iii) beneficial ownership of such entity.
34776
+
34777
+ "You" (or "Your") shall mean an individual or Legal Entity
34778
+ exercising permissions granted by this License.
34779
+
34780
+ "Source" form shall mean the preferred form for making modifications,
34781
+ including but not limited to software source code, documentation
34782
+ source, and configuration files.
34783
+
34784
+ "Object" form shall mean any form resulting from mechanical
34785
+ transformation or translation of a Source form, including but
34786
+ not limited to compiled object code, generated documentation,
34787
+ and conversions to other media types.
34788
+
34789
+ "Work" shall mean the work of authorship, whether in Source or
34790
+ Object form, made available under the License, as indicated by a
34791
+ copyright notice that is included in or attached to the work
34792
+ (an example is provided in the Appendix below).
34793
+
34794
+ "Derivative Works" shall mean any work, whether in Source or Object
34795
+ form, that is based on (or derived from) the Work and for which the
34796
+ editorial revisions, annotations, elaborations, or other modifications
34797
+ represent, as a whole, an original work of authorship. For the purposes
34798
+ of this License, Derivative Works shall not include works that remain
34799
+ separable from, or merely link (or bind by name) to the interfaces of,
34800
+ the Work and Derivative Works thereof.
34801
+
34802
+ "Contribution" shall mean any work of authorship, including
34803
+ the original version of the Work and any modifications or additions
34804
+ to that Work or Derivative Works thereof, that is intentionally
34805
+ submitted to Licensor for inclusion in the Work by the copyright owner
34806
+ or by an individual or Legal Entity authorized to submit on behalf of
34807
+ the copyright owner. For the purposes of this definition, "submitted"
34808
+ means any form of electronic, verbal, or written communication sent
34809
+ to the Licensor or its representatives, including but not limited to
34810
+ communication on electronic mailing lists, source code control systems,
34811
+ and issue tracking systems that are managed by, or on behalf of, the
34812
+ Licensor for the purpose of discussing and improving the Work, but
34813
+ excluding communication that is conspicuously marked or otherwise
34814
+ designated in writing by the copyright owner as "Not a Contribution."
34815
+
34816
+ "Contributor" shall mean Licensor and any individual or Legal Entity
34817
+ on behalf of whom a Contribution has been received by Licensor and
34818
+ subsequently incorporated within the Work.
34819
+
34820
+ 2. Grant of Copyright License. Subject to the terms and conditions of
34821
+ this License, each Contributor hereby grants to You a perpetual,
34822
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34823
+ copyright license to reproduce, prepare Derivative Works of,
34824
+ publicly display, publicly perform, sublicense, and distribute the
34825
+ Work and such Derivative Works in Source or Object form.
34826
+
34827
+ 3. Grant of Patent License. Subject to the terms and conditions of
34828
+ this License, each Contributor hereby grants to You a perpetual,
34829
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34830
+ (except as stated in this section) patent license to make, have made,
34831
+ use, offer to sell, sell, import, and otherwise transfer the Work,
34832
+ where such license applies only to those patent claims licensable
34833
+ by such Contributor that are necessarily infringed by their
34834
+ Contribution(s) alone or by combination of their Contribution(s)
34835
+ with the Work to which such Contribution(s) was submitted. If You
34836
+ institute patent litigation against any entity (including a
34837
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
34838
+ or a Contribution incorporated within the Work constitutes direct
34839
+ or contributory patent infringement, then any patent licenses
34840
+ granted to You under this License for that Work shall terminate
34841
+ as of the date such litigation is filed.
34842
+
34843
+ 4. Redistribution. You may reproduce and distribute copies of the
34844
+ Work or Derivative Works thereof in any medium, with or without
34845
+ modifications, and in Source or Object form, provided that You
34846
+ meet the following conditions:
34847
+
34848
+ (a) You must give any other recipients of the Work or
34849
+ Derivative Works a copy of this License; and
34850
+
34851
+ (b) You must cause any modified files to carry prominent notices
34852
+ stating that You changed the files; and
34853
+
34854
+ (c) You must retain, in the Source form of any Derivative Works
34855
+ that You distribute, all copyright, patent, trademark, and
34856
+ attribution notices from the Source form of the Work,
34857
+ excluding those notices that do not pertain to any part of
34858
+ the Derivative Works; and
34859
+
34860
+ (d) If the Work includes a "NOTICE" text file as part of its
34861
+ distribution, then any Derivative Works that You distribute must
34862
+ include a readable copy of the attribution notices contained
34863
+ within such NOTICE file, excluding those notices that do not
34864
+ pertain to any part of the Derivative Works, in at least one
34865
+ of the following places: within a NOTICE text file distributed
34866
+ as part of the Derivative Works; within the Source form or
34867
+ documentation, if provided along with the Derivative Works; or,
34868
+ within a display generated by the Derivative Works, if and
34869
+ wherever such third-party notices normally appear. The contents
34870
+ of the NOTICE file are for informational purposes only and
34871
+ do not modify the License. You may add Your own attribution
34872
+ notices within Derivative Works that You distribute, alongside
34873
+ or as an addendum to the NOTICE text from the Work, provided
34874
+ that such additional attribution notices cannot be construed
34875
+ as modifying the License.
34876
+
34877
+ You may add Your own copyright statement to Your modifications and
34878
+ may provide additional or different license terms and conditions
34879
+ for use, reproduction, or distribution of Your modifications, or
34880
+ for any such Derivative Works as a whole, provided Your use,
34881
+ reproduction, and distribution of the Work otherwise complies with
34882
+ the conditions stated in this License.
34883
+
34884
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
34885
+ any Contribution intentionally submitted for inclusion in the Work
34886
+ by You to the Licensor shall be under the terms and conditions of
34887
+ this License, without any additional terms or conditions.
34888
+ Notwithstanding the above, nothing herein shall supersede or modify
34889
+ the terms of any separate license agreement you may have executed
34890
+ with Licensor regarding such Contributions.
34891
+
34892
+ 6. Trademarks. This License does not grant permission to use the trade
34893
+ names, trademarks, service marks, or product names of the Licensor,
34894
+ except as required for reasonable and customary use in describing the
34895
+ origin of the Work and reproducing the content of the NOTICE file.
34896
+
34897
+ 7. Disclaimer of Warranty. Unless required by applicable law or
34898
+ agreed to in writing, Licensor provides the Work (and each
34899
+ Contributor provides its Contributions) on an "AS IS" BASIS,
34900
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34901
+ implied, including, without limitation, any warranties or conditions
34902
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34903
+ PARTICULAR PURPOSE. You are solely responsible for determining the
34904
+ appropriateness of using or redistributing the Work and assume any
34905
+ risks associated with Your exercise of permissions under this License.
34906
+
34907
+ 8. Limitation of Liability. In no event and under no legal theory,
34908
+ whether in tort (including negligence), contract, or otherwise,
34909
+ unless required by applicable law (such as deliberate and grossly
34910
+ negligent acts) or agreed to in writing, shall any Contributor be
34911
+ liable to You for damages, including any direct, indirect, special,
34912
+ incidental, or consequential damages of any character arising as a
34913
+ result of this License or out of the use or inability to use the
34914
+ Work (including but not limited to damages for loss of goodwill,
34915
+ work stoppage, computer failure or malfunction, or any and all
34916
+ other commercial damages or losses), even if such Contributor
34917
+ has been advised of the possibility of such damages.
34918
+
34919
+ 9. Accepting Warranty or Additional Liability. While redistributing
34920
+ the Work or Derivative Works thereof, You may choose to offer,
34921
+ and charge a fee for, acceptance of support, warranty, indemnity,
34922
+ or other liability obligations and/or rights consistent with this
34923
+ License. However, in accepting such obligations, You may act only
34924
+ on Your own behalf and on Your sole responsibility, not on behalf
34925
+ of any other Contributor, and only if You agree to indemnify,
34926
+ defend, and hold each Contributor harmless for any liability
34927
+ incurred by, or claims asserted against, such Contributor by reason
34928
+ of your accepting any such warranty or additional liability.
34929
+
34930
+ END OF TERMS AND CONDITIONS
34931
+
34932
+ APPENDIX: How to apply the Apache License to your work.
34933
+
34934
+ To apply the Apache License to your work, attach the following
34935
+ boilerplate notice, with the fields enclosed by brackets "[]"
34936
+ replaced with your own identifying information. (Don't include
34937
+ the brackets!) The text should be enclosed in the appropriate
34938
+ comment syntax for the file format. We also recommend that a
34939
+ file or class name and description of purpose be included on the
34940
+ same "printed page" as the copyright notice for easier
34941
+ identification within third-party archives.
34942
+
34943
+ Copyright [yyyy] [name of copyright owner]
34944
+
34945
+ Licensed under the Apache License, Version 2.0 (the "License");
34946
+ you may not use this file except in compliance with the License.
34947
+ You may obtain a copy of the License at
34948
+
34949
+ http://www.apache.org/licenses/LICENSE-2.0
34950
+
34951
+ Unless required by applicable law or agreed to in writing, software
34952
+ distributed under the License is distributed on an "AS IS" BASIS,
34953
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34954
+ See the License for the specific language governing permissions and
34955
+ limitations under the License.
34956
+
34957
+ ================================================================================
34958
+ target-features LICENSE-MIT
34959
+ ================================================================================
34960
+
34961
+ Copyright 2022 Caleb Zulawski
34962
+
34963
+ 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:
34964
+
34965
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
34966
+
34967
+ 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.
34968
+
34969
+ ================================================================================
34970
+ thiserror LICENSE-APACHE
34971
+ ================================================================================
34972
+
34973
+ Apache License
34974
+ Version 2.0, January 2004
34975
+ http://www.apache.org/licenses/
34976
+
34977
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34978
+
34979
+ 1. Definitions.
34980
+
34981
+ "License" shall mean the terms and conditions for use, reproduction,
34982
+ and distribution as defined by Sections 1 through 9 of this document.
34983
+
34984
+ "Licensor" shall mean the copyright owner or entity authorized by
34985
+ the copyright owner that is granting the License.
34986
+
34987
+ "Legal Entity" shall mean the union of the acting entity and all
34988
+ other entities that control, are controlled by, or are under common
34989
+ control with that entity. For the purposes of this definition,
34990
+ "control" means (i) the power, direct or indirect, to cause the
34991
+ direction or management of such entity, whether by contract or
34992
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
34993
+ outstanding shares, or (iii) beneficial ownership of such entity.
34994
+
34995
+ "You" (or "Your") shall mean an individual or Legal Entity
34996
+ exercising permissions granted by this License.
34997
+
34998
+ "Source" form shall mean the preferred form for making modifications,
34999
+ including but not limited to software source code, documentation
35000
+ source, and configuration files.
35001
+
35002
+ "Object" form shall mean any form resulting from mechanical
35003
+ transformation or translation of a Source form, including but
35004
+ not limited to compiled object code, generated documentation,
35005
+ and conversions to other media types.
35006
+
35007
+ "Work" shall mean the work of authorship, whether in Source or
35008
+ Object form, made available under the License, as indicated by a
35009
+ copyright notice that is included in or attached to the work
35010
+ (an example is provided in the Appendix below).
35011
+
35012
+ "Derivative Works" shall mean any work, whether in Source or Object
35013
+ form, that is based on (or derived from) the Work and for which the
35014
+ editorial revisions, annotations, elaborations, or other modifications
35015
+ represent, as a whole, an original work of authorship. For the purposes
35016
+ of this License, Derivative Works shall not include works that remain
35017
+ separable from, or merely link (or bind by name) to the interfaces of,
35018
+ the Work and Derivative Works thereof.
35019
+
35020
+ "Contribution" shall mean any work of authorship, including
35021
+ the original version of the Work and any modifications or additions
35022
+ to that Work or Derivative Works thereof, that is intentionally
35023
+ submitted to Licensor for inclusion in the Work by the copyright owner
35024
+ or by an individual or Legal Entity authorized to submit on behalf of
35025
+ the copyright owner. For the purposes of this definition, "submitted"
35026
+ means any form of electronic, verbal, or written communication sent
35027
+ to the Licensor or its representatives, including but not limited to
35028
+ communication on electronic mailing lists, source code control systems,
35029
+ and issue tracking systems that are managed by, or on behalf of, the
35030
+ Licensor for the purpose of discussing and improving the Work, but
35031
+ excluding communication that is conspicuously marked or otherwise
35032
+ designated in writing by the copyright owner as "Not a Contribution."
35033
+
35034
+ "Contributor" shall mean Licensor and any individual or Legal Entity
35035
+ on behalf of whom a Contribution has been received by Licensor and
35036
+ subsequently incorporated within the Work.
35037
+
35038
+ 2. Grant of Copyright License. Subject to the terms and conditions of
35039
+ this License, each Contributor hereby grants to You a perpetual,
35040
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
35041
+ copyright license to reproduce, prepare Derivative Works of,
35042
+ publicly display, publicly perform, sublicense, and distribute the
35043
+ Work and such Derivative Works in Source or Object form.
35044
+
35045
+ 3. Grant of Patent License. Subject to the terms and conditions of
35046
+ this License, each Contributor hereby grants to You a perpetual,
35047
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
35048
+ (except as stated in this section) patent license to make, have made,
35049
+ use, offer to sell, sell, import, and otherwise transfer the Work,
35050
+ where such license applies only to those patent claims licensable
35051
+ by such Contributor that are necessarily infringed by their
35052
+ Contribution(s) alone or by combination of their Contribution(s)
35053
+ with the Work to which such Contribution(s) was submitted. If You
35054
+ institute patent litigation against any entity (including a
35055
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
35056
+ or a Contribution incorporated within the Work constitutes direct
35057
+ or contributory patent infringement, then any patent licenses
35058
+ granted to You under this License for that Work shall terminate
35059
+ as of the date such litigation is filed.
35060
+
35061
+ 4. Redistribution. You may reproduce and distribute copies of the
35062
+ Work or Derivative Works thereof in any medium, with or without
35063
+ modifications, and in Source or Object form, provided that You
35064
+ meet the following conditions:
35065
+
35066
+ (a) You must give any other recipients of the Work or
35067
+ Derivative Works a copy of this License; and
35068
+
35069
+ (b) You must cause any modified files to carry prominent notices
35070
+ stating that You changed the files; and
35071
+
35072
+ (c) You must retain, in the Source form of any Derivative Works
35073
+ that You distribute, all copyright, patent, trademark, and
35074
+ attribution notices from the Source form of the Work,
35075
+ excluding those notices that do not pertain to any part of
35076
+ the Derivative Works; and
35077
+
35078
+ (d) If the Work includes a "NOTICE" text file as part of its
35079
+ distribution, then any Derivative Works that You distribute must
35080
+ include a readable copy of the attribution notices contained
35081
+ within such NOTICE file, excluding those notices that do not
35082
+ pertain to any part of the Derivative Works, in at least one
35083
+ of the following places: within a NOTICE text file distributed
35084
+ as part of the Derivative Works; within the Source form or
35085
+ documentation, if provided along with the Derivative Works; or,
35086
+ within a display generated by the Derivative Works, if and
35087
+ wherever such third-party notices normally appear. The contents
35088
+ of the NOTICE file are for informational purposes only and
35089
+ do not modify the License. You may add Your own attribution
35090
+ notices within Derivative Works that You distribute, alongside
35091
+ or as an addendum to the NOTICE text from the Work, provided
35092
+ that such additional attribution notices cannot be construed
35093
+ as modifying the License.
35094
+
35095
+ You may add Your own copyright statement to Your modifications and
35096
+ may provide additional or different license terms and conditions
35097
+ for use, reproduction, or distribution of Your modifications, or
35098
+ for any such Derivative Works as a whole, provided Your use,
35099
+ reproduction, and distribution of the Work otherwise complies with
35100
+ the conditions stated in this License.
35101
+
35102
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
35103
+ any Contribution intentionally submitted for inclusion in the Work
35104
+ by You to the Licensor shall be under the terms and conditions of
35105
+ this License, without any additional terms or conditions.
35106
+ Notwithstanding the above, nothing herein shall supersede or modify
35107
+ the terms of any separate license agreement you may have executed
35108
+ with Licensor regarding such Contributions.
35109
+
35110
+ 6. Trademarks. This License does not grant permission to use the trade
35111
+ names, trademarks, service marks, or product names of the Licensor,
35112
+ except as required for reasonable and customary use in describing the
35113
+ origin of the Work and reproducing the content of the NOTICE file.
35114
+
35115
+ 7. Disclaimer of Warranty. Unless required by applicable law or
35116
+ agreed to in writing, Licensor provides the Work (and each
35117
+ Contributor provides its Contributions) on an "AS IS" BASIS,
35118
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
35119
+ implied, including, without limitation, any warranties or conditions
35120
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
35121
+ PARTICULAR PURPOSE. You are solely responsible for determining the
35122
+ appropriateness of using or redistributing the Work and assume any
35123
+ risks associated with Your exercise of permissions under this License.
35124
+
35125
+ 8. Limitation of Liability. In no event and under no legal theory,
35126
+ whether in tort (including negligence), contract, or otherwise,
35127
+ unless required by applicable law (such as deliberate and grossly
35128
+ negligent acts) or agreed to in writing, shall any Contributor be
35129
+ liable to You for damages, including any direct, indirect, special,
35130
+ incidental, or consequential damages of any character arising as a
35131
+ result of this License or out of the use or inability to use the
35132
+ Work (including but not limited to damages for loss of goodwill,
35133
+ work stoppage, computer failure or malfunction, or any and all
35134
+ other commercial damages or losses), even if such Contributor
35135
+ has been advised of the possibility of such damages.
35136
+
35137
+ 9. Accepting Warranty or Additional Liability. While redistributing
35138
+ the Work or Derivative Works thereof, You may choose to offer,
35139
+ and charge a fee for, acceptance of support, warranty, indemnity,
35140
+ or other liability obligations and/or rights consistent with this
35141
+ License. However, in accepting such obligations, You may act only
35142
+ on Your own behalf and on Your sole responsibility, not on behalf
35143
+ of any other Contributor, and only if You agree to indemnify,
35144
+ defend, and hold each Contributor harmless for any liability
35145
+ incurred by, or claims asserted against, such Contributor by reason
35146
+ of your accepting any such warranty or additional liability.
35147
+
35148
+ END OF TERMS AND CONDITIONS
35149
+
34223
35150
  ================================================================================
34224
- syn v1.0.109 LICENSE-MIT
35151
+ thiserror LICENSE-MIT
34225
35152
  ================================================================================
34226
35153
 
34227
35154
  Permission is hereby granted, free of charge, to any
@@ -34249,7 +35176,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34249
35176
  DEALINGS IN THE SOFTWARE.
34250
35177
 
34251
35178
  ================================================================================
34252
- syn v2.0.46 LICENSE-APACHE
35179
+ thiserror-impl LICENSE-APACHE
34253
35180
  ================================================================================
34254
35181
 
34255
35182
  Apache License
@@ -34430,7 +35357,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34430
35357
  END OF TERMS AND CONDITIONS
34431
35358
 
34432
35359
  ================================================================================
34433
- syn v2.0.46 LICENSE-MIT
35360
+ thiserror-impl LICENSE-MIT
34434
35361
  ================================================================================
34435
35362
 
34436
35363
  Permission is hereby granted, free of charge, to any
@@ -34458,253 +35385,67 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34458
35385
  DEALINGS IN THE SOFTWARE.
34459
35386
 
34460
35387
  ================================================================================
34461
- sysinfo LICENSE
34462
- ================================================================================
34463
-
34464
- The MIT License (MIT)
34465
-
34466
- Copyright (c) 2015 Guillaume Gomez
34467
-
34468
- Permission is hereby granted, free of charge, to any person obtaining a copy
34469
- of this software and associated documentation files (the "Software"), to deal
34470
- in the Software without restriction, including without limitation the rights
34471
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
34472
- copies of the Software, and to permit persons to whom the Software is
34473
- furnished to do so, subject to the following conditions:
34474
-
34475
- The above copyright notice and this permission notice shall be included in all
34476
- copies or substantial portions of the Software.
34477
-
34478
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34479
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34480
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34481
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34482
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34483
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34484
- SOFTWARE.
34485
-
34486
-
34487
- ================================================================================
34488
- target-features LICENSE-APACHE
35388
+ tokio LICENSE
34489
35389
  ================================================================================
34490
35390
 
35391
+ Copyright (c) 2023 Tokio Contributors
34491
35392
 
34492
- Apache License
34493
- Version 2.0, January 2004
34494
- http://www.apache.org/licenses/
34495
-
34496
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34497
-
34498
- 1. Definitions.
34499
-
34500
- "License" shall mean the terms and conditions for use, reproduction,
34501
- and distribution as defined by Sections 1 through 9 of this document.
34502
-
34503
- "Licensor" shall mean the copyright owner or entity authorized by
34504
- the copyright owner that is granting the License.
34505
-
34506
- "Legal Entity" shall mean the union of the acting entity and all
34507
- other entities that control, are controlled by, or are under common
34508
- control with that entity. For the purposes of this definition,
34509
- "control" means (i) the power, direct or indirect, to cause the
34510
- direction or management of such entity, whether by contract or
34511
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
34512
- outstanding shares, or (iii) beneficial ownership of such entity.
34513
-
34514
- "You" (or "Your") shall mean an individual or Legal Entity
34515
- exercising permissions granted by this License.
34516
-
34517
- "Source" form shall mean the preferred form for making modifications,
34518
- including but not limited to software source code, documentation
34519
- source, and configuration files.
34520
-
34521
- "Object" form shall mean any form resulting from mechanical
34522
- transformation or translation of a Source form, including but
34523
- not limited to compiled object code, generated documentation,
34524
- and conversions to other media types.
34525
-
34526
- "Work" shall mean the work of authorship, whether in Source or
34527
- Object form, made available under the License, as indicated by a
34528
- copyright notice that is included in or attached to the work
34529
- (an example is provided in the Appendix below).
34530
-
34531
- "Derivative Works" shall mean any work, whether in Source or Object
34532
- form, that is based on (or derived from) the Work and for which the
34533
- editorial revisions, annotations, elaborations, or other modifications
34534
- represent, as a whole, an original work of authorship. For the purposes
34535
- of this License, Derivative Works shall not include works that remain
34536
- separable from, or merely link (or bind by name) to the interfaces of,
34537
- the Work and Derivative Works thereof.
34538
-
34539
- "Contribution" shall mean any work of authorship, including
34540
- the original version of the Work and any modifications or additions
34541
- to that Work or Derivative Works thereof, that is intentionally
34542
- submitted to Licensor for inclusion in the Work by the copyright owner
34543
- or by an individual or Legal Entity authorized to submit on behalf of
34544
- the copyright owner. For the purposes of this definition, "submitted"
34545
- means any form of electronic, verbal, or written communication sent
34546
- to the Licensor or its representatives, including but not limited to
34547
- communication on electronic mailing lists, source code control systems,
34548
- and issue tracking systems that are managed by, or on behalf of, the
34549
- Licensor for the purpose of discussing and improving the Work, but
34550
- excluding communication that is conspicuously marked or otherwise
34551
- designated in writing by the copyright owner as "Not a Contribution."
34552
-
34553
- "Contributor" shall mean Licensor and any individual or Legal Entity
34554
- on behalf of whom a Contribution has been received by Licensor and
34555
- subsequently incorporated within the Work.
34556
-
34557
- 2. Grant of Copyright License. Subject to the terms and conditions of
34558
- this License, each Contributor hereby grants to You a perpetual,
34559
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34560
- copyright license to reproduce, prepare Derivative Works of,
34561
- publicly display, publicly perform, sublicense, and distribute the
34562
- Work and such Derivative Works in Source or Object form.
34563
-
34564
- 3. Grant of Patent License. Subject to the terms and conditions of
34565
- this License, each Contributor hereby grants to You a perpetual,
34566
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
34567
- (except as stated in this section) patent license to make, have made,
34568
- use, offer to sell, sell, import, and otherwise transfer the Work,
34569
- where such license applies only to those patent claims licensable
34570
- by such Contributor that are necessarily infringed by their
34571
- Contribution(s) alone or by combination of their Contribution(s)
34572
- with the Work to which such Contribution(s) was submitted. If You
34573
- institute patent litigation against any entity (including a
34574
- cross-claim or counterclaim in a lawsuit) alleging that the Work
34575
- or a Contribution incorporated within the Work constitutes direct
34576
- or contributory patent infringement, then any patent licenses
34577
- granted to You under this License for that Work shall terminate
34578
- as of the date such litigation is filed.
34579
-
34580
- 4. Redistribution. You may reproduce and distribute copies of the
34581
- Work or Derivative Works thereof in any medium, with or without
34582
- modifications, and in Source or Object form, provided that You
34583
- meet the following conditions:
34584
-
34585
- (a) You must give any other recipients of the Work or
34586
- Derivative Works a copy of this License; and
34587
-
34588
- (b) You must cause any modified files to carry prominent notices
34589
- stating that You changed the files; and
34590
-
34591
- (c) You must retain, in the Source form of any Derivative Works
34592
- that You distribute, all copyright, patent, trademark, and
34593
- attribution notices from the Source form of the Work,
34594
- excluding those notices that do not pertain to any part of
34595
- the Derivative Works; and
34596
-
34597
- (d) If the Work includes a "NOTICE" text file as part of its
34598
- distribution, then any Derivative Works that You distribute must
34599
- include a readable copy of the attribution notices contained
34600
- within such NOTICE file, excluding those notices that do not
34601
- pertain to any part of the Derivative Works, in at least one
34602
- of the following places: within a NOTICE text file distributed
34603
- as part of the Derivative Works; within the Source form or
34604
- documentation, if provided along with the Derivative Works; or,
34605
- within a display generated by the Derivative Works, if and
34606
- wherever such third-party notices normally appear. The contents
34607
- of the NOTICE file are for informational purposes only and
34608
- do not modify the License. You may add Your own attribution
34609
- notices within Derivative Works that You distribute, alongside
34610
- or as an addendum to the NOTICE text from the Work, provided
34611
- that such additional attribution notices cannot be construed
34612
- as modifying the License.
34613
-
34614
- You may add Your own copyright statement to Your modifications and
34615
- may provide additional or different license terms and conditions
34616
- for use, reproduction, or distribution of Your modifications, or
34617
- for any such Derivative Works as a whole, provided Your use,
34618
- reproduction, and distribution of the Work otherwise complies with
34619
- the conditions stated in this License.
34620
-
34621
- 5. Submission of Contributions. Unless You explicitly state otherwise,
34622
- any Contribution intentionally submitted for inclusion in the Work
34623
- by You to the Licensor shall be under the terms and conditions of
34624
- this License, without any additional terms or conditions.
34625
- Notwithstanding the above, nothing herein shall supersede or modify
34626
- the terms of any separate license agreement you may have executed
34627
- with Licensor regarding such Contributions.
34628
-
34629
- 6. Trademarks. This License does not grant permission to use the trade
34630
- names, trademarks, service marks, or product names of the Licensor,
34631
- except as required for reasonable and customary use in describing the
34632
- origin of the Work and reproducing the content of the NOTICE file.
34633
-
34634
- 7. Disclaimer of Warranty. Unless required by applicable law or
34635
- agreed to in writing, Licensor provides the Work (and each
34636
- Contributor provides its Contributions) on an "AS IS" BASIS,
34637
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
34638
- implied, including, without limitation, any warranties or conditions
34639
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
34640
- PARTICULAR PURPOSE. You are solely responsible for determining the
34641
- appropriateness of using or redistributing the Work and assume any
34642
- risks associated with Your exercise of permissions under this License.
34643
-
34644
- 8. Limitation of Liability. In no event and under no legal theory,
34645
- whether in tort (including negligence), contract, or otherwise,
34646
- unless required by applicable law (such as deliberate and grossly
34647
- negligent acts) or agreed to in writing, shall any Contributor be
34648
- liable to You for damages, including any direct, indirect, special,
34649
- incidental, or consequential damages of any character arising as a
34650
- result of this License or out of the use or inability to use the
34651
- Work (including but not limited to damages for loss of goodwill,
34652
- work stoppage, computer failure or malfunction, or any and all
34653
- other commercial damages or losses), even if such Contributor
34654
- has been advised of the possibility of such damages.
34655
-
34656
- 9. Accepting Warranty or Additional Liability. While redistributing
34657
- the Work or Derivative Works thereof, You may choose to offer,
34658
- and charge a fee for, acceptance of support, warranty, indemnity,
34659
- or other liability obligations and/or rights consistent with this
34660
- License. However, in accepting such obligations, You may act only
34661
- on Your own behalf and on Your sole responsibility, not on behalf
34662
- of any other Contributor, and only if You agree to indemnify,
34663
- defend, and hold each Contributor harmless for any liability
34664
- incurred by, or claims asserted against, such Contributor by reason
34665
- of your accepting any such warranty or additional liability.
34666
-
34667
- END OF TERMS AND CONDITIONS
34668
-
34669
- APPENDIX: How to apply the Apache License to your work.
34670
-
34671
- To apply the Apache License to your work, attach the following
34672
- boilerplate notice, with the fields enclosed by brackets "[]"
34673
- replaced with your own identifying information. (Don't include
34674
- the brackets!) The text should be enclosed in the appropriate
34675
- comment syntax for the file format. We also recommend that a
34676
- file or class name and description of purpose be included on the
34677
- same "printed page" as the copyright notice for easier
34678
- identification within third-party archives.
34679
-
34680
- Copyright [yyyy] [name of copyright owner]
34681
-
34682
- Licensed under the Apache License, Version 2.0 (the "License");
34683
- you may not use this file except in compliance with the License.
34684
- You may obtain a copy of the License at
35393
+ Permission is hereby granted, free of charge, to any
35394
+ person obtaining a copy of this software and associated
35395
+ documentation files (the "Software"), to deal in the
35396
+ Software without restriction, including without
35397
+ limitation the rights to use, copy, modify, merge,
35398
+ publish, distribute, sublicense, and/or sell copies of
35399
+ the Software, and to permit persons to whom the Software
35400
+ is furnished to do so, subject to the following
35401
+ conditions:
34685
35402
 
34686
- http://www.apache.org/licenses/LICENSE-2.0
35403
+ The above copyright notice and this permission notice
35404
+ shall be included in all copies or substantial portions
35405
+ of the Software.
34687
35406
 
34688
- Unless required by applicable law or agreed to in writing, software
34689
- distributed under the License is distributed on an "AS IS" BASIS,
34690
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34691
- See the License for the specific language governing permissions and
34692
- limitations under the License.
35407
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
35408
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
35409
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35410
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
35411
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
35412
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35413
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
35414
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35415
+ DEALINGS IN THE SOFTWARE.
34693
35416
 
34694
35417
  ================================================================================
34695
- target-features LICENSE-MIT
35418
+ tokio-util LICENSE
34696
35419
  ================================================================================
34697
35420
 
34698
- Copyright 2022 Caleb Zulawski
35421
+ Copyright (c) 2023 Tokio Contributors
34699
35422
 
34700
- 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:
35423
+ Permission is hereby granted, free of charge, to any
35424
+ person obtaining a copy of this software and associated
35425
+ documentation files (the "Software"), to deal in the
35426
+ Software without restriction, including without
35427
+ limitation the rights to use, copy, modify, merge,
35428
+ publish, distribute, sublicense, and/or sell copies of
35429
+ the Software, and to permit persons to whom the Software
35430
+ is furnished to do so, subject to the following
35431
+ conditions:
34701
35432
 
34702
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
35433
+ The above copyright notice and this permission notice
35434
+ shall be included in all copies or substantial portions
35435
+ of the Software.
34703
35436
 
34704
- 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.
35437
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
35438
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
35439
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35440
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
35441
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
35442
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35443
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
35444
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35445
+ DEALINGS IN THE SOFTWARE.
34705
35446
 
34706
35447
  ================================================================================
34707
- thiserror LICENSE-APACHE
35448
+ unicode-ident LICENSE-APACHE
34708
35449
  ================================================================================
34709
35450
 
34710
35451
  Apache License
@@ -34885,7 +35626,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
34885
35626
  END OF TERMS AND CONDITIONS
34886
35627
 
34887
35628
  ================================================================================
34888
- thiserror LICENSE-MIT
35629
+ unicode-ident LICENSE-MIT
34889
35630
  ================================================================================
34890
35631
 
34891
35632
  Permission is hereby granted, free of charge, to any
@@ -34913,7 +35654,58 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
34913
35654
  DEALINGS IN THE SOFTWARE.
34914
35655
 
34915
35656
  ================================================================================
34916
- thiserror-impl LICENSE-APACHE
35657
+ unicode-ident LICENSE-UNICODE
35658
+ ================================================================================
35659
+
35660
+ UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
35661
+
35662
+ See Terms of Use <https://www.unicode.org/copyright.html>
35663
+ for definitions of Unicode Inc.’s Data Files and Software.
35664
+
35665
+ NOTICE TO USER: Carefully read the following legal agreement.
35666
+ BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
35667
+ DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
35668
+ YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
35669
+ TERMS AND CONDITIONS OF THIS AGREEMENT.
35670
+ IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
35671
+ THE DATA FILES OR SOFTWARE.
35672
+
35673
+ COPYRIGHT AND PERMISSION NOTICE
35674
+
35675
+ Copyright © 1991-2022 Unicode, Inc. All rights reserved.
35676
+ Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
35677
+
35678
+ Permission is hereby granted, free of charge, to any person obtaining
35679
+ a copy of the Unicode data files and any associated documentation
35680
+ (the "Data Files") or Unicode software and any associated documentation
35681
+ (the "Software") to deal in the Data Files or Software
35682
+ without restriction, including without limitation the rights to use,
35683
+ copy, modify, merge, publish, distribute, and/or sell copies of
35684
+ the Data Files or Software, and to permit persons to whom the Data Files
35685
+ or Software are furnished to do so, provided that either
35686
+ (a) this copyright and permission notice appear with all copies
35687
+ of the Data Files or Software, or
35688
+ (b) this copyright and permission notice appear in associated
35689
+ Documentation.
35690
+
35691
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
35692
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35693
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35694
+ NONINFRINGEMENT OF THIRD PARTY RIGHTS.
35695
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
35696
+ NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
35697
+ DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
35698
+ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
35699
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
35700
+ PERFORMANCE OF THE DATA FILES OR SOFTWARE.
35701
+
35702
+ Except as contained in this notice, the name of a copyright holder
35703
+ shall not be used in advertising or otherwise to promote the sale,
35704
+ use or other dealings in these Data Files or Software without prior
35705
+ written authorization of the copyright holder.
35706
+
35707
+ ================================================================================
35708
+ unicode-reverse LICENSE-APACHE
34917
35709
  ================================================================================
34918
35710
 
34919
35711
  Apache License
@@ -35093,10 +35885,37 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35093
35885
 
35094
35886
  END OF TERMS AND CONDITIONS
35095
35887
 
35888
+ APPENDIX: How to apply the Apache License to your work.
35889
+
35890
+ To apply the Apache License to your work, attach the following
35891
+ boilerplate notice, with the fields enclosed by brackets "[]"
35892
+ replaced with your own identifying information. (Don't include
35893
+ the brackets!) The text should be enclosed in the appropriate
35894
+ comment syntax for the file format. We also recommend that a
35895
+ file or class name and description of purpose be included on the
35896
+ same "printed page" as the copyright notice for easier
35897
+ identification within third-party archives.
35898
+
35899
+ Copyright [yyyy] [name of copyright owner]
35900
+
35901
+ Licensed under the Apache License, Version 2.0 (the "License");
35902
+ you may not use this file except in compliance with the License.
35903
+ You may obtain a copy of the License at
35904
+
35905
+ http://www.apache.org/licenses/LICENSE-2.0
35906
+
35907
+ Unless required by applicable law or agreed to in writing, software
35908
+ distributed under the License is distributed on an "AS IS" BASIS,
35909
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35910
+ See the License for the specific language governing permissions and
35911
+ limitations under the License.
35912
+
35096
35913
  ================================================================================
35097
- thiserror-impl LICENSE-MIT
35914
+ unicode-reverse LICENSE-MIT
35098
35915
  ================================================================================
35099
35916
 
35917
+ Copyright (c) 2016 Matt Brubeck
35918
+
35100
35919
  Permission is hereby granted, free of charge, to any
35101
35920
  person obtaining a copy of this software and associated
35102
35921
  documentation files (the "Software"), to deal in the
@@ -35122,40 +35941,216 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35122
35941
  DEALINGS IN THE SOFTWARE.
35123
35942
 
35124
35943
  ================================================================================
35125
- tokio LICENSE
35944
+ unicode-segmentation LICENSE-APACHE
35126
35945
  ================================================================================
35127
35946
 
35128
- Copyright (c) 2023 Tokio Contributors
35947
+ Apache License
35948
+ Version 2.0, January 2004
35949
+ http://www.apache.org/licenses/
35129
35950
 
35130
- Permission is hereby granted, free of charge, to any
35131
- person obtaining a copy of this software and associated
35132
- documentation files (the "Software"), to deal in the
35133
- Software without restriction, including without
35134
- limitation the rights to use, copy, modify, merge,
35135
- publish, distribute, sublicense, and/or sell copies of
35136
- the Software, and to permit persons to whom the Software
35137
- is furnished to do so, subject to the following
35138
- conditions:
35951
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35139
35952
 
35140
- The above copyright notice and this permission notice
35141
- shall be included in all copies or substantial portions
35142
- of the Software.
35953
+ 1. Definitions.
35143
35954
 
35144
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
35145
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
35146
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
35147
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
35148
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
35149
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35150
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
35151
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35152
- DEALINGS IN THE SOFTWARE.
35955
+ "License" shall mean the terms and conditions for use, reproduction,
35956
+ and distribution as defined by Sections 1 through 9 of this document.
35957
+
35958
+ "Licensor" shall mean the copyright owner or entity authorized by
35959
+ the copyright owner that is granting the License.
35960
+
35961
+ "Legal Entity" shall mean the union of the acting entity and all
35962
+ other entities that control, are controlled by, or are under common
35963
+ control with that entity. For the purposes of this definition,
35964
+ "control" means (i) the power, direct or indirect, to cause the
35965
+ direction or management of such entity, whether by contract or
35966
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
35967
+ outstanding shares, or (iii) beneficial ownership of such entity.
35968
+
35969
+ "You" (or "Your") shall mean an individual or Legal Entity
35970
+ exercising permissions granted by this License.
35971
+
35972
+ "Source" form shall mean the preferred form for making modifications,
35973
+ including but not limited to software source code, documentation
35974
+ source, and configuration files.
35975
+
35976
+ "Object" form shall mean any form resulting from mechanical
35977
+ transformation or translation of a Source form, including but
35978
+ not limited to compiled object code, generated documentation,
35979
+ and conversions to other media types.
35980
+
35981
+ "Work" shall mean the work of authorship, whether in Source or
35982
+ Object form, made available under the License, as indicated by a
35983
+ copyright notice that is included in or attached to the work
35984
+ (an example is provided in the Appendix below).
35985
+
35986
+ "Derivative Works" shall mean any work, whether in Source or Object
35987
+ form, that is based on (or derived from) the Work and for which the
35988
+ editorial revisions, annotations, elaborations, or other modifications
35989
+ represent, as a whole, an original work of authorship. For the purposes
35990
+ of this License, Derivative Works shall not include works that remain
35991
+ separable from, or merely link (or bind by name) to the interfaces of,
35992
+ the Work and Derivative Works thereof.
35993
+
35994
+ "Contribution" shall mean any work of authorship, including
35995
+ the original version of the Work and any modifications or additions
35996
+ to that Work or Derivative Works thereof, that is intentionally
35997
+ submitted to Licensor for inclusion in the Work by the copyright owner
35998
+ or by an individual or Legal Entity authorized to submit on behalf of
35999
+ the copyright owner. For the purposes of this definition, "submitted"
36000
+ means any form of electronic, verbal, or written communication sent
36001
+ to the Licensor or its representatives, including but not limited to
36002
+ communication on electronic mailing lists, source code control systems,
36003
+ and issue tracking systems that are managed by, or on behalf of, the
36004
+ Licensor for the purpose of discussing and improving the Work, but
36005
+ excluding communication that is conspicuously marked or otherwise
36006
+ designated in writing by the copyright owner as "Not a Contribution."
36007
+
36008
+ "Contributor" shall mean Licensor and any individual or Legal Entity
36009
+ on behalf of whom a Contribution has been received by Licensor and
36010
+ subsequently incorporated within the Work.
36011
+
36012
+ 2. Grant of Copyright License. Subject to the terms and conditions of
36013
+ this License, each Contributor hereby grants to You a perpetual,
36014
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
36015
+ copyright license to reproduce, prepare Derivative Works of,
36016
+ publicly display, publicly perform, sublicense, and distribute the
36017
+ Work and such Derivative Works in Source or Object form.
36018
+
36019
+ 3. Grant of Patent License. Subject to the terms and conditions of
36020
+ this License, each Contributor hereby grants to You a perpetual,
36021
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
36022
+ (except as stated in this section) patent license to make, have made,
36023
+ use, offer to sell, sell, import, and otherwise transfer the Work,
36024
+ where such license applies only to those patent claims licensable
36025
+ by such Contributor that are necessarily infringed by their
36026
+ Contribution(s) alone or by combination of their Contribution(s)
36027
+ with the Work to which such Contribution(s) was submitted. If You
36028
+ institute patent litigation against any entity (including a
36029
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
36030
+ or a Contribution incorporated within the Work constitutes direct
36031
+ or contributory patent infringement, then any patent licenses
36032
+ granted to You under this License for that Work shall terminate
36033
+ as of the date such litigation is filed.
36034
+
36035
+ 4. Redistribution. You may reproduce and distribute copies of the
36036
+ Work or Derivative Works thereof in any medium, with or without
36037
+ modifications, and in Source or Object form, provided that You
36038
+ meet the following conditions:
36039
+
36040
+ (a) You must give any other recipients of the Work or
36041
+ Derivative Works a copy of this License; and
36042
+
36043
+ (b) You must cause any modified files to carry prominent notices
36044
+ stating that You changed the files; and
36045
+
36046
+ (c) You must retain, in the Source form of any Derivative Works
36047
+ that You distribute, all copyright, patent, trademark, and
36048
+ attribution notices from the Source form of the Work,
36049
+ excluding those notices that do not pertain to any part of
36050
+ the Derivative Works; and
36051
+
36052
+ (d) If the Work includes a "NOTICE" text file as part of its
36053
+ distribution, then any Derivative Works that You distribute must
36054
+ include a readable copy of the attribution notices contained
36055
+ within such NOTICE file, excluding those notices that do not
36056
+ pertain to any part of the Derivative Works, in at least one
36057
+ of the following places: within a NOTICE text file distributed
36058
+ as part of the Derivative Works; within the Source form or
36059
+ documentation, if provided along with the Derivative Works; or,
36060
+ within a display generated by the Derivative Works, if and
36061
+ wherever such third-party notices normally appear. The contents
36062
+ of the NOTICE file are for informational purposes only and
36063
+ do not modify the License. You may add Your own attribution
36064
+ notices within Derivative Works that You distribute, alongside
36065
+ or as an addendum to the NOTICE text from the Work, provided
36066
+ that such additional attribution notices cannot be construed
36067
+ as modifying the License.
36068
+
36069
+ You may add Your own copyright statement to Your modifications and
36070
+ may provide additional or different license terms and conditions
36071
+ for use, reproduction, or distribution of Your modifications, or
36072
+ for any such Derivative Works as a whole, provided Your use,
36073
+ reproduction, and distribution of the Work otherwise complies with
36074
+ the conditions stated in this License.
36075
+
36076
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
36077
+ any Contribution intentionally submitted for inclusion in the Work
36078
+ by You to the Licensor shall be under the terms and conditions of
36079
+ this License, without any additional terms or conditions.
36080
+ Notwithstanding the above, nothing herein shall supersede or modify
36081
+ the terms of any separate license agreement you may have executed
36082
+ with Licensor regarding such Contributions.
36083
+
36084
+ 6. Trademarks. This License does not grant permission to use the trade
36085
+ names, trademarks, service marks, or product names of the Licensor,
36086
+ except as required for reasonable and customary use in describing the
36087
+ origin of the Work and reproducing the content of the NOTICE file.
36088
+
36089
+ 7. Disclaimer of Warranty. Unless required by applicable law or
36090
+ agreed to in writing, Licensor provides the Work (and each
36091
+ Contributor provides its Contributions) on an "AS IS" BASIS,
36092
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
36093
+ implied, including, without limitation, any warranties or conditions
36094
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
36095
+ PARTICULAR PURPOSE. You are solely responsible for determining the
36096
+ appropriateness of using or redistributing the Work and assume any
36097
+ risks associated with Your exercise of permissions under this License.
36098
+
36099
+ 8. Limitation of Liability. In no event and under no legal theory,
36100
+ whether in tort (including negligence), contract, or otherwise,
36101
+ unless required by applicable law (such as deliberate and grossly
36102
+ negligent acts) or agreed to in writing, shall any Contributor be
36103
+ liable to You for damages, including any direct, indirect, special,
36104
+ incidental, or consequential damages of any character arising as a
36105
+ result of this License or out of the use or inability to use the
36106
+ Work (including but not limited to damages for loss of goodwill,
36107
+ work stoppage, computer failure or malfunction, or any and all
36108
+ other commercial damages or losses), even if such Contributor
36109
+ has been advised of the possibility of such damages.
36110
+
36111
+ 9. Accepting Warranty or Additional Liability. While redistributing
36112
+ the Work or Derivative Works thereof, You may choose to offer,
36113
+ and charge a fee for, acceptance of support, warranty, indemnity,
36114
+ or other liability obligations and/or rights consistent with this
36115
+ License. However, in accepting such obligations, You may act only
36116
+ on Your own behalf and on Your sole responsibility, not on behalf
36117
+ of any other Contributor, and only if You agree to indemnify,
36118
+ defend, and hold each Contributor harmless for any liability
36119
+ incurred by, or claims asserted against, such Contributor by reason
36120
+ of your accepting any such warranty or additional liability.
36121
+
36122
+ END OF TERMS AND CONDITIONS
36123
+
36124
+ APPENDIX: How to apply the Apache License to your work.
36125
+
36126
+ To apply the Apache License to your work, attach the following
36127
+ boilerplate notice, with the fields enclosed by brackets "[]"
36128
+ replaced with your own identifying information. (Don't include
36129
+ the brackets!) The text should be enclosed in the appropriate
36130
+ comment syntax for the file format. We also recommend that a
36131
+ file or class name and description of purpose be included on the
36132
+ same "printed page" as the copyright notice for easier
36133
+ identification within third-party archives.
36134
+
36135
+ Copyright [yyyy] [name of copyright owner]
36136
+
36137
+ Licensed under the Apache License, Version 2.0 (the "License");
36138
+ you may not use this file except in compliance with the License.
36139
+ You may obtain a copy of the License at
36140
+
36141
+ http://www.apache.org/licenses/LICENSE-2.0
36142
+
36143
+ Unless required by applicable law or agreed to in writing, software
36144
+ distributed under the License is distributed on an "AS IS" BASIS,
36145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36146
+ See the License for the specific language governing permissions and
36147
+ limitations under the License.
35153
36148
 
35154
36149
  ================================================================================
35155
- tokio-util LICENSE
36150
+ unicode-segmentation LICENSE-MIT
35156
36151
  ================================================================================
35157
36152
 
35158
- Copyright (c) 2023 Tokio Contributors
36153
+ Copyright (c) 2015 The Rust Project Developers
35159
36154
 
35160
36155
  Permission is hereby granted, free of charge, to any
35161
36156
  person obtaining a copy of this software and associated
@@ -35182,7 +36177,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35182
36177
  DEALINGS IN THE SOFTWARE.
35183
36178
 
35184
36179
  ================================================================================
35185
- unicode-ident LICENSE-APACHE
36180
+ unicode-width LICENSE-APACHE
35186
36181
  ================================================================================
35187
36182
 
35188
36183
  Apache License
@@ -35362,10 +36357,37 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35362
36357
 
35363
36358
  END OF TERMS AND CONDITIONS
35364
36359
 
36360
+ APPENDIX: How to apply the Apache License to your work.
36361
+
36362
+ To apply the Apache License to your work, attach the following
36363
+ boilerplate notice, with the fields enclosed by brackets "[]"
36364
+ replaced with your own identifying information. (Don't include
36365
+ the brackets!) The text should be enclosed in the appropriate
36366
+ comment syntax for the file format. We also recommend that a
36367
+ file or class name and description of purpose be included on the
36368
+ same "printed page" as the copyright notice for easier
36369
+ identification within third-party archives.
36370
+
36371
+ Copyright [yyyy] [name of copyright owner]
36372
+
36373
+ Licensed under the Apache License, Version 2.0 (the "License");
36374
+ you may not use this file except in compliance with the License.
36375
+ You may obtain a copy of the License at
36376
+
36377
+ http://www.apache.org/licenses/LICENSE-2.0
36378
+
36379
+ Unless required by applicable law or agreed to in writing, software
36380
+ distributed under the License is distributed on an "AS IS" BASIS,
36381
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36382
+ See the License for the specific language governing permissions and
36383
+ limitations under the License.
36384
+
35365
36385
  ================================================================================
35366
- unicode-ident LICENSE-MIT
36386
+ unicode-width LICENSE-MIT
35367
36387
  ================================================================================
35368
36388
 
36389
+ Copyright (c) 2015 The Rust Project Developers
36390
+
35369
36391
  Permission is hereby granted, free of charge, to any
35370
36392
  person obtaining a copy of this software and associated
35371
36393
  documentation files (the "Software"), to deal in the
@@ -35391,58 +36413,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35391
36413
  DEALINGS IN THE SOFTWARE.
35392
36414
 
35393
36415
  ================================================================================
35394
- unicode-ident LICENSE-UNICODE
35395
- ================================================================================
35396
-
35397
- UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
35398
-
35399
- See Terms of Use <https://www.unicode.org/copyright.html>
35400
- for definitions of Unicode Inc.’s Data Files and Software.
35401
-
35402
- NOTICE TO USER: Carefully read the following legal agreement.
35403
- BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
35404
- DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
35405
- YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
35406
- TERMS AND CONDITIONS OF THIS AGREEMENT.
35407
- IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
35408
- THE DATA FILES OR SOFTWARE.
35409
-
35410
- COPYRIGHT AND PERMISSION NOTICE
35411
-
35412
- Copyright © 1991-2022 Unicode, Inc. All rights reserved.
35413
- Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
35414
-
35415
- Permission is hereby granted, free of charge, to any person obtaining
35416
- a copy of the Unicode data files and any associated documentation
35417
- (the "Data Files") or Unicode software and any associated documentation
35418
- (the "Software") to deal in the Data Files or Software
35419
- without restriction, including without limitation the rights to use,
35420
- copy, modify, merge, publish, distribute, and/or sell copies of
35421
- the Data Files or Software, and to permit persons to whom the Data Files
35422
- or Software are furnished to do so, provided that either
35423
- (a) this copyright and permission notice appear with all copies
35424
- of the Data Files or Software, or
35425
- (b) this copyright and permission notice appear in associated
35426
- Documentation.
35427
-
35428
- THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
35429
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35430
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
35431
- NONINFRINGEMENT OF THIRD PARTY RIGHTS.
35432
- IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
35433
- NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
35434
- DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
35435
- DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
35436
- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
35437
- PERFORMANCE OF THE DATA FILES OR SOFTWARE.
35438
-
35439
- Except as contained in this notice, the name of a copyright holder
35440
- shall not be used in advertising or otherwise to promote the sale,
35441
- use or other dealings in these Data Files or Software without prior
35442
- written authorization of the copyright holder.
35443
-
35444
- ================================================================================
35445
- unicode-width LICENSE-APACHE
36416
+ uuid LICENSE-APACHE
35446
36417
  ================================================================================
35447
36418
 
35448
36419
  Apache License
@@ -35648,10 +36619,11 @@ See the License for the specific language governing permissions and
35648
36619
  limitations under the License.
35649
36620
 
35650
36621
  ================================================================================
35651
- unicode-width LICENSE-MIT
36622
+ uuid LICENSE-MIT
35652
36623
  ================================================================================
35653
36624
 
35654
- Copyright (c) 2015 The Rust Project Developers
36625
+ Copyright (c) 2014 The Rust Project Developers
36626
+ Copyright (c) 2018 Ashley Mannix, Christopher Armstrong, Dylan DPC, Hunar Roop Kahlon
35655
36627
 
35656
36628
  Permission is hereby granted, free of charge, to any
35657
36629
  person obtaining a copy of this software and associated