polars-df 0.10.0-x86_64-linux-musl → 0.12.0-x86_64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -0
  3. data/Cargo.lock +392 -351
  4. data/LICENSE-THIRD-PARTY.txt +1125 -865
  5. data/README.md +6 -6
  6. data/lib/polars/3.1/polars.so +0 -0
  7. data/lib/polars/3.2/polars.so +0 -0
  8. data/lib/polars/3.3/polars.so +0 -0
  9. data/lib/polars/array_expr.rb +4 -4
  10. data/lib/polars/batched_csv_reader.rb +11 -5
  11. data/lib/polars/cat_expr.rb +0 -36
  12. data/lib/polars/cat_name_space.rb +0 -37
  13. data/lib/polars/convert.rb +6 -1
  14. data/lib/polars/data_frame.rb +176 -403
  15. data/lib/polars/data_types.rb +1 -1
  16. data/lib/polars/date_time_expr.rb +525 -572
  17. data/lib/polars/date_time_name_space.rb +263 -460
  18. data/lib/polars/dynamic_group_by.rb +5 -5
  19. data/lib/polars/exceptions.rb +7 -0
  20. data/lib/polars/expr.rb +1394 -243
  21. data/lib/polars/expr_dispatch.rb +1 -1
  22. data/lib/polars/functions/aggregation/horizontal.rb +8 -8
  23. data/lib/polars/functions/as_datatype.rb +63 -40
  24. data/lib/polars/functions/lazy.rb +63 -14
  25. data/lib/polars/functions/lit.rb +1 -1
  26. data/lib/polars/functions/range/date_range.rb +90 -57
  27. data/lib/polars/functions/range/datetime_range.rb +149 -0
  28. data/lib/polars/functions/range/int_range.rb +2 -2
  29. data/lib/polars/functions/range/time_range.rb +141 -0
  30. data/lib/polars/functions/repeat.rb +1 -1
  31. data/lib/polars/functions/whenthen.rb +1 -1
  32. data/lib/polars/group_by.rb +88 -23
  33. data/lib/polars/io/avro.rb +24 -0
  34. data/lib/polars/{io.rb → io/csv.rb} +299 -493
  35. data/lib/polars/io/database.rb +73 -0
  36. data/lib/polars/io/ipc.rb +247 -0
  37. data/lib/polars/io/json.rb +29 -0
  38. data/lib/polars/io/ndjson.rb +80 -0
  39. data/lib/polars/io/parquet.rb +227 -0
  40. data/lib/polars/lazy_frame.rb +143 -272
  41. data/lib/polars/lazy_group_by.rb +100 -3
  42. data/lib/polars/list_expr.rb +11 -11
  43. data/lib/polars/list_name_space.rb +5 -1
  44. data/lib/polars/rolling_group_by.rb +7 -9
  45. data/lib/polars/series.rb +103 -187
  46. data/lib/polars/string_expr.rb +78 -102
  47. data/lib/polars/string_name_space.rb +5 -4
  48. data/lib/polars/testing.rb +2 -2
  49. data/lib/polars/utils/constants.rb +9 -0
  50. data/lib/polars/utils/convert.rb +97 -0
  51. data/lib/polars/utils/parse.rb +89 -0
  52. data/lib/polars/utils/various.rb +76 -0
  53. data/lib/polars/utils/wrap.rb +19 -0
  54. data/lib/polars/utils.rb +8 -300
  55. data/lib/polars/version.rb +1 -1
  56. data/lib/polars/whenthen.rb +6 -6
  57. data/lib/polars.rb +20 -1
  58. metadata +17 -4
@@ -10,11 +10,11 @@ adler32 v1.2.0
10
10
  https://github.com/remram44/adler32-rs
11
11
  Zlib
12
12
 
13
- ahash v0.8.7
13
+ ahash v0.8.11
14
14
  https://github.com/tkaitchuck/ahash
15
15
  MIT OR Apache-2.0
16
16
 
17
- aho-corasick v1.1.2
17
+ aho-corasick v1.1.3
18
18
  https://github.com/BurntSushi/aho-corasick
19
19
  Unlicense OR MIT
20
20
 
@@ -26,7 +26,7 @@ alloc-stdlib v0.2.2
26
26
  https://github.com/dropbox/rust-alloc-no-stdlib
27
27
  BSD-3-Clause
28
28
 
29
- allocator-api2 v0.2.16
29
+ allocator-api2 v0.2.18
30
30
  https://github.com/zakarumych/allocator-api2
31
31
  MIT OR Apache-2.0
32
32
 
@@ -46,7 +46,7 @@ async-stream-impl v0.3.5
46
46
  https://github.com/tokio-rs/async-stream
47
47
  MIT
48
48
 
49
- async-trait v0.1.77
49
+ async-trait v0.1.80
50
50
  https://github.com/dtolnay/async-trait
51
51
  MIT OR Apache-2.0
52
52
 
@@ -58,7 +58,7 @@ atoi_simd v0.15.6
58
58
  https://github.com/RoDmitry/atoi_simd
59
59
  MIT OR Apache-2.0
60
60
 
61
- autocfg v1.1.0
61
+ autocfg v1.3.0
62
62
  https://github.com/cuviper/autocfg
63
63
  Apache-2.0 OR MIT
64
64
 
@@ -66,39 +66,39 @@ avro-schema v0.3.0
66
66
  https://github.com/DataEngineeringLabs/avro-schema
67
67
  MIT/Apache-2.0
68
68
 
69
- base64 v0.21.5
69
+ base64 v0.22.1
70
70
  https://github.com/marshallpierce/rust-base64
71
71
  MIT OR Apache-2.0
72
72
 
73
- bindgen v0.69.1
73
+ bindgen v0.69.4
74
74
  https://rust-lang.github.io/rust-bindgen/
75
75
  BSD-3-Clause
76
76
 
77
- bitflags v2.4.1
77
+ bitflags v2.5.0
78
78
  https://github.com/bitflags/bitflags
79
79
  MIT OR Apache-2.0
80
80
 
81
- brotli v3.4.0
81
+ brotli v5.0.0
82
82
  https://github.com/dropbox/rust-brotli
83
- BSD-3-Clause/MIT
83
+ BSD-3-Clause OR MIT
84
84
 
85
- brotli-decompressor v2.5.1
85
+ brotli-decompressor v4.0.1
86
86
  https://github.com/dropbox/rust-brotli-decompressor
87
87
  BSD-3-Clause/MIT
88
88
 
89
- bytemuck v1.14.0
89
+ bytemuck v1.16.1
90
90
  https://github.com/Lokathor/bytemuck
91
91
  Zlib OR Apache-2.0 OR MIT
92
92
 
93
- bytemuck_derive v1.5.0
93
+ bytemuck_derive v1.7.0
94
94
  https://github.com/Lokathor/bytemuck
95
95
  Zlib OR Apache-2.0 OR MIT
96
96
 
97
- bytes v1.5.0
97
+ bytes v1.6.0
98
98
  https://github.com/tokio-rs/bytes
99
99
  MIT
100
100
 
101
- cc v1.0.83
101
+ cc v1.0.99
102
102
  https://github.com/rust-lang/cc-rs
103
103
  MIT OR Apache-2.0
104
104
 
@@ -110,22 +110,22 @@ 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.35
113
+ chrono v0.4.38
114
114
  https://github.com/chronotope/chrono
115
115
  MIT OR Apache-2.0
116
116
 
117
- chrono-tz v0.8.5
117
+ chrono-tz v0.8.6
118
118
  https://github.com/chronotope/chrono-tz
119
119
  MIT OR Apache-2.0
120
120
 
121
121
  chrono-tz-build v0.2.1
122
122
  MIT OR Apache-2.0
123
123
 
124
- clang-sys v1.7.0
124
+ clang-sys v1.8.1
125
125
  https://github.com/KyleMayes/clang-sys
126
126
  Apache-2.0
127
127
 
128
- comfy-table v7.1.0
128
+ comfy-table v7.1.1
129
129
  https://github.com/nukesor/comfy-table
130
130
  MIT
131
131
 
@@ -137,27 +137,27 @@ crc-catalog v1.1.1
137
137
  https://github.com/akhilles/crc-catalog.git
138
138
  MIT OR Apache-2.0
139
139
 
140
- crc32fast v1.3.2
140
+ crc32fast v1.4.2
141
141
  https://github.com/srijs/rust-crc32fast
142
142
  MIT OR Apache-2.0
143
143
 
144
- crossbeam-channel v0.5.10
144
+ crossbeam-channel v0.5.13
145
145
  https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel
146
146
  MIT OR Apache-2.0
147
147
 
148
- crossbeam-deque v0.8.4
148
+ crossbeam-deque v0.8.5
149
149
  https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque
150
150
  MIT OR Apache-2.0
151
151
 
152
- crossbeam-epoch v0.9.17
152
+ crossbeam-epoch v0.9.18
153
153
  https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch
154
154
  MIT OR Apache-2.0
155
155
 
156
- crossbeam-queue v0.3.10
156
+ crossbeam-queue v0.3.11
157
157
  https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue
158
158
  MIT OR Apache-2.0
159
159
 
160
- crossbeam-utils v0.8.18
160
+ crossbeam-utils v0.8.20
161
161
  https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils
162
162
  MIT OR Apache-2.0
163
163
 
@@ -165,15 +165,15 @@ crossterm v0.27.0
165
165
  https://github.com/crossterm-rs/crossterm
166
166
  MIT
167
167
 
168
- dyn-clone v1.0.16
168
+ dyn-clone v1.0.17
169
169
  https://github.com/dtolnay/dyn-clone
170
170
  MIT OR Apache-2.0
171
171
 
172
- either v1.9.0
173
- https://github.com/bluss/either
172
+ either v1.12.0
173
+ https://github.com/rayon-rs/either
174
174
  MIT OR Apache-2.0
175
175
 
176
- enum_dispatch v0.3.12
176
+ enum_dispatch v0.3.13
177
177
  https://gitlab.com/antonok/enum_dispatch
178
178
  MIT OR Apache-2.0
179
179
 
@@ -193,7 +193,7 @@ fast-float v0.2.0
193
193
  https://github.com/aldanor/fast-float-rust
194
194
  MIT OR Apache-2.0
195
195
 
196
- flate2 v1.0.28
196
+ flate2 v1.0.30
197
197
  https://github.com/rust-lang/flate2-rs
198
198
  MIT OR Apache-2.0
199
199
 
@@ -241,7 +241,7 @@ futures-util v0.3.30
241
241
  https://rust-lang.github.io/futures-rs
242
242
  MIT OR Apache-2.0
243
243
 
244
- getrandom v0.2.11
244
+ getrandom v0.2.15
245
245
  https://github.com/rust-random/getrandom
246
246
  MIT OR Apache-2.0
247
247
 
@@ -249,19 +249,15 @@ glob v0.3.1
249
249
  https://github.com/rust-lang/glob
250
250
  MIT OR Apache-2.0
251
251
 
252
- halfbrown v0.2.4
252
+ halfbrown v0.2.5
253
253
  https://github.com/Licenser/halfbrown
254
254
  Apache-2.0/MIT
255
255
 
256
- hashbrown v0.13.2
257
- https://github.com/rust-lang/hashbrown
258
- MIT OR Apache-2.0
259
-
260
- hashbrown v0.14.3
256
+ hashbrown v0.14.5
261
257
  https://github.com/rust-lang/hashbrown
262
258
  MIT OR Apache-2.0
263
259
 
264
- heck v0.4.1
260
+ heck v0.5.0
265
261
  https://github.com/withoutboats/heck
266
262
  MIT OR Apache-2.0
267
263
 
@@ -273,15 +269,19 @@ home v0.5.9
273
269
  https://github.com/rust-lang/cargo
274
270
  MIT OR Apache-2.0
275
271
 
276
- iana-time-zone v0.1.59
272
+ iana-time-zone v0.1.60
277
273
  https://github.com/strawlab/iana-time-zone
278
274
  MIT OR Apache-2.0
279
275
 
280
- indexmap v2.1.0
281
- https://github.com/bluss/indexmap
276
+ indexmap v2.2.6
277
+ https://github.com/indexmap-rs/indexmap
282
278
  Apache-2.0 OR MIT
283
279
 
284
- itoa v1.0.10
280
+ itertools v0.12.1
281
+ https://github.com/rust-itertools/itertools
282
+ MIT OR Apache-2.0
283
+
284
+ itoa v1.0.11
285
285
  https://github.com/dtolnay/itoa
286
286
  MIT OR Apache-2.0
287
287
 
@@ -297,17 +297,17 @@ jemallocator v0.5.4
297
297
  https://github.com/tikv/jemallocator
298
298
  MIT/Apache-2.0
299
299
 
300
- jobserver v0.1.27
301
- https://github.com/alexcrichton/jobserver-rs
302
- MIT/Apache-2.0
300
+ jobserver v0.1.31
301
+ https://github.com/rust-lang/jobserver-rs
302
+ MIT OR Apache-2.0
303
303
 
304
304
  jsonpath_lib_polars_vendor v0.0.1
305
305
  https://github.com/freestrings/jsonpath
306
306
  MIT
307
307
 
308
- lazy_static v1.4.0
308
+ lazy_static v1.5.0
309
309
  https://github.com/rust-lang-nursery/lazy-static.rs
310
- MIT/Apache-2.0
310
+ MIT OR Apache-2.0
311
311
 
312
312
  lazycell v1.3.0
313
313
  https://github.com/indiv0/lazycell
@@ -337,7 +337,7 @@ lexical-write-integer v0.8.5
337
337
  https://github.com/Alexhuszagh/rust-lexical
338
338
  MIT/Apache-2.0
339
339
 
340
- libc v0.2.151
340
+ libc v0.2.155
341
341
  https://github.com/rust-lang/libc
342
342
  MIT OR Apache-2.0
343
343
 
@@ -349,7 +349,7 @@ libflate_lz77 v1.2.0
349
349
  https://github.com/sile/libflate
350
350
  MIT
351
351
 
352
- libloading v0.8.1
352
+ libloading v0.8.3
353
353
  https://github.com/nagisa/rust_libloading/
354
354
  ISC
355
355
 
@@ -357,23 +357,23 @@ libm v0.2.8
357
357
  https://github.com/rust-lang/libm
358
358
  MIT OR Apache-2.0
359
359
 
360
- lock_api v0.4.11
360
+ lock_api v0.4.12
361
361
  https://github.com/Amanieu/parking_lot
362
362
  MIT OR Apache-2.0
363
363
 
364
- log v0.4.20
364
+ log v0.4.21
365
365
  https://github.com/rust-lang/log
366
366
  MIT OR Apache-2.0
367
367
 
368
- lz4 v1.24.0
368
+ lz4 v1.25.0
369
369
  https://github.com/10xGenomics/lz4-rs
370
370
  MIT
371
371
 
372
- lz4-sys v1.9.4
372
+ lz4-sys v1.9.5
373
373
  https://github.com/10xGenomics/lz4-rs
374
374
  MIT
375
375
 
376
- magnus v0.6.3
376
+ magnus v0.7.1
377
377
  https://github.com/matsadler/magnus
378
378
  MIT
379
379
 
@@ -381,7 +381,7 @@ magnus-macros v0.6.0
381
381
  https://github.com/matsadler/magnus
382
382
  MIT
383
383
 
384
- memchr v2.7.1
384
+ memchr v2.7.4
385
385
  https://github.com/BurntSushi/memchr
386
386
  Unlicense OR MIT
387
387
 
@@ -393,19 +393,19 @@ minimal-lexical v0.2.1
393
393
  https://github.com/Alexhuszagh/minimal-lexical
394
394
  MIT/Apache-2.0
395
395
 
396
- miniz_oxide v0.7.1
396
+ miniz_oxide v0.7.4
397
397
  https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
398
398
  MIT OR Zlib OR Apache-2.0
399
399
 
400
- mio v0.8.10
400
+ mio v0.8.11
401
401
  https://github.com/tokio-rs/mio
402
402
  MIT
403
403
 
404
- multiversion v0.7.3
404
+ multiversion v0.7.4
405
405
  https://github.com/calebzulawski/multiversion
406
406
  MIT OR Apache-2.0
407
407
 
408
- multiversion-macros v0.7.3
408
+ multiversion-macros v0.7.4
409
409
  https://github.com/calebzulawski/multiversion
410
410
  MIT OR Apache-2.0
411
411
 
@@ -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.17
420
+ num-traits v0.2.19
421
421
  https://github.com/rust-num/num-traits
422
422
  MIT OR Apache-2.0
423
423
 
@@ -429,11 +429,11 @@ once_cell v1.19.0
429
429
  https://github.com/matklad/once_cell
430
430
  MIT OR Apache-2.0
431
431
 
432
- parking_lot v0.12.1
432
+ parking_lot v0.12.3
433
433
  https://github.com/Amanieu/parking_lot
434
434
  MIT OR Apache-2.0
435
435
 
436
- parking_lot_core v0.9.9
436
+ parking_lot_core v0.9.10
437
437
  https://github.com/Amanieu/parking_lot
438
438
  MIT OR Apache-2.0
439
439
 
@@ -441,14 +441,10 @@ parquet-format-safe v0.2.4
441
441
  https://github.com/jorgecarleitao/parquet-format-safe
442
442
  MIT/Apache-2.0
443
443
 
444
- parse-zoneinfo v0.3.0
445
- https://github.com/djzin/parse-zoneinfo
444
+ parse-zoneinfo v0.3.1
445
+ https://github.com/chronotope/chrono-tz
446
446
  MIT
447
447
 
448
- peeking_take_while v0.1.2
449
- https://github.com/fitzgen/peeking_take_while
450
- Apache-2.0/MIT
451
-
452
448
  percent-encoding v2.3.1
453
449
  https://github.com/servo/rust-url/
454
450
  MIT OR Apache-2.0
@@ -469,7 +465,7 @@ phf_shared v0.11.2
469
465
  https://github.com/rust-phf/rust-phf
470
466
  MIT
471
467
 
472
- pin-project-lite v0.2.13
468
+ pin-project-lite v0.2.14
473
469
  https://github.com/taiki-e/pin-project-lite
474
470
  Apache-2.0 OR MIT
475
471
 
@@ -477,7 +473,7 @@ pin-utils v0.1.0
477
473
  https://github.com/rust-lang-nursery/pin-utils
478
474
  MIT OR Apache-2.0
479
475
 
480
- pkg-config v0.3.28
476
+ pkg-config v0.3.30
481
477
  https://github.com/rust-lang/pkg-config-rs
482
478
  MIT OR Apache-2.0
483
479
 
@@ -485,70 +481,78 @@ planus v0.3.1
485
481
  https://github.com/planus-org/planus
486
482
  MIT/Apache-2.0
487
483
 
488
- polars v0.39.2
484
+ polars v0.41.3
489
485
  https://www.pola.rs/
490
486
  MIT
491
487
 
492
- polars-arrow v0.39.2
488
+ polars-arrow v0.41.3
493
489
  https://www.pola.rs/
494
490
  MIT AND Apache-2.0
495
491
 
496
492
  polars-arrow-format v0.1.0
497
493
  https://github.com/polar-rs/arrow-format
498
494
 
499
- polars-compute v0.39.2
495
+ polars-compute v0.41.3
500
496
  https://www.pola.rs/
501
497
  MIT
502
498
 
503
- polars-core v0.39.2
499
+ polars-core v0.41.3
504
500
  https://www.pola.rs/
505
501
  MIT
506
502
 
507
- polars-error v0.39.2
503
+ polars-error v0.41.3
508
504
  https://www.pola.rs/
509
505
  MIT
510
506
 
511
- polars-io v0.39.2
507
+ polars-expr v0.41.3
512
508
  https://www.pola.rs/
513
509
  MIT
514
510
 
515
- polars-json v0.39.2
511
+ polars-io v0.41.3
516
512
  https://www.pola.rs/
517
513
  MIT
518
514
 
519
- polars-lazy v0.39.2
515
+ polars-json v0.41.3
520
516
  https://www.pola.rs/
521
517
  MIT
522
518
 
523
- polars-ops v0.39.2
519
+ polars-lazy v0.41.3
524
520
  https://www.pola.rs/
525
521
  MIT
526
522
 
527
- polars-parquet v0.39.2
523
+ polars-mem-engine v0.41.3
524
+ https://www.pola.rs/
525
+ MIT
526
+
527
+ polars-ops v0.41.3
528
+ https://www.pola.rs/
529
+ MIT
530
+
531
+ polars-parquet v0.41.3
528
532
  https://www.pola.rs/
529
533
  MIT AND Apache-2.0
530
534
 
531
- polars-pipe v0.39.2
535
+ polars-pipe v0.41.3
532
536
  https://www.pola.rs/
533
537
  MIT
534
538
 
535
- polars-plan v0.39.2
539
+ polars-plan v0.41.3
536
540
  https://www.pola.rs/
537
541
  MIT
538
542
 
539
- polars-row v0.39.2
543
+ polars-row v0.41.3
540
544
  https://www.pola.rs/
541
545
  MIT
542
546
 
543
- polars-sql v0.39.2
547
+ polars-sql v0.41.3
544
548
  https://www.pola.rs/
545
549
  MIT
546
550
 
547
- polars-time v0.39.2
551
+ polars-time v0.41.3
548
552
  https://www.pola.rs/
549
553
  MIT
550
554
 
551
- polars-utils v0.39.2
555
+ polars-utils v0.41.3
552
556
  https://www.pola.rs/
553
557
  MIT
554
558
 
@@ -556,7 +560,7 @@ ppv-lite86 v0.2.17
556
560
  https://github.com/cryptocorrosion/cryptocorrosion
557
561
  MIT/Apache-2.0
558
562
 
559
- proc-macro2 v1.0.74
563
+ proc-macro2 v1.0.86
560
564
  https://github.com/dtolnay/proc-macro2
561
565
  MIT OR Apache-2.0
562
566
 
@@ -564,7 +568,7 @@ psm v0.1.21
564
568
  https://github.com/rust-lang/stacker/
565
569
  MIT OR Apache-2.0
566
570
 
567
- quote v1.0.35
571
+ quote v1.0.36
568
572
  https://github.com/dtolnay/quote
569
573
  MIT OR Apache-2.0
570
574
 
@@ -584,11 +588,11 @@ rand_distr v0.4.3
584
588
  https://rust-random.github.io/book
585
589
  MIT OR Apache-2.0
586
590
 
587
- raw-cpuid v11.0.1
591
+ raw-cpuid v11.0.2
588
592
  https://github.com/gz/rust-cpuid
589
593
  MIT
590
594
 
591
- rayon v1.9.0
595
+ rayon v1.10.0
592
596
  https://github.com/rayon-rs/rayon
593
597
  MIT OR Apache-2.0
594
598
 
@@ -596,11 +600,11 @@ rayon-core v1.12.1
596
600
  https://github.com/rayon-rs/rayon
597
601
  MIT OR Apache-2.0
598
602
 
599
- rb-sys v0.9.97
603
+ rb-sys v0.9.98
600
604
  https://github.com/oxidize-rb/rb-sys
601
605
  MIT OR Apache-2.0
602
606
 
603
- rb-sys-build v0.9.97
607
+ rb-sys-build v0.9.98
604
608
  https://github.com/oxidize-rb/rb-sys
605
609
  MIT OR Apache-2.0
606
610
 
@@ -616,23 +620,23 @@ recursive-proc-macro-impl v0.1.1
616
620
  https://github.com/orlp/recursive
617
621
  MIT
618
622
 
619
- ref-cast v1.0.22
623
+ ref-cast v1.0.23
620
624
  https://github.com/dtolnay/ref-cast
621
625
  MIT OR Apache-2.0
622
626
 
623
- ref-cast-impl v1.0.22
627
+ ref-cast-impl v1.0.23
624
628
  https://github.com/dtolnay/ref-cast
625
629
  MIT OR Apache-2.0
626
630
 
627
- regex v1.10.2
631
+ regex v1.10.5
628
632
  https://github.com/rust-lang/regex
629
633
  MIT OR Apache-2.0
630
634
 
631
- regex-automata v0.4.3
635
+ regex-automata v0.4.7
632
636
  https://github.com/rust-lang/regex/tree/master/regex-automata
633
637
  MIT OR Apache-2.0
634
638
 
635
- regex-syntax v0.8.2
639
+ regex-syntax v0.8.4
636
640
  https://github.com/rust-lang/regex/tree/master/regex-syntax
637
641
  MIT OR Apache-2.0
638
642
 
@@ -644,11 +648,11 @@ rustc-hash v1.1.0
644
648
  https://github.com/rust-lang-nursery/rustc-hash
645
649
  Apache-2.0/MIT
646
650
 
647
- rustversion v1.0.14
651
+ rustversion v1.0.17
648
652
  https://github.com/dtolnay/rustversion
649
653
  MIT OR Apache-2.0
650
654
 
651
- ryu v1.0.16
655
+ ryu v1.0.18
652
656
  https://github.com/dtolnay/ryu
653
657
  Apache-2.0 OR BSL-1.0
654
658
 
@@ -660,15 +664,15 @@ seq-macro v0.3.5
660
664
  https://github.com/dtolnay/seq-macro
661
665
  MIT OR Apache-2.0
662
666
 
663
- serde v1.0.194
667
+ serde v1.0.203
664
668
  https://serde.rs
665
669
  MIT OR Apache-2.0
666
670
 
667
- serde_derive v1.0.194
671
+ serde_derive v1.0.203
668
672
  https://serde.rs
669
673
  MIT OR Apache-2.0
670
674
 
671
- serde_json v1.0.110
675
+ serde_json v1.0.117
672
676
  https://github.com/serde-rs/json
673
677
  MIT OR Apache-2.0
674
678
 
@@ -676,11 +680,11 @@ shell-words v1.1.0
676
680
  https://github.com/tmiasko/shell-words
677
681
  MIT/Apache-2.0
678
682
 
679
- shlex v1.2.0
683
+ shlex v1.3.0
680
684
  https://github.com/comex/rust-shlex
681
685
  MIT OR Apache-2.0
682
686
 
683
- simd-json v0.13.4
687
+ simd-json v0.13.10
684
688
  https://github.com/simd-lite/simd-json
685
689
  Apache-2.0 OR MIT
686
690
 
@@ -696,7 +700,7 @@ slab v0.4.9
696
700
  https://github.com/tokio-rs/slab
697
701
  MIT
698
702
 
699
- smallvec v1.11.2
703
+ smallvec v1.13.2
700
704
  https://github.com/servo/rust-smallvec
701
705
  MIT OR Apache-2.0
702
706
 
@@ -708,11 +712,11 @@ snap v1.1.1
708
712
  https://github.com/BurntSushi/rust-snappy
709
713
  BSD-3-Clause
710
714
 
711
- socket2 v0.5.5
715
+ socket2 v0.5.7
712
716
  https://github.com/rust-lang/socket2
713
717
  MIT OR Apache-2.0
714
718
 
715
- sqlparser v0.39.0
719
+ sqlparser v0.47.0
716
720
  https://github.com/sqlparser-rs/sqlparser-rs
717
721
  Apache-2.0
718
722
 
@@ -736,11 +740,11 @@ strength_reduce v0.2.4
736
740
  http://github.com/ejmahler/strength_reduce
737
741
  MIT OR Apache-2.0
738
742
 
739
- strum v0.25.0
743
+ strum v0.26.2
740
744
  https://github.com/Peternator7/strum
741
745
  MIT
742
746
 
743
- strum_macros v0.25.3
747
+ strum_macros v0.26.4
744
748
  https://github.com/Peternator7/strum
745
749
  MIT
746
750
 
@@ -748,31 +752,31 @@ syn v1.0.109
748
752
  https://github.com/dtolnay/syn
749
753
  MIT OR Apache-2.0
750
754
 
751
- syn v2.0.46
755
+ syn v2.0.67
752
756
  https://github.com/dtolnay/syn
753
757
  MIT OR Apache-2.0
754
758
 
755
- sysinfo v0.30.3
759
+ sysinfo v0.30.12
756
760
  https://github.com/GuillaumeGomez/sysinfo
757
761
  MIT
758
762
 
759
- target-features v0.1.5
763
+ target-features v0.1.6
760
764
  https://github.com/calebzulawski/target-features
761
765
  MIT OR Apache-2.0
762
766
 
763
- thiserror v1.0.56
767
+ thiserror v1.0.61
764
768
  https://github.com/dtolnay/thiserror
765
769
  MIT OR Apache-2.0
766
770
 
767
- thiserror-impl v1.0.56
771
+ thiserror-impl v1.0.61
768
772
  https://github.com/dtolnay/thiserror
769
773
  MIT OR Apache-2.0
770
774
 
771
- tokio v1.35.1
775
+ tokio v1.38.0
772
776
  https://tokio.rs
773
777
  MIT
774
778
 
775
- tokio-util v0.7.10
779
+ tokio-util v0.7.11
776
780
  https://tokio.rs
777
781
  MIT
778
782
 
@@ -780,23 +784,23 @@ unicode-ident v1.0.12
780
784
  https://github.com/dtolnay/unicode-ident
781
785
  (MIT OR Apache-2.0) AND Unicode-DFS-2016
782
786
 
783
- unicode-reverse v1.0.8
787
+ unicode-reverse v1.0.9
784
788
  https://github.com/mbrubeck/unicode-reverse
785
- MIT / Apache-2.0
789
+ MIT OR Apache-2.0
786
790
 
787
- unicode-segmentation v1.10.1
791
+ unicode-segmentation v1.11.0
788
792
  https://github.com/unicode-rs/unicode-segmentation
789
793
  MIT/Apache-2.0
790
794
 
791
- unicode-width v0.1.11
795
+ unicode-width v0.1.13
792
796
  https://github.com/unicode-rs/unicode-width
793
- MIT/Apache-2.0
797
+ MIT OR Apache-2.0
794
798
 
795
- uuid v1.7.0
799
+ uuid v1.8.0
796
800
  https://github.com/uuid-rs/uuid
797
801
  Apache-2.0 OR MIT
798
802
 
799
- value-trait v0.8.0
803
+ value-trait v0.8.1
800
804
  https://github.com/simd-lite/value-trait
801
805
  Apache-2.0/MIT
802
806
 
@@ -804,23 +808,23 @@ version_check v0.9.4
804
808
  https://github.com/SergioBenitez/version_check
805
809
  MIT/Apache-2.0
806
810
 
807
- xxhash-rust v0.8.8
811
+ xxhash-rust v0.8.10
808
812
  https://github.com/DoumanAsh/xxhash-rust
809
813
  BSL-1.0
810
814
 
811
- zerocopy v0.7.32
815
+ zerocopy v0.7.34
812
816
  https://github.com/google/zerocopy
813
817
  BSD-2-Clause OR Apache-2.0 OR MIT
814
818
 
815
- zstd v0.13.0
819
+ zstd v0.13.1
816
820
  https://github.com/gyscos/zstd-rs
817
821
  MIT
818
822
 
819
- zstd-safe v7.0.0
823
+ zstd-safe v7.1.0
820
824
  https://github.com/gyscos/zstd-rs
821
825
  MIT/Apache-2.0
822
826
 
823
- zstd-sys v2.0.9+zstd.1.5.5
827
+ zstd-sys v2.0.11+zstd.1.5.6
824
828
  https://github.com/gyscos/zstd-rs
825
829
  MIT/Apache-2.0
826
830
 
@@ -1457,15 +1461,213 @@ Redistribution and use in source and binary forms, with or without modification,
1457
1461
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1458
1462
 
1459
1463
  ================================================================================
1460
- allocator-api2 COPYING
1464
+ allocator-api2 LICENSE-APACHE
1461
1465
  ================================================================================
1462
1466
 
1463
- Copyright 2023 The allocator-api2 Project Developers
1467
+ Apache License
1468
+ Version 2.0, January 2004
1469
+ http://www.apache.org/licenses/
1470
+
1471
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1472
+
1473
+ 1. Definitions.
1474
+
1475
+ "License" shall mean the terms and conditions for use, reproduction,
1476
+ and distribution as defined by Sections 1 through 9 of this document.
1477
+
1478
+ "Licensor" shall mean the copyright owner or entity authorized by
1479
+ the copyright owner that is granting the License.
1480
+
1481
+ "Legal Entity" shall mean the union of the acting entity and all
1482
+ other entities that control, are controlled by, or are under common
1483
+ control with that entity. For the purposes of this definition,
1484
+ "control" means (i) the power, direct or indirect, to cause the
1485
+ direction or management of such entity, whether by contract or
1486
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1487
+ outstanding shares, or (iii) beneficial ownership of such entity.
1488
+
1489
+ "You" (or "Your") shall mean an individual or Legal Entity
1490
+ exercising permissions granted by this License.
1491
+
1492
+ "Source" form shall mean the preferred form for making modifications,
1493
+ including but not limited to software source code, documentation
1494
+ source, and configuration files.
1495
+
1496
+ "Object" form shall mean any form resulting from mechanical
1497
+ transformation or translation of a Source form, including but
1498
+ not limited to compiled object code, generated documentation,
1499
+ and conversions to other media types.
1500
+
1501
+ "Work" shall mean the work of authorship, whether in Source or
1502
+ Object form, made available under the License, as indicated by a
1503
+ copyright notice that is included in or attached to the work
1504
+ (an example is provided in the Appendix below).
1505
+
1506
+ "Derivative Works" shall mean any work, whether in Source or Object
1507
+ form, that is based on (or derived from) the Work and for which the
1508
+ editorial revisions, annotations, elaborations, or other modifications
1509
+ represent, as a whole, an original work of authorship. For the purposes
1510
+ of this License, Derivative Works shall not include works that remain
1511
+ separable from, or merely link (or bind by name) to the interfaces of,
1512
+ the Work and Derivative Works thereof.
1513
+
1514
+ "Contribution" shall mean any work of authorship, including
1515
+ the original version of the Work and any modifications or additions
1516
+ to that Work or Derivative Works thereof, that is intentionally
1517
+ submitted to Licensor for inclusion in the Work by the copyright owner
1518
+ or by an individual or Legal Entity authorized to submit on behalf of
1519
+ the copyright owner. For the purposes of this definition, "submitted"
1520
+ means any form of electronic, verbal, or written communication sent
1521
+ to the Licensor or its representatives, including but not limited to
1522
+ communication on electronic mailing lists, source code control systems,
1523
+ and issue tracking systems that are managed by, or on behalf of, the
1524
+ Licensor for the purpose of discussing and improving the Work, but
1525
+ excluding communication that is conspicuously marked or otherwise
1526
+ designated in writing by the copyright owner as "Not a Contribution."
1527
+
1528
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1529
+ on behalf of whom a Contribution has been received by Licensor and
1530
+ subsequently incorporated within the Work.
1531
+
1532
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1533
+ this License, each Contributor hereby grants to You a perpetual,
1534
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1535
+ copyright license to reproduce, prepare Derivative Works of,
1536
+ publicly display, publicly perform, sublicense, and distribute the
1537
+ Work and such Derivative Works in Source or Object form.
1538
+
1539
+ 3. Grant of Patent License. Subject to the terms and conditions of
1540
+ this License, each Contributor hereby grants to You a perpetual,
1541
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1542
+ (except as stated in this section) patent license to make, have made,
1543
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1544
+ where such license applies only to those patent claims licensable
1545
+ by such Contributor that are necessarily infringed by their
1546
+ Contribution(s) alone or by combination of their Contribution(s)
1547
+ with the Work to which such Contribution(s) was submitted. If You
1548
+ institute patent litigation against any entity (including a
1549
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1550
+ or a Contribution incorporated within the Work constitutes direct
1551
+ or contributory patent infringement, then any patent licenses
1552
+ granted to You under this License for that Work shall terminate
1553
+ as of the date such litigation is filed.
1554
+
1555
+ 4. Redistribution. You may reproduce and distribute copies of the
1556
+ Work or Derivative Works thereof in any medium, with or without
1557
+ modifications, and in Source or Object form, provided that You
1558
+ meet the following conditions:
1559
+
1560
+ (a) You must give any other recipients of the Work or
1561
+ Derivative Works a copy of this License; and
1562
+
1563
+ (b) You must cause any modified files to carry prominent notices
1564
+ stating that You changed the files; and
1565
+
1566
+ (c) You must retain, in the Source form of any Derivative Works
1567
+ that You distribute, all copyright, patent, trademark, and
1568
+ attribution notices from the Source form of the Work,
1569
+ excluding those notices that do not pertain to any part of
1570
+ the Derivative Works; and
1571
+
1572
+ (d) If the Work includes a "NOTICE" text file as part of its
1573
+ distribution, then any Derivative Works that You distribute must
1574
+ include a readable copy of the attribution notices contained
1575
+ within such NOTICE file, excluding those notices that do not
1576
+ pertain to any part of the Derivative Works, in at least one
1577
+ of the following places: within a NOTICE text file distributed
1578
+ as part of the Derivative Works; within the Source form or
1579
+ documentation, if provided along with the Derivative Works; or,
1580
+ within a display generated by the Derivative Works, if and
1581
+ wherever such third-party notices normally appear. The contents
1582
+ of the NOTICE file are for informational purposes only and
1583
+ do not modify the License. You may add Your own attribution
1584
+ notices within Derivative Works that You distribute, alongside
1585
+ or as an addendum to the NOTICE text from the Work, provided
1586
+ that such additional attribution notices cannot be construed
1587
+ as modifying the License.
1588
+
1589
+ You may add Your own copyright statement to Your modifications and
1590
+ may provide additional or different license terms and conditions
1591
+ for use, reproduction, or distribution of Your modifications, or
1592
+ for any such Derivative Works as a whole, provided Your use,
1593
+ reproduction, and distribution of the Work otherwise complies with
1594
+ the conditions stated in this License.
1595
+
1596
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1597
+ any Contribution intentionally submitted for inclusion in the Work
1598
+ by You to the Licensor shall be under the terms and conditions of
1599
+ this License, without any additional terms or conditions.
1600
+ Notwithstanding the above, nothing herein shall supersede or modify
1601
+ the terms of any separate license agreement you may have executed
1602
+ with Licensor regarding such Contributions.
1603
+
1604
+ 6. Trademarks. This License does not grant permission to use the trade
1605
+ names, trademarks, service marks, or product names of the Licensor,
1606
+ except as required for reasonable and customary use in describing the
1607
+ origin of the Work and reproducing the content of the NOTICE file.
1608
+
1609
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1610
+ agreed to in writing, Licensor provides the Work (and each
1611
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1612
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1613
+ implied, including, without limitation, any warranties or conditions
1614
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1615
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1616
+ appropriateness of using or redistributing the Work and assume any
1617
+ risks associated with Your exercise of permissions under this License.
1618
+
1619
+ 8. Limitation of Liability. In no event and under no legal theory,
1620
+ whether in tort (including negligence), contract, or otherwise,
1621
+ unless required by applicable law (such as deliberate and grossly
1622
+ negligent acts) or agreed to in writing, shall any Contributor be
1623
+ liable to You for damages, including any direct, indirect, special,
1624
+ incidental, or consequential damages of any character arising as a
1625
+ result of this License or out of the use or inability to use the
1626
+ Work (including but not limited to damages for loss of goodwill,
1627
+ work stoppage, computer failure or malfunction, or any and all
1628
+ other commercial damages or losses), even if such Contributor
1629
+ has been advised of the possibility of such damages.
1630
+
1631
+ 9. Accepting Warranty or Additional Liability. While redistributing
1632
+ the Work or Derivative Works thereof, You may choose to offer,
1633
+ and charge a fee for, acceptance of support, warranty, indemnity,
1634
+ or other liability obligations and/or rights consistent with this
1635
+ License. However, in accepting such obligations, You may act only
1636
+ on Your own behalf and on Your sole responsibility, not on behalf
1637
+ of any other Contributor, and only if You agree to indemnify,
1638
+ defend, and hold each Contributor harmless for any liability
1639
+ incurred by, or claims asserted against, such Contributor by reason
1640
+ of your accepting any such warranty or additional liability.
1641
+
1642
+ END OF TERMS AND CONDITIONS
1464
1643
 
1465
- Licensed under the Apache License, Version 2.0, <license/LICENSE-APACHE or
1466
- http://apache.org/licenses/LICENSE-2.0> or the MIT license <license/LICENSE-MIT or
1467
- http://opensource.org/licenses/MIT>, at your option. This file may not be
1468
- copied, modified, or distributed except according to those terms.
1644
+ ================================================================================
1645
+ allocator-api2 LICENSE-MIT
1646
+ ================================================================================
1647
+
1648
+ Permission is hereby granted, free of charge, to any
1649
+ person obtaining a copy of this software and associated
1650
+ documentation files (the "Software"), to deal in the
1651
+ Software without restriction, including without
1652
+ limitation the rights to use, copy, modify, merge,
1653
+ publish, distribute, sublicense, and/or sell copies of
1654
+ the Software, and to permit persons to whom the Software
1655
+ is furnished to do so, subject to the following
1656
+ conditions:
1657
+
1658
+ The above copyright notice and this permission notice
1659
+ shall be included in all copies or substantial portions
1660
+ of the Software.
1661
+
1662
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
1663
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
1664
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
1665
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
1666
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1667
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1668
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
1669
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1670
+ DEALINGS IN THE SOFTWARE.
1469
1671
 
1470
1672
  ================================================================================
1471
1673
  argminmax LICENSE
@@ -4933,208 +5135,208 @@ limitations under the License.
4933
5135
  clang-sys LICENSE.txt
4934
5136
  ================================================================================
4935
5137
 
4936
-
4937
- Apache License
4938
- Version 2.0, January 2004
4939
- http://www.apache.org/licenses/
4940
-
4941
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4942
-
4943
- 1. Definitions.
4944
-
4945
- "License" shall mean the terms and conditions for use, reproduction,
4946
- and distribution as defined by Sections 1 through 9 of this document.
4947
-
4948
- "Licensor" shall mean the copyright owner or entity authorized by
4949
- the copyright owner that is granting the License.
4950
-
4951
- "Legal Entity" shall mean the union of the acting entity and all
4952
- other entities that control, are controlled by, or are under common
4953
- control with that entity. For the purposes of this definition,
4954
- "control" means (i) the power, direct or indirect, to cause the
4955
- direction or management of such entity, whether by contract or
4956
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
4957
- outstanding shares, or (iii) beneficial ownership of such entity.
4958
-
4959
- "You" (or "Your") shall mean an individual or Legal Entity
4960
- exercising permissions granted by this License.
4961
-
4962
- "Source" form shall mean the preferred form for making modifications,
4963
- including but not limited to software source code, documentation
4964
- source, and configuration files.
4965
-
4966
- "Object" form shall mean any form resulting from mechanical
4967
- transformation or translation of a Source form, including but
4968
- not limited to compiled object code, generated documentation,
4969
- and conversions to other media types.
4970
-
4971
- "Work" shall mean the work of authorship, whether in Source or
4972
- Object form, made available under the License, as indicated by a
4973
- copyright notice that is included in or attached to the work
4974
- (an example is provided in the Appendix below).
4975
-
4976
- "Derivative Works" shall mean any work, whether in Source or Object
4977
- form, that is based on (or derived from) the Work and for which the
4978
- editorial revisions, annotations, elaborations, or other modifications
4979
- represent, as a whole, an original work of authorship. For the purposes
4980
- of this License, Derivative Works shall not include works that remain
4981
- separable from, or merely link (or bind by name) to the interfaces of,
4982
- the Work and Derivative Works thereof.
4983
-
4984
- "Contribution" shall mean any work of authorship, including
4985
- the original version of the Work and any modifications or additions
4986
- to that Work or Derivative Works thereof, that is intentionally
4987
- submitted to Licensor for inclusion in the Work by the copyright owner
4988
- or by an individual or Legal Entity authorized to submit on behalf of
4989
- the copyright owner. For the purposes of this definition, "submitted"
4990
- means any form of electronic, verbal, or written communication sent
4991
- to the Licensor or its representatives, including but not limited to
4992
- communication on electronic mailing lists, source code control systems,
4993
- and issue tracking systems that are managed by, or on behalf of, the
4994
- Licensor for the purpose of discussing and improving the Work, but
4995
- excluding communication that is conspicuously marked or otherwise
4996
- designated in writing by the copyright owner as "Not a Contribution."
4997
-
4998
- "Contributor" shall mean Licensor and any individual or Legal Entity
4999
- on behalf of whom a Contribution has been received by Licensor and
5000
- subsequently incorporated within the Work.
5001
-
5002
- 2. Grant of Copyright License. Subject to the terms and conditions of
5003
- this License, each Contributor hereby grants to You a perpetual,
5004
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5005
- copyright license to reproduce, prepare Derivative Works of,
5006
- publicly display, publicly perform, sublicense, and distribute the
5007
- Work and such Derivative Works in Source or Object form.
5008
-
5009
- 3. Grant of Patent License. Subject to the terms and conditions of
5010
- this License, each Contributor hereby grants to You a perpetual,
5011
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5012
- (except as stated in this section) patent license to make, have made,
5013
- use, offer to sell, sell, import, and otherwise transfer the Work,
5014
- where such license applies only to those patent claims licensable
5015
- by such Contributor that are necessarily infringed by their
5016
- Contribution(s) alone or by combination of their Contribution(s)
5017
- with the Work to which such Contribution(s) was submitted. If You
5018
- institute patent litigation against any entity (including a
5019
- cross-claim or counterclaim in a lawsuit) alleging that the Work
5020
- or a Contribution incorporated within the Work constitutes direct
5021
- or contributory patent infringement, then any patent licenses
5022
- granted to You under this License for that Work shall terminate
5023
- as of the date such litigation is filed.
5024
-
5025
- 4. Redistribution. You may reproduce and distribute copies of the
5026
- Work or Derivative Works thereof in any medium, with or without
5027
- modifications, and in Source or Object form, provided that You
5028
- meet the following conditions:
5029
-
5030
- (a) You must give any other recipients of the Work or
5031
- Derivative Works a copy of this License; and
5032
-
5033
- (b) You must cause any modified files to carry prominent notices
5034
- stating that You changed the files; and
5035
-
5036
- (c) You must retain, in the Source form of any Derivative Works
5037
- that You distribute, all copyright, patent, trademark, and
5038
- attribution notices from the Source form of the Work,
5039
- excluding those notices that do not pertain to any part of
5040
- the Derivative Works; and
5041
-
5042
- (d) If the Work includes a "NOTICE" text file as part of its
5043
- distribution, then any Derivative Works that You distribute must
5044
- include a readable copy of the attribution notices contained
5045
- within such NOTICE file, excluding those notices that do not
5046
- pertain to any part of the Derivative Works, in at least one
5047
- of the following places: within a NOTICE text file distributed
5048
- as part of the Derivative Works; within the Source form or
5049
- documentation, if provided along with the Derivative Works; or,
5050
- within a display generated by the Derivative Works, if and
5051
- wherever such third-party notices normally appear. The contents
5052
- of the NOTICE file are for informational purposes only and
5053
- do not modify the License. You may add Your own attribution
5054
- notices within Derivative Works that You distribute, alongside
5055
- or as an addendum to the NOTICE text from the Work, provided
5056
- that such additional attribution notices cannot be construed
5057
- as modifying the License.
5058
-
5059
- You may add Your own copyright statement to Your modifications and
5060
- may provide additional or different license terms and conditions
5061
- for use, reproduction, or distribution of Your modifications, or
5062
- for any such Derivative Works as a whole, provided Your use,
5063
- reproduction, and distribution of the Work otherwise complies with
5064
- the conditions stated in this License.
5065
-
5066
- 5. Submission of Contributions. Unless You explicitly state otherwise,
5067
- any Contribution intentionally submitted for inclusion in the Work
5068
- by You to the Licensor shall be under the terms and conditions of
5069
- this License, without any additional terms or conditions.
5070
- Notwithstanding the above, nothing herein shall supersede or modify
5071
- the terms of any separate license agreement you may have executed
5072
- with Licensor regarding such Contributions.
5073
-
5074
- 6. Trademarks. This License does not grant permission to use the trade
5075
- names, trademarks, service marks, or product names of the Licensor,
5076
- except as required for reasonable and customary use in describing the
5077
- origin of the Work and reproducing the content of the NOTICE file.
5078
-
5079
- 7. Disclaimer of Warranty. Unless required by applicable law or
5080
- agreed to in writing, Licensor provides the Work (and each
5081
- Contributor provides its Contributions) on an "AS IS" BASIS,
5082
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
5083
- implied, including, without limitation, any warranties or conditions
5084
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
5085
- PARTICULAR PURPOSE. You are solely responsible for determining the
5086
- appropriateness of using or redistributing the Work and assume any
5087
- risks associated with Your exercise of permissions under this License.
5088
-
5089
- 8. Limitation of Liability. In no event and under no legal theory,
5090
- whether in tort (including negligence), contract, or otherwise,
5091
- unless required by applicable law (such as deliberate and grossly
5092
- negligent acts) or agreed to in writing, shall any Contributor be
5093
- liable to You for damages, including any direct, indirect, special,
5094
- incidental, or consequential damages of any character arising as a
5095
- result of this License or out of the use or inability to use the
5096
- Work (including but not limited to damages for loss of goodwill,
5097
- work stoppage, computer failure or malfunction, or any and all
5098
- other commercial damages or losses), even if such Contributor
5099
- has been advised of the possibility of such damages.
5100
-
5101
- 9. Accepting Warranty or Additional Liability. While redistributing
5102
- the Work or Derivative Works thereof, You may choose to offer,
5103
- and charge a fee for, acceptance of support, warranty, indemnity,
5104
- or other liability obligations and/or rights consistent with this
5105
- License. However, in accepting such obligations, You may act only
5106
- on Your own behalf and on Your sole responsibility, not on behalf
5107
- of any other Contributor, and only if You agree to indemnify,
5108
- defend, and hold each Contributor harmless for any liability
5109
- incurred by, or claims asserted against, such Contributor by reason
5110
- of your accepting any such warranty or additional liability.
5111
-
5112
- END OF TERMS AND CONDITIONS
5113
-
5114
- APPENDIX: How to apply the Apache License to your work.
5115
-
5116
- To apply the Apache License to your work, attach the following
5117
- boilerplate notice, with the fields enclosed by brackets "[]"
5118
- replaced with your own identifying information. (Don't include
5119
- the brackets!) The text should be enclosed in the appropriate
5120
- comment syntax for the file format. We also recommend that a
5121
- file or class name and description of purpose be included on the
5122
- same "printed page" as the copyright notice for easier
5123
- identification within third-party archives.
5124
-
5125
- Copyright [yyyy] [name of copyright owner]
5126
-
5127
- Licensed under the Apache License, Version 2.0 (the "License");
5128
- you may not use this file except in compliance with the License.
5129
- You may obtain a copy of the License at
5130
-
5131
- http://www.apache.org/licenses/LICENSE-2.0
5132
-
5133
- Unless required by applicable law or agreed to in writing, software
5134
- distributed under the License is distributed on an "AS IS" BASIS,
5135
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5136
- See the License for the specific language governing permissions and
5137
- limitations under the License.
5138
+
5139
+ Apache License
5140
+ Version 2.0, January 2004
5141
+ http://www.apache.org/licenses/
5142
+
5143
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
5144
+
5145
+ 1. Definitions.
5146
+
5147
+ "License" shall mean the terms and conditions for use, reproduction,
5148
+ and distribution as defined by Sections 1 through 9 of this document.
5149
+
5150
+ "Licensor" shall mean the copyright owner or entity authorized by
5151
+ the copyright owner that is granting the License.
5152
+
5153
+ "Legal Entity" shall mean the union of the acting entity and all
5154
+ other entities that control, are controlled by, or are under common
5155
+ control with that entity. For the purposes of this definition,
5156
+ "control" means (i) the power, direct or indirect, to cause the
5157
+ direction or management of such entity, whether by contract or
5158
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
5159
+ outstanding shares, or (iii) beneficial ownership of such entity.
5160
+
5161
+ "You" (or "Your") shall mean an individual or Legal Entity
5162
+ exercising permissions granted by this License.
5163
+
5164
+ "Source" form shall mean the preferred form for making modifications,
5165
+ including but not limited to software source code, documentation
5166
+ source, and configuration files.
5167
+
5168
+ "Object" form shall mean any form resulting from mechanical
5169
+ transformation or translation of a Source form, including but
5170
+ not limited to compiled object code, generated documentation,
5171
+ and conversions to other media types.
5172
+
5173
+ "Work" shall mean the work of authorship, whether in Source or
5174
+ Object form, made available under the License, as indicated by a
5175
+ copyright notice that is included in or attached to the work
5176
+ (an example is provided in the Appendix below).
5177
+
5178
+ "Derivative Works" shall mean any work, whether in Source or Object
5179
+ form, that is based on (or derived from) the Work and for which the
5180
+ editorial revisions, annotations, elaborations, or other modifications
5181
+ represent, as a whole, an original work of authorship. For the purposes
5182
+ of this License, Derivative Works shall not include works that remain
5183
+ separable from, or merely link (or bind by name) to the interfaces of,
5184
+ the Work and Derivative Works thereof.
5185
+
5186
+ "Contribution" shall mean any work of authorship, including
5187
+ the original version of the Work and any modifications or additions
5188
+ to that Work or Derivative Works thereof, that is intentionally
5189
+ submitted to Licensor for inclusion in the Work by the copyright owner
5190
+ or by an individual or Legal Entity authorized to submit on behalf of
5191
+ the copyright owner. For the purposes of this definition, "submitted"
5192
+ means any form of electronic, verbal, or written communication sent
5193
+ to the Licensor or its representatives, including but not limited to
5194
+ communication on electronic mailing lists, source code control systems,
5195
+ and issue tracking systems that are managed by, or on behalf of, the
5196
+ Licensor for the purpose of discussing and improving the Work, but
5197
+ excluding communication that is conspicuously marked or otherwise
5198
+ designated in writing by the copyright owner as "Not a Contribution."
5199
+
5200
+ "Contributor" shall mean Licensor and any individual or Legal Entity
5201
+ on behalf of whom a Contribution has been received by Licensor and
5202
+ subsequently incorporated within the Work.
5203
+
5204
+ 2. Grant of Copyright License. Subject to the terms and conditions of
5205
+ this License, each Contributor hereby grants to You a perpetual,
5206
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5207
+ copyright license to reproduce, prepare Derivative Works of,
5208
+ publicly display, publicly perform, sublicense, and distribute the
5209
+ Work and such Derivative Works in Source or Object form.
5210
+
5211
+ 3. Grant of Patent License. Subject to the terms and conditions of
5212
+ this License, each Contributor hereby grants to You a perpetual,
5213
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5214
+ (except as stated in this section) patent license to make, have made,
5215
+ use, offer to sell, sell, import, and otherwise transfer the Work,
5216
+ where such license applies only to those patent claims licensable
5217
+ by such Contributor that are necessarily infringed by their
5218
+ Contribution(s) alone or by combination of their Contribution(s)
5219
+ with the Work to which such Contribution(s) was submitted. If You
5220
+ institute patent litigation against any entity (including a
5221
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
5222
+ or a Contribution incorporated within the Work constitutes direct
5223
+ or contributory patent infringement, then any patent licenses
5224
+ granted to You under this License for that Work shall terminate
5225
+ as of the date such litigation is filed.
5226
+
5227
+ 4. Redistribution. You may reproduce and distribute copies of the
5228
+ Work or Derivative Works thereof in any medium, with or without
5229
+ modifications, and in Source or Object form, provided that You
5230
+ meet the following conditions:
5231
+
5232
+ (a) You must give any other recipients of the Work or
5233
+ Derivative Works a copy of this License; and
5234
+
5235
+ (b) You must cause any modified files to carry prominent notices
5236
+ stating that You changed the files; and
5237
+
5238
+ (c) You must retain, in the Source form of any Derivative Works
5239
+ that You distribute, all copyright, patent, trademark, and
5240
+ attribution notices from the Source form of the Work,
5241
+ excluding those notices that do not pertain to any part of
5242
+ the Derivative Works; and
5243
+
5244
+ (d) If the Work includes a "NOTICE" text file as part of its
5245
+ distribution, then any Derivative Works that You distribute must
5246
+ include a readable copy of the attribution notices contained
5247
+ within such NOTICE file, excluding those notices that do not
5248
+ pertain to any part of the Derivative Works, in at least one
5249
+ of the following places: within a NOTICE text file distributed
5250
+ as part of the Derivative Works; within the Source form or
5251
+ documentation, if provided along with the Derivative Works; or,
5252
+ within a display generated by the Derivative Works, if and
5253
+ wherever such third-party notices normally appear. The contents
5254
+ of the NOTICE file are for informational purposes only and
5255
+ do not modify the License. You may add Your own attribution
5256
+ notices within Derivative Works that You distribute, alongside
5257
+ or as an addendum to the NOTICE text from the Work, provided
5258
+ that such additional attribution notices cannot be construed
5259
+ as modifying the License.
5260
+
5261
+ You may add Your own copyright statement to Your modifications and
5262
+ may provide additional or different license terms and conditions
5263
+ for use, reproduction, or distribution of Your modifications, or
5264
+ for any such Derivative Works as a whole, provided Your use,
5265
+ reproduction, and distribution of the Work otherwise complies with
5266
+ the conditions stated in this License.
5267
+
5268
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
5269
+ any Contribution intentionally submitted for inclusion in the Work
5270
+ by You to the Licensor shall be under the terms and conditions of
5271
+ this License, without any additional terms or conditions.
5272
+ Notwithstanding the above, nothing herein shall supersede or modify
5273
+ the terms of any separate license agreement you may have executed
5274
+ with Licensor regarding such Contributions.
5275
+
5276
+ 6. Trademarks. This License does not grant permission to use the trade
5277
+ names, trademarks, service marks, or product names of the Licensor,
5278
+ except as required for reasonable and customary use in describing the
5279
+ origin of the Work and reproducing the content of the NOTICE file.
5280
+
5281
+ 7. Disclaimer of Warranty. Unless required by applicable law or
5282
+ agreed to in writing, Licensor provides the Work (and each
5283
+ Contributor provides its Contributions) on an "AS IS" BASIS,
5284
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
5285
+ implied, including, without limitation, any warranties or conditions
5286
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
5287
+ PARTICULAR PURPOSE. You are solely responsible for determining the
5288
+ appropriateness of using or redistributing the Work and assume any
5289
+ risks associated with Your exercise of permissions under this License.
5290
+
5291
+ 8. Limitation of Liability. In no event and under no legal theory,
5292
+ whether in tort (including negligence), contract, or otherwise,
5293
+ unless required by applicable law (such as deliberate and grossly
5294
+ negligent acts) or agreed to in writing, shall any Contributor be
5295
+ liable to You for damages, including any direct, indirect, special,
5296
+ incidental, or consequential damages of any character arising as a
5297
+ result of this License or out of the use or inability to use the
5298
+ Work (including but not limited to damages for loss of goodwill,
5299
+ work stoppage, computer failure or malfunction, or any and all
5300
+ other commercial damages or losses), even if such Contributor
5301
+ has been advised of the possibility of such damages.
5302
+
5303
+ 9. Accepting Warranty or Additional Liability. While redistributing
5304
+ the Work or Derivative Works thereof, You may choose to offer,
5305
+ and charge a fee for, acceptance of support, warranty, indemnity,
5306
+ or other liability obligations and/or rights consistent with this
5307
+ License. However, in accepting such obligations, You may act only
5308
+ on Your own behalf and on Your sole responsibility, not on behalf
5309
+ of any other Contributor, and only if You agree to indemnify,
5310
+ defend, and hold each Contributor harmless for any liability
5311
+ incurred by, or claims asserted against, such Contributor by reason
5312
+ of your accepting any such warranty or additional liability.
5313
+
5314
+ END OF TERMS AND CONDITIONS
5315
+
5316
+ APPENDIX: How to apply the Apache License to your work.
5317
+
5318
+ To apply the Apache License to your work, attach the following
5319
+ boilerplate notice, with the fields enclosed by brackets "[]"
5320
+ replaced with your own identifying information. (Don't include
5321
+ the brackets!) The text should be enclosed in the appropriate
5322
+ comment syntax for the file format. We also recommend that a
5323
+ file or class name and description of purpose be included on the
5324
+ same "printed page" as the copyright notice for easier
5325
+ identification within third-party archives.
5326
+
5327
+ Copyright [yyyy] [name of copyright owner]
5328
+
5329
+ Licensed under the Apache License, Version 2.0 (the "License");
5330
+ you may not use this file except in compliance with the License.
5331
+ You may obtain a copy of the License at
5332
+
5333
+ http://www.apache.org/licenses/LICENSE-2.0
5334
+
5335
+ Unless required by applicable law or agreed to in writing, software
5336
+ distributed under the License is distributed on an "AS IS" BASIS,
5337
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5338
+ See the License for the specific language governing permissions and
5339
+ limitations under the License.
5138
5340
 
5139
5341
  ================================================================================
5140
5342
  comfy-table LICENSE
@@ -11695,7 +11897,7 @@ limitations under the License.
11695
11897
  getrandom LICENSE-MIT
11696
11898
  ================================================================================
11697
11899
 
11698
- Copyright 2018 Developers of the Rand project
11900
+ Copyright (c) 2018-2024 The rust-random Project Developers
11699
11901
  Copyright (c) 2014 The Rust Project Developers
11700
11902
 
11701
11903
  Permission is hereby granted, free of charge, to any
@@ -12192,243 +12394,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
12192
12394
  SOFTWARE.
12193
12395
 
12194
12396
  ================================================================================
12195
- hashbrown v0.13.2 LICENSE-APACHE
12196
- ================================================================================
12197
-
12198
- Apache License
12199
- Version 2.0, January 2004
12200
- http://www.apache.org/licenses/
12201
-
12202
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
12203
-
12204
- 1. Definitions.
12205
-
12206
- "License" shall mean the terms and conditions for use, reproduction,
12207
- and distribution as defined by Sections 1 through 9 of this document.
12208
-
12209
- "Licensor" shall mean the copyright owner or entity authorized by
12210
- the copyright owner that is granting the License.
12211
-
12212
- "Legal Entity" shall mean the union of the acting entity and all
12213
- other entities that control, are controlled by, or are under common
12214
- control with that entity. For the purposes of this definition,
12215
- "control" means (i) the power, direct or indirect, to cause the
12216
- direction or management of such entity, whether by contract or
12217
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
12218
- outstanding shares, or (iii) beneficial ownership of such entity.
12219
-
12220
- "You" (or "Your") shall mean an individual or Legal Entity
12221
- exercising permissions granted by this License.
12222
-
12223
- "Source" form shall mean the preferred form for making modifications,
12224
- including but not limited to software source code, documentation
12225
- source, and configuration files.
12226
-
12227
- "Object" form shall mean any form resulting from mechanical
12228
- transformation or translation of a Source form, including but
12229
- not limited to compiled object code, generated documentation,
12230
- and conversions to other media types.
12231
-
12232
- "Work" shall mean the work of authorship, whether in Source or
12233
- Object form, made available under the License, as indicated by a
12234
- copyright notice that is included in or attached to the work
12235
- (an example is provided in the Appendix below).
12236
-
12237
- "Derivative Works" shall mean any work, whether in Source or Object
12238
- form, that is based on (or derived from) the Work and for which the
12239
- editorial revisions, annotations, elaborations, or other modifications
12240
- represent, as a whole, an original work of authorship. For the purposes
12241
- of this License, Derivative Works shall not include works that remain
12242
- separable from, or merely link (or bind by name) to the interfaces of,
12243
- the Work and Derivative Works thereof.
12244
-
12245
- "Contribution" shall mean any work of authorship, including
12246
- the original version of the Work and any modifications or additions
12247
- to that Work or Derivative Works thereof, that is intentionally
12248
- submitted to Licensor for inclusion in the Work by the copyright owner
12249
- or by an individual or Legal Entity authorized to submit on behalf of
12250
- the copyright owner. For the purposes of this definition, "submitted"
12251
- means any form of electronic, verbal, or written communication sent
12252
- to the Licensor or its representatives, including but not limited to
12253
- communication on electronic mailing lists, source code control systems,
12254
- and issue tracking systems that are managed by, or on behalf of, the
12255
- Licensor for the purpose of discussing and improving the Work, but
12256
- excluding communication that is conspicuously marked or otherwise
12257
- designated in writing by the copyright owner as "Not a Contribution."
12258
-
12259
- "Contributor" shall mean Licensor and any individual or Legal Entity
12260
- on behalf of whom a Contribution has been received by Licensor and
12261
- subsequently incorporated within the Work.
12262
-
12263
- 2. Grant of Copyright License. Subject to the terms and conditions of
12264
- this License, each Contributor hereby grants to You a perpetual,
12265
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
12266
- copyright license to reproduce, prepare Derivative Works of,
12267
- publicly display, publicly perform, sublicense, and distribute the
12268
- Work and such Derivative Works in Source or Object form.
12269
-
12270
- 3. Grant of Patent License. Subject to the terms and conditions of
12271
- this License, each Contributor hereby grants to You a perpetual,
12272
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
12273
- (except as stated in this section) patent license to make, have made,
12274
- use, offer to sell, sell, import, and otherwise transfer the Work,
12275
- where such license applies only to those patent claims licensable
12276
- by such Contributor that are necessarily infringed by their
12277
- Contribution(s) alone or by combination of their Contribution(s)
12278
- with the Work to which such Contribution(s) was submitted. If You
12279
- institute patent litigation against any entity (including a
12280
- cross-claim or counterclaim in a lawsuit) alleging that the Work
12281
- or a Contribution incorporated within the Work constitutes direct
12282
- or contributory patent infringement, then any patent licenses
12283
- granted to You under this License for that Work shall terminate
12284
- as of the date such litigation is filed.
12285
-
12286
- 4. Redistribution. You may reproduce and distribute copies of the
12287
- Work or Derivative Works thereof in any medium, with or without
12288
- modifications, and in Source or Object form, provided that You
12289
- meet the following conditions:
12290
-
12291
- (a) You must give any other recipients of the Work or
12292
- Derivative Works a copy of this License; and
12293
-
12294
- (b) You must cause any modified files to carry prominent notices
12295
- stating that You changed the files; and
12296
-
12297
- (c) You must retain, in the Source form of any Derivative Works
12298
- that You distribute, all copyright, patent, trademark, and
12299
- attribution notices from the Source form of the Work,
12300
- excluding those notices that do not pertain to any part of
12301
- the Derivative Works; and
12302
-
12303
- (d) If the Work includes a "NOTICE" text file as part of its
12304
- distribution, then any Derivative Works that You distribute must
12305
- include a readable copy of the attribution notices contained
12306
- within such NOTICE file, excluding those notices that do not
12307
- pertain to any part of the Derivative Works, in at least one
12308
- of the following places: within a NOTICE text file distributed
12309
- as part of the Derivative Works; within the Source form or
12310
- documentation, if provided along with the Derivative Works; or,
12311
- within a display generated by the Derivative Works, if and
12312
- wherever such third-party notices normally appear. The contents
12313
- of the NOTICE file are for informational purposes only and
12314
- do not modify the License. You may add Your own attribution
12315
- notices within Derivative Works that You distribute, alongside
12316
- or as an addendum to the NOTICE text from the Work, provided
12317
- that such additional attribution notices cannot be construed
12318
- as modifying the License.
12319
-
12320
- You may add Your own copyright statement to Your modifications and
12321
- may provide additional or different license terms and conditions
12322
- for use, reproduction, or distribution of Your modifications, or
12323
- for any such Derivative Works as a whole, provided Your use,
12324
- reproduction, and distribution of the Work otherwise complies with
12325
- the conditions stated in this License.
12326
-
12327
- 5. Submission of Contributions. Unless You explicitly state otherwise,
12328
- any Contribution intentionally submitted for inclusion in the Work
12329
- by You to the Licensor shall be under the terms and conditions of
12330
- this License, without any additional terms or conditions.
12331
- Notwithstanding the above, nothing herein shall supersede or modify
12332
- the terms of any separate license agreement you may have executed
12333
- with Licensor regarding such Contributions.
12334
-
12335
- 6. Trademarks. This License does not grant permission to use the trade
12336
- names, trademarks, service marks, or product names of the Licensor,
12337
- except as required for reasonable and customary use in describing the
12338
- origin of the Work and reproducing the content of the NOTICE file.
12339
-
12340
- 7. Disclaimer of Warranty. Unless required by applicable law or
12341
- agreed to in writing, Licensor provides the Work (and each
12342
- Contributor provides its Contributions) on an "AS IS" BASIS,
12343
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12344
- implied, including, without limitation, any warranties or conditions
12345
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
12346
- PARTICULAR PURPOSE. You are solely responsible for determining the
12347
- appropriateness of using or redistributing the Work and assume any
12348
- risks associated with Your exercise of permissions under this License.
12349
-
12350
- 8. Limitation of Liability. In no event and under no legal theory,
12351
- whether in tort (including negligence), contract, or otherwise,
12352
- unless required by applicable law (such as deliberate and grossly
12353
- negligent acts) or agreed to in writing, shall any Contributor be
12354
- liable to You for damages, including any direct, indirect, special,
12355
- incidental, or consequential damages of any character arising as a
12356
- result of this License or out of the use or inability to use the
12357
- Work (including but not limited to damages for loss of goodwill,
12358
- work stoppage, computer failure or malfunction, or any and all
12359
- other commercial damages or losses), even if such Contributor
12360
- has been advised of the possibility of such damages.
12361
-
12362
- 9. Accepting Warranty or Additional Liability. While redistributing
12363
- the Work or Derivative Works thereof, You may choose to offer,
12364
- and charge a fee for, acceptance of support, warranty, indemnity,
12365
- or other liability obligations and/or rights consistent with this
12366
- License. However, in accepting such obligations, You may act only
12367
- on Your own behalf and on Your sole responsibility, not on behalf
12368
- of any other Contributor, and only if You agree to indemnify,
12369
- defend, and hold each Contributor harmless for any liability
12370
- incurred by, or claims asserted against, such Contributor by reason
12371
- of your accepting any such warranty or additional liability.
12372
-
12373
- END OF TERMS AND CONDITIONS
12374
-
12375
- APPENDIX: How to apply the Apache License to your work.
12376
-
12377
- To apply the Apache License to your work, attach the following
12378
- boilerplate notice, with the fields enclosed by brackets "[]"
12379
- replaced with your own identifying information. (Don't include
12380
- the brackets!) The text should be enclosed in the appropriate
12381
- comment syntax for the file format. We also recommend that a
12382
- file or class name and description of purpose be included on the
12383
- same "printed page" as the copyright notice for easier
12384
- identification within third-party archives.
12385
-
12386
- Copyright [yyyy] [name of copyright owner]
12387
-
12388
- Licensed under the Apache License, Version 2.0 (the "License");
12389
- you may not use this file except in compliance with the License.
12390
- You may obtain a copy of the License at
12391
-
12392
- http://www.apache.org/licenses/LICENSE-2.0
12393
-
12394
- Unless required by applicable law or agreed to in writing, software
12395
- distributed under the License is distributed on an "AS IS" BASIS,
12396
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12397
- See the License for the specific language governing permissions and
12398
- limitations under the License.
12399
-
12400
- ================================================================================
12401
- hashbrown v0.13.2 LICENSE-MIT
12402
- ================================================================================
12403
-
12404
- Copyright (c) 2016 Amanieu d'Antras
12405
-
12406
- Permission is hereby granted, free of charge, to any
12407
- person obtaining a copy of this software and associated
12408
- documentation files (the "Software"), to deal in the
12409
- Software without restriction, including without
12410
- limitation the rights to use, copy, modify, merge,
12411
- publish, distribute, sublicense, and/or sell copies of
12412
- the Software, and to permit persons to whom the Software
12413
- is furnished to do so, subject to the following
12414
- conditions:
12415
-
12416
- The above copyright notice and this permission notice
12417
- shall be included in all copies or substantial portions
12418
- of the Software.
12419
-
12420
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
12421
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
12422
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
12423
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
12424
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
12425
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
12426
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
12427
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
12428
- DEALINGS IN THE SOFTWARE.
12429
-
12430
- ================================================================================
12431
- hashbrown v0.14.3 LICENSE-APACHE
12397
+ hashbrown LICENSE-APACHE
12432
12398
  ================================================================================
12433
12399
 
12434
12400
  Apache License
@@ -12634,7 +12600,7 @@ See the License for the specific language governing permissions and
12634
12600
  limitations under the License.
12635
12601
 
12636
12602
  ================================================================================
12637
- hashbrown v0.14.3 LICENSE-MIT
12603
+ hashbrown LICENSE-MIT
12638
12604
  ================================================================================
12639
12605
 
12640
12606
  Copyright (c) 2016 Amanieu d'Antras
@@ -13837,6 +13803,242 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
13837
13803
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
13838
13804
  DEALINGS IN THE SOFTWARE.
13839
13805
 
13806
+ ================================================================================
13807
+ itertools LICENSE-APACHE
13808
+ ================================================================================
13809
+
13810
+ Apache License
13811
+ Version 2.0, January 2004
13812
+ http://www.apache.org/licenses/
13813
+
13814
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
13815
+
13816
+ 1. Definitions.
13817
+
13818
+ "License" shall mean the terms and conditions for use, reproduction,
13819
+ and distribution as defined by Sections 1 through 9 of this document.
13820
+
13821
+ "Licensor" shall mean the copyright owner or entity authorized by
13822
+ the copyright owner that is granting the License.
13823
+
13824
+ "Legal Entity" shall mean the union of the acting entity and all
13825
+ other entities that control, are controlled by, or are under common
13826
+ control with that entity. For the purposes of this definition,
13827
+ "control" means (i) the power, direct or indirect, to cause the
13828
+ direction or management of such entity, whether by contract or
13829
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
13830
+ outstanding shares, or (iii) beneficial ownership of such entity.
13831
+
13832
+ "You" (or "Your") shall mean an individual or Legal Entity
13833
+ exercising permissions granted by this License.
13834
+
13835
+ "Source" form shall mean the preferred form for making modifications,
13836
+ including but not limited to software source code, documentation
13837
+ source, and configuration files.
13838
+
13839
+ "Object" form shall mean any form resulting from mechanical
13840
+ transformation or translation of a Source form, including but
13841
+ not limited to compiled object code, generated documentation,
13842
+ and conversions to other media types.
13843
+
13844
+ "Work" shall mean the work of authorship, whether in Source or
13845
+ Object form, made available under the License, as indicated by a
13846
+ copyright notice that is included in or attached to the work
13847
+ (an example is provided in the Appendix below).
13848
+
13849
+ "Derivative Works" shall mean any work, whether in Source or Object
13850
+ form, that is based on (or derived from) the Work and for which the
13851
+ editorial revisions, annotations, elaborations, or other modifications
13852
+ represent, as a whole, an original work of authorship. For the purposes
13853
+ of this License, Derivative Works shall not include works that remain
13854
+ separable from, or merely link (or bind by name) to the interfaces of,
13855
+ the Work and Derivative Works thereof.
13856
+
13857
+ "Contribution" shall mean any work of authorship, including
13858
+ the original version of the Work and any modifications or additions
13859
+ to that Work or Derivative Works thereof, that is intentionally
13860
+ submitted to Licensor for inclusion in the Work by the copyright owner
13861
+ or by an individual or Legal Entity authorized to submit on behalf of
13862
+ the copyright owner. For the purposes of this definition, "submitted"
13863
+ means any form of electronic, verbal, or written communication sent
13864
+ to the Licensor or its representatives, including but not limited to
13865
+ communication on electronic mailing lists, source code control systems,
13866
+ and issue tracking systems that are managed by, or on behalf of, the
13867
+ Licensor for the purpose of discussing and improving the Work, but
13868
+ excluding communication that is conspicuously marked or otherwise
13869
+ designated in writing by the copyright owner as "Not a Contribution."
13870
+
13871
+ "Contributor" shall mean Licensor and any individual or Legal Entity
13872
+ on behalf of whom a Contribution has been received by Licensor and
13873
+ subsequently incorporated within the Work.
13874
+
13875
+ 2. Grant of Copyright License. Subject to the terms and conditions of
13876
+ this License, each Contributor hereby grants to You a perpetual,
13877
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
13878
+ copyright license to reproduce, prepare Derivative Works of,
13879
+ publicly display, publicly perform, sublicense, and distribute the
13880
+ Work and such Derivative Works in Source or Object form.
13881
+
13882
+ 3. Grant of Patent License. Subject to the terms and conditions of
13883
+ this License, each Contributor hereby grants to You a perpetual,
13884
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
13885
+ (except as stated in this section) patent license to make, have made,
13886
+ use, offer to sell, sell, import, and otherwise transfer the Work,
13887
+ where such license applies only to those patent claims licensable
13888
+ by such Contributor that are necessarily infringed by their
13889
+ Contribution(s) alone or by combination of their Contribution(s)
13890
+ with the Work to which such Contribution(s) was submitted. If You
13891
+ institute patent litigation against any entity (including a
13892
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
13893
+ or a Contribution incorporated within the Work constitutes direct
13894
+ or contributory patent infringement, then any patent licenses
13895
+ granted to You under this License for that Work shall terminate
13896
+ as of the date such litigation is filed.
13897
+
13898
+ 4. Redistribution. You may reproduce and distribute copies of the
13899
+ Work or Derivative Works thereof in any medium, with or without
13900
+ modifications, and in Source or Object form, provided that You
13901
+ meet the following conditions:
13902
+
13903
+ (a) You must give any other recipients of the Work or
13904
+ Derivative Works a copy of this License; and
13905
+
13906
+ (b) You must cause any modified files to carry prominent notices
13907
+ stating that You changed the files; and
13908
+
13909
+ (c) You must retain, in the Source form of any Derivative Works
13910
+ that You distribute, all copyright, patent, trademark, and
13911
+ attribution notices from the Source form of the Work,
13912
+ excluding those notices that do not pertain to any part of
13913
+ the Derivative Works; and
13914
+
13915
+ (d) If the Work includes a "NOTICE" text file as part of its
13916
+ distribution, then any Derivative Works that You distribute must
13917
+ include a readable copy of the attribution notices contained
13918
+ within such NOTICE file, excluding those notices that do not
13919
+ pertain to any part of the Derivative Works, in at least one
13920
+ of the following places: within a NOTICE text file distributed
13921
+ as part of the Derivative Works; within the Source form or
13922
+ documentation, if provided along with the Derivative Works; or,
13923
+ within a display generated by the Derivative Works, if and
13924
+ wherever such third-party notices normally appear. The contents
13925
+ of the NOTICE file are for informational purposes only and
13926
+ do not modify the License. You may add Your own attribution
13927
+ notices within Derivative Works that You distribute, alongside
13928
+ or as an addendum to the NOTICE text from the Work, provided
13929
+ that such additional attribution notices cannot be construed
13930
+ as modifying the License.
13931
+
13932
+ You may add Your own copyright statement to Your modifications and
13933
+ may provide additional or different license terms and conditions
13934
+ for use, reproduction, or distribution of Your modifications, or
13935
+ for any such Derivative Works as a whole, provided Your use,
13936
+ reproduction, and distribution of the Work otherwise complies with
13937
+ the conditions stated in this License.
13938
+
13939
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
13940
+ any Contribution intentionally submitted for inclusion in the Work
13941
+ by You to the Licensor shall be under the terms and conditions of
13942
+ this License, without any additional terms or conditions.
13943
+ Notwithstanding the above, nothing herein shall supersede or modify
13944
+ the terms of any separate license agreement you may have executed
13945
+ with Licensor regarding such Contributions.
13946
+
13947
+ 6. Trademarks. This License does not grant permission to use the trade
13948
+ names, trademarks, service marks, or product names of the Licensor,
13949
+ except as required for reasonable and customary use in describing the
13950
+ origin of the Work and reproducing the content of the NOTICE file.
13951
+
13952
+ 7. Disclaimer of Warranty. Unless required by applicable law or
13953
+ agreed to in writing, Licensor provides the Work (and each
13954
+ Contributor provides its Contributions) on an "AS IS" BASIS,
13955
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13956
+ implied, including, without limitation, any warranties or conditions
13957
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
13958
+ PARTICULAR PURPOSE. You are solely responsible for determining the
13959
+ appropriateness of using or redistributing the Work and assume any
13960
+ risks associated with Your exercise of permissions under this License.
13961
+
13962
+ 8. Limitation of Liability. In no event and under no legal theory,
13963
+ whether in tort (including negligence), contract, or otherwise,
13964
+ unless required by applicable law (such as deliberate and grossly
13965
+ negligent acts) or agreed to in writing, shall any Contributor be
13966
+ liable to You for damages, including any direct, indirect, special,
13967
+ incidental, or consequential damages of any character arising as a
13968
+ result of this License or out of the use or inability to use the
13969
+ Work (including but not limited to damages for loss of goodwill,
13970
+ work stoppage, computer failure or malfunction, or any and all
13971
+ other commercial damages or losses), even if such Contributor
13972
+ has been advised of the possibility of such damages.
13973
+
13974
+ 9. Accepting Warranty or Additional Liability. While redistributing
13975
+ the Work or Derivative Works thereof, You may choose to offer,
13976
+ and charge a fee for, acceptance of support, warranty, indemnity,
13977
+ or other liability obligations and/or rights consistent with this
13978
+ License. However, in accepting such obligations, You may act only
13979
+ on Your own behalf and on Your sole responsibility, not on behalf
13980
+ of any other Contributor, and only if You agree to indemnify,
13981
+ defend, and hold each Contributor harmless for any liability
13982
+ incurred by, or claims asserted against, such Contributor by reason
13983
+ of your accepting any such warranty or additional liability.
13984
+
13985
+ END OF TERMS AND CONDITIONS
13986
+
13987
+ APPENDIX: How to apply the Apache License to your work.
13988
+
13989
+ To apply the Apache License to your work, attach the following
13990
+ boilerplate notice, with the fields enclosed by brackets "[]"
13991
+ replaced with your own identifying information. (Don't include
13992
+ the brackets!) The text should be enclosed in the appropriate
13993
+ comment syntax for the file format. We also recommend that a
13994
+ file or class name and description of purpose be included on the
13995
+ same "printed page" as the copyright notice for easier
13996
+ identification within third-party archives.
13997
+
13998
+ Copyright [yyyy] [name of copyright owner]
13999
+
14000
+ Licensed under the Apache License, Version 2.0 (the "License");
14001
+ you may not use this file except in compliance with the License.
14002
+ You may obtain a copy of the License at
14003
+
14004
+ http://www.apache.org/licenses/LICENSE-2.0
14005
+
14006
+ Unless required by applicable law or agreed to in writing, software
14007
+ distributed under the License is distributed on an "AS IS" BASIS,
14008
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14009
+ See the License for the specific language governing permissions and
14010
+ limitations under the License.
14011
+
14012
+ ================================================================================
14013
+ itertools LICENSE-MIT
14014
+ ================================================================================
14015
+
14016
+ Copyright (c) 2015
14017
+
14018
+ Permission is hereby granted, free of charge, to any
14019
+ person obtaining a copy of this software and associated
14020
+ documentation files (the "Software"), to deal in the
14021
+ Software without restriction, including without
14022
+ limitation the rights to use, copy, modify, merge,
14023
+ publish, distribute, sublicense, and/or sell copies of
14024
+ the Software, and to permit persons to whom the Software
14025
+ is furnished to do so, subject to the following
14026
+ conditions:
14027
+
14028
+ The above copyright notice and this permission notice
14029
+ shall be included in all copies or substantial portions
14030
+ of the Software.
14031
+
14032
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
14033
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
14034
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
14035
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
14036
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
14037
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
14038
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
14039
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
14040
+ DEALINGS IN THE SOFTWARE.
14041
+
13840
14042
  ================================================================================
13841
14043
  itoa LICENSE-APACHE
13842
14044
  ================================================================================
@@ -19179,243 +19381,270 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19179
19381
  DEALINGS IN THE SOFTWARE.
19180
19382
 
19181
19383
  ================================================================================
19182
- log LICENSE-APACHE
19384
+ log LICENSE-APACHE
19385
+ ================================================================================
19386
+
19387
+ Apache License
19388
+ Version 2.0, January 2004
19389
+ http://www.apache.org/licenses/
19390
+
19391
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
19392
+
19393
+ 1. Definitions.
19394
+
19395
+ "License" shall mean the terms and conditions for use, reproduction,
19396
+ and distribution as defined by Sections 1 through 9 of this document.
19397
+
19398
+ "Licensor" shall mean the copyright owner or entity authorized by
19399
+ the copyright owner that is granting the License.
19400
+
19401
+ "Legal Entity" shall mean the union of the acting entity and all
19402
+ other entities that control, are controlled by, or are under common
19403
+ control with that entity. For the purposes of this definition,
19404
+ "control" means (i) the power, direct or indirect, to cause the
19405
+ direction or management of such entity, whether by contract or
19406
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
19407
+ outstanding shares, or (iii) beneficial ownership of such entity.
19408
+
19409
+ "You" (or "Your") shall mean an individual or Legal Entity
19410
+ exercising permissions granted by this License.
19411
+
19412
+ "Source" form shall mean the preferred form for making modifications,
19413
+ including but not limited to software source code, documentation
19414
+ source, and configuration files.
19415
+
19416
+ "Object" form shall mean any form resulting from mechanical
19417
+ transformation or translation of a Source form, including but
19418
+ not limited to compiled object code, generated documentation,
19419
+ and conversions to other media types.
19420
+
19421
+ "Work" shall mean the work of authorship, whether in Source or
19422
+ Object form, made available under the License, as indicated by a
19423
+ copyright notice that is included in or attached to the work
19424
+ (an example is provided in the Appendix below).
19425
+
19426
+ "Derivative Works" shall mean any work, whether in Source or Object
19427
+ form, that is based on (or derived from) the Work and for which the
19428
+ editorial revisions, annotations, elaborations, or other modifications
19429
+ represent, as a whole, an original work of authorship. For the purposes
19430
+ of this License, Derivative Works shall not include works that remain
19431
+ separable from, or merely link (or bind by name) to the interfaces of,
19432
+ the Work and Derivative Works thereof.
19433
+
19434
+ "Contribution" shall mean any work of authorship, including
19435
+ the original version of the Work and any modifications or additions
19436
+ to that Work or Derivative Works thereof, that is intentionally
19437
+ submitted to Licensor for inclusion in the Work by the copyright owner
19438
+ or by an individual or Legal Entity authorized to submit on behalf of
19439
+ the copyright owner. For the purposes of this definition, "submitted"
19440
+ means any form of electronic, verbal, or written communication sent
19441
+ to the Licensor or its representatives, including but not limited to
19442
+ communication on electronic mailing lists, source code control systems,
19443
+ and issue tracking systems that are managed by, or on behalf of, the
19444
+ Licensor for the purpose of discussing and improving the Work, but
19445
+ excluding communication that is conspicuously marked or otherwise
19446
+ designated in writing by the copyright owner as "Not a Contribution."
19447
+
19448
+ "Contributor" shall mean Licensor and any individual or Legal Entity
19449
+ on behalf of whom a Contribution has been received by Licensor and
19450
+ subsequently incorporated within the Work.
19451
+
19452
+ 2. Grant of Copyright License. Subject to the terms and conditions of
19453
+ this License, each Contributor hereby grants to You a perpetual,
19454
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
19455
+ copyright license to reproduce, prepare Derivative Works of,
19456
+ publicly display, publicly perform, sublicense, and distribute the
19457
+ Work and such Derivative Works in Source or Object form.
19458
+
19459
+ 3. Grant of Patent License. Subject to the terms and conditions of
19460
+ this License, each Contributor hereby grants to You a perpetual,
19461
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
19462
+ (except as stated in this section) patent license to make, have made,
19463
+ use, offer to sell, sell, import, and otherwise transfer the Work,
19464
+ where such license applies only to those patent claims licensable
19465
+ by such Contributor that are necessarily infringed by their
19466
+ Contribution(s) alone or by combination of their Contribution(s)
19467
+ with the Work to which such Contribution(s) was submitted. If You
19468
+ institute patent litigation against any entity (including a
19469
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
19470
+ or a Contribution incorporated within the Work constitutes direct
19471
+ or contributory patent infringement, then any patent licenses
19472
+ granted to You under this License for that Work shall terminate
19473
+ as of the date such litigation is filed.
19474
+
19475
+ 4. Redistribution. You may reproduce and distribute copies of the
19476
+ Work or Derivative Works thereof in any medium, with or without
19477
+ modifications, and in Source or Object form, provided that You
19478
+ meet the following conditions:
19479
+
19480
+ (a) You must give any other recipients of the Work or
19481
+ Derivative Works a copy of this License; and
19482
+
19483
+ (b) You must cause any modified files to carry prominent notices
19484
+ stating that You changed the files; and
19485
+
19486
+ (c) You must retain, in the Source form of any Derivative Works
19487
+ that You distribute, all copyright, patent, trademark, and
19488
+ attribution notices from the Source form of the Work,
19489
+ excluding those notices that do not pertain to any part of
19490
+ the Derivative Works; and
19491
+
19492
+ (d) If the Work includes a "NOTICE" text file as part of its
19493
+ distribution, then any Derivative Works that You distribute must
19494
+ include a readable copy of the attribution notices contained
19495
+ within such NOTICE file, excluding those notices that do not
19496
+ pertain to any part of the Derivative Works, in at least one
19497
+ of the following places: within a NOTICE text file distributed
19498
+ as part of the Derivative Works; within the Source form or
19499
+ documentation, if provided along with the Derivative Works; or,
19500
+ within a display generated by the Derivative Works, if and
19501
+ wherever such third-party notices normally appear. The contents
19502
+ of the NOTICE file are for informational purposes only and
19503
+ do not modify the License. You may add Your own attribution
19504
+ notices within Derivative Works that You distribute, alongside
19505
+ or as an addendum to the NOTICE text from the Work, provided
19506
+ that such additional attribution notices cannot be construed
19507
+ as modifying the License.
19508
+
19509
+ You may add Your own copyright statement to Your modifications and
19510
+ may provide additional or different license terms and conditions
19511
+ for use, reproduction, or distribution of Your modifications, or
19512
+ for any such Derivative Works as a whole, provided Your use,
19513
+ reproduction, and distribution of the Work otherwise complies with
19514
+ the conditions stated in this License.
19515
+
19516
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
19517
+ any Contribution intentionally submitted for inclusion in the Work
19518
+ by You to the Licensor shall be under the terms and conditions of
19519
+ this License, without any additional terms or conditions.
19520
+ Notwithstanding the above, nothing herein shall supersede or modify
19521
+ the terms of any separate license agreement you may have executed
19522
+ with Licensor regarding such Contributions.
19523
+
19524
+ 6. Trademarks. This License does not grant permission to use the trade
19525
+ names, trademarks, service marks, or product names of the Licensor,
19526
+ except as required for reasonable and customary use in describing the
19527
+ origin of the Work and reproducing the content of the NOTICE file.
19528
+
19529
+ 7. Disclaimer of Warranty. Unless required by applicable law or
19530
+ agreed to in writing, Licensor provides the Work (and each
19531
+ Contributor provides its Contributions) on an "AS IS" BASIS,
19532
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
19533
+ implied, including, without limitation, any warranties or conditions
19534
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
19535
+ PARTICULAR PURPOSE. You are solely responsible for determining the
19536
+ appropriateness of using or redistributing the Work and assume any
19537
+ risks associated with Your exercise of permissions under this License.
19538
+
19539
+ 8. Limitation of Liability. In no event and under no legal theory,
19540
+ whether in tort (including negligence), contract, or otherwise,
19541
+ unless required by applicable law (such as deliberate and grossly
19542
+ negligent acts) or agreed to in writing, shall any Contributor be
19543
+ liable to You for damages, including any direct, indirect, special,
19544
+ incidental, or consequential damages of any character arising as a
19545
+ result of this License or out of the use or inability to use the
19546
+ Work (including but not limited to damages for loss of goodwill,
19547
+ work stoppage, computer failure or malfunction, or any and all
19548
+ other commercial damages or losses), even if such Contributor
19549
+ has been advised of the possibility of such damages.
19550
+
19551
+ 9. Accepting Warranty or Additional Liability. While redistributing
19552
+ the Work or Derivative Works thereof, You may choose to offer,
19553
+ and charge a fee for, acceptance of support, warranty, indemnity,
19554
+ or other liability obligations and/or rights consistent with this
19555
+ License. However, in accepting such obligations, You may act only
19556
+ on Your own behalf and on Your sole responsibility, not on behalf
19557
+ of any other Contributor, and only if You agree to indemnify,
19558
+ defend, and hold each Contributor harmless for any liability
19559
+ incurred by, or claims asserted against, such Contributor by reason
19560
+ of your accepting any such warranty or additional liability.
19561
+
19562
+ END OF TERMS AND CONDITIONS
19563
+
19564
+ APPENDIX: How to apply the Apache License to your work.
19565
+
19566
+ To apply the Apache License to your work, attach the following
19567
+ boilerplate notice, with the fields enclosed by brackets "[]"
19568
+ replaced with your own identifying information. (Don't include
19569
+ the brackets!) The text should be enclosed in the appropriate
19570
+ comment syntax for the file format. We also recommend that a
19571
+ file or class name and description of purpose be included on the
19572
+ same "printed page" as the copyright notice for easier
19573
+ identification within third-party archives.
19574
+
19575
+ Copyright [yyyy] [name of copyright owner]
19576
+
19577
+ Licensed under the Apache License, Version 2.0 (the "License");
19578
+ you may not use this file except in compliance with the License.
19579
+ You may obtain a copy of the License at
19580
+
19581
+ http://www.apache.org/licenses/LICENSE-2.0
19582
+
19583
+ Unless required by applicable law or agreed to in writing, software
19584
+ distributed under the License is distributed on an "AS IS" BASIS,
19585
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19586
+ See the License for the specific language governing permissions and
19587
+ limitations under the License.
19588
+
19589
+ ================================================================================
19590
+ log LICENSE-MIT
19591
+ ================================================================================
19592
+
19593
+ Copyright (c) 2014 The Rust Project Developers
19594
+
19595
+ Permission is hereby granted, free of charge, to any
19596
+ person obtaining a copy of this software and associated
19597
+ documentation files (the "Software"), to deal in the
19598
+ Software without restriction, including without
19599
+ limitation the rights to use, copy, modify, merge,
19600
+ publish, distribute, sublicense, and/or sell copies of
19601
+ the Software, and to permit persons to whom the Software
19602
+ is furnished to do so, subject to the following
19603
+ conditions:
19604
+
19605
+ The above copyright notice and this permission notice
19606
+ shall be included in all copies or substantial portions
19607
+ of the Software.
19608
+
19609
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
19610
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19611
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
19612
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
19613
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19614
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19615
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
19616
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19617
+ DEALINGS IN THE SOFTWARE.
19618
+
19619
+ ================================================================================
19620
+ lz4 LICENSE
19183
19621
  ================================================================================
19184
19622
 
19185
- Apache License
19186
- Version 2.0, January 2004
19187
- http://www.apache.org/licenses/
19188
-
19189
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
19190
-
19191
- 1. Definitions.
19192
-
19193
- "License" shall mean the terms and conditions for use, reproduction,
19194
- and distribution as defined by Sections 1 through 9 of this document.
19195
-
19196
- "Licensor" shall mean the copyright owner or entity authorized by
19197
- the copyright owner that is granting the License.
19198
-
19199
- "Legal Entity" shall mean the union of the acting entity and all
19200
- other entities that control, are controlled by, or are under common
19201
- control with that entity. For the purposes of this definition,
19202
- "control" means (i) the power, direct or indirect, to cause the
19203
- direction or management of such entity, whether by contract or
19204
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
19205
- outstanding shares, or (iii) beneficial ownership of such entity.
19206
-
19207
- "You" (or "Your") shall mean an individual or Legal Entity
19208
- exercising permissions granted by this License.
19209
-
19210
- "Source" form shall mean the preferred form for making modifications,
19211
- including but not limited to software source code, documentation
19212
- source, and configuration files.
19213
-
19214
- "Object" form shall mean any form resulting from mechanical
19215
- transformation or translation of a Source form, including but
19216
- not limited to compiled object code, generated documentation,
19217
- and conversions to other media types.
19218
-
19219
- "Work" shall mean the work of authorship, whether in Source or
19220
- Object form, made available under the License, as indicated by a
19221
- copyright notice that is included in or attached to the work
19222
- (an example is provided in the Appendix below).
19223
-
19224
- "Derivative Works" shall mean any work, whether in Source or Object
19225
- form, that is based on (or derived from) the Work and for which the
19226
- editorial revisions, annotations, elaborations, or other modifications
19227
- represent, as a whole, an original work of authorship. For the purposes
19228
- of this License, Derivative Works shall not include works that remain
19229
- separable from, or merely link (or bind by name) to the interfaces of,
19230
- the Work and Derivative Works thereof.
19231
-
19232
- "Contribution" shall mean any work of authorship, including
19233
- the original version of the Work and any modifications or additions
19234
- to that Work or Derivative Works thereof, that is intentionally
19235
- submitted to Licensor for inclusion in the Work by the copyright owner
19236
- or by an individual or Legal Entity authorized to submit on behalf of
19237
- the copyright owner. For the purposes of this definition, "submitted"
19238
- means any form of electronic, verbal, or written communication sent
19239
- to the Licensor or its representatives, including but not limited to
19240
- communication on electronic mailing lists, source code control systems,
19241
- and issue tracking systems that are managed by, or on behalf of, the
19242
- Licensor for the purpose of discussing and improving the Work, but
19243
- excluding communication that is conspicuously marked or otherwise
19244
- designated in writing by the copyright owner as "Not a Contribution."
19245
-
19246
- "Contributor" shall mean Licensor and any individual or Legal Entity
19247
- on behalf of whom a Contribution has been received by Licensor and
19248
- subsequently incorporated within the Work.
19249
-
19250
- 2. Grant of Copyright License. Subject to the terms and conditions of
19251
- this License, each Contributor hereby grants to You a perpetual,
19252
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
19253
- copyright license to reproduce, prepare Derivative Works of,
19254
- publicly display, publicly perform, sublicense, and distribute the
19255
- Work and such Derivative Works in Source or Object form.
19256
-
19257
- 3. Grant of Patent License. Subject to the terms and conditions of
19258
- this License, each Contributor hereby grants to You a perpetual,
19259
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
19260
- (except as stated in this section) patent license to make, have made,
19261
- use, offer to sell, sell, import, and otherwise transfer the Work,
19262
- where such license applies only to those patent claims licensable
19263
- by such Contributor that are necessarily infringed by their
19264
- Contribution(s) alone or by combination of their Contribution(s)
19265
- with the Work to which such Contribution(s) was submitted. If You
19266
- institute patent litigation against any entity (including a
19267
- cross-claim or counterclaim in a lawsuit) alleging that the Work
19268
- or a Contribution incorporated within the Work constitutes direct
19269
- or contributory patent infringement, then any patent licenses
19270
- granted to You under this License for that Work shall terminate
19271
- as of the date such litigation is filed.
19272
-
19273
- 4. Redistribution. You may reproduce and distribute copies of the
19274
- Work or Derivative Works thereof in any medium, with or without
19275
- modifications, and in Source or Object form, provided that You
19276
- meet the following conditions:
19277
-
19278
- (a) You must give any other recipients of the Work or
19279
- Derivative Works a copy of this License; and
19280
-
19281
- (b) You must cause any modified files to carry prominent notices
19282
- stating that You changed the files; and
19283
-
19284
- (c) You must retain, in the Source form of any Derivative Works
19285
- that You distribute, all copyright, patent, trademark, and
19286
- attribution notices from the Source form of the Work,
19287
- excluding those notices that do not pertain to any part of
19288
- the Derivative Works; and
19289
-
19290
- (d) If the Work includes a "NOTICE" text file as part of its
19291
- distribution, then any Derivative Works that You distribute must
19292
- include a readable copy of the attribution notices contained
19293
- within such NOTICE file, excluding those notices that do not
19294
- pertain to any part of the Derivative Works, in at least one
19295
- of the following places: within a NOTICE text file distributed
19296
- as part of the Derivative Works; within the Source form or
19297
- documentation, if provided along with the Derivative Works; or,
19298
- within a display generated by the Derivative Works, if and
19299
- wherever such third-party notices normally appear. The contents
19300
- of the NOTICE file are for informational purposes only and
19301
- do not modify the License. You may add Your own attribution
19302
- notices within Derivative Works that You distribute, alongside
19303
- or as an addendum to the NOTICE text from the Work, provided
19304
- that such additional attribution notices cannot be construed
19305
- as modifying the License.
19306
-
19307
- You may add Your own copyright statement to Your modifications and
19308
- may provide additional or different license terms and conditions
19309
- for use, reproduction, or distribution of Your modifications, or
19310
- for any such Derivative Works as a whole, provided Your use,
19311
- reproduction, and distribution of the Work otherwise complies with
19312
- the conditions stated in this License.
19313
-
19314
- 5. Submission of Contributions. Unless You explicitly state otherwise,
19315
- any Contribution intentionally submitted for inclusion in the Work
19316
- by You to the Licensor shall be under the terms and conditions of
19317
- this License, without any additional terms or conditions.
19318
- Notwithstanding the above, nothing herein shall supersede or modify
19319
- the terms of any separate license agreement you may have executed
19320
- with Licensor regarding such Contributions.
19321
-
19322
- 6. Trademarks. This License does not grant permission to use the trade
19323
- names, trademarks, service marks, or product names of the Licensor,
19324
- except as required for reasonable and customary use in describing the
19325
- origin of the Work and reproducing the content of the NOTICE file.
19326
-
19327
- 7. Disclaimer of Warranty. Unless required by applicable law or
19328
- agreed to in writing, Licensor provides the Work (and each
19329
- Contributor provides its Contributions) on an "AS IS" BASIS,
19330
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
19331
- implied, including, without limitation, any warranties or conditions
19332
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
19333
- PARTICULAR PURPOSE. You are solely responsible for determining the
19334
- appropriateness of using or redistributing the Work and assume any
19335
- risks associated with Your exercise of permissions under this License.
19336
-
19337
- 8. Limitation of Liability. In no event and under no legal theory,
19338
- whether in tort (including negligence), contract, or otherwise,
19339
- unless required by applicable law (such as deliberate and grossly
19340
- negligent acts) or agreed to in writing, shall any Contributor be
19341
- liable to You for damages, including any direct, indirect, special,
19342
- incidental, or consequential damages of any character arising as a
19343
- result of this License or out of the use or inability to use the
19344
- Work (including but not limited to damages for loss of goodwill,
19345
- work stoppage, computer failure or malfunction, or any and all
19346
- other commercial damages or losses), even if such Contributor
19347
- has been advised of the possibility of such damages.
19348
-
19349
- 9. Accepting Warranty or Additional Liability. While redistributing
19350
- the Work or Derivative Works thereof, You may choose to offer,
19351
- and charge a fee for, acceptance of support, warranty, indemnity,
19352
- or other liability obligations and/or rights consistent with this
19353
- License. However, in accepting such obligations, You may act only
19354
- on Your own behalf and on Your sole responsibility, not on behalf
19355
- of any other Contributor, and only if You agree to indemnify,
19356
- defend, and hold each Contributor harmless for any liability
19357
- incurred by, or claims asserted against, such Contributor by reason
19358
- of your accepting any such warranty or additional liability.
19359
-
19360
- END OF TERMS AND CONDITIONS
19361
-
19362
- APPENDIX: How to apply the Apache License to your work.
19363
-
19364
- To apply the Apache License to your work, attach the following
19365
- boilerplate notice, with the fields enclosed by brackets "[]"
19366
- replaced with your own identifying information. (Don't include
19367
- the brackets!) The text should be enclosed in the appropriate
19368
- comment syntax for the file format. We also recommend that a
19369
- file or class name and description of purpose be included on the
19370
- same "printed page" as the copyright notice for easier
19371
- identification within third-party archives.
19372
-
19373
- Copyright [yyyy] [name of copyright owner]
19374
-
19375
- Licensed under the Apache License, Version 2.0 (the "License");
19376
- you may not use this file except in compliance with the License.
19377
- You may obtain a copy of the License at
19378
-
19379
- http://www.apache.org/licenses/LICENSE-2.0
19380
-
19381
- Unless required by applicable law or agreed to in writing, software
19382
- distributed under the License is distributed on an "AS IS" BASIS,
19383
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19384
- See the License for the specific language governing permissions and
19385
- limitations under the License.
19623
+ The MIT License (MIT)
19386
19624
 
19387
- ================================================================================
19388
- log LICENSE-MIT
19389
- ================================================================================
19625
+ Copyright (c) 2015 Artem V. Navrotskiy
19390
19626
 
19391
- Copyright (c) 2014 The Rust Project Developers
19627
+ Permission is hereby granted, free of charge, to any person obtaining a copy
19628
+ of this software and associated documentation files (the "Software"), to deal
19629
+ in the Software without restriction, including without limitation the rights
19630
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19631
+ copies of the Software, and to permit persons to whom the Software is
19632
+ furnished to do so, subject to the following conditions:
19392
19633
 
19393
- Permission is hereby granted, free of charge, to any
19394
- person obtaining a copy of this software and associated
19395
- documentation files (the "Software"), to deal in the
19396
- Software without restriction, including without
19397
- limitation the rights to use, copy, modify, merge,
19398
- publish, distribute, sublicense, and/or sell copies of
19399
- the Software, and to permit persons to whom the Software
19400
- is furnished to do so, subject to the following
19401
- conditions:
19634
+ The above copyright notice and this permission notice shall be included in all
19635
+ copies or substantial portions of the Software.
19402
19636
 
19403
- The above copyright notice and this permission notice
19404
- shall be included in all copies or substantial portions
19405
- of the Software.
19637
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19638
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19639
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19640
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19641
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19642
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19643
+ SOFTWARE.
19406
19644
 
19407
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
19408
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19409
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
19410
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
19411
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19412
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19413
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
19414
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19415
- DEALINGS IN THE SOFTWARE.
19416
19645
 
19417
19646
  ================================================================================
19418
- lz4 LICENSE
19647
+ lz4-sys LICENSE
19419
19648
  ================================================================================
19420
19649
 
19421
19650
  The MIT License (MIT)
@@ -23368,7 +23597,12 @@ IN THE SOFTWARE.
23368
23597
  parse-zoneinfo LICENSE
23369
23598
  ================================================================================
23370
23599
 
23371
- Copyright (c) 2017 Djzin
23600
+ Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
23601
+ The licenses do not apply to files in the tzdb folder which are in the
23602
+ public domain. parse-zoneinfo was forked from zoneinfo-parse, which
23603
+ was originally created by Benjamin Sago under the MIT license.
23604
+
23605
+ Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers
23372
23606
 
23373
23607
  The MIT License
23374
23608
 
@@ -23390,11 +23624,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23390
23624
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23391
23625
  SOFTWARE.
23392
23626
 
23393
- ================================================================================
23394
- peeking_take_while LICENSE-APACHE
23395
- ================================================================================
23396
-
23397
- Apache License
23627
+ Apache License
23398
23628
  Version 2.0, January 2004
23399
23629
  http://www.apache.org/licenses/
23400
23630
 
@@ -23582,13 +23812,13 @@ APPENDIX: How to apply the Apache License to your work.
23582
23812
  same "printed page" as the copyright notice for easier
23583
23813
  identification within third-party archives.
23584
23814
 
23585
- Copyright [yyyy] [name of copyright owner]
23815
+ Copyright 2016 Djzin
23586
23816
 
23587
23817
  Licensed under the Apache License, Version 2.0 (the "License");
23588
23818
  you may not use this file except in compliance with the License.
23589
23819
  You may obtain a copy of the License at
23590
23820
 
23591
- http://www.apache.org/licenses/LICENSE-2.0
23821
+ http://www.apache.org/licenses/LICENSE-2.0
23592
23822
 
23593
23823
  Unless required by applicable law or agreed to in writing, software
23594
23824
  distributed under the License is distributed on an "AS IS" BASIS,
@@ -23596,36 +23826,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23596
23826
  See the License for the specific language governing permissions and
23597
23827
  limitations under the License.
23598
23828
 
23599
- ================================================================================
23600
- peeking_take_while LICENSE-MIT
23601
- ================================================================================
23602
-
23603
- Copyright (c) 2015 The Rust Project Developers
23604
-
23605
- Permission is hereby granted, free of charge, to any
23606
- person obtaining a copy of this software and associated
23607
- documentation files (the "Software"), to deal in the
23608
- Software without restriction, including without
23609
- limitation the rights to use, copy, modify, merge,
23610
- publish, distribute, sublicense, and/or sell copies of
23611
- the Software, and to permit persons to whom the Software
23612
- is furnished to do so, subject to the following
23613
- conditions:
23614
-
23615
- The above copyright notice and this permission notice
23616
- shall be included in all copies or substantial portions
23617
- of the Software.
23618
-
23619
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
23620
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
23621
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
23622
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
23623
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
23624
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23625
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
23626
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23627
- DEALINGS IN THE SOFTWARE.
23628
-
23629
23829
  ================================================================================
23630
23830
  percent-encoding LICENSE-APACHE
23631
23831
  ================================================================================
@@ -24858,6 +25058,7 @@ polars LICENSE
24858
25058
  ================================================================================
24859
25059
 
24860
25060
  Copyright (c) 2020 Ritchie Vink
25061
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
24861
25062
 
24862
25063
  Permission is hereby granted, free of charge, to any person obtaining a copy
24863
25064
  of this software and associated documentation files (the "Software"), to deal
@@ -25501,6 +25702,7 @@ polars-compute LICENSE
25501
25702
  ================================================================================
25502
25703
 
25503
25704
  Copyright (c) 2020 Ritchie Vink
25705
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25504
25706
 
25505
25707
  Permission is hereby granted, free of charge, to any person obtaining a copy
25506
25708
  of this software and associated documentation files (the "Software"), to deal
@@ -25525,6 +25727,7 @@ polars-core LICENSE
25525
25727
  ================================================================================
25526
25728
 
25527
25729
  Copyright (c) 2020 Ritchie Vink
25730
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25528
25731
 
25529
25732
  Permission is hereby granted, free of charge, to any person obtaining a copy
25530
25733
  of this software and associated documentation files (the "Software"), to deal
@@ -25549,6 +25752,32 @@ polars-error LICENSE
25549
25752
  ================================================================================
25550
25753
 
25551
25754
  Copyright (c) 2020 Ritchie Vink
25755
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25756
+
25757
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25758
+ of this software and associated documentation files (the "Software"), to deal
25759
+ in the Software without restriction, including without limitation the rights
25760
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25761
+ copies of the Software, and to permit persons to whom the Software is
25762
+ furnished to do so, subject to the following conditions:
25763
+
25764
+ The above copyright notice and this permission notice shall be included in all
25765
+ copies or substantial portions of the Software.
25766
+
25767
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25768
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25769
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25770
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25771
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25772
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25773
+ SOFTWARE.
25774
+
25775
+ ================================================================================
25776
+ polars-expr LICENSE
25777
+ ================================================================================
25778
+
25779
+ Copyright (c) 2020 Ritchie Vink
25780
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25552
25781
 
25553
25782
  Permission is hereby granted, free of charge, to any person obtaining a copy
25554
25783
  of this software and associated documentation files (the "Software"), to deal
@@ -25573,6 +25802,7 @@ polars-io LICENSE
25573
25802
  ================================================================================
25574
25803
 
25575
25804
  Copyright (c) 2020 Ritchie Vink
25805
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25576
25806
 
25577
25807
  Permission is hereby granted, free of charge, to any person obtaining a copy
25578
25808
  of this software and associated documentation files (the "Software"), to deal
@@ -25597,6 +25827,7 @@ polars-json LICENSE
25597
25827
  ================================================================================
25598
25828
 
25599
25829
  Copyright (c) 2020 Ritchie Vink
25830
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25600
25831
 
25601
25832
  Permission is hereby granted, free of charge, to any person obtaining a copy
25602
25833
  of this software and associated documentation files (the "Software"), to deal
@@ -25621,6 +25852,32 @@ polars-lazy LICENSE
25621
25852
  ================================================================================
25622
25853
 
25623
25854
  Copyright (c) 2020 Ritchie Vink
25855
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25856
+
25857
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25858
+ of this software and associated documentation files (the "Software"), to deal
25859
+ in the Software without restriction, including without limitation the rights
25860
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25861
+ copies of the Software, and to permit persons to whom the Software is
25862
+ furnished to do so, subject to the following conditions:
25863
+
25864
+ The above copyright notice and this permission notice shall be included in all
25865
+ copies or substantial portions of the Software.
25866
+
25867
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25868
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25869
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25870
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25871
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25872
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25873
+ SOFTWARE.
25874
+
25875
+ ================================================================================
25876
+ polars-mem-engine LICENSE
25877
+ ================================================================================
25878
+
25879
+ Copyright (c) 2020 Ritchie Vink
25880
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25624
25881
 
25625
25882
  Permission is hereby granted, free of charge, to any person obtaining a copy
25626
25883
  of this software and associated documentation files (the "Software"), to deal
@@ -25645,6 +25902,7 @@ polars-ops LICENSE
25645
25902
  ================================================================================
25646
25903
 
25647
25904
  Copyright (c) 2020 Ritchie Vink
25905
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25648
25906
 
25649
25907
  Permission is hereby granted, free of charge, to any person obtaining a copy
25650
25908
  of this software and associated documentation files (the "Software"), to deal
@@ -25870,6 +26128,7 @@ polars-pipe LICENSE
25870
26128
  ================================================================================
25871
26129
 
25872
26130
  Copyright (c) 2020 Ritchie Vink
26131
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25873
26132
 
25874
26133
  Permission is hereby granted, free of charge, to any person obtaining a copy
25875
26134
  of this software and associated documentation files (the "Software"), to deal
@@ -25894,6 +26153,7 @@ polars-plan LICENSE
25894
26153
  ================================================================================
25895
26154
 
25896
26155
  Copyright (c) 2020 Ritchie Vink
26156
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25897
26157
 
25898
26158
  Permission is hereby granted, free of charge, to any person obtaining a copy
25899
26159
  of this software and associated documentation files (the "Software"), to deal
@@ -25918,6 +26178,7 @@ polars-row LICENSE
25918
26178
  ================================================================================
25919
26179
 
25920
26180
  Copyright (c) 2020 Ritchie Vink
26181
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25921
26182
 
25922
26183
  Permission is hereby granted, free of charge, to any person obtaining a copy
25923
26184
  of this software and associated documentation files (the "Software"), to deal
@@ -25942,6 +26203,7 @@ polars-sql LICENSE
25942
26203
  ================================================================================
25943
26204
 
25944
26205
  Copyright (c) 2020 Ritchie Vink
26206
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25945
26207
 
25946
26208
  Permission is hereby granted, free of charge, to any person obtaining a copy
25947
26209
  of this software and associated documentation files (the "Software"), to deal
@@ -25966,6 +26228,7 @@ polars-time LICENSE
25966
26228
  ================================================================================
25967
26229
 
25968
26230
  Copyright (c) 2020 Ritchie Vink
26231
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25969
26232
 
25970
26233
  Permission is hereby granted, free of charge, to any person obtaining a copy
25971
26234
  of this software and associated documentation files (the "Software"), to deal
@@ -25990,6 +26253,7 @@ polars-utils LICENSE
25990
26253
  ================================================================================
25991
26254
 
25992
26255
  Copyright (c) 2020 Ritchie Vink
26256
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
25993
26257
 
25994
26258
  Permission is hereby granted, free of charge, to any person obtaining a copy
25995
26259
  of this software and associated documentation files (the "Software"), to deal
@@ -35217,7 +35481,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
35217
35481
  DEALINGS IN THE SOFTWARE.
35218
35482
 
35219
35483
  ================================================================================
35220
- syn v2.0.46 LICENSE-APACHE
35484
+ syn v2.0.67 LICENSE-APACHE
35221
35485
  ================================================================================
35222
35486
 
35223
35487
  Apache License
@@ -35398,7 +35662,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
35398
35662
  END OF TERMS AND CONDITIONS
35399
35663
 
35400
35664
  ================================================================================
35401
- syn v2.0.46 LICENSE-MIT
35665
+ syn v2.0.67 LICENSE-MIT
35402
35666
  ================================================================================
35403
35667
 
35404
35668
  Permission is hereby granted, free of charge, to any
@@ -36093,31 +36357,27 @@ DEALINGS IN THE SOFTWARE.
36093
36357
  tokio LICENSE
36094
36358
  ================================================================================
36095
36359
 
36096
- Copyright (c) 2023 Tokio Contributors
36360
+ MIT License
36097
36361
 
36098
- Permission is hereby granted, free of charge, to any
36099
- person obtaining a copy of this software and associated
36100
- documentation files (the "Software"), to deal in the
36101
- Software without restriction, including without
36102
- limitation the rights to use, copy, modify, merge,
36103
- publish, distribute, sublicense, and/or sell copies of
36104
- the Software, and to permit persons to whom the Software
36105
- is furnished to do so, subject to the following
36106
- conditions:
36362
+ Copyright (c) Tokio Contributors
36107
36363
 
36108
- The above copyright notice and this permission notice
36109
- shall be included in all copies or substantial portions
36110
- of the Software.
36364
+ Permission is hereby granted, free of charge, to any person obtaining a copy
36365
+ of this software and associated documentation files (the "Software"), to deal
36366
+ in the Software without restriction, including without limitation the rights
36367
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36368
+ copies of the Software, and to permit persons to whom the Software is
36369
+ furnished to do so, subject to the following conditions:
36111
36370
 
36112
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
36113
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
36114
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
36115
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
36116
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
36117
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36118
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
36119
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
36120
- DEALINGS IN THE SOFTWARE.
36371
+ The above copyright notice and this permission notice shall be included in all
36372
+ copies or substantial portions of the Software.
36373
+
36374
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
36375
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36376
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36377
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36378
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36379
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36380
+ SOFTWARE.
36121
36381
 
36122
36382
  ================================================================================
36123
36383
  tokio-util LICENSE