polars-df 0.9.0-x86_64-darwin → 0.11.0-x86_64-darwin
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.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +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
|
|
@@ -173,8 +173,8 @@ dyn-clone v1.0.16
|
|
173
173
|
https://github.com/dtolnay/dyn-clone
|
174
174
|
MIT OR Apache-2.0
|
175
175
|
|
176
|
-
either v1.
|
177
|
-
https://github.com/
|
176
|
+
either v1.12.0
|
177
|
+
https://github.com/rayon-rs/either
|
178
178
|
MIT OR Apache-2.0
|
179
179
|
|
180
180
|
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
|
|
@@ -421,7 +421,7 @@ now v0.1.3
|
|
421
421
|
https://github.com/Kilerd/now
|
422
422
|
MIT
|
423
423
|
|
424
|
-
num-traits v0.2.
|
424
|
+
num-traits v0.2.19
|
425
425
|
https://github.com/rust-num/num-traits
|
426
426
|
MIT OR Apache-2.0
|
427
427
|
|
@@ -489,68 +489,74 @@ planus v0.3.1
|
|
489
489
|
https://github.com/planus-org/planus
|
490
490
|
MIT/Apache-2.0
|
491
491
|
|
492
|
-
polars v0.
|
492
|
+
polars v0.40.0
|
493
493
|
https://www.pola.rs/
|
494
494
|
MIT
|
495
495
|
|
496
|
-
polars-arrow v0.
|
496
|
+
polars-arrow v0.40.0
|
497
497
|
https://www.pola.rs/
|
498
|
+
MIT AND Apache-2.0
|
498
499
|
|
499
500
|
polars-arrow-format v0.1.0
|
500
501
|
https://github.com/polar-rs/arrow-format
|
501
502
|
|
502
|
-
polars-compute v0.
|
503
|
+
polars-compute v0.40.0
|
503
504
|
https://www.pola.rs/
|
504
505
|
MIT
|
505
506
|
|
506
|
-
polars-core v0.
|
507
|
+
polars-core v0.40.0
|
507
508
|
https://www.pola.rs/
|
508
509
|
MIT
|
509
510
|
|
510
|
-
polars-error v0.
|
511
|
+
polars-error v0.40.0
|
511
512
|
https://www.pola.rs/
|
512
513
|
MIT
|
513
514
|
|
514
|
-
polars-
|
515
|
+
polars-expr v0.40.0
|
515
516
|
https://www.pola.rs/
|
516
517
|
MIT
|
517
518
|
|
518
|
-
polars-
|
519
|
+
polars-io v0.40.0
|
519
520
|
https://www.pola.rs/
|
520
521
|
MIT
|
521
522
|
|
522
|
-
polars-
|
523
|
+
polars-json v0.40.0
|
523
524
|
https://www.pola.rs/
|
524
525
|
MIT
|
525
526
|
|
526
|
-
polars-
|
527
|
+
polars-lazy v0.40.0
|
527
528
|
https://www.pola.rs/
|
528
529
|
MIT
|
529
530
|
|
530
|
-
polars-
|
531
|
+
polars-ops v0.40.0
|
531
532
|
https://www.pola.rs/
|
533
|
+
MIT
|
532
534
|
|
533
|
-
polars-
|
535
|
+
polars-parquet v0.40.0
|
536
|
+
https://www.pola.rs/
|
537
|
+
MIT AND Apache-2.0
|
538
|
+
|
539
|
+
polars-pipe v0.40.0
|
534
540
|
https://www.pola.rs/
|
535
541
|
MIT
|
536
542
|
|
537
|
-
polars-plan v0.
|
543
|
+
polars-plan v0.40.0
|
538
544
|
https://www.pola.rs/
|
539
545
|
MIT
|
540
546
|
|
541
|
-
polars-row v0.
|
547
|
+
polars-row v0.40.0
|
542
548
|
https://www.pola.rs/
|
543
549
|
MIT
|
544
550
|
|
545
|
-
polars-sql v0.
|
551
|
+
polars-sql v0.40.0
|
546
552
|
https://www.pola.rs/
|
547
553
|
MIT
|
548
554
|
|
549
|
-
polars-time v0.
|
555
|
+
polars-time v0.40.0
|
550
556
|
https://www.pola.rs/
|
551
557
|
MIT
|
552
558
|
|
553
|
-
polars-utils v0.
|
559
|
+
polars-utils v0.40.0
|
554
560
|
https://www.pola.rs/
|
555
561
|
MIT
|
556
562
|
|
@@ -562,6 +568,10 @@ proc-macro2 v1.0.74
|
|
562
568
|
https://github.com/dtolnay/proc-macro2
|
563
569
|
MIT OR Apache-2.0
|
564
570
|
|
571
|
+
psm v0.1.21
|
572
|
+
https://github.com/rust-lang/stacker/
|
573
|
+
MIT OR Apache-2.0
|
574
|
+
|
565
575
|
quote v1.0.35
|
566
576
|
https://github.com/dtolnay/quote
|
567
577
|
MIT OR Apache-2.0
|
@@ -594,11 +604,11 @@ rayon-core v1.12.1
|
|
594
604
|
https://github.com/rayon-rs/rayon
|
595
605
|
MIT OR Apache-2.0
|
596
606
|
|
597
|
-
rb-sys v0.9.
|
607
|
+
rb-sys v0.9.97
|
598
608
|
https://github.com/oxidize-rb/rb-sys
|
599
609
|
MIT OR Apache-2.0
|
600
610
|
|
601
|
-
rb-sys-build v0.9.
|
611
|
+
rb-sys-build v0.9.97
|
602
612
|
https://github.com/oxidize-rb/rb-sys
|
603
613
|
MIT OR Apache-2.0
|
604
614
|
|
@@ -606,6 +616,14 @@ rb-sys-env v0.1.2
|
|
606
616
|
https://github.com/oxidize-rb/rb-sys
|
607
617
|
MIT OR Apache-2.0
|
608
618
|
|
619
|
+
recursive v0.1.1
|
620
|
+
https://github.com/orlp/recursive
|
621
|
+
MIT
|
622
|
+
|
623
|
+
recursive-proc-macro-impl v0.1.1
|
624
|
+
https://github.com/orlp/recursive
|
625
|
+
MIT
|
626
|
+
|
609
627
|
ref-cast v1.0.22
|
610
628
|
https://github.com/dtolnay/ref-cast
|
611
629
|
MIT OR Apache-2.0
|
@@ -706,6 +724,10 @@ sqlparser v0.39.0
|
|
706
724
|
https://github.com/sqlparser-rs/sqlparser-rs
|
707
725
|
Apache-2.0
|
708
726
|
|
727
|
+
stacker v0.1.15
|
728
|
+
https://github.com/rust-lang/stacker
|
729
|
+
MIT OR Apache-2.0
|
730
|
+
|
709
731
|
static_assertions v1.1.0
|
710
732
|
https://github.com/nvzqz/static-assertions-rs
|
711
733
|
MIT OR Apache-2.0
|
@@ -730,6 +752,10 @@ strum_macros v0.25.3
|
|
730
752
|
https://github.com/Peternator7/strum
|
731
753
|
MIT
|
732
754
|
|
755
|
+
strum_macros v0.26.2
|
756
|
+
https://github.com/Peternator7/strum
|
757
|
+
MIT
|
758
|
+
|
733
759
|
syn v1.0.109
|
734
760
|
https://github.com/dtolnay/syn
|
735
761
|
MIT OR Apache-2.0
|
@@ -24662,6 +24688,7 @@ polars LICENSE
|
|
24662
24688
|
================================================================================
|
24663
24689
|
|
24664
24690
|
Copyright (c) 2020 Ritchie Vink
|
24691
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
24665
24692
|
|
24666
24693
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
24667
24694
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25305,6 +25332,7 @@ polars-compute LICENSE
|
|
25305
25332
|
================================================================================
|
25306
25333
|
|
25307
25334
|
Copyright (c) 2020 Ritchie Vink
|
25335
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25308
25336
|
|
25309
25337
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25310
25338
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25329,6 +25357,7 @@ polars-core LICENSE
|
|
25329
25357
|
================================================================================
|
25330
25358
|
|
25331
25359
|
Copyright (c) 2020 Ritchie Vink
|
25360
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25332
25361
|
|
25333
25362
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25334
25363
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25353,6 +25382,32 @@ polars-error LICENSE
|
|
25353
25382
|
================================================================================
|
25354
25383
|
|
25355
25384
|
Copyright (c) 2020 Ritchie Vink
|
25385
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25386
|
+
|
25387
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25388
|
+
of this software and associated documentation files (the "Software"), to deal
|
25389
|
+
in the Software without restriction, including without limitation the rights
|
25390
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
25391
|
+
copies of the Software, and to permit persons to whom the Software is
|
25392
|
+
furnished to do so, subject to the following conditions:
|
25393
|
+
|
25394
|
+
The above copyright notice and this permission notice shall be included in all
|
25395
|
+
copies or substantial portions of the Software.
|
25396
|
+
|
25397
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
25398
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
25399
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25400
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25401
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25402
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25403
|
+
SOFTWARE.
|
25404
|
+
|
25405
|
+
================================================================================
|
25406
|
+
polars-expr LICENSE
|
25407
|
+
================================================================================
|
25408
|
+
|
25409
|
+
Copyright (c) 2020 Ritchie Vink
|
25410
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25356
25411
|
|
25357
25412
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25358
25413
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25377,6 +25432,7 @@ polars-io LICENSE
|
|
25377
25432
|
================================================================================
|
25378
25433
|
|
25379
25434
|
Copyright (c) 2020 Ritchie Vink
|
25435
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25380
25436
|
|
25381
25437
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25382
25438
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25401,6 +25457,7 @@ polars-json LICENSE
|
|
25401
25457
|
================================================================================
|
25402
25458
|
|
25403
25459
|
Copyright (c) 2020 Ritchie Vink
|
25460
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25404
25461
|
|
25405
25462
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25406
25463
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25425,6 +25482,7 @@ polars-lazy LICENSE
|
|
25425
25482
|
================================================================================
|
25426
25483
|
|
25427
25484
|
Copyright (c) 2020 Ritchie Vink
|
25485
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25428
25486
|
|
25429
25487
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25430
25488
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25449,6 +25507,7 @@ polars-ops LICENSE
|
|
25449
25507
|
================================================================================
|
25450
25508
|
|
25451
25509
|
Copyright (c) 2020 Ritchie Vink
|
25510
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25452
25511
|
|
25453
25512
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25454
25513
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25674,6 +25733,7 @@ polars-pipe LICENSE
|
|
25674
25733
|
================================================================================
|
25675
25734
|
|
25676
25735
|
Copyright (c) 2020 Ritchie Vink
|
25736
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25677
25737
|
|
25678
25738
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25679
25739
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25698,6 +25758,7 @@ polars-plan LICENSE
|
|
25698
25758
|
================================================================================
|
25699
25759
|
|
25700
25760
|
Copyright (c) 2020 Ritchie Vink
|
25761
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25701
25762
|
|
25702
25763
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25703
25764
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25722,6 +25783,7 @@ polars-row LICENSE
|
|
25722
25783
|
================================================================================
|
25723
25784
|
|
25724
25785
|
Copyright (c) 2020 Ritchie Vink
|
25786
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25725
25787
|
|
25726
25788
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25727
25789
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25746,6 +25808,7 @@ polars-sql LICENSE
|
|
25746
25808
|
================================================================================
|
25747
25809
|
|
25748
25810
|
Copyright (c) 2020 Ritchie Vink
|
25811
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25749
25812
|
|
25750
25813
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25751
25814
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25770,6 +25833,7 @@ polars-time LICENSE
|
|
25770
25833
|
================================================================================
|
25771
25834
|
|
25772
25835
|
Copyright (c) 2020 Ritchie Vink
|
25836
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25773
25837
|
|
25774
25838
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25775
25839
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25794,6 +25858,7 @@ polars-utils LICENSE
|
|
25794
25858
|
================================================================================
|
25795
25859
|
|
25796
25860
|
Copyright (c) 2020 Ritchie Vink
|
25861
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25797
25862
|
|
25798
25863
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25799
25864
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -26258,6 +26323,233 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
26258
26323
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
26259
26324
|
DEALINGS IN THE SOFTWARE.
|
26260
26325
|
|
26326
|
+
================================================================================
|
26327
|
+
psm LICENSE-APACHE
|
26328
|
+
================================================================================
|
26329
|
+
|
26330
|
+
Apache License
|
26331
|
+
Version 2.0, January 2004
|
26332
|
+
http://www.apache.org/licenses/
|
26333
|
+
|
26334
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
26335
|
+
|
26336
|
+
1. Definitions.
|
26337
|
+
|
26338
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
26339
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
26340
|
+
|
26341
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
26342
|
+
the copyright owner that is granting the License.
|
26343
|
+
|
26344
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
26345
|
+
other entities that control, are controlled by, or are under common
|
26346
|
+
control with that entity. For the purposes of this definition,
|
26347
|
+
"control" means (i) the power, direct or indirect, to cause the
|
26348
|
+
direction or management of such entity, whether by contract or
|
26349
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
26350
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
26351
|
+
|
26352
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
26353
|
+
exercising permissions granted by this License.
|
26354
|
+
|
26355
|
+
"Source" form shall mean the preferred form for making modifications,
|
26356
|
+
including but not limited to software source code, documentation
|
26357
|
+
source, and configuration files.
|
26358
|
+
|
26359
|
+
"Object" form shall mean any form resulting from mechanical
|
26360
|
+
transformation or translation of a Source form, including but
|
26361
|
+
not limited to compiled object code, generated documentation,
|
26362
|
+
and conversions to other media types.
|
26363
|
+
|
26364
|
+
"Work" shall mean the work of authorship, whether in Source or
|
26365
|
+
Object form, made available under the License, as indicated by a
|
26366
|
+
copyright notice that is included in or attached to the work
|
26367
|
+
(an example is provided in the Appendix below).
|
26368
|
+
|
26369
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
26370
|
+
form, that is based on (or derived from) the Work and for which the
|
26371
|
+
editorial revisions, annotations, elaborations, or other modifications
|
26372
|
+
represent, as a whole, an original work of authorship. For the purposes
|
26373
|
+
of this License, Derivative Works shall not include works that remain
|
26374
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
26375
|
+
the Work and Derivative Works thereof.
|
26376
|
+
|
26377
|
+
"Contribution" shall mean any work of authorship, including
|
26378
|
+
the original version of the Work and any modifications or additions
|
26379
|
+
to that Work or Derivative Works thereof, that is intentionally
|
26380
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
26381
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
26382
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
26383
|
+
means any form of electronic, verbal, or written communication sent
|
26384
|
+
to the Licensor or its representatives, including but not limited to
|
26385
|
+
communication on electronic mailing lists, source code control systems,
|
26386
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
26387
|
+
Licensor for the purpose of discussing and improving the Work, but
|
26388
|
+
excluding communication that is conspicuously marked or otherwise
|
26389
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
26390
|
+
|
26391
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
26392
|
+
on behalf of whom a Contribution has been received by Licensor and
|
26393
|
+
subsequently incorporated within the Work.
|
26394
|
+
|
26395
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
26396
|
+
this License, each Contributor hereby grants to You a perpetual,
|
26397
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
26398
|
+
copyright license to reproduce, prepare Derivative Works of,
|
26399
|
+
publicly display, publicly perform, sublicense, and distribute the
|
26400
|
+
Work and such Derivative Works in Source or Object form.
|
26401
|
+
|
26402
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
26403
|
+
this License, each Contributor hereby grants to You a perpetual,
|
26404
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
26405
|
+
(except as stated in this section) patent license to make, have made,
|
26406
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
26407
|
+
where such license applies only to those patent claims licensable
|
26408
|
+
by such Contributor that are necessarily infringed by their
|
26409
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
26410
|
+
with the Work to which such Contribution(s) was submitted. If You
|
26411
|
+
institute patent litigation against any entity (including a
|
26412
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
26413
|
+
or a Contribution incorporated within the Work constitutes direct
|
26414
|
+
or contributory patent infringement, then any patent licenses
|
26415
|
+
granted to You under this License for that Work shall terminate
|
26416
|
+
as of the date such litigation is filed.
|
26417
|
+
|
26418
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
26419
|
+
Work or Derivative Works thereof in any medium, with or without
|
26420
|
+
modifications, and in Source or Object form, provided that You
|
26421
|
+
meet the following conditions:
|
26422
|
+
|
26423
|
+
(a) You must give any other recipients of the Work or
|
26424
|
+
Derivative Works a copy of this License; and
|
26425
|
+
|
26426
|
+
(b) You must cause any modified files to carry prominent notices
|
26427
|
+
stating that You changed the files; and
|
26428
|
+
|
26429
|
+
(c) You must retain, in the Source form of any Derivative Works
|
26430
|
+
that You distribute, all copyright, patent, trademark, and
|
26431
|
+
attribution notices from the Source form of the Work,
|
26432
|
+
excluding those notices that do not pertain to any part of
|
26433
|
+
the Derivative Works; and
|
26434
|
+
|
26435
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
26436
|
+
distribution, then any Derivative Works that You distribute must
|
26437
|
+
include a readable copy of the attribution notices contained
|
26438
|
+
within such NOTICE file, excluding those notices that do not
|
26439
|
+
pertain to any part of the Derivative Works, in at least one
|
26440
|
+
of the following places: within a NOTICE text file distributed
|
26441
|
+
as part of the Derivative Works; within the Source form or
|
26442
|
+
documentation, if provided along with the Derivative Works; or,
|
26443
|
+
within a display generated by the Derivative Works, if and
|
26444
|
+
wherever such third-party notices normally appear. The contents
|
26445
|
+
of the NOTICE file are for informational purposes only and
|
26446
|
+
do not modify the License. You may add Your own attribution
|
26447
|
+
notices within Derivative Works that You distribute, alongside
|
26448
|
+
or as an addendum to the NOTICE text from the Work, provided
|
26449
|
+
that such additional attribution notices cannot be construed
|
26450
|
+
as modifying the License.
|
26451
|
+
|
26452
|
+
You may add Your own copyright statement to Your modifications and
|
26453
|
+
may provide additional or different license terms and conditions
|
26454
|
+
for use, reproduction, or distribution of Your modifications, or
|
26455
|
+
for any such Derivative Works as a whole, provided Your use,
|
26456
|
+
reproduction, and distribution of the Work otherwise complies with
|
26457
|
+
the conditions stated in this License.
|
26458
|
+
|
26459
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
26460
|
+
any Contribution intentionally submitted for inclusion in the Work
|
26461
|
+
by You to the Licensor shall be under the terms and conditions of
|
26462
|
+
this License, without any additional terms or conditions.
|
26463
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
26464
|
+
the terms of any separate license agreement you may have executed
|
26465
|
+
with Licensor regarding such Contributions.
|
26466
|
+
|
26467
|
+
6. Trademarks. This License does not grant permission to use the trade
|
26468
|
+
names, trademarks, service marks, or product names of the Licensor,
|
26469
|
+
except as required for reasonable and customary use in describing the
|
26470
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
26471
|
+
|
26472
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
26473
|
+
agreed to in writing, Licensor provides the Work (and each
|
26474
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
26475
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
26476
|
+
implied, including, without limitation, any warranties or conditions
|
26477
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
26478
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
26479
|
+
appropriateness of using or redistributing the Work and assume any
|
26480
|
+
risks associated with Your exercise of permissions under this License.
|
26481
|
+
|
26482
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
26483
|
+
whether in tort (including negligence), contract, or otherwise,
|
26484
|
+
unless required by applicable law (such as deliberate and grossly
|
26485
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
26486
|
+
liable to You for damages, including any direct, indirect, special,
|
26487
|
+
incidental, or consequential damages of any character arising as a
|
26488
|
+
result of this License or out of the use or inability to use the
|
26489
|
+
Work (including but not limited to damages for loss of goodwill,
|
26490
|
+
work stoppage, computer failure or malfunction, or any and all
|
26491
|
+
other commercial damages or losses), even if such Contributor
|
26492
|
+
has been advised of the possibility of such damages.
|
26493
|
+
|
26494
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
26495
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
26496
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
26497
|
+
or other liability obligations and/or rights consistent with this
|
26498
|
+
License. However, in accepting such obligations, You may act only
|
26499
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
26500
|
+
of any other Contributor, and only if You agree to indemnify,
|
26501
|
+
defend, and hold each Contributor harmless for any liability
|
26502
|
+
incurred by, or claims asserted against, such Contributor by reason
|
26503
|
+
of your accepting any such warranty or additional liability.
|
26504
|
+
|
26505
|
+
END OF TERMS AND CONDITIONS
|
26506
|
+
|
26507
|
+
APPENDIX: How to apply the Apache License to your work.
|
26508
|
+
|
26509
|
+
To apply the Apache License to your work, attach the following
|
26510
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
26511
|
+
replaced with your own identifying information. (Don't include
|
26512
|
+
the brackets!) The text should be enclosed in the appropriate
|
26513
|
+
comment syntax for the file format. We also recommend that a
|
26514
|
+
file or class name and description of purpose be included on the
|
26515
|
+
same "printed page" as the copyright notice for easier
|
26516
|
+
identification within third-party archives.
|
26517
|
+
|
26518
|
+
Copyright [yyyy] [name of copyright owner]
|
26519
|
+
|
26520
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
26521
|
+
you may not use this file except in compliance with the License.
|
26522
|
+
You may obtain a copy of the License at
|
26523
|
+
|
26524
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
26525
|
+
|
26526
|
+
Unless required by applicable law or agreed to in writing, software
|
26527
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
26528
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
26529
|
+
See the License for the specific language governing permissions and
|
26530
|
+
limitations under the License.
|
26531
|
+
|
26532
|
+
================================================================================
|
26533
|
+
psm LICENSE-MIT
|
26534
|
+
================================================================================
|
26535
|
+
|
26536
|
+
Copyright © 2018, Simonas Kazlauskas
|
26537
|
+
|
26538
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
26539
|
+
associated documentation files (the "Software"), to deal in the Software without restriction,
|
26540
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute,
|
26541
|
+
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
26542
|
+
furnished to do so, subject to the following conditions:
|
26543
|
+
|
26544
|
+
The above copyright notice and this permission notice shall be included in all copies or
|
26545
|
+
substantial portions of the Software.
|
26546
|
+
|
26547
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
26548
|
+
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
26549
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
26550
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
26551
|
+
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26552
|
+
|
26261
26553
|
================================================================================
|
26262
26554
|
quote LICENSE-APACHE
|
26263
26555
|
================================================================================
|
@@ -28522,6 +28814,52 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28522
28814
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
28523
28815
|
SOFTWARE.
|
28524
28816
|
|
28817
|
+
================================================================================
|
28818
|
+
recursive LICENSE
|
28819
|
+
================================================================================
|
28820
|
+
|
28821
|
+
Copyright 2024, Orson R. L. Peters
|
28822
|
+
|
28823
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
28824
|
+
this software and associated documentation files (the “Software”), to deal in
|
28825
|
+
the Software without restriction, including without limitation the rights to
|
28826
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
28827
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
28828
|
+
subject to the following conditions:
|
28829
|
+
|
28830
|
+
The above copyright notice and this permission notice shall be included in all
|
28831
|
+
copies or substantial portions of the Software.
|
28832
|
+
|
28833
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
28834
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
28835
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
28836
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
28837
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
28838
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28839
|
+
|
28840
|
+
================================================================================
|
28841
|
+
recursive-proc-macro-impl LICENSE
|
28842
|
+
================================================================================
|
28843
|
+
|
28844
|
+
Copyright 2024, Orson R. L. Peters
|
28845
|
+
|
28846
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
28847
|
+
this software and associated documentation files (the “Software”), to deal in
|
28848
|
+
the Software without restriction, including without limitation the rights to
|
28849
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
28850
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
28851
|
+
subject to the following conditions:
|
28852
|
+
|
28853
|
+
The above copyright notice and this permission notice shall be included in all
|
28854
|
+
copies or substantial portions of the Software.
|
28855
|
+
|
28856
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
28857
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
28858
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
28859
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
28860
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
28861
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28862
|
+
|
28525
28863
|
================================================================================
|
28526
28864
|
ref-cast LICENSE-APACHE
|
28527
28865
|
================================================================================
|
@@ -33307,6 +33645,242 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
33307
33645
|
See the License for the specific language governing permissions and
|
33308
33646
|
limitations under the License.
|
33309
33647
|
|
33648
|
+
================================================================================
|
33649
|
+
stacker LICENSE-APACHE
|
33650
|
+
================================================================================
|
33651
|
+
|
33652
|
+
Apache License
|
33653
|
+
Version 2.0, January 2004
|
33654
|
+
http://www.apache.org/licenses/
|
33655
|
+
|
33656
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
33657
|
+
|
33658
|
+
1. Definitions.
|
33659
|
+
|
33660
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
33661
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
33662
|
+
|
33663
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
33664
|
+
the copyright owner that is granting the License.
|
33665
|
+
|
33666
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
33667
|
+
other entities that control, are controlled by, or are under common
|
33668
|
+
control with that entity. For the purposes of this definition,
|
33669
|
+
"control" means (i) the power, direct or indirect, to cause the
|
33670
|
+
direction or management of such entity, whether by contract or
|
33671
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
33672
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
33673
|
+
|
33674
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
33675
|
+
exercising permissions granted by this License.
|
33676
|
+
|
33677
|
+
"Source" form shall mean the preferred form for making modifications,
|
33678
|
+
including but not limited to software source code, documentation
|
33679
|
+
source, and configuration files.
|
33680
|
+
|
33681
|
+
"Object" form shall mean any form resulting from mechanical
|
33682
|
+
transformation or translation of a Source form, including but
|
33683
|
+
not limited to compiled object code, generated documentation,
|
33684
|
+
and conversions to other media types.
|
33685
|
+
|
33686
|
+
"Work" shall mean the work of authorship, whether in Source or
|
33687
|
+
Object form, made available under the License, as indicated by a
|
33688
|
+
copyright notice that is included in or attached to the work
|
33689
|
+
(an example is provided in the Appendix below).
|
33690
|
+
|
33691
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
33692
|
+
form, that is based on (or derived from) the Work and for which the
|
33693
|
+
editorial revisions, annotations, elaborations, or other modifications
|
33694
|
+
represent, as a whole, an original work of authorship. For the purposes
|
33695
|
+
of this License, Derivative Works shall not include works that remain
|
33696
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
33697
|
+
the Work and Derivative Works thereof.
|
33698
|
+
|
33699
|
+
"Contribution" shall mean any work of authorship, including
|
33700
|
+
the original version of the Work and any modifications or additions
|
33701
|
+
to that Work or Derivative Works thereof, that is intentionally
|
33702
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
33703
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
33704
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
33705
|
+
means any form of electronic, verbal, or written communication sent
|
33706
|
+
to the Licensor or its representatives, including but not limited to
|
33707
|
+
communication on electronic mailing lists, source code control systems,
|
33708
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
33709
|
+
Licensor for the purpose of discussing and improving the Work, but
|
33710
|
+
excluding communication that is conspicuously marked or otherwise
|
33711
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
33712
|
+
|
33713
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
33714
|
+
on behalf of whom a Contribution has been received by Licensor and
|
33715
|
+
subsequently incorporated within the Work.
|
33716
|
+
|
33717
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
33718
|
+
this License, each Contributor hereby grants to You a perpetual,
|
33719
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
33720
|
+
copyright license to reproduce, prepare Derivative Works of,
|
33721
|
+
publicly display, publicly perform, sublicense, and distribute the
|
33722
|
+
Work and such Derivative Works in Source or Object form.
|
33723
|
+
|
33724
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
33725
|
+
this License, each Contributor hereby grants to You a perpetual,
|
33726
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
33727
|
+
(except as stated in this section) patent license to make, have made,
|
33728
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
33729
|
+
where such license applies only to those patent claims licensable
|
33730
|
+
by such Contributor that are necessarily infringed by their
|
33731
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
33732
|
+
with the Work to which such Contribution(s) was submitted. If You
|
33733
|
+
institute patent litigation against any entity (including a
|
33734
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
33735
|
+
or a Contribution incorporated within the Work constitutes direct
|
33736
|
+
or contributory patent infringement, then any patent licenses
|
33737
|
+
granted to You under this License for that Work shall terminate
|
33738
|
+
as of the date such litigation is filed.
|
33739
|
+
|
33740
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
33741
|
+
Work or Derivative Works thereof in any medium, with or without
|
33742
|
+
modifications, and in Source or Object form, provided that You
|
33743
|
+
meet the following conditions:
|
33744
|
+
|
33745
|
+
(a) You must give any other recipients of the Work or
|
33746
|
+
Derivative Works a copy of this License; and
|
33747
|
+
|
33748
|
+
(b) You must cause any modified files to carry prominent notices
|
33749
|
+
stating that You changed the files; and
|
33750
|
+
|
33751
|
+
(c) You must retain, in the Source form of any Derivative Works
|
33752
|
+
that You distribute, all copyright, patent, trademark, and
|
33753
|
+
attribution notices from the Source form of the Work,
|
33754
|
+
excluding those notices that do not pertain to any part of
|
33755
|
+
the Derivative Works; and
|
33756
|
+
|
33757
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
33758
|
+
distribution, then any Derivative Works that You distribute must
|
33759
|
+
include a readable copy of the attribution notices contained
|
33760
|
+
within such NOTICE file, excluding those notices that do not
|
33761
|
+
pertain to any part of the Derivative Works, in at least one
|
33762
|
+
of the following places: within a NOTICE text file distributed
|
33763
|
+
as part of the Derivative Works; within the Source form or
|
33764
|
+
documentation, if provided along with the Derivative Works; or,
|
33765
|
+
within a display generated by the Derivative Works, if and
|
33766
|
+
wherever such third-party notices normally appear. The contents
|
33767
|
+
of the NOTICE file are for informational purposes only and
|
33768
|
+
do not modify the License. You may add Your own attribution
|
33769
|
+
notices within Derivative Works that You distribute, alongside
|
33770
|
+
or as an addendum to the NOTICE text from the Work, provided
|
33771
|
+
that such additional attribution notices cannot be construed
|
33772
|
+
as modifying the License.
|
33773
|
+
|
33774
|
+
You may add Your own copyright statement to Your modifications and
|
33775
|
+
may provide additional or different license terms and conditions
|
33776
|
+
for use, reproduction, or distribution of Your modifications, or
|
33777
|
+
for any such Derivative Works as a whole, provided Your use,
|
33778
|
+
reproduction, and distribution of the Work otherwise complies with
|
33779
|
+
the conditions stated in this License.
|
33780
|
+
|
33781
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
33782
|
+
any Contribution intentionally submitted for inclusion in the Work
|
33783
|
+
by You to the Licensor shall be under the terms and conditions of
|
33784
|
+
this License, without any additional terms or conditions.
|
33785
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
33786
|
+
the terms of any separate license agreement you may have executed
|
33787
|
+
with Licensor regarding such Contributions.
|
33788
|
+
|
33789
|
+
6. Trademarks. This License does not grant permission to use the trade
|
33790
|
+
names, trademarks, service marks, or product names of the Licensor,
|
33791
|
+
except as required for reasonable and customary use in describing the
|
33792
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
33793
|
+
|
33794
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
33795
|
+
agreed to in writing, Licensor provides the Work (and each
|
33796
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
33797
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
33798
|
+
implied, including, without limitation, any warranties or conditions
|
33799
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
33800
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
33801
|
+
appropriateness of using or redistributing the Work and assume any
|
33802
|
+
risks associated with Your exercise of permissions under this License.
|
33803
|
+
|
33804
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
33805
|
+
whether in tort (including negligence), contract, or otherwise,
|
33806
|
+
unless required by applicable law (such as deliberate and grossly
|
33807
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
33808
|
+
liable to You for damages, including any direct, indirect, special,
|
33809
|
+
incidental, or consequential damages of any character arising as a
|
33810
|
+
result of this License or out of the use or inability to use the
|
33811
|
+
Work (including but not limited to damages for loss of goodwill,
|
33812
|
+
work stoppage, computer failure or malfunction, or any and all
|
33813
|
+
other commercial damages or losses), even if such Contributor
|
33814
|
+
has been advised of the possibility of such damages.
|
33815
|
+
|
33816
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
33817
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
33818
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
33819
|
+
or other liability obligations and/or rights consistent with this
|
33820
|
+
License. However, in accepting such obligations, You may act only
|
33821
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
33822
|
+
of any other Contributor, and only if You agree to indemnify,
|
33823
|
+
defend, and hold each Contributor harmless for any liability
|
33824
|
+
incurred by, or claims asserted against, such Contributor by reason
|
33825
|
+
of your accepting any such warranty or additional liability.
|
33826
|
+
|
33827
|
+
END OF TERMS AND CONDITIONS
|
33828
|
+
|
33829
|
+
APPENDIX: How to apply the Apache License to your work.
|
33830
|
+
|
33831
|
+
To apply the Apache License to your work, attach the following
|
33832
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
33833
|
+
replaced with your own identifying information. (Don't include
|
33834
|
+
the brackets!) The text should be enclosed in the appropriate
|
33835
|
+
comment syntax for the file format. We also recommend that a
|
33836
|
+
file or class name and description of purpose be included on the
|
33837
|
+
same "printed page" as the copyright notice for easier
|
33838
|
+
identification within third-party archives.
|
33839
|
+
|
33840
|
+
Copyright [yyyy] [name of copyright owner]
|
33841
|
+
|
33842
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
33843
|
+
you may not use this file except in compliance with the License.
|
33844
|
+
You may obtain a copy of the License at
|
33845
|
+
|
33846
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
33847
|
+
|
33848
|
+
Unless required by applicable law or agreed to in writing, software
|
33849
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
33850
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
33851
|
+
See the License for the specific language governing permissions and
|
33852
|
+
limitations under the License.
|
33853
|
+
|
33854
|
+
================================================================================
|
33855
|
+
stacker LICENSE-MIT
|
33856
|
+
================================================================================
|
33857
|
+
|
33858
|
+
Copyright (c) 2014 Alex Crichton
|
33859
|
+
|
33860
|
+
Permission is hereby granted, free of charge, to any
|
33861
|
+
person obtaining a copy of this software and associated
|
33862
|
+
documentation files (the "Software"), to deal in the
|
33863
|
+
Software without restriction, including without
|
33864
|
+
limitation the rights to use, copy, modify, merge,
|
33865
|
+
publish, distribute, sublicense, and/or sell copies of
|
33866
|
+
the Software, and to permit persons to whom the Software
|
33867
|
+
is furnished to do so, subject to the following
|
33868
|
+
conditions:
|
33869
|
+
|
33870
|
+
The above copyright notice and this permission notice
|
33871
|
+
shall be included in all copies or substantial portions
|
33872
|
+
of the Software.
|
33873
|
+
|
33874
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
33875
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
33876
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
33877
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
33878
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
33879
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
33880
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
33881
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
33882
|
+
DEALINGS IN THE SOFTWARE.
|
33883
|
+
|
33310
33884
|
================================================================================
|
33311
33885
|
static_assertions LICENSE-APACHE
|
33312
33886
|
================================================================================
|
@@ -34252,7 +34826,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34252
34826
|
SOFTWARE.
|
34253
34827
|
|
34254
34828
|
================================================================================
|
34255
|
-
strum_macros LICENSE
|
34829
|
+
strum_macros v0.25.3 LICENSE
|
34830
|
+
================================================================================
|
34831
|
+
|
34832
|
+
MIT License
|
34833
|
+
|
34834
|
+
Copyright (c) 2019 Peter Glotfelty
|
34835
|
+
|
34836
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
34837
|
+
of this software and associated documentation files (the "Software"), to deal
|
34838
|
+
in the Software without restriction, including without limitation the rights
|
34839
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
34840
|
+
copies of the Software, and to permit persons to whom the Software is
|
34841
|
+
furnished to do so, subject to the following conditions:
|
34842
|
+
|
34843
|
+
The above copyright notice and this permission notice shall be included in all
|
34844
|
+
copies or substantial portions of the Software.
|
34845
|
+
|
34846
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
34847
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
34848
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
34849
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
34850
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
34851
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
34852
|
+
SOFTWARE.
|
34853
|
+
|
34854
|
+
================================================================================
|
34855
|
+
strum_macros v0.26.2 LICENSE
|
34256
34856
|
================================================================================
|
34257
34857
|
|
34258
34858
|
MIT License
|