polars-df 0.9.0-x86_64-linux → 0.11.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -0
- data/Cargo.lock +144 -57
- data/LICENSE-THIRD-PARTY.txt +629 -29
- data/README.md +7 -6
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/array_expr.rb +6 -2
- data/lib/polars/batched_csv_reader.rb +11 -3
- data/lib/polars/convert.rb +6 -1
- data/lib/polars/data_frame.rb +225 -370
- data/lib/polars/date_time_expr.rb +11 -4
- data/lib/polars/date_time_name_space.rb +14 -4
- data/lib/polars/dynamic_group_by.rb +2 -2
- data/lib/polars/exceptions.rb +4 -0
- data/lib/polars/expr.rb +1171 -54
- data/lib/polars/functions/lazy.rb +3 -3
- data/lib/polars/functions/range/date_range.rb +92 -0
- data/lib/polars/functions/range/datetime_range.rb +149 -0
- data/lib/polars/functions/range/time_range.rb +141 -0
- data/lib/polars/functions/whenthen.rb +74 -5
- data/lib/polars/group_by.rb +88 -23
- data/lib/polars/io/avro.rb +24 -0
- data/lib/polars/{io.rb → io/csv.rb} +307 -489
- data/lib/polars/io/database.rb +73 -0
- data/lib/polars/io/ipc.rb +247 -0
- data/lib/polars/io/json.rb +18 -0
- data/lib/polars/io/ndjson.rb +69 -0
- data/lib/polars/io/parquet.rb +226 -0
- data/lib/polars/lazy_frame.rb +55 -195
- data/lib/polars/lazy_group_by.rb +100 -3
- data/lib/polars/list_expr.rb +6 -2
- data/lib/polars/rolling_group_by.rb +2 -2
- data/lib/polars/series.rb +14 -12
- data/lib/polars/string_expr.rb +38 -36
- data/lib/polars/utils.rb +89 -1
- data/lib/polars/version.rb +1 -1
- data/lib/polars/whenthen.rb +83 -0
- data/lib/polars.rb +10 -3
- metadata +13 -6
- data/lib/polars/when.rb +0 -16
- data/lib/polars/when_then.rb +0 -19
data/LICENSE-THIRD-PARTY.txt
CHANGED
@@ -30,7 +30,7 @@ allocator-api2 v0.2.16
|
|
30
30
|
https://github.com/zakarumych/allocator-api2
|
31
31
|
MIT OR Apache-2.0
|
32
32
|
|
33
|
-
argminmax v0.6.
|
33
|
+
argminmax v0.6.2
|
34
34
|
https://github.com/jvdd/argminmax
|
35
35
|
MIT
|
36
36
|
|
@@ -66,7 +66,7 @@ avro-schema v0.3.0
|
|
66
66
|
https://github.com/DataEngineeringLabs/avro-schema
|
67
67
|
MIT/Apache-2.0
|
68
68
|
|
69
|
-
base64 v0.
|
69
|
+
base64 v0.22.1
|
70
70
|
https://github.com/marshallpierce/rust-base64
|
71
71
|
MIT OR Apache-2.0
|
72
72
|
|
@@ -78,11 +78,11 @@ bitflags v2.4.1
|
|
78
78
|
https://github.com/bitflags/bitflags
|
79
79
|
MIT OR Apache-2.0
|
80
80
|
|
81
|
-
brotli
|
81
|
+
brotli v5.0.0
|
82
82
|
https://github.com/dropbox/rust-brotli
|
83
|
-
BSD-3-Clause
|
83
|
+
BSD-3-Clause OR MIT
|
84
84
|
|
85
|
-
brotli-decompressor
|
85
|
+
brotli-decompressor v4.0.0
|
86
86
|
https://github.com/dropbox/rust-brotli-decompressor
|
87
87
|
BSD-3-Clause/MIT
|
88
88
|
|
@@ -110,7 +110,7 @@ cfg-if v1.0.0
|
|
110
110
|
https://github.com/alexcrichton/cfg-if
|
111
111
|
MIT/Apache-2.0
|
112
112
|
|
113
|
-
chrono v0.4.
|
113
|
+
chrono v0.4.35
|
114
114
|
https://github.com/chronotope/chrono
|
115
115
|
MIT OR Apache-2.0
|
116
116
|
|
@@ -169,8 +169,8 @@ dyn-clone v1.0.16
|
|
169
169
|
https://github.com/dtolnay/dyn-clone
|
170
170
|
MIT OR Apache-2.0
|
171
171
|
|
172
|
-
either v1.
|
173
|
-
https://github.com/
|
172
|
+
either v1.12.0
|
173
|
+
https://github.com/rayon-rs/either
|
174
174
|
MIT OR Apache-2.0
|
175
175
|
|
176
176
|
enum_dispatch v0.3.12
|
@@ -373,7 +373,7 @@ lz4-sys v1.9.4
|
|
373
373
|
https://github.com/10xGenomics/lz4-rs
|
374
374
|
MIT
|
375
375
|
|
376
|
-
magnus v0.6.
|
376
|
+
magnus v0.6.4
|
377
377
|
https://github.com/matsadler/magnus
|
378
378
|
MIT
|
379
379
|
|
@@ -417,7 +417,7 @@ now v0.1.3
|
|
417
417
|
https://github.com/Kilerd/now
|
418
418
|
MIT
|
419
419
|
|
420
|
-
num-traits v0.2.
|
420
|
+
num-traits v0.2.19
|
421
421
|
https://github.com/rust-num/num-traits
|
422
422
|
MIT OR Apache-2.0
|
423
423
|
|
@@ -485,68 +485,74 @@ planus v0.3.1
|
|
485
485
|
https://github.com/planus-org/planus
|
486
486
|
MIT/Apache-2.0
|
487
487
|
|
488
|
-
polars v0.
|
488
|
+
polars v0.40.0
|
489
489
|
https://www.pola.rs/
|
490
490
|
MIT
|
491
491
|
|
492
|
-
polars-arrow v0.
|
492
|
+
polars-arrow v0.40.0
|
493
493
|
https://www.pola.rs/
|
494
|
+
MIT AND Apache-2.0
|
494
495
|
|
495
496
|
polars-arrow-format v0.1.0
|
496
497
|
https://github.com/polar-rs/arrow-format
|
497
498
|
|
498
|
-
polars-compute v0.
|
499
|
+
polars-compute v0.40.0
|
499
500
|
https://www.pola.rs/
|
500
501
|
MIT
|
501
502
|
|
502
|
-
polars-core v0.
|
503
|
+
polars-core v0.40.0
|
503
504
|
https://www.pola.rs/
|
504
505
|
MIT
|
505
506
|
|
506
|
-
polars-error v0.
|
507
|
+
polars-error v0.40.0
|
507
508
|
https://www.pola.rs/
|
508
509
|
MIT
|
509
510
|
|
510
|
-
polars-
|
511
|
+
polars-expr v0.40.0
|
511
512
|
https://www.pola.rs/
|
512
513
|
MIT
|
513
514
|
|
514
|
-
polars-
|
515
|
+
polars-io v0.40.0
|
515
516
|
https://www.pola.rs/
|
516
517
|
MIT
|
517
518
|
|
518
|
-
polars-
|
519
|
+
polars-json v0.40.0
|
519
520
|
https://www.pola.rs/
|
520
521
|
MIT
|
521
522
|
|
522
|
-
polars-
|
523
|
+
polars-lazy v0.40.0
|
523
524
|
https://www.pola.rs/
|
524
525
|
MIT
|
525
526
|
|
526
|
-
polars-
|
527
|
+
polars-ops v0.40.0
|
527
528
|
https://www.pola.rs/
|
529
|
+
MIT
|
528
530
|
|
529
|
-
polars-
|
531
|
+
polars-parquet v0.40.0
|
532
|
+
https://www.pola.rs/
|
533
|
+
MIT AND Apache-2.0
|
534
|
+
|
535
|
+
polars-pipe v0.40.0
|
530
536
|
https://www.pola.rs/
|
531
537
|
MIT
|
532
538
|
|
533
|
-
polars-plan v0.
|
539
|
+
polars-plan v0.40.0
|
534
540
|
https://www.pola.rs/
|
535
541
|
MIT
|
536
542
|
|
537
|
-
polars-row v0.
|
543
|
+
polars-row v0.40.0
|
538
544
|
https://www.pola.rs/
|
539
545
|
MIT
|
540
546
|
|
541
|
-
polars-sql v0.
|
547
|
+
polars-sql v0.40.0
|
542
548
|
https://www.pola.rs/
|
543
549
|
MIT
|
544
550
|
|
545
|
-
polars-time v0.
|
551
|
+
polars-time v0.40.0
|
546
552
|
https://www.pola.rs/
|
547
553
|
MIT
|
548
554
|
|
549
|
-
polars-utils v0.
|
555
|
+
polars-utils v0.40.0
|
550
556
|
https://www.pola.rs/
|
551
557
|
MIT
|
552
558
|
|
@@ -558,6 +564,10 @@ proc-macro2 v1.0.74
|
|
558
564
|
https://github.com/dtolnay/proc-macro2
|
559
565
|
MIT OR Apache-2.0
|
560
566
|
|
567
|
+
psm v0.1.21
|
568
|
+
https://github.com/rust-lang/stacker/
|
569
|
+
MIT OR Apache-2.0
|
570
|
+
|
561
571
|
quote v1.0.35
|
562
572
|
https://github.com/dtolnay/quote
|
563
573
|
MIT OR Apache-2.0
|
@@ -590,11 +600,11 @@ rayon-core v1.12.1
|
|
590
600
|
https://github.com/rayon-rs/rayon
|
591
601
|
MIT OR Apache-2.0
|
592
602
|
|
593
|
-
rb-sys v0.9.
|
603
|
+
rb-sys v0.9.97
|
594
604
|
https://github.com/oxidize-rb/rb-sys
|
595
605
|
MIT OR Apache-2.0
|
596
606
|
|
597
|
-
rb-sys-build v0.9.
|
607
|
+
rb-sys-build v0.9.97
|
598
608
|
https://github.com/oxidize-rb/rb-sys
|
599
609
|
MIT OR Apache-2.0
|
600
610
|
|
@@ -602,6 +612,14 @@ rb-sys-env v0.1.2
|
|
602
612
|
https://github.com/oxidize-rb/rb-sys
|
603
613
|
MIT OR Apache-2.0
|
604
614
|
|
615
|
+
recursive v0.1.1
|
616
|
+
https://github.com/orlp/recursive
|
617
|
+
MIT
|
618
|
+
|
619
|
+
recursive-proc-macro-impl v0.1.1
|
620
|
+
https://github.com/orlp/recursive
|
621
|
+
MIT
|
622
|
+
|
605
623
|
ref-cast v1.0.22
|
606
624
|
https://github.com/dtolnay/ref-cast
|
607
625
|
MIT OR Apache-2.0
|
@@ -702,6 +720,10 @@ sqlparser v0.39.0
|
|
702
720
|
https://github.com/sqlparser-rs/sqlparser-rs
|
703
721
|
Apache-2.0
|
704
722
|
|
723
|
+
stacker v0.1.15
|
724
|
+
https://github.com/rust-lang/stacker
|
725
|
+
MIT OR Apache-2.0
|
726
|
+
|
705
727
|
static_assertions v1.1.0
|
706
728
|
https://github.com/nvzqz/static-assertions-rs
|
707
729
|
MIT OR Apache-2.0
|
@@ -726,6 +748,10 @@ strum_macros v0.25.3
|
|
726
748
|
https://github.com/Peternator7/strum
|
727
749
|
MIT
|
728
750
|
|
751
|
+
strum_macros v0.26.2
|
752
|
+
https://github.com/Peternator7/strum
|
753
|
+
MIT
|
754
|
+
|
729
755
|
syn v1.0.109
|
730
756
|
https://github.com/dtolnay/syn
|
731
757
|
MIT OR Apache-2.0
|
@@ -24840,6 +24866,7 @@ polars LICENSE
|
|
24840
24866
|
================================================================================
|
24841
24867
|
|
24842
24868
|
Copyright (c) 2020 Ritchie Vink
|
24869
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
24843
24870
|
|
24844
24871
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
24845
24872
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25483,6 +25510,7 @@ polars-compute LICENSE
|
|
25483
25510
|
================================================================================
|
25484
25511
|
|
25485
25512
|
Copyright (c) 2020 Ritchie Vink
|
25513
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25486
25514
|
|
25487
25515
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25488
25516
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25507,6 +25535,7 @@ polars-core LICENSE
|
|
25507
25535
|
================================================================================
|
25508
25536
|
|
25509
25537
|
Copyright (c) 2020 Ritchie Vink
|
25538
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25510
25539
|
|
25511
25540
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25512
25541
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25531,6 +25560,32 @@ polars-error LICENSE
|
|
25531
25560
|
================================================================================
|
25532
25561
|
|
25533
25562
|
Copyright (c) 2020 Ritchie Vink
|
25563
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25564
|
+
|
25565
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25566
|
+
of this software and associated documentation files (the "Software"), to deal
|
25567
|
+
in the Software without restriction, including without limitation the rights
|
25568
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
25569
|
+
copies of the Software, and to permit persons to whom the Software is
|
25570
|
+
furnished to do so, subject to the following conditions:
|
25571
|
+
|
25572
|
+
The above copyright notice and this permission notice shall be included in all
|
25573
|
+
copies or substantial portions of the Software.
|
25574
|
+
|
25575
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
25576
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
25577
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25578
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25579
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25580
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25581
|
+
SOFTWARE.
|
25582
|
+
|
25583
|
+
================================================================================
|
25584
|
+
polars-expr LICENSE
|
25585
|
+
================================================================================
|
25586
|
+
|
25587
|
+
Copyright (c) 2020 Ritchie Vink
|
25588
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25534
25589
|
|
25535
25590
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25536
25591
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25555,6 +25610,7 @@ polars-io LICENSE
|
|
25555
25610
|
================================================================================
|
25556
25611
|
|
25557
25612
|
Copyright (c) 2020 Ritchie Vink
|
25613
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25558
25614
|
|
25559
25615
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25560
25616
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25579,6 +25635,7 @@ polars-json LICENSE
|
|
25579
25635
|
================================================================================
|
25580
25636
|
|
25581
25637
|
Copyright (c) 2020 Ritchie Vink
|
25638
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25582
25639
|
|
25583
25640
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25584
25641
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25603,6 +25660,7 @@ polars-lazy LICENSE
|
|
25603
25660
|
================================================================================
|
25604
25661
|
|
25605
25662
|
Copyright (c) 2020 Ritchie Vink
|
25663
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25606
25664
|
|
25607
25665
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25608
25666
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25627,6 +25685,7 @@ polars-ops LICENSE
|
|
25627
25685
|
================================================================================
|
25628
25686
|
|
25629
25687
|
Copyright (c) 2020 Ritchie Vink
|
25688
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25630
25689
|
|
25631
25690
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25632
25691
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25852,6 +25911,7 @@ polars-pipe LICENSE
|
|
25852
25911
|
================================================================================
|
25853
25912
|
|
25854
25913
|
Copyright (c) 2020 Ritchie Vink
|
25914
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25855
25915
|
|
25856
25916
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25857
25917
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25876,6 +25936,7 @@ polars-plan LICENSE
|
|
25876
25936
|
================================================================================
|
25877
25937
|
|
25878
25938
|
Copyright (c) 2020 Ritchie Vink
|
25939
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25879
25940
|
|
25880
25941
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25881
25942
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25900,6 +25961,7 @@ polars-row LICENSE
|
|
25900
25961
|
================================================================================
|
25901
25962
|
|
25902
25963
|
Copyright (c) 2020 Ritchie Vink
|
25964
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25903
25965
|
|
25904
25966
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25905
25967
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25924,6 +25986,7 @@ polars-sql LICENSE
|
|
25924
25986
|
================================================================================
|
25925
25987
|
|
25926
25988
|
Copyright (c) 2020 Ritchie Vink
|
25989
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25927
25990
|
|
25928
25991
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25929
25992
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25948,6 +26011,7 @@ polars-time LICENSE
|
|
25948
26011
|
================================================================================
|
25949
26012
|
|
25950
26013
|
Copyright (c) 2020 Ritchie Vink
|
26014
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25951
26015
|
|
25952
26016
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25953
26017
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25972,6 +26036,7 @@ polars-utils LICENSE
|
|
25972
26036
|
================================================================================
|
25973
26037
|
|
25974
26038
|
Copyright (c) 2020 Ritchie Vink
|
26039
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25975
26040
|
|
25976
26041
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25977
26042
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -26436,6 +26501,233 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
26436
26501
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
26437
26502
|
DEALINGS IN THE SOFTWARE.
|
26438
26503
|
|
26504
|
+
================================================================================
|
26505
|
+
psm LICENSE-APACHE
|
26506
|
+
================================================================================
|
26507
|
+
|
26508
|
+
Apache License
|
26509
|
+
Version 2.0, January 2004
|
26510
|
+
http://www.apache.org/licenses/
|
26511
|
+
|
26512
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
26513
|
+
|
26514
|
+
1. Definitions.
|
26515
|
+
|
26516
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
26517
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
26518
|
+
|
26519
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
26520
|
+
the copyright owner that is granting the License.
|
26521
|
+
|
26522
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
26523
|
+
other entities that control, are controlled by, or are under common
|
26524
|
+
control with that entity. For the purposes of this definition,
|
26525
|
+
"control" means (i) the power, direct or indirect, to cause the
|
26526
|
+
direction or management of such entity, whether by contract or
|
26527
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
26528
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
26529
|
+
|
26530
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
26531
|
+
exercising permissions granted by this License.
|
26532
|
+
|
26533
|
+
"Source" form shall mean the preferred form for making modifications,
|
26534
|
+
including but not limited to software source code, documentation
|
26535
|
+
source, and configuration files.
|
26536
|
+
|
26537
|
+
"Object" form shall mean any form resulting from mechanical
|
26538
|
+
transformation or translation of a Source form, including but
|
26539
|
+
not limited to compiled object code, generated documentation,
|
26540
|
+
and conversions to other media types.
|
26541
|
+
|
26542
|
+
"Work" shall mean the work of authorship, whether in Source or
|
26543
|
+
Object form, made available under the License, as indicated by a
|
26544
|
+
copyright notice that is included in or attached to the work
|
26545
|
+
(an example is provided in the Appendix below).
|
26546
|
+
|
26547
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
26548
|
+
form, that is based on (or derived from) the Work and for which the
|
26549
|
+
editorial revisions, annotations, elaborations, or other modifications
|
26550
|
+
represent, as a whole, an original work of authorship. For the purposes
|
26551
|
+
of this License, Derivative Works shall not include works that remain
|
26552
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
26553
|
+
the Work and Derivative Works thereof.
|
26554
|
+
|
26555
|
+
"Contribution" shall mean any work of authorship, including
|
26556
|
+
the original version of the Work and any modifications or additions
|
26557
|
+
to that Work or Derivative Works thereof, that is intentionally
|
26558
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
26559
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
26560
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
26561
|
+
means any form of electronic, verbal, or written communication sent
|
26562
|
+
to the Licensor or its representatives, including but not limited to
|
26563
|
+
communication on electronic mailing lists, source code control systems,
|
26564
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
26565
|
+
Licensor for the purpose of discussing and improving the Work, but
|
26566
|
+
excluding communication that is conspicuously marked or otherwise
|
26567
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
26568
|
+
|
26569
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
26570
|
+
on behalf of whom a Contribution has been received by Licensor and
|
26571
|
+
subsequently incorporated within the Work.
|
26572
|
+
|
26573
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
26574
|
+
this License, each Contributor hereby grants to You a perpetual,
|
26575
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
26576
|
+
copyright license to reproduce, prepare Derivative Works of,
|
26577
|
+
publicly display, publicly perform, sublicense, and distribute the
|
26578
|
+
Work and such Derivative Works in Source or Object form.
|
26579
|
+
|
26580
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
26581
|
+
this License, each Contributor hereby grants to You a perpetual,
|
26582
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
26583
|
+
(except as stated in this section) patent license to make, have made,
|
26584
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
26585
|
+
where such license applies only to those patent claims licensable
|
26586
|
+
by such Contributor that are necessarily infringed by their
|
26587
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
26588
|
+
with the Work to which such Contribution(s) was submitted. If You
|
26589
|
+
institute patent litigation against any entity (including a
|
26590
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
26591
|
+
or a Contribution incorporated within the Work constitutes direct
|
26592
|
+
or contributory patent infringement, then any patent licenses
|
26593
|
+
granted to You under this License for that Work shall terminate
|
26594
|
+
as of the date such litigation is filed.
|
26595
|
+
|
26596
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
26597
|
+
Work or Derivative Works thereof in any medium, with or without
|
26598
|
+
modifications, and in Source or Object form, provided that You
|
26599
|
+
meet the following conditions:
|
26600
|
+
|
26601
|
+
(a) You must give any other recipients of the Work or
|
26602
|
+
Derivative Works a copy of this License; and
|
26603
|
+
|
26604
|
+
(b) You must cause any modified files to carry prominent notices
|
26605
|
+
stating that You changed the files; and
|
26606
|
+
|
26607
|
+
(c) You must retain, in the Source form of any Derivative Works
|
26608
|
+
that You distribute, all copyright, patent, trademark, and
|
26609
|
+
attribution notices from the Source form of the Work,
|
26610
|
+
excluding those notices that do not pertain to any part of
|
26611
|
+
the Derivative Works; and
|
26612
|
+
|
26613
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
26614
|
+
distribution, then any Derivative Works that You distribute must
|
26615
|
+
include a readable copy of the attribution notices contained
|
26616
|
+
within such NOTICE file, excluding those notices that do not
|
26617
|
+
pertain to any part of the Derivative Works, in at least one
|
26618
|
+
of the following places: within a NOTICE text file distributed
|
26619
|
+
as part of the Derivative Works; within the Source form or
|
26620
|
+
documentation, if provided along with the Derivative Works; or,
|
26621
|
+
within a display generated by the Derivative Works, if and
|
26622
|
+
wherever such third-party notices normally appear. The contents
|
26623
|
+
of the NOTICE file are for informational purposes only and
|
26624
|
+
do not modify the License. You may add Your own attribution
|
26625
|
+
notices within Derivative Works that You distribute, alongside
|
26626
|
+
or as an addendum to the NOTICE text from the Work, provided
|
26627
|
+
that such additional attribution notices cannot be construed
|
26628
|
+
as modifying the License.
|
26629
|
+
|
26630
|
+
You may add Your own copyright statement to Your modifications and
|
26631
|
+
may provide additional or different license terms and conditions
|
26632
|
+
for use, reproduction, or distribution of Your modifications, or
|
26633
|
+
for any such Derivative Works as a whole, provided Your use,
|
26634
|
+
reproduction, and distribution of the Work otherwise complies with
|
26635
|
+
the conditions stated in this License.
|
26636
|
+
|
26637
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
26638
|
+
any Contribution intentionally submitted for inclusion in the Work
|
26639
|
+
by You to the Licensor shall be under the terms and conditions of
|
26640
|
+
this License, without any additional terms or conditions.
|
26641
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
26642
|
+
the terms of any separate license agreement you may have executed
|
26643
|
+
with Licensor regarding such Contributions.
|
26644
|
+
|
26645
|
+
6. Trademarks. This License does not grant permission to use the trade
|
26646
|
+
names, trademarks, service marks, or product names of the Licensor,
|
26647
|
+
except as required for reasonable and customary use in describing the
|
26648
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
26649
|
+
|
26650
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
26651
|
+
agreed to in writing, Licensor provides the Work (and each
|
26652
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
26653
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
26654
|
+
implied, including, without limitation, any warranties or conditions
|
26655
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
26656
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
26657
|
+
appropriateness of using or redistributing the Work and assume any
|
26658
|
+
risks associated with Your exercise of permissions under this License.
|
26659
|
+
|
26660
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
26661
|
+
whether in tort (including negligence), contract, or otherwise,
|
26662
|
+
unless required by applicable law (such as deliberate and grossly
|
26663
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
26664
|
+
liable to You for damages, including any direct, indirect, special,
|
26665
|
+
incidental, or consequential damages of any character arising as a
|
26666
|
+
result of this License or out of the use or inability to use the
|
26667
|
+
Work (including but not limited to damages for loss of goodwill,
|
26668
|
+
work stoppage, computer failure or malfunction, or any and all
|
26669
|
+
other commercial damages or losses), even if such Contributor
|
26670
|
+
has been advised of the possibility of such damages.
|
26671
|
+
|
26672
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
26673
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
26674
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
26675
|
+
or other liability obligations and/or rights consistent with this
|
26676
|
+
License. However, in accepting such obligations, You may act only
|
26677
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
26678
|
+
of any other Contributor, and only if You agree to indemnify,
|
26679
|
+
defend, and hold each Contributor harmless for any liability
|
26680
|
+
incurred by, or claims asserted against, such Contributor by reason
|
26681
|
+
of your accepting any such warranty or additional liability.
|
26682
|
+
|
26683
|
+
END OF TERMS AND CONDITIONS
|
26684
|
+
|
26685
|
+
APPENDIX: How to apply the Apache License to your work.
|
26686
|
+
|
26687
|
+
To apply the Apache License to your work, attach the following
|
26688
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
26689
|
+
replaced with your own identifying information. (Don't include
|
26690
|
+
the brackets!) The text should be enclosed in the appropriate
|
26691
|
+
comment syntax for the file format. We also recommend that a
|
26692
|
+
file or class name and description of purpose be included on the
|
26693
|
+
same "printed page" as the copyright notice for easier
|
26694
|
+
identification within third-party archives.
|
26695
|
+
|
26696
|
+
Copyright [yyyy] [name of copyright owner]
|
26697
|
+
|
26698
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
26699
|
+
you may not use this file except in compliance with the License.
|
26700
|
+
You may obtain a copy of the License at
|
26701
|
+
|
26702
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
26703
|
+
|
26704
|
+
Unless required by applicable law or agreed to in writing, software
|
26705
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
26706
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
26707
|
+
See the License for the specific language governing permissions and
|
26708
|
+
limitations under the License.
|
26709
|
+
|
26710
|
+
================================================================================
|
26711
|
+
psm LICENSE-MIT
|
26712
|
+
================================================================================
|
26713
|
+
|
26714
|
+
Copyright © 2018, Simonas Kazlauskas
|
26715
|
+
|
26716
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
26717
|
+
associated documentation files (the "Software"), to deal in the Software without restriction,
|
26718
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute,
|
26719
|
+
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
26720
|
+
furnished to do so, subject to the following conditions:
|
26721
|
+
|
26722
|
+
The above copyright notice and this permission notice shall be included in all copies or
|
26723
|
+
substantial portions of the Software.
|
26724
|
+
|
26725
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
26726
|
+
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
26727
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
26728
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
26729
|
+
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26730
|
+
|
26439
26731
|
================================================================================
|
26440
26732
|
quote LICENSE-APACHE
|
26441
26733
|
================================================================================
|
@@ -28700,6 +28992,52 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28700
28992
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
28701
28993
|
SOFTWARE.
|
28702
28994
|
|
28995
|
+
================================================================================
|
28996
|
+
recursive LICENSE
|
28997
|
+
================================================================================
|
28998
|
+
|
28999
|
+
Copyright 2024, Orson R. L. Peters
|
29000
|
+
|
29001
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
29002
|
+
this software and associated documentation files (the “Software”), to deal in
|
29003
|
+
the Software without restriction, including without limitation the rights to
|
29004
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
29005
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
29006
|
+
subject to the following conditions:
|
29007
|
+
|
29008
|
+
The above copyright notice and this permission notice shall be included in all
|
29009
|
+
copies or substantial portions of the Software.
|
29010
|
+
|
29011
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
29012
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
29013
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
29014
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
29015
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
29016
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
29017
|
+
|
29018
|
+
================================================================================
|
29019
|
+
recursive-proc-macro-impl LICENSE
|
29020
|
+
================================================================================
|
29021
|
+
|
29022
|
+
Copyright 2024, Orson R. L. Peters
|
29023
|
+
|
29024
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
29025
|
+
this software and associated documentation files (the “Software”), to deal in
|
29026
|
+
the Software without restriction, including without limitation the rights to
|
29027
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
29028
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
29029
|
+
subject to the following conditions:
|
29030
|
+
|
29031
|
+
The above copyright notice and this permission notice shall be included in all
|
29032
|
+
copies or substantial portions of the Software.
|
29033
|
+
|
29034
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
29035
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
29036
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
29037
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
29038
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
29039
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
29040
|
+
|
28703
29041
|
================================================================================
|
28704
29042
|
ref-cast LICENSE-APACHE
|
28705
29043
|
================================================================================
|
@@ -33485,6 +33823,242 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
33485
33823
|
See the License for the specific language governing permissions and
|
33486
33824
|
limitations under the License.
|
33487
33825
|
|
33826
|
+
================================================================================
|
33827
|
+
stacker LICENSE-APACHE
|
33828
|
+
================================================================================
|
33829
|
+
|
33830
|
+
Apache License
|
33831
|
+
Version 2.0, January 2004
|
33832
|
+
http://www.apache.org/licenses/
|
33833
|
+
|
33834
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
33835
|
+
|
33836
|
+
1. Definitions.
|
33837
|
+
|
33838
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
33839
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
33840
|
+
|
33841
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
33842
|
+
the copyright owner that is granting the License.
|
33843
|
+
|
33844
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
33845
|
+
other entities that control, are controlled by, or are under common
|
33846
|
+
control with that entity. For the purposes of this definition,
|
33847
|
+
"control" means (i) the power, direct or indirect, to cause the
|
33848
|
+
direction or management of such entity, whether by contract or
|
33849
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
33850
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
33851
|
+
|
33852
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
33853
|
+
exercising permissions granted by this License.
|
33854
|
+
|
33855
|
+
"Source" form shall mean the preferred form for making modifications,
|
33856
|
+
including but not limited to software source code, documentation
|
33857
|
+
source, and configuration files.
|
33858
|
+
|
33859
|
+
"Object" form shall mean any form resulting from mechanical
|
33860
|
+
transformation or translation of a Source form, including but
|
33861
|
+
not limited to compiled object code, generated documentation,
|
33862
|
+
and conversions to other media types.
|
33863
|
+
|
33864
|
+
"Work" shall mean the work of authorship, whether in Source or
|
33865
|
+
Object form, made available under the License, as indicated by a
|
33866
|
+
copyright notice that is included in or attached to the work
|
33867
|
+
(an example is provided in the Appendix below).
|
33868
|
+
|
33869
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
33870
|
+
form, that is based on (or derived from) the Work and for which the
|
33871
|
+
editorial revisions, annotations, elaborations, or other modifications
|
33872
|
+
represent, as a whole, an original work of authorship. For the purposes
|
33873
|
+
of this License, Derivative Works shall not include works that remain
|
33874
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
33875
|
+
the Work and Derivative Works thereof.
|
33876
|
+
|
33877
|
+
"Contribution" shall mean any work of authorship, including
|
33878
|
+
the original version of the Work and any modifications or additions
|
33879
|
+
to that Work or Derivative Works thereof, that is intentionally
|
33880
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
33881
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
33882
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
33883
|
+
means any form of electronic, verbal, or written communication sent
|
33884
|
+
to the Licensor or its representatives, including but not limited to
|
33885
|
+
communication on electronic mailing lists, source code control systems,
|
33886
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
33887
|
+
Licensor for the purpose of discussing and improving the Work, but
|
33888
|
+
excluding communication that is conspicuously marked or otherwise
|
33889
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
33890
|
+
|
33891
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
33892
|
+
on behalf of whom a Contribution has been received by Licensor and
|
33893
|
+
subsequently incorporated within the Work.
|
33894
|
+
|
33895
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
33896
|
+
this License, each Contributor hereby grants to You a perpetual,
|
33897
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
33898
|
+
copyright license to reproduce, prepare Derivative Works of,
|
33899
|
+
publicly display, publicly perform, sublicense, and distribute the
|
33900
|
+
Work and such Derivative Works in Source or Object form.
|
33901
|
+
|
33902
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
33903
|
+
this License, each Contributor hereby grants to You a perpetual,
|
33904
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
33905
|
+
(except as stated in this section) patent license to make, have made,
|
33906
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
33907
|
+
where such license applies only to those patent claims licensable
|
33908
|
+
by such Contributor that are necessarily infringed by their
|
33909
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
33910
|
+
with the Work to which such Contribution(s) was submitted. If You
|
33911
|
+
institute patent litigation against any entity (including a
|
33912
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
33913
|
+
or a Contribution incorporated within the Work constitutes direct
|
33914
|
+
or contributory patent infringement, then any patent licenses
|
33915
|
+
granted to You under this License for that Work shall terminate
|
33916
|
+
as of the date such litigation is filed.
|
33917
|
+
|
33918
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
33919
|
+
Work or Derivative Works thereof in any medium, with or without
|
33920
|
+
modifications, and in Source or Object form, provided that You
|
33921
|
+
meet the following conditions:
|
33922
|
+
|
33923
|
+
(a) You must give any other recipients of the Work or
|
33924
|
+
Derivative Works a copy of this License; and
|
33925
|
+
|
33926
|
+
(b) You must cause any modified files to carry prominent notices
|
33927
|
+
stating that You changed the files; and
|
33928
|
+
|
33929
|
+
(c) You must retain, in the Source form of any Derivative Works
|
33930
|
+
that You distribute, all copyright, patent, trademark, and
|
33931
|
+
attribution notices from the Source form of the Work,
|
33932
|
+
excluding those notices that do not pertain to any part of
|
33933
|
+
the Derivative Works; and
|
33934
|
+
|
33935
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
33936
|
+
distribution, then any Derivative Works that You distribute must
|
33937
|
+
include a readable copy of the attribution notices contained
|
33938
|
+
within such NOTICE file, excluding those notices that do not
|
33939
|
+
pertain to any part of the Derivative Works, in at least one
|
33940
|
+
of the following places: within a NOTICE text file distributed
|
33941
|
+
as part of the Derivative Works; within the Source form or
|
33942
|
+
documentation, if provided along with the Derivative Works; or,
|
33943
|
+
within a display generated by the Derivative Works, if and
|
33944
|
+
wherever such third-party notices normally appear. The contents
|
33945
|
+
of the NOTICE file are for informational purposes only and
|
33946
|
+
do not modify the License. You may add Your own attribution
|
33947
|
+
notices within Derivative Works that You distribute, alongside
|
33948
|
+
or as an addendum to the NOTICE text from the Work, provided
|
33949
|
+
that such additional attribution notices cannot be construed
|
33950
|
+
as modifying the License.
|
33951
|
+
|
33952
|
+
You may add Your own copyright statement to Your modifications and
|
33953
|
+
may provide additional or different license terms and conditions
|
33954
|
+
for use, reproduction, or distribution of Your modifications, or
|
33955
|
+
for any such Derivative Works as a whole, provided Your use,
|
33956
|
+
reproduction, and distribution of the Work otherwise complies with
|
33957
|
+
the conditions stated in this License.
|
33958
|
+
|
33959
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
33960
|
+
any Contribution intentionally submitted for inclusion in the Work
|
33961
|
+
by You to the Licensor shall be under the terms and conditions of
|
33962
|
+
this License, without any additional terms or conditions.
|
33963
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
33964
|
+
the terms of any separate license agreement you may have executed
|
33965
|
+
with Licensor regarding such Contributions.
|
33966
|
+
|
33967
|
+
6. Trademarks. This License does not grant permission to use the trade
|
33968
|
+
names, trademarks, service marks, or product names of the Licensor,
|
33969
|
+
except as required for reasonable and customary use in describing the
|
33970
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
33971
|
+
|
33972
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
33973
|
+
agreed to in writing, Licensor provides the Work (and each
|
33974
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
33975
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
33976
|
+
implied, including, without limitation, any warranties or conditions
|
33977
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
33978
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
33979
|
+
appropriateness of using or redistributing the Work and assume any
|
33980
|
+
risks associated with Your exercise of permissions under this License.
|
33981
|
+
|
33982
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
33983
|
+
whether in tort (including negligence), contract, or otherwise,
|
33984
|
+
unless required by applicable law (such as deliberate and grossly
|
33985
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
33986
|
+
liable to You for damages, including any direct, indirect, special,
|
33987
|
+
incidental, or consequential damages of any character arising as a
|
33988
|
+
result of this License or out of the use or inability to use the
|
33989
|
+
Work (including but not limited to damages for loss of goodwill,
|
33990
|
+
work stoppage, computer failure or malfunction, or any and all
|
33991
|
+
other commercial damages or losses), even if such Contributor
|
33992
|
+
has been advised of the possibility of such damages.
|
33993
|
+
|
33994
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
33995
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
33996
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
33997
|
+
or other liability obligations and/or rights consistent with this
|
33998
|
+
License. However, in accepting such obligations, You may act only
|
33999
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
34000
|
+
of any other Contributor, and only if You agree to indemnify,
|
34001
|
+
defend, and hold each Contributor harmless for any liability
|
34002
|
+
incurred by, or claims asserted against, such Contributor by reason
|
34003
|
+
of your accepting any such warranty or additional liability.
|
34004
|
+
|
34005
|
+
END OF TERMS AND CONDITIONS
|
34006
|
+
|
34007
|
+
APPENDIX: How to apply the Apache License to your work.
|
34008
|
+
|
34009
|
+
To apply the Apache License to your work, attach the following
|
34010
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
34011
|
+
replaced with your own identifying information. (Don't include
|
34012
|
+
the brackets!) The text should be enclosed in the appropriate
|
34013
|
+
comment syntax for the file format. We also recommend that a
|
34014
|
+
file or class name and description of purpose be included on the
|
34015
|
+
same "printed page" as the copyright notice for easier
|
34016
|
+
identification within third-party archives.
|
34017
|
+
|
34018
|
+
Copyright [yyyy] [name of copyright owner]
|
34019
|
+
|
34020
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
34021
|
+
you may not use this file except in compliance with the License.
|
34022
|
+
You may obtain a copy of the License at
|
34023
|
+
|
34024
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
34025
|
+
|
34026
|
+
Unless required by applicable law or agreed to in writing, software
|
34027
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
34028
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
34029
|
+
See the License for the specific language governing permissions and
|
34030
|
+
limitations under the License.
|
34031
|
+
|
34032
|
+
================================================================================
|
34033
|
+
stacker LICENSE-MIT
|
34034
|
+
================================================================================
|
34035
|
+
|
34036
|
+
Copyright (c) 2014 Alex Crichton
|
34037
|
+
|
34038
|
+
Permission is hereby granted, free of charge, to any
|
34039
|
+
person obtaining a copy of this software and associated
|
34040
|
+
documentation files (the "Software"), to deal in the
|
34041
|
+
Software without restriction, including without
|
34042
|
+
limitation the rights to use, copy, modify, merge,
|
34043
|
+
publish, distribute, sublicense, and/or sell copies of
|
34044
|
+
the Software, and to permit persons to whom the Software
|
34045
|
+
is furnished to do so, subject to the following
|
34046
|
+
conditions:
|
34047
|
+
|
34048
|
+
The above copyright notice and this permission notice
|
34049
|
+
shall be included in all copies or substantial portions
|
34050
|
+
of the Software.
|
34051
|
+
|
34052
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
34053
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
34054
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
34055
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
34056
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
34057
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
34058
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
34059
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
34060
|
+
DEALINGS IN THE SOFTWARE.
|
34061
|
+
|
33488
34062
|
================================================================================
|
33489
34063
|
static_assertions LICENSE-APACHE
|
33490
34064
|
================================================================================
|
@@ -34430,7 +35004,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34430
35004
|
SOFTWARE.
|
34431
35005
|
|
34432
35006
|
================================================================================
|
34433
|
-
strum_macros LICENSE
|
35007
|
+
strum_macros v0.25.3 LICENSE
|
35008
|
+
================================================================================
|
35009
|
+
|
35010
|
+
MIT License
|
35011
|
+
|
35012
|
+
Copyright (c) 2019 Peter Glotfelty
|
35013
|
+
|
35014
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
35015
|
+
of this software and associated documentation files (the "Software"), to deal
|
35016
|
+
in the Software without restriction, including without limitation the rights
|
35017
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
35018
|
+
copies of the Software, and to permit persons to whom the Software is
|
35019
|
+
furnished to do so, subject to the following conditions:
|
35020
|
+
|
35021
|
+
The above copyright notice and this permission notice shall be included in all
|
35022
|
+
copies or substantial portions of the Software.
|
35023
|
+
|
35024
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
35025
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
35026
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
35027
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
35028
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
35029
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
35030
|
+
SOFTWARE.
|
35031
|
+
|
35032
|
+
================================================================================
|
35033
|
+
strum_macros v0.26.2 LICENSE
|
34434
35034
|
================================================================================
|
34435
35035
|
|
34436
35036
|
MIT License
|