polars-df 0.11.0-x86_64-darwin → 0.12.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/Cargo.lock +360 -361
- data/LICENSE-THIRD-PARTY.txt +1067 -880
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +0 -0
- data/lib/polars/array_expr.rb +4 -4
- data/lib/polars/batched_csv_reader.rb +2 -2
- data/lib/polars/cat_expr.rb +0 -36
- data/lib/polars/cat_name_space.rb +0 -37
- data/lib/polars/data_frame.rb +93 -101
- data/lib/polars/data_types.rb +1 -1
- data/lib/polars/date_time_expr.rb +525 -573
- data/lib/polars/date_time_name_space.rb +263 -464
- data/lib/polars/dynamic_group_by.rb +3 -3
- data/lib/polars/exceptions.rb +3 -0
- data/lib/polars/expr.rb +367 -330
- data/lib/polars/expr_dispatch.rb +1 -1
- data/lib/polars/functions/aggregation/horizontal.rb +8 -8
- data/lib/polars/functions/as_datatype.rb +63 -40
- data/lib/polars/functions/lazy.rb +63 -14
- data/lib/polars/functions/lit.rb +1 -1
- data/lib/polars/functions/range/date_range.rb +18 -77
- data/lib/polars/functions/range/datetime_range.rb +4 -4
- data/lib/polars/functions/range/int_range.rb +2 -2
- data/lib/polars/functions/range/time_range.rb +4 -4
- data/lib/polars/functions/repeat.rb +1 -1
- data/lib/polars/functions/whenthen.rb +1 -1
- data/lib/polars/io/csv.rb +8 -8
- data/lib/polars/io/ipc.rb +3 -3
- data/lib/polars/io/json.rb +13 -2
- data/lib/polars/io/ndjson.rb +15 -4
- data/lib/polars/io/parquet.rb +5 -4
- data/lib/polars/lazy_frame.rb +120 -106
- data/lib/polars/lazy_group_by.rb +1 -1
- data/lib/polars/list_expr.rb +11 -11
- data/lib/polars/list_name_space.rb +5 -1
- data/lib/polars/rolling_group_by.rb +5 -7
- data/lib/polars/series.rb +105 -189
- data/lib/polars/string_expr.rb +42 -67
- data/lib/polars/string_name_space.rb +5 -4
- data/lib/polars/testing.rb +2 -2
- data/lib/polars/utils/constants.rb +9 -0
- data/lib/polars/utils/convert.rb +97 -0
- data/lib/polars/utils/parse.rb +89 -0
- data/lib/polars/utils/various.rb +76 -0
- data/lib/polars/utils/wrap.rb +19 -0
- data/lib/polars/utils.rb +4 -330
- data/lib/polars/version.rb +1 -1
- data/lib/polars/whenthen.rb +6 -6
- data/lib/polars.rb +11 -0
- metadata +7 -2
data/LICENSE-THIRD-PARTY.txt
CHANGED
@@ -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.
|
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.
|
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.
|
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.
|
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.
|
61
|
+
autocfg v1.3.0
|
62
62
|
https://github.com/cuviper/autocfg
|
63
63
|
Apache-2.0 OR MIT
|
64
64
|
|
@@ -70,11 +70,11 @@ 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.
|
73
|
+
bindgen v0.69.4
|
74
74
|
https://rust-lang.github.io/rust-bindgen/
|
75
75
|
BSD-3-Clause
|
76
76
|
|
77
|
-
bitflags v2.
|
77
|
+
bitflags v2.5.0
|
78
78
|
https://github.com/bitflags/bitflags
|
79
79
|
MIT OR Apache-2.0
|
80
80
|
|
@@ -82,23 +82,23 @@ brotli v5.0.0
|
|
82
82
|
https://github.com/dropbox/rust-brotli
|
83
83
|
BSD-3-Clause OR MIT
|
84
84
|
|
85
|
-
brotli-decompressor v4.0.
|
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.
|
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.
|
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.
|
97
|
+
bytes v1.6.0
|
98
98
|
https://github.com/tokio-rs/bytes
|
99
99
|
MIT
|
100
100
|
|
101
|
-
cc v1.0.
|
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.
|
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.
|
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.
|
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.
|
128
|
+
comfy-table v7.1.1
|
129
129
|
https://github.com/nukesor/comfy-table
|
130
130
|
MIT
|
131
131
|
|
@@ -141,27 +141,27 @@ crc-catalog v1.1.1
|
|
141
141
|
https://github.com/akhilles/crc-catalog.git
|
142
142
|
MIT OR Apache-2.0
|
143
143
|
|
144
|
-
crc32fast v1.
|
144
|
+
crc32fast v1.4.2
|
145
145
|
https://github.com/srijs/rust-crc32fast
|
146
146
|
MIT OR Apache-2.0
|
147
147
|
|
148
|
-
crossbeam-channel v0.5.
|
148
|
+
crossbeam-channel v0.5.13
|
149
149
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel
|
150
150
|
MIT OR Apache-2.0
|
151
151
|
|
152
|
-
crossbeam-deque v0.8.
|
152
|
+
crossbeam-deque v0.8.5
|
153
153
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque
|
154
154
|
MIT OR Apache-2.0
|
155
155
|
|
156
|
-
crossbeam-epoch v0.9.
|
156
|
+
crossbeam-epoch v0.9.18
|
157
157
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch
|
158
158
|
MIT OR Apache-2.0
|
159
159
|
|
160
|
-
crossbeam-queue v0.3.
|
160
|
+
crossbeam-queue v0.3.11
|
161
161
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue
|
162
162
|
MIT OR Apache-2.0
|
163
163
|
|
164
|
-
crossbeam-utils v0.8.
|
164
|
+
crossbeam-utils v0.8.20
|
165
165
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils
|
166
166
|
MIT OR Apache-2.0
|
167
167
|
|
@@ -169,7 +169,7 @@ crossterm v0.27.0
|
|
169
169
|
https://github.com/crossterm-rs/crossterm
|
170
170
|
MIT
|
171
171
|
|
172
|
-
dyn-clone v1.0.
|
172
|
+
dyn-clone v1.0.17
|
173
173
|
https://github.com/dtolnay/dyn-clone
|
174
174
|
MIT OR Apache-2.0
|
175
175
|
|
@@ -177,7 +177,7 @@ either v1.12.0
|
|
177
177
|
https://github.com/rayon-rs/either
|
178
178
|
MIT OR Apache-2.0
|
179
179
|
|
180
|
-
enum_dispatch v0.3.
|
180
|
+
enum_dispatch v0.3.13
|
181
181
|
https://gitlab.com/antonok/enum_dispatch
|
182
182
|
MIT OR Apache-2.0
|
183
183
|
|
@@ -197,7 +197,7 @@ fast-float v0.2.0
|
|
197
197
|
https://github.com/aldanor/fast-float-rust
|
198
198
|
MIT OR Apache-2.0
|
199
199
|
|
200
|
-
flate2 v1.0.
|
200
|
+
flate2 v1.0.30
|
201
201
|
https://github.com/rust-lang/flate2-rs
|
202
202
|
MIT OR Apache-2.0
|
203
203
|
|
@@ -245,7 +245,7 @@ futures-util v0.3.30
|
|
245
245
|
https://rust-lang.github.io/futures-rs
|
246
246
|
MIT OR Apache-2.0
|
247
247
|
|
248
|
-
getrandom v0.2.
|
248
|
+
getrandom v0.2.15
|
249
249
|
https://github.com/rust-random/getrandom
|
250
250
|
MIT OR Apache-2.0
|
251
251
|
|
@@ -253,19 +253,15 @@ glob v0.3.1
|
|
253
253
|
https://github.com/rust-lang/glob
|
254
254
|
MIT OR Apache-2.0
|
255
255
|
|
256
|
-
halfbrown v0.2.
|
256
|
+
halfbrown v0.2.5
|
257
257
|
https://github.com/Licenser/halfbrown
|
258
258
|
Apache-2.0/MIT
|
259
259
|
|
260
|
-
hashbrown v0.
|
260
|
+
hashbrown v0.14.5
|
261
261
|
https://github.com/rust-lang/hashbrown
|
262
262
|
MIT OR Apache-2.0
|
263
263
|
|
264
|
-
|
265
|
-
https://github.com/rust-lang/hashbrown
|
266
|
-
MIT OR Apache-2.0
|
267
|
-
|
268
|
-
heck v0.4.1
|
264
|
+
heck v0.5.0
|
269
265
|
https://github.com/withoutboats/heck
|
270
266
|
MIT OR Apache-2.0
|
271
267
|
|
@@ -277,15 +273,19 @@ home v0.5.9
|
|
277
273
|
https://github.com/rust-lang/cargo
|
278
274
|
MIT OR Apache-2.0
|
279
275
|
|
280
|
-
iana-time-zone v0.1.
|
276
|
+
iana-time-zone v0.1.60
|
281
277
|
https://github.com/strawlab/iana-time-zone
|
282
278
|
MIT OR Apache-2.0
|
283
279
|
|
284
|
-
indexmap v2.
|
285
|
-
https://github.com/
|
280
|
+
indexmap v2.2.6
|
281
|
+
https://github.com/indexmap-rs/indexmap
|
286
282
|
Apache-2.0 OR MIT
|
287
283
|
|
288
|
-
|
284
|
+
itertools v0.12.1
|
285
|
+
https://github.com/rust-itertools/itertools
|
286
|
+
MIT OR Apache-2.0
|
287
|
+
|
288
|
+
itoa v1.0.11
|
289
289
|
https://github.com/dtolnay/itoa
|
290
290
|
MIT OR Apache-2.0
|
291
291
|
|
@@ -293,17 +293,17 @@ itoap v1.0.1
|
|
293
293
|
https://github.com/Kogia-sima/itoap
|
294
294
|
MIT
|
295
295
|
|
296
|
-
jobserver v0.1.
|
297
|
-
https://github.com/
|
298
|
-
MIT
|
296
|
+
jobserver v0.1.31
|
297
|
+
https://github.com/rust-lang/jobserver-rs
|
298
|
+
MIT OR Apache-2.0
|
299
299
|
|
300
300
|
jsonpath_lib_polars_vendor v0.0.1
|
301
301
|
https://github.com/freestrings/jsonpath
|
302
302
|
MIT
|
303
303
|
|
304
|
-
lazy_static v1.
|
304
|
+
lazy_static v1.5.0
|
305
305
|
https://github.com/rust-lang-nursery/lazy-static.rs
|
306
|
-
MIT
|
306
|
+
MIT OR Apache-2.0
|
307
307
|
|
308
308
|
lazycell v1.3.0
|
309
309
|
https://github.com/indiv0/lazycell
|
@@ -333,7 +333,7 @@ lexical-write-integer v0.8.5
|
|
333
333
|
https://github.com/Alexhuszagh/rust-lexical
|
334
334
|
MIT/Apache-2.0
|
335
335
|
|
336
|
-
libc v0.2.
|
336
|
+
libc v0.2.155
|
337
337
|
https://github.com/rust-lang/libc
|
338
338
|
MIT OR Apache-2.0
|
339
339
|
|
@@ -345,7 +345,7 @@ libflate_lz77 v1.2.0
|
|
345
345
|
https://github.com/sile/libflate
|
346
346
|
MIT
|
347
347
|
|
348
|
-
libloading v0.8.
|
348
|
+
libloading v0.8.3
|
349
349
|
https://github.com/nagisa/rust_libloading/
|
350
350
|
ISC
|
351
351
|
|
@@ -353,27 +353,27 @@ libm v0.2.8
|
|
353
353
|
https://github.com/rust-lang/libm
|
354
354
|
MIT OR Apache-2.0
|
355
355
|
|
356
|
-
libmimalloc-sys v0.1.
|
356
|
+
libmimalloc-sys v0.1.38
|
357
357
|
https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys
|
358
358
|
MIT
|
359
359
|
|
360
|
-
lock_api v0.4.
|
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.
|
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.
|
368
|
+
lz4 v1.25.0
|
369
369
|
https://github.com/10xGenomics/lz4-rs
|
370
370
|
MIT
|
371
371
|
|
372
|
-
lz4-sys v1.9.
|
372
|
+
lz4-sys v1.9.5
|
373
373
|
https://github.com/10xGenomics/lz4-rs
|
374
374
|
MIT
|
375
375
|
|
376
|
-
magnus v0.
|
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.
|
384
|
+
memchr v2.7.4
|
385
385
|
https://github.com/BurntSushi/memchr
|
386
386
|
Unlicense OR MIT
|
387
387
|
|
@@ -389,7 +389,7 @@ memmap2 v0.7.1
|
|
389
389
|
https://github.com/RazrFalcon/memmap2-rs
|
390
390
|
MIT OR Apache-2.0
|
391
391
|
|
392
|
-
mimalloc v0.1.
|
392
|
+
mimalloc v0.1.42
|
393
393
|
https://github.com/purpleprotocol/mimalloc_rust
|
394
394
|
MIT
|
395
395
|
|
@@ -397,19 +397,19 @@ minimal-lexical v0.2.1
|
|
397
397
|
https://github.com/Alexhuszagh/minimal-lexical
|
398
398
|
MIT/Apache-2.0
|
399
399
|
|
400
|
-
miniz_oxide v0.7.
|
400
|
+
miniz_oxide v0.7.4
|
401
401
|
https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
|
402
402
|
MIT OR Zlib OR Apache-2.0
|
403
403
|
|
404
|
-
mio v0.8.
|
404
|
+
mio v0.8.11
|
405
405
|
https://github.com/tokio-rs/mio
|
406
406
|
MIT
|
407
407
|
|
408
|
-
multiversion v0.7.
|
408
|
+
multiversion v0.7.4
|
409
409
|
https://github.com/calebzulawski/multiversion
|
410
410
|
MIT OR Apache-2.0
|
411
411
|
|
412
|
-
multiversion-macros v0.7.
|
412
|
+
multiversion-macros v0.7.4
|
413
413
|
https://github.com/calebzulawski/multiversion
|
414
414
|
MIT OR Apache-2.0
|
415
415
|
|
@@ -433,11 +433,11 @@ once_cell v1.19.0
|
|
433
433
|
https://github.com/matklad/once_cell
|
434
434
|
MIT OR Apache-2.0
|
435
435
|
|
436
|
-
parking_lot v0.12.
|
436
|
+
parking_lot v0.12.3
|
437
437
|
https://github.com/Amanieu/parking_lot
|
438
438
|
MIT OR Apache-2.0
|
439
439
|
|
440
|
-
parking_lot_core v0.9.
|
440
|
+
parking_lot_core v0.9.10
|
441
441
|
https://github.com/Amanieu/parking_lot
|
442
442
|
MIT OR Apache-2.0
|
443
443
|
|
@@ -445,14 +445,10 @@ parquet-format-safe v0.2.4
|
|
445
445
|
https://github.com/jorgecarleitao/parquet-format-safe
|
446
446
|
MIT/Apache-2.0
|
447
447
|
|
448
|
-
parse-zoneinfo v0.3.
|
449
|
-
https://github.com/
|
448
|
+
parse-zoneinfo v0.3.1
|
449
|
+
https://github.com/chronotope/chrono-tz
|
450
450
|
MIT
|
451
451
|
|
452
|
-
peeking_take_while v0.1.2
|
453
|
-
https://github.com/fitzgen/peeking_take_while
|
454
|
-
Apache-2.0/MIT
|
455
|
-
|
456
452
|
percent-encoding v2.3.1
|
457
453
|
https://github.com/servo/rust-url/
|
458
454
|
MIT OR Apache-2.0
|
@@ -473,7 +469,7 @@ phf_shared v0.11.2
|
|
473
469
|
https://github.com/rust-phf/rust-phf
|
474
470
|
MIT
|
475
471
|
|
476
|
-
pin-project-lite v0.2.
|
472
|
+
pin-project-lite v0.2.14
|
477
473
|
https://github.com/taiki-e/pin-project-lite
|
478
474
|
Apache-2.0 OR MIT
|
479
475
|
|
@@ -481,7 +477,7 @@ pin-utils v0.1.0
|
|
481
477
|
https://github.com/rust-lang-nursery/pin-utils
|
482
478
|
MIT OR Apache-2.0
|
483
479
|
|
484
|
-
pkg-config v0.3.
|
480
|
+
pkg-config v0.3.30
|
485
481
|
https://github.com/rust-lang/pkg-config-rs
|
486
482
|
MIT OR Apache-2.0
|
487
483
|
|
@@ -489,74 +485,78 @@ planus v0.3.1
|
|
489
485
|
https://github.com/planus-org/planus
|
490
486
|
MIT/Apache-2.0
|
491
487
|
|
492
|
-
polars v0.
|
488
|
+
polars v0.41.3
|
493
489
|
https://www.pola.rs/
|
494
490
|
MIT
|
495
491
|
|
496
|
-
polars-arrow v0.
|
492
|
+
polars-arrow v0.41.3
|
497
493
|
https://www.pola.rs/
|
498
494
|
MIT AND Apache-2.0
|
499
495
|
|
500
496
|
polars-arrow-format v0.1.0
|
501
497
|
https://github.com/polar-rs/arrow-format
|
502
498
|
|
503
|
-
polars-compute v0.
|
499
|
+
polars-compute v0.41.3
|
504
500
|
https://www.pola.rs/
|
505
501
|
MIT
|
506
502
|
|
507
|
-
polars-core v0.
|
503
|
+
polars-core v0.41.3
|
508
504
|
https://www.pola.rs/
|
509
505
|
MIT
|
510
506
|
|
511
|
-
polars-error v0.
|
507
|
+
polars-error v0.41.3
|
512
508
|
https://www.pola.rs/
|
513
509
|
MIT
|
514
510
|
|
515
|
-
polars-expr v0.
|
511
|
+
polars-expr v0.41.3
|
516
512
|
https://www.pola.rs/
|
517
513
|
MIT
|
518
514
|
|
519
|
-
polars-io v0.
|
515
|
+
polars-io v0.41.3
|
520
516
|
https://www.pola.rs/
|
521
517
|
MIT
|
522
518
|
|
523
|
-
polars-json v0.
|
519
|
+
polars-json v0.41.3
|
524
520
|
https://www.pola.rs/
|
525
521
|
MIT
|
526
522
|
|
527
|
-
polars-lazy v0.
|
523
|
+
polars-lazy v0.41.3
|
528
524
|
https://www.pola.rs/
|
529
525
|
MIT
|
530
526
|
|
531
|
-
polars-
|
527
|
+
polars-mem-engine v0.41.3
|
532
528
|
https://www.pola.rs/
|
533
529
|
MIT
|
534
530
|
|
535
|
-
polars-
|
531
|
+
polars-ops v0.41.3
|
532
|
+
https://www.pola.rs/
|
533
|
+
MIT
|
534
|
+
|
535
|
+
polars-parquet v0.41.3
|
536
536
|
https://www.pola.rs/
|
537
537
|
MIT AND Apache-2.0
|
538
538
|
|
539
|
-
polars-pipe v0.
|
539
|
+
polars-pipe v0.41.3
|
540
540
|
https://www.pola.rs/
|
541
541
|
MIT
|
542
542
|
|
543
|
-
polars-plan v0.
|
543
|
+
polars-plan v0.41.3
|
544
544
|
https://www.pola.rs/
|
545
545
|
MIT
|
546
546
|
|
547
|
-
polars-row v0.
|
547
|
+
polars-row v0.41.3
|
548
548
|
https://www.pola.rs/
|
549
549
|
MIT
|
550
550
|
|
551
|
-
polars-sql v0.
|
551
|
+
polars-sql v0.41.3
|
552
552
|
https://www.pola.rs/
|
553
553
|
MIT
|
554
554
|
|
555
|
-
polars-time v0.
|
555
|
+
polars-time v0.41.3
|
556
556
|
https://www.pola.rs/
|
557
557
|
MIT
|
558
558
|
|
559
|
-
polars-utils v0.
|
559
|
+
polars-utils v0.41.3
|
560
560
|
https://www.pola.rs/
|
561
561
|
MIT
|
562
562
|
|
@@ -564,7 +564,7 @@ ppv-lite86 v0.2.17
|
|
564
564
|
https://github.com/cryptocorrosion/cryptocorrosion
|
565
565
|
MIT/Apache-2.0
|
566
566
|
|
567
|
-
proc-macro2 v1.0.
|
567
|
+
proc-macro2 v1.0.86
|
568
568
|
https://github.com/dtolnay/proc-macro2
|
569
569
|
MIT OR Apache-2.0
|
570
570
|
|
@@ -572,7 +572,7 @@ psm v0.1.21
|
|
572
572
|
https://github.com/rust-lang/stacker/
|
573
573
|
MIT OR Apache-2.0
|
574
574
|
|
575
|
-
quote v1.0.
|
575
|
+
quote v1.0.36
|
576
576
|
https://github.com/dtolnay/quote
|
577
577
|
MIT OR Apache-2.0
|
578
578
|
|
@@ -592,11 +592,11 @@ rand_distr v0.4.3
|
|
592
592
|
https://rust-random.github.io/book
|
593
593
|
MIT OR Apache-2.0
|
594
594
|
|
595
|
-
raw-cpuid v11.0.
|
595
|
+
raw-cpuid v11.0.2
|
596
596
|
https://github.com/gz/rust-cpuid
|
597
597
|
MIT
|
598
598
|
|
599
|
-
rayon v1.
|
599
|
+
rayon v1.10.0
|
600
600
|
https://github.com/rayon-rs/rayon
|
601
601
|
MIT OR Apache-2.0
|
602
602
|
|
@@ -604,11 +604,11 @@ rayon-core v1.12.1
|
|
604
604
|
https://github.com/rayon-rs/rayon
|
605
605
|
MIT OR Apache-2.0
|
606
606
|
|
607
|
-
rb-sys v0.9.
|
607
|
+
rb-sys v0.9.98
|
608
608
|
https://github.com/oxidize-rb/rb-sys
|
609
609
|
MIT OR Apache-2.0
|
610
610
|
|
611
|
-
rb-sys-build v0.9.
|
611
|
+
rb-sys-build v0.9.98
|
612
612
|
https://github.com/oxidize-rb/rb-sys
|
613
613
|
MIT OR Apache-2.0
|
614
614
|
|
@@ -624,23 +624,23 @@ recursive-proc-macro-impl v0.1.1
|
|
624
624
|
https://github.com/orlp/recursive
|
625
625
|
MIT
|
626
626
|
|
627
|
-
ref-cast v1.0.
|
627
|
+
ref-cast v1.0.23
|
628
628
|
https://github.com/dtolnay/ref-cast
|
629
629
|
MIT OR Apache-2.0
|
630
630
|
|
631
|
-
ref-cast-impl v1.0.
|
631
|
+
ref-cast-impl v1.0.23
|
632
632
|
https://github.com/dtolnay/ref-cast
|
633
633
|
MIT OR Apache-2.0
|
634
634
|
|
635
|
-
regex v1.10.
|
635
|
+
regex v1.10.5
|
636
636
|
https://github.com/rust-lang/regex
|
637
637
|
MIT OR Apache-2.0
|
638
638
|
|
639
|
-
regex-automata v0.4.
|
639
|
+
regex-automata v0.4.7
|
640
640
|
https://github.com/rust-lang/regex/tree/master/regex-automata
|
641
641
|
MIT OR Apache-2.0
|
642
642
|
|
643
|
-
regex-syntax v0.8.
|
643
|
+
regex-syntax v0.8.4
|
644
644
|
https://github.com/rust-lang/regex/tree/master/regex-syntax
|
645
645
|
MIT OR Apache-2.0
|
646
646
|
|
@@ -652,11 +652,11 @@ rustc-hash v1.1.0
|
|
652
652
|
https://github.com/rust-lang-nursery/rustc-hash
|
653
653
|
Apache-2.0/MIT
|
654
654
|
|
655
|
-
rustversion v1.0.
|
655
|
+
rustversion v1.0.17
|
656
656
|
https://github.com/dtolnay/rustversion
|
657
657
|
MIT OR Apache-2.0
|
658
658
|
|
659
|
-
ryu v1.0.
|
659
|
+
ryu v1.0.18
|
660
660
|
https://github.com/dtolnay/ryu
|
661
661
|
Apache-2.0 OR BSL-1.0
|
662
662
|
|
@@ -668,15 +668,15 @@ seq-macro v0.3.5
|
|
668
668
|
https://github.com/dtolnay/seq-macro
|
669
669
|
MIT OR Apache-2.0
|
670
670
|
|
671
|
-
serde v1.0.
|
671
|
+
serde v1.0.203
|
672
672
|
https://serde.rs
|
673
673
|
MIT OR Apache-2.0
|
674
674
|
|
675
|
-
serde_derive v1.0.
|
675
|
+
serde_derive v1.0.203
|
676
676
|
https://serde.rs
|
677
677
|
MIT OR Apache-2.0
|
678
678
|
|
679
|
-
serde_json v1.0.
|
679
|
+
serde_json v1.0.117
|
680
680
|
https://github.com/serde-rs/json
|
681
681
|
MIT OR Apache-2.0
|
682
682
|
|
@@ -684,11 +684,11 @@ shell-words v1.1.0
|
|
684
684
|
https://github.com/tmiasko/shell-words
|
685
685
|
MIT/Apache-2.0
|
686
686
|
|
687
|
-
shlex v1.
|
687
|
+
shlex v1.3.0
|
688
688
|
https://github.com/comex/rust-shlex
|
689
689
|
MIT OR Apache-2.0
|
690
690
|
|
691
|
-
simd-json v0.13.
|
691
|
+
simd-json v0.13.10
|
692
692
|
https://github.com/simd-lite/simd-json
|
693
693
|
Apache-2.0 OR MIT
|
694
694
|
|
@@ -704,7 +704,7 @@ slab v0.4.9
|
|
704
704
|
https://github.com/tokio-rs/slab
|
705
705
|
MIT
|
706
706
|
|
707
|
-
smallvec v1.
|
707
|
+
smallvec v1.13.2
|
708
708
|
https://github.com/servo/rust-smallvec
|
709
709
|
MIT OR Apache-2.0
|
710
710
|
|
@@ -716,11 +716,11 @@ snap v1.1.1
|
|
716
716
|
https://github.com/BurntSushi/rust-snappy
|
717
717
|
BSD-3-Clause
|
718
718
|
|
719
|
-
socket2 v0.5.
|
719
|
+
socket2 v0.5.7
|
720
720
|
https://github.com/rust-lang/socket2
|
721
721
|
MIT OR Apache-2.0
|
722
722
|
|
723
|
-
sqlparser v0.
|
723
|
+
sqlparser v0.47.0
|
724
724
|
https://github.com/sqlparser-rs/sqlparser-rs
|
725
725
|
Apache-2.0
|
726
726
|
|
@@ -744,15 +744,11 @@ strength_reduce v0.2.4
|
|
744
744
|
http://github.com/ejmahler/strength_reduce
|
745
745
|
MIT OR Apache-2.0
|
746
746
|
|
747
|
-
strum v0.
|
748
|
-
https://github.com/Peternator7/strum
|
749
|
-
MIT
|
750
|
-
|
751
|
-
strum_macros v0.25.3
|
747
|
+
strum v0.26.2
|
752
748
|
https://github.com/Peternator7/strum
|
753
749
|
MIT
|
754
750
|
|
755
|
-
strum_macros v0.26.
|
751
|
+
strum_macros v0.26.4
|
756
752
|
https://github.com/Peternator7/strum
|
757
753
|
MIT
|
758
754
|
|
@@ -760,31 +756,31 @@ syn v1.0.109
|
|
760
756
|
https://github.com/dtolnay/syn
|
761
757
|
MIT OR Apache-2.0
|
762
758
|
|
763
|
-
syn v2.0.
|
759
|
+
syn v2.0.67
|
764
760
|
https://github.com/dtolnay/syn
|
765
761
|
MIT OR Apache-2.0
|
766
762
|
|
767
|
-
sysinfo v0.30.
|
763
|
+
sysinfo v0.30.12
|
768
764
|
https://github.com/GuillaumeGomez/sysinfo
|
769
765
|
MIT
|
770
766
|
|
771
|
-
target-features v0.1.
|
767
|
+
target-features v0.1.6
|
772
768
|
https://github.com/calebzulawski/target-features
|
773
769
|
MIT OR Apache-2.0
|
774
770
|
|
775
|
-
thiserror v1.0.
|
771
|
+
thiserror v1.0.61
|
776
772
|
https://github.com/dtolnay/thiserror
|
777
773
|
MIT OR Apache-2.0
|
778
774
|
|
779
|
-
thiserror-impl v1.0.
|
775
|
+
thiserror-impl v1.0.61
|
780
776
|
https://github.com/dtolnay/thiserror
|
781
777
|
MIT OR Apache-2.0
|
782
778
|
|
783
|
-
tokio v1.
|
779
|
+
tokio v1.38.0
|
784
780
|
https://tokio.rs
|
785
781
|
MIT
|
786
782
|
|
787
|
-
tokio-util v0.7.
|
783
|
+
tokio-util v0.7.11
|
788
784
|
https://tokio.rs
|
789
785
|
MIT
|
790
786
|
|
@@ -792,23 +788,23 @@ unicode-ident v1.0.12
|
|
792
788
|
https://github.com/dtolnay/unicode-ident
|
793
789
|
(MIT OR Apache-2.0) AND Unicode-DFS-2016
|
794
790
|
|
795
|
-
unicode-reverse v1.0.
|
791
|
+
unicode-reverse v1.0.9
|
796
792
|
https://github.com/mbrubeck/unicode-reverse
|
797
|
-
MIT
|
793
|
+
MIT OR Apache-2.0
|
798
794
|
|
799
|
-
unicode-segmentation v1.
|
795
|
+
unicode-segmentation v1.11.0
|
800
796
|
https://github.com/unicode-rs/unicode-segmentation
|
801
797
|
MIT/Apache-2.0
|
802
798
|
|
803
|
-
unicode-width v0.1.
|
799
|
+
unicode-width v0.1.13
|
804
800
|
https://github.com/unicode-rs/unicode-width
|
805
|
-
MIT
|
801
|
+
MIT OR Apache-2.0
|
806
802
|
|
807
|
-
uuid v1.
|
803
|
+
uuid v1.8.0
|
808
804
|
https://github.com/uuid-rs/uuid
|
809
805
|
Apache-2.0 OR MIT
|
810
806
|
|
811
|
-
value-trait v0.8.
|
807
|
+
value-trait v0.8.1
|
812
808
|
https://github.com/simd-lite/value-trait
|
813
809
|
Apache-2.0/MIT
|
814
810
|
|
@@ -816,23 +812,23 @@ version_check v0.9.4
|
|
816
812
|
https://github.com/SergioBenitez/version_check
|
817
813
|
MIT/Apache-2.0
|
818
814
|
|
819
|
-
xxhash-rust v0.8.
|
815
|
+
xxhash-rust v0.8.10
|
820
816
|
https://github.com/DoumanAsh/xxhash-rust
|
821
817
|
BSL-1.0
|
822
818
|
|
823
|
-
zerocopy v0.7.
|
819
|
+
zerocopy v0.7.34
|
824
820
|
https://github.com/google/zerocopy
|
825
821
|
BSD-2-Clause OR Apache-2.0 OR MIT
|
826
822
|
|
827
|
-
zstd v0.13.
|
823
|
+
zstd v0.13.1
|
828
824
|
https://github.com/gyscos/zstd-rs
|
829
825
|
MIT
|
830
826
|
|
831
|
-
zstd-safe v7.
|
827
|
+
zstd-safe v7.1.0
|
832
828
|
https://github.com/gyscos/zstd-rs
|
833
829
|
MIT/Apache-2.0
|
834
830
|
|
835
|
-
zstd-sys v2.0.
|
831
|
+
zstd-sys v2.0.11+zstd.1.5.6
|
836
832
|
https://github.com/gyscos/zstd-rs
|
837
833
|
MIT/Apache-2.0
|
838
834
|
|
@@ -1469,15 +1465,213 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
1469
1465
|
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.
|
1470
1466
|
|
1471
1467
|
================================================================================
|
1472
|
-
allocator-api2
|
1468
|
+
allocator-api2 LICENSE-APACHE
|
1473
1469
|
================================================================================
|
1474
1470
|
|
1475
|
-
|
1471
|
+
Apache License
|
1472
|
+
Version 2.0, January 2004
|
1473
|
+
http://www.apache.org/licenses/
|
1474
|
+
|
1475
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
1476
|
+
|
1477
|
+
1. Definitions.
|
1478
|
+
|
1479
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
1480
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
1481
|
+
|
1482
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
1483
|
+
the copyright owner that is granting the License.
|
1484
|
+
|
1485
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
1486
|
+
other entities that control, are controlled by, or are under common
|
1487
|
+
control with that entity. For the purposes of this definition,
|
1488
|
+
"control" means (i) the power, direct or indirect, to cause the
|
1489
|
+
direction or management of such entity, whether by contract or
|
1490
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
1491
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
1492
|
+
|
1493
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
1494
|
+
exercising permissions granted by this License.
|
1495
|
+
|
1496
|
+
"Source" form shall mean the preferred form for making modifications,
|
1497
|
+
including but not limited to software source code, documentation
|
1498
|
+
source, and configuration files.
|
1499
|
+
|
1500
|
+
"Object" form shall mean any form resulting from mechanical
|
1501
|
+
transformation or translation of a Source form, including but
|
1502
|
+
not limited to compiled object code, generated documentation,
|
1503
|
+
and conversions to other media types.
|
1504
|
+
|
1505
|
+
"Work" shall mean the work of authorship, whether in Source or
|
1506
|
+
Object form, made available under the License, as indicated by a
|
1507
|
+
copyright notice that is included in or attached to the work
|
1508
|
+
(an example is provided in the Appendix below).
|
1509
|
+
|
1510
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
1511
|
+
form, that is based on (or derived from) the Work and for which the
|
1512
|
+
editorial revisions, annotations, elaborations, or other modifications
|
1513
|
+
represent, as a whole, an original work of authorship. For the purposes
|
1514
|
+
of this License, Derivative Works shall not include works that remain
|
1515
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
1516
|
+
the Work and Derivative Works thereof.
|
1517
|
+
|
1518
|
+
"Contribution" shall mean any work of authorship, including
|
1519
|
+
the original version of the Work and any modifications or additions
|
1520
|
+
to that Work or Derivative Works thereof, that is intentionally
|
1521
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
1522
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
1523
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
1524
|
+
means any form of electronic, verbal, or written communication sent
|
1525
|
+
to the Licensor or its representatives, including but not limited to
|
1526
|
+
communication on electronic mailing lists, source code control systems,
|
1527
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
1528
|
+
Licensor for the purpose of discussing and improving the Work, but
|
1529
|
+
excluding communication that is conspicuously marked or otherwise
|
1530
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
1531
|
+
|
1532
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
1533
|
+
on behalf of whom a Contribution has been received by Licensor and
|
1534
|
+
subsequently incorporated within the Work.
|
1535
|
+
|
1536
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
1537
|
+
this License, each Contributor hereby grants to You a perpetual,
|
1538
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
1539
|
+
copyright license to reproduce, prepare Derivative Works of,
|
1540
|
+
publicly display, publicly perform, sublicense, and distribute the
|
1541
|
+
Work and such Derivative Works in Source or Object form.
|
1542
|
+
|
1543
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
1544
|
+
this License, each Contributor hereby grants to You a perpetual,
|
1545
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
1546
|
+
(except as stated in this section) patent license to make, have made,
|
1547
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
1548
|
+
where such license applies only to those patent claims licensable
|
1549
|
+
by such Contributor that are necessarily infringed by their
|
1550
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
1551
|
+
with the Work to which such Contribution(s) was submitted. If You
|
1552
|
+
institute patent litigation against any entity (including a
|
1553
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
1554
|
+
or a Contribution incorporated within the Work constitutes direct
|
1555
|
+
or contributory patent infringement, then any patent licenses
|
1556
|
+
granted to You under this License for that Work shall terminate
|
1557
|
+
as of the date such litigation is filed.
|
1558
|
+
|
1559
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
1560
|
+
Work or Derivative Works thereof in any medium, with or without
|
1561
|
+
modifications, and in Source or Object form, provided that You
|
1562
|
+
meet the following conditions:
|
1563
|
+
|
1564
|
+
(a) You must give any other recipients of the Work or
|
1565
|
+
Derivative Works a copy of this License; and
|
1566
|
+
|
1567
|
+
(b) You must cause any modified files to carry prominent notices
|
1568
|
+
stating that You changed the files; and
|
1569
|
+
|
1570
|
+
(c) You must retain, in the Source form of any Derivative Works
|
1571
|
+
that You distribute, all copyright, patent, trademark, and
|
1572
|
+
attribution notices from the Source form of the Work,
|
1573
|
+
excluding those notices that do not pertain to any part of
|
1574
|
+
the Derivative Works; and
|
1575
|
+
|
1576
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
1577
|
+
distribution, then any Derivative Works that You distribute must
|
1578
|
+
include a readable copy of the attribution notices contained
|
1579
|
+
within such NOTICE file, excluding those notices that do not
|
1580
|
+
pertain to any part of the Derivative Works, in at least one
|
1581
|
+
of the following places: within a NOTICE text file distributed
|
1582
|
+
as part of the Derivative Works; within the Source form or
|
1583
|
+
documentation, if provided along with the Derivative Works; or,
|
1584
|
+
within a display generated by the Derivative Works, if and
|
1585
|
+
wherever such third-party notices normally appear. The contents
|
1586
|
+
of the NOTICE file are for informational purposes only and
|
1587
|
+
do not modify the License. You may add Your own attribution
|
1588
|
+
notices within Derivative Works that You distribute, alongside
|
1589
|
+
or as an addendum to the NOTICE text from the Work, provided
|
1590
|
+
that such additional attribution notices cannot be construed
|
1591
|
+
as modifying the License.
|
1592
|
+
|
1593
|
+
You may add Your own copyright statement to Your modifications and
|
1594
|
+
may provide additional or different license terms and conditions
|
1595
|
+
for use, reproduction, or distribution of Your modifications, or
|
1596
|
+
for any such Derivative Works as a whole, provided Your use,
|
1597
|
+
reproduction, and distribution of the Work otherwise complies with
|
1598
|
+
the conditions stated in this License.
|
1599
|
+
|
1600
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
1601
|
+
any Contribution intentionally submitted for inclusion in the Work
|
1602
|
+
by You to the Licensor shall be under the terms and conditions of
|
1603
|
+
this License, without any additional terms or conditions.
|
1604
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
1605
|
+
the terms of any separate license agreement you may have executed
|
1606
|
+
with Licensor regarding such Contributions.
|
1607
|
+
|
1608
|
+
6. Trademarks. This License does not grant permission to use the trade
|
1609
|
+
names, trademarks, service marks, or product names of the Licensor,
|
1610
|
+
except as required for reasonable and customary use in describing the
|
1611
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
1612
|
+
|
1613
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
1614
|
+
agreed to in writing, Licensor provides the Work (and each
|
1615
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
1616
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
1617
|
+
implied, including, without limitation, any warranties or conditions
|
1618
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
1619
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
1620
|
+
appropriateness of using or redistributing the Work and assume any
|
1621
|
+
risks associated with Your exercise of permissions under this License.
|
1622
|
+
|
1623
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
1624
|
+
whether in tort (including negligence), contract, or otherwise,
|
1625
|
+
unless required by applicable law (such as deliberate and grossly
|
1626
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
1627
|
+
liable to You for damages, including any direct, indirect, special,
|
1628
|
+
incidental, or consequential damages of any character arising as a
|
1629
|
+
result of this License or out of the use or inability to use the
|
1630
|
+
Work (including but not limited to damages for loss of goodwill,
|
1631
|
+
work stoppage, computer failure or malfunction, or any and all
|
1632
|
+
other commercial damages or losses), even if such Contributor
|
1633
|
+
has been advised of the possibility of such damages.
|
1634
|
+
|
1635
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
1636
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
1637
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
1638
|
+
or other liability obligations and/or rights consistent with this
|
1639
|
+
License. However, in accepting such obligations, You may act only
|
1640
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
1641
|
+
of any other Contributor, and only if You agree to indemnify,
|
1642
|
+
defend, and hold each Contributor harmless for any liability
|
1643
|
+
incurred by, or claims asserted against, such Contributor by reason
|
1644
|
+
of your accepting any such warranty or additional liability.
|
1645
|
+
|
1646
|
+
END OF TERMS AND CONDITIONS
|
1647
|
+
|
1648
|
+
================================================================================
|
1649
|
+
allocator-api2 LICENSE-MIT
|
1650
|
+
================================================================================
|
1476
1651
|
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1652
|
+
Permission is hereby granted, free of charge, to any
|
1653
|
+
person obtaining a copy of this software and associated
|
1654
|
+
documentation files (the "Software"), to deal in the
|
1655
|
+
Software without restriction, including without
|
1656
|
+
limitation the rights to use, copy, modify, merge,
|
1657
|
+
publish, distribute, sublicense, and/or sell copies of
|
1658
|
+
the Software, and to permit persons to whom the Software
|
1659
|
+
is furnished to do so, subject to the following
|
1660
|
+
conditions:
|
1661
|
+
|
1662
|
+
The above copyright notice and this permission notice
|
1663
|
+
shall be included in all copies or substantial portions
|
1664
|
+
of the Software.
|
1665
|
+
|
1666
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
1667
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
1668
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
1669
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
1670
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
1671
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
1672
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
1673
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
1674
|
+
DEALINGS IN THE SOFTWARE.
|
1481
1675
|
|
1482
1676
|
================================================================================
|
1483
1677
|
argminmax LICENSE
|
@@ -1505,6 +1699,33 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1505
1699
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1506
1700
|
SOFTWARE.
|
1507
1701
|
|
1702
|
+
================================================================================
|
1703
|
+
array-init-cursor LICENSE-MIT
|
1704
|
+
================================================================================
|
1705
|
+
|
1706
|
+
MIT License
|
1707
|
+
|
1708
|
+
Copyright (c) 2021 The Planus Project Developers
|
1709
|
+
|
1710
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1711
|
+
of this software and associated documentation files (the "Software"), to deal
|
1712
|
+
in the Software without restriction, including without limitation the rights
|
1713
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1714
|
+
copies of the Software, and to permit persons to whom the Software is
|
1715
|
+
furnished to do so, subject to the following conditions:
|
1716
|
+
|
1717
|
+
The above copyright notice and this permission notice shall be included in all
|
1718
|
+
copies or substantial portions of the Software.
|
1719
|
+
|
1720
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1721
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1722
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1723
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1724
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1725
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1726
|
+
SOFTWARE.
|
1727
|
+
|
1728
|
+
|
1508
1729
|
================================================================================
|
1509
1730
|
array-init-cursor LICENSE-APACHE
|
1510
1731
|
================================================================================
|
@@ -1687,33 +1908,6 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
1687
1908
|
END OF TERMS AND CONDITIONS
|
1688
1909
|
|
1689
1910
|
|
1690
|
-
================================================================================
|
1691
|
-
array-init-cursor LICENSE-MIT
|
1692
|
-
================================================================================
|
1693
|
-
|
1694
|
-
MIT License
|
1695
|
-
|
1696
|
-
Copyright (c) 2021 The Planus Project Developers
|
1697
|
-
|
1698
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1699
|
-
of this software and associated documentation files (the "Software"), to deal
|
1700
|
-
in the Software without restriction, including without limitation the rights
|
1701
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1702
|
-
copies of the Software, and to permit persons to whom the Software is
|
1703
|
-
furnished to do so, subject to the following conditions:
|
1704
|
-
|
1705
|
-
The above copyright notice and this permission notice shall be included in all
|
1706
|
-
copies or substantial portions of the Software.
|
1707
|
-
|
1708
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1709
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1710
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1711
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1712
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1713
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1714
|
-
SOFTWARE.
|
1715
|
-
|
1716
|
-
|
1717
1911
|
================================================================================
|
1718
1912
|
async-stream LICENSE
|
1719
1913
|
================================================================================
|
@@ -4945,208 +5139,208 @@ limitations under the License.
|
|
4945
5139
|
clang-sys LICENSE.txt
|
4946
5140
|
================================================================================
|
4947
5141
|
|
4948
|
-
|
4949
|
-
Apache License
|
4950
|
-
Version 2.0, January 2004
|
4951
|
-
http://www.apache.org/licenses/
|
4952
|
-
|
4953
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4954
|
-
|
4955
|
-
1. Definitions.
|
4956
|
-
|
4957
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
4958
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
4959
|
-
|
4960
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
4961
|
-
the copyright owner that is granting the License.
|
4962
|
-
|
4963
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
4964
|
-
other entities that control, are controlled by, or are under common
|
4965
|
-
control with that entity. For the purposes of this definition,
|
4966
|
-
"control" means (i) the power, direct or indirect, to cause the
|
4967
|
-
direction or management of such entity, whether by contract or
|
4968
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4969
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
4970
|
-
|
4971
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
4972
|
-
exercising permissions granted by this License.
|
4973
|
-
|
4974
|
-
"Source" form shall mean the preferred form for making modifications,
|
4975
|
-
including but not limited to software source code, documentation
|
4976
|
-
source, and configuration files.
|
4977
|
-
|
4978
|
-
"Object" form shall mean any form resulting from mechanical
|
4979
|
-
transformation or translation of a Source form, including but
|
4980
|
-
not limited to compiled object code, generated documentation,
|
4981
|
-
and conversions to other media types.
|
4982
|
-
|
4983
|
-
"Work" shall mean the work of authorship, whether in Source or
|
4984
|
-
Object form, made available under the License, as indicated by a
|
4985
|
-
copyright notice that is included in or attached to the work
|
4986
|
-
(an example is provided in the Appendix below).
|
4987
|
-
|
4988
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
4989
|
-
form, that is based on (or derived from) the Work and for which the
|
4990
|
-
editorial revisions, annotations, elaborations, or other modifications
|
4991
|
-
represent, as a whole, an original work of authorship. For the purposes
|
4992
|
-
of this License, Derivative Works shall not include works that remain
|
4993
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
4994
|
-
the Work and Derivative Works thereof.
|
4995
|
-
|
4996
|
-
"Contribution" shall mean any work of authorship, including
|
4997
|
-
the original version of the Work and any modifications or additions
|
4998
|
-
to that Work or Derivative Works thereof, that is intentionally
|
4999
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
5000
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
5001
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
5002
|
-
means any form of electronic, verbal, or written communication sent
|
5003
|
-
to the Licensor or its representatives, including but not limited to
|
5004
|
-
communication on electronic mailing lists, source code control systems,
|
5005
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
5006
|
-
Licensor for the purpose of discussing and improving the Work, but
|
5007
|
-
excluding communication that is conspicuously marked or otherwise
|
5008
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
5009
|
-
|
5010
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
5011
|
-
on behalf of whom a Contribution has been received by Licensor and
|
5012
|
-
subsequently incorporated within the Work.
|
5013
|
-
|
5014
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
5015
|
-
this License, each Contributor hereby grants to You a perpetual,
|
5016
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5017
|
-
copyright license to reproduce, prepare Derivative Works of,
|
5018
|
-
publicly display, publicly perform, sublicense, and distribute the
|
5019
|
-
Work and such Derivative Works in Source or Object form.
|
5020
|
-
|
5021
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
5022
|
-
this License, each Contributor hereby grants to You a perpetual,
|
5023
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5024
|
-
(except as stated in this section) patent license to make, have made,
|
5025
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
5026
|
-
where such license applies only to those patent claims licensable
|
5027
|
-
by such Contributor that are necessarily infringed by their
|
5028
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
5029
|
-
with the Work to which such Contribution(s) was submitted. If You
|
5030
|
-
institute patent litigation against any entity (including a
|
5031
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
5032
|
-
or a Contribution incorporated within the Work constitutes direct
|
5033
|
-
or contributory patent infringement, then any patent licenses
|
5034
|
-
granted to You under this License for that Work shall terminate
|
5035
|
-
as of the date such litigation is filed.
|
5036
|
-
|
5037
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
5038
|
-
Work or Derivative Works thereof in any medium, with or without
|
5039
|
-
modifications, and in Source or Object form, provided that You
|
5040
|
-
meet the following conditions:
|
5041
|
-
|
5042
|
-
(a) You must give any other recipients of the Work or
|
5043
|
-
Derivative Works a copy of this License; and
|
5044
|
-
|
5045
|
-
(b) You must cause any modified files to carry prominent notices
|
5046
|
-
stating that You changed the files; and
|
5047
|
-
|
5048
|
-
(c) You must retain, in the Source form of any Derivative Works
|
5049
|
-
that You distribute, all copyright, patent, trademark, and
|
5050
|
-
attribution notices from the Source form of the Work,
|
5051
|
-
excluding those notices that do not pertain to any part of
|
5052
|
-
the Derivative Works; and
|
5053
|
-
|
5054
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
5055
|
-
distribution, then any Derivative Works that You distribute must
|
5056
|
-
include a readable copy of the attribution notices contained
|
5057
|
-
within such NOTICE file, excluding those notices that do not
|
5058
|
-
pertain to any part of the Derivative Works, in at least one
|
5059
|
-
of the following places: within a NOTICE text file distributed
|
5060
|
-
as part of the Derivative Works; within the Source form or
|
5061
|
-
documentation, if provided along with the Derivative Works; or,
|
5062
|
-
within a display generated by the Derivative Works, if and
|
5063
|
-
wherever such third-party notices normally appear. The contents
|
5064
|
-
of the NOTICE file are for informational purposes only and
|
5065
|
-
do not modify the License. You may add Your own attribution
|
5066
|
-
notices within Derivative Works that You distribute, alongside
|
5067
|
-
or as an addendum to the NOTICE text from the Work, provided
|
5068
|
-
that such additional attribution notices cannot be construed
|
5069
|
-
as modifying the License.
|
5070
|
-
|
5071
|
-
You may add Your own copyright statement to Your modifications and
|
5072
|
-
may provide additional or different license terms and conditions
|
5073
|
-
for use, reproduction, or distribution of Your modifications, or
|
5074
|
-
for any such Derivative Works as a whole, provided Your use,
|
5075
|
-
reproduction, and distribution of the Work otherwise complies with
|
5076
|
-
the conditions stated in this License.
|
5077
|
-
|
5078
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
5079
|
-
any Contribution intentionally submitted for inclusion in the Work
|
5080
|
-
by You to the Licensor shall be under the terms and conditions of
|
5081
|
-
this License, without any additional terms or conditions.
|
5082
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
5083
|
-
the terms of any separate license agreement you may have executed
|
5084
|
-
with Licensor regarding such Contributions.
|
5085
|
-
|
5086
|
-
6. Trademarks. This License does not grant permission to use the trade
|
5087
|
-
names, trademarks, service marks, or product names of the Licensor,
|
5088
|
-
except as required for reasonable and customary use in describing the
|
5089
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
5090
|
-
|
5091
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
5092
|
-
agreed to in writing, Licensor provides the Work (and each
|
5093
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
5094
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
5095
|
-
implied, including, without limitation, any warranties or conditions
|
5096
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
5097
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
5098
|
-
appropriateness of using or redistributing the Work and assume any
|
5099
|
-
risks associated with Your exercise of permissions under this License.
|
5100
|
-
|
5101
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
5102
|
-
whether in tort (including negligence), contract, or otherwise,
|
5103
|
-
unless required by applicable law (such as deliberate and grossly
|
5104
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
5105
|
-
liable to You for damages, including any direct, indirect, special,
|
5106
|
-
incidental, or consequential damages of any character arising as a
|
5107
|
-
result of this License or out of the use or inability to use the
|
5108
|
-
Work (including but not limited to damages for loss of goodwill,
|
5109
|
-
work stoppage, computer failure or malfunction, or any and all
|
5110
|
-
other commercial damages or losses), even if such Contributor
|
5111
|
-
has been advised of the possibility of such damages.
|
5112
|
-
|
5113
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
5114
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
5115
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
5116
|
-
or other liability obligations and/or rights consistent with this
|
5117
|
-
License. However, in accepting such obligations, You may act only
|
5118
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
5119
|
-
of any other Contributor, and only if You agree to indemnify,
|
5120
|
-
defend, and hold each Contributor harmless for any liability
|
5121
|
-
incurred by, or claims asserted against, such Contributor by reason
|
5122
|
-
of your accepting any such warranty or additional liability.
|
5123
|
-
|
5124
|
-
END OF TERMS AND CONDITIONS
|
5125
|
-
|
5126
|
-
APPENDIX: How to apply the Apache License to your work.
|
5127
|
-
|
5128
|
-
To apply the Apache License to your work, attach the following
|
5129
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
5130
|
-
replaced with your own identifying information. (Don't include
|
5131
|
-
the brackets!) The text should be enclosed in the appropriate
|
5132
|
-
comment syntax for the file format. We also recommend that a
|
5133
|
-
file or class name and description of purpose be included on the
|
5134
|
-
same "printed page" as the copyright notice for easier
|
5135
|
-
identification within third-party archives.
|
5136
|
-
|
5137
|
-
Copyright [yyyy] [name of copyright owner]
|
5138
|
-
|
5139
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
5140
|
-
you may not use this file except in compliance with the License.
|
5141
|
-
You may obtain a copy of the License at
|
5142
|
-
|
5143
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
5144
|
-
|
5145
|
-
Unless required by applicable law or agreed to in writing, software
|
5146
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
5147
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5148
|
-
See the License for the specific language governing permissions and
|
5149
|
-
limitations under the License.
|
5142
|
+
|
5143
|
+
Apache License
|
5144
|
+
Version 2.0, January 2004
|
5145
|
+
http://www.apache.org/licenses/
|
5146
|
+
|
5147
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
5148
|
+
|
5149
|
+
1. Definitions.
|
5150
|
+
|
5151
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
5152
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
5153
|
+
|
5154
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
5155
|
+
the copyright owner that is granting the License.
|
5156
|
+
|
5157
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
5158
|
+
other entities that control, are controlled by, or are under common
|
5159
|
+
control with that entity. For the purposes of this definition,
|
5160
|
+
"control" means (i) the power, direct or indirect, to cause the
|
5161
|
+
direction or management of such entity, whether by contract or
|
5162
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
5163
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
5164
|
+
|
5165
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
5166
|
+
exercising permissions granted by this License.
|
5167
|
+
|
5168
|
+
"Source" form shall mean the preferred form for making modifications,
|
5169
|
+
including but not limited to software source code, documentation
|
5170
|
+
source, and configuration files.
|
5171
|
+
|
5172
|
+
"Object" form shall mean any form resulting from mechanical
|
5173
|
+
transformation or translation of a Source form, including but
|
5174
|
+
not limited to compiled object code, generated documentation,
|
5175
|
+
and conversions to other media types.
|
5176
|
+
|
5177
|
+
"Work" shall mean the work of authorship, whether in Source or
|
5178
|
+
Object form, made available under the License, as indicated by a
|
5179
|
+
copyright notice that is included in or attached to the work
|
5180
|
+
(an example is provided in the Appendix below).
|
5181
|
+
|
5182
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
5183
|
+
form, that is based on (or derived from) the Work and for which the
|
5184
|
+
editorial revisions, annotations, elaborations, or other modifications
|
5185
|
+
represent, as a whole, an original work of authorship. For the purposes
|
5186
|
+
of this License, Derivative Works shall not include works that remain
|
5187
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
5188
|
+
the Work and Derivative Works thereof.
|
5189
|
+
|
5190
|
+
"Contribution" shall mean any work of authorship, including
|
5191
|
+
the original version of the Work and any modifications or additions
|
5192
|
+
to that Work or Derivative Works thereof, that is intentionally
|
5193
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
5194
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
5195
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
5196
|
+
means any form of electronic, verbal, or written communication sent
|
5197
|
+
to the Licensor or its representatives, including but not limited to
|
5198
|
+
communication on electronic mailing lists, source code control systems,
|
5199
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
5200
|
+
Licensor for the purpose of discussing and improving the Work, but
|
5201
|
+
excluding communication that is conspicuously marked or otherwise
|
5202
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
5203
|
+
|
5204
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
5205
|
+
on behalf of whom a Contribution has been received by Licensor and
|
5206
|
+
subsequently incorporated within the Work.
|
5207
|
+
|
5208
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
5209
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5210
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5211
|
+
copyright license to reproduce, prepare Derivative Works of,
|
5212
|
+
publicly display, publicly perform, sublicense, and distribute the
|
5213
|
+
Work and such Derivative Works in Source or Object form.
|
5214
|
+
|
5215
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
5216
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5217
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5218
|
+
(except as stated in this section) patent license to make, have made,
|
5219
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
5220
|
+
where such license applies only to those patent claims licensable
|
5221
|
+
by such Contributor that are necessarily infringed by their
|
5222
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
5223
|
+
with the Work to which such Contribution(s) was submitted. If You
|
5224
|
+
institute patent litigation against any entity (including a
|
5225
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
5226
|
+
or a Contribution incorporated within the Work constitutes direct
|
5227
|
+
or contributory patent infringement, then any patent licenses
|
5228
|
+
granted to You under this License for that Work shall terminate
|
5229
|
+
as of the date such litigation is filed.
|
5230
|
+
|
5231
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
5232
|
+
Work or Derivative Works thereof in any medium, with or without
|
5233
|
+
modifications, and in Source or Object form, provided that You
|
5234
|
+
meet the following conditions:
|
5235
|
+
|
5236
|
+
(a) You must give any other recipients of the Work or
|
5237
|
+
Derivative Works a copy of this License; and
|
5238
|
+
|
5239
|
+
(b) You must cause any modified files to carry prominent notices
|
5240
|
+
stating that You changed the files; and
|
5241
|
+
|
5242
|
+
(c) You must retain, in the Source form of any Derivative Works
|
5243
|
+
that You distribute, all copyright, patent, trademark, and
|
5244
|
+
attribution notices from the Source form of the Work,
|
5245
|
+
excluding those notices that do not pertain to any part of
|
5246
|
+
the Derivative Works; and
|
5247
|
+
|
5248
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
5249
|
+
distribution, then any Derivative Works that You distribute must
|
5250
|
+
include a readable copy of the attribution notices contained
|
5251
|
+
within such NOTICE file, excluding those notices that do not
|
5252
|
+
pertain to any part of the Derivative Works, in at least one
|
5253
|
+
of the following places: within a NOTICE text file distributed
|
5254
|
+
as part of the Derivative Works; within the Source form or
|
5255
|
+
documentation, if provided along with the Derivative Works; or,
|
5256
|
+
within a display generated by the Derivative Works, if and
|
5257
|
+
wherever such third-party notices normally appear. The contents
|
5258
|
+
of the NOTICE file are for informational purposes only and
|
5259
|
+
do not modify the License. You may add Your own attribution
|
5260
|
+
notices within Derivative Works that You distribute, alongside
|
5261
|
+
or as an addendum to the NOTICE text from the Work, provided
|
5262
|
+
that such additional attribution notices cannot be construed
|
5263
|
+
as modifying the License.
|
5264
|
+
|
5265
|
+
You may add Your own copyright statement to Your modifications and
|
5266
|
+
may provide additional or different license terms and conditions
|
5267
|
+
for use, reproduction, or distribution of Your modifications, or
|
5268
|
+
for any such Derivative Works as a whole, provided Your use,
|
5269
|
+
reproduction, and distribution of the Work otherwise complies with
|
5270
|
+
the conditions stated in this License.
|
5271
|
+
|
5272
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
5273
|
+
any Contribution intentionally submitted for inclusion in the Work
|
5274
|
+
by You to the Licensor shall be under the terms and conditions of
|
5275
|
+
this License, without any additional terms or conditions.
|
5276
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
5277
|
+
the terms of any separate license agreement you may have executed
|
5278
|
+
with Licensor regarding such Contributions.
|
5279
|
+
|
5280
|
+
6. Trademarks. This License does not grant permission to use the trade
|
5281
|
+
names, trademarks, service marks, or product names of the Licensor,
|
5282
|
+
except as required for reasonable and customary use in describing the
|
5283
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
5284
|
+
|
5285
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
5286
|
+
agreed to in writing, Licensor provides the Work (and each
|
5287
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
5288
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
5289
|
+
implied, including, without limitation, any warranties or conditions
|
5290
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
5291
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
5292
|
+
appropriateness of using or redistributing the Work and assume any
|
5293
|
+
risks associated with Your exercise of permissions under this License.
|
5294
|
+
|
5295
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
5296
|
+
whether in tort (including negligence), contract, or otherwise,
|
5297
|
+
unless required by applicable law (such as deliberate and grossly
|
5298
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
5299
|
+
liable to You for damages, including any direct, indirect, special,
|
5300
|
+
incidental, or consequential damages of any character arising as a
|
5301
|
+
result of this License or out of the use or inability to use the
|
5302
|
+
Work (including but not limited to damages for loss of goodwill,
|
5303
|
+
work stoppage, computer failure or malfunction, or any and all
|
5304
|
+
other commercial damages or losses), even if such Contributor
|
5305
|
+
has been advised of the possibility of such damages.
|
5306
|
+
|
5307
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
5308
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
5309
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
5310
|
+
or other liability obligations and/or rights consistent with this
|
5311
|
+
License. However, in accepting such obligations, You may act only
|
5312
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
5313
|
+
of any other Contributor, and only if You agree to indemnify,
|
5314
|
+
defend, and hold each Contributor harmless for any liability
|
5315
|
+
incurred by, or claims asserted against, such Contributor by reason
|
5316
|
+
of your accepting any such warranty or additional liability.
|
5317
|
+
|
5318
|
+
END OF TERMS AND CONDITIONS
|
5319
|
+
|
5320
|
+
APPENDIX: How to apply the Apache License to your work.
|
5321
|
+
|
5322
|
+
To apply the Apache License to your work, attach the following
|
5323
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
5324
|
+
replaced with your own identifying information. (Don't include
|
5325
|
+
the brackets!) The text should be enclosed in the appropriate
|
5326
|
+
comment syntax for the file format. We also recommend that a
|
5327
|
+
file or class name and description of purpose be included on the
|
5328
|
+
same "printed page" as the copyright notice for easier
|
5329
|
+
identification within third-party archives.
|
5330
|
+
|
5331
|
+
Copyright [yyyy] [name of copyright owner]
|
5332
|
+
|
5333
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5334
|
+
you may not use this file except in compliance with the License.
|
5335
|
+
You may obtain a copy of the License at
|
5336
|
+
|
5337
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
5338
|
+
|
5339
|
+
Unless required by applicable law or agreed to in writing, software
|
5340
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
5341
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5342
|
+
See the License for the specific language governing permissions and
|
5343
|
+
limitations under the License.
|
5150
5344
|
|
5151
5345
|
================================================================================
|
5152
5346
|
comfy-table LICENSE
|
@@ -11943,7 +12137,7 @@ limitations under the License.
|
|
11943
12137
|
getrandom LICENSE-MIT
|
11944
12138
|
================================================================================
|
11945
12139
|
|
11946
|
-
Copyright 2018
|
12140
|
+
Copyright (c) 2018-2024 The rust-random Project Developers
|
11947
12141
|
Copyright (c) 2014 The Rust Project Developers
|
11948
12142
|
|
11949
12143
|
Permission is hereby granted, free of charge, to any
|
@@ -12440,243 +12634,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
12440
12634
|
SOFTWARE.
|
12441
12635
|
|
12442
12636
|
================================================================================
|
12443
|
-
hashbrown
|
12444
|
-
================================================================================
|
12445
|
-
|
12446
|
-
Apache License
|
12447
|
-
Version 2.0, January 2004
|
12448
|
-
http://www.apache.org/licenses/
|
12449
|
-
|
12450
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
12451
|
-
|
12452
|
-
1. Definitions.
|
12453
|
-
|
12454
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
12455
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
12456
|
-
|
12457
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
12458
|
-
the copyright owner that is granting the License.
|
12459
|
-
|
12460
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
12461
|
-
other entities that control, are controlled by, or are under common
|
12462
|
-
control with that entity. For the purposes of this definition,
|
12463
|
-
"control" means (i) the power, direct or indirect, to cause the
|
12464
|
-
direction or management of such entity, whether by contract or
|
12465
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
12466
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
12467
|
-
|
12468
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
12469
|
-
exercising permissions granted by this License.
|
12470
|
-
|
12471
|
-
"Source" form shall mean the preferred form for making modifications,
|
12472
|
-
including but not limited to software source code, documentation
|
12473
|
-
source, and configuration files.
|
12474
|
-
|
12475
|
-
"Object" form shall mean any form resulting from mechanical
|
12476
|
-
transformation or translation of a Source form, including but
|
12477
|
-
not limited to compiled object code, generated documentation,
|
12478
|
-
and conversions to other media types.
|
12479
|
-
|
12480
|
-
"Work" shall mean the work of authorship, whether in Source or
|
12481
|
-
Object form, made available under the License, as indicated by a
|
12482
|
-
copyright notice that is included in or attached to the work
|
12483
|
-
(an example is provided in the Appendix below).
|
12484
|
-
|
12485
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
12486
|
-
form, that is based on (or derived from) the Work and for which the
|
12487
|
-
editorial revisions, annotations, elaborations, or other modifications
|
12488
|
-
represent, as a whole, an original work of authorship. For the purposes
|
12489
|
-
of this License, Derivative Works shall not include works that remain
|
12490
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
12491
|
-
the Work and Derivative Works thereof.
|
12492
|
-
|
12493
|
-
"Contribution" shall mean any work of authorship, including
|
12494
|
-
the original version of the Work and any modifications or additions
|
12495
|
-
to that Work or Derivative Works thereof, that is intentionally
|
12496
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
12497
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
12498
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
12499
|
-
means any form of electronic, verbal, or written communication sent
|
12500
|
-
to the Licensor or its representatives, including but not limited to
|
12501
|
-
communication on electronic mailing lists, source code control systems,
|
12502
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
12503
|
-
Licensor for the purpose of discussing and improving the Work, but
|
12504
|
-
excluding communication that is conspicuously marked or otherwise
|
12505
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
12506
|
-
|
12507
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
12508
|
-
on behalf of whom a Contribution has been received by Licensor and
|
12509
|
-
subsequently incorporated within the Work.
|
12510
|
-
|
12511
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
12512
|
-
this License, each Contributor hereby grants to You a perpetual,
|
12513
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
12514
|
-
copyright license to reproduce, prepare Derivative Works of,
|
12515
|
-
publicly display, publicly perform, sublicense, and distribute the
|
12516
|
-
Work and such Derivative Works in Source or Object form.
|
12517
|
-
|
12518
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
12519
|
-
this License, each Contributor hereby grants to You a perpetual,
|
12520
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
12521
|
-
(except as stated in this section) patent license to make, have made,
|
12522
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
12523
|
-
where such license applies only to those patent claims licensable
|
12524
|
-
by such Contributor that are necessarily infringed by their
|
12525
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
12526
|
-
with the Work to which such Contribution(s) was submitted. If You
|
12527
|
-
institute patent litigation against any entity (including a
|
12528
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
12529
|
-
or a Contribution incorporated within the Work constitutes direct
|
12530
|
-
or contributory patent infringement, then any patent licenses
|
12531
|
-
granted to You under this License for that Work shall terminate
|
12532
|
-
as of the date such litigation is filed.
|
12533
|
-
|
12534
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
12535
|
-
Work or Derivative Works thereof in any medium, with or without
|
12536
|
-
modifications, and in Source or Object form, provided that You
|
12537
|
-
meet the following conditions:
|
12538
|
-
|
12539
|
-
(a) You must give any other recipients of the Work or
|
12540
|
-
Derivative Works a copy of this License; and
|
12541
|
-
|
12542
|
-
(b) You must cause any modified files to carry prominent notices
|
12543
|
-
stating that You changed the files; and
|
12544
|
-
|
12545
|
-
(c) You must retain, in the Source form of any Derivative Works
|
12546
|
-
that You distribute, all copyright, patent, trademark, and
|
12547
|
-
attribution notices from the Source form of the Work,
|
12548
|
-
excluding those notices that do not pertain to any part of
|
12549
|
-
the Derivative Works; and
|
12550
|
-
|
12551
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
12552
|
-
distribution, then any Derivative Works that You distribute must
|
12553
|
-
include a readable copy of the attribution notices contained
|
12554
|
-
within such NOTICE file, excluding those notices that do not
|
12555
|
-
pertain to any part of the Derivative Works, in at least one
|
12556
|
-
of the following places: within a NOTICE text file distributed
|
12557
|
-
as part of the Derivative Works; within the Source form or
|
12558
|
-
documentation, if provided along with the Derivative Works; or,
|
12559
|
-
within a display generated by the Derivative Works, if and
|
12560
|
-
wherever such third-party notices normally appear. The contents
|
12561
|
-
of the NOTICE file are for informational purposes only and
|
12562
|
-
do not modify the License. You may add Your own attribution
|
12563
|
-
notices within Derivative Works that You distribute, alongside
|
12564
|
-
or as an addendum to the NOTICE text from the Work, provided
|
12565
|
-
that such additional attribution notices cannot be construed
|
12566
|
-
as modifying the License.
|
12567
|
-
|
12568
|
-
You may add Your own copyright statement to Your modifications and
|
12569
|
-
may provide additional or different license terms and conditions
|
12570
|
-
for use, reproduction, or distribution of Your modifications, or
|
12571
|
-
for any such Derivative Works as a whole, provided Your use,
|
12572
|
-
reproduction, and distribution of the Work otherwise complies with
|
12573
|
-
the conditions stated in this License.
|
12574
|
-
|
12575
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
12576
|
-
any Contribution intentionally submitted for inclusion in the Work
|
12577
|
-
by You to the Licensor shall be under the terms and conditions of
|
12578
|
-
this License, without any additional terms or conditions.
|
12579
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
12580
|
-
the terms of any separate license agreement you may have executed
|
12581
|
-
with Licensor regarding such Contributions.
|
12582
|
-
|
12583
|
-
6. Trademarks. This License does not grant permission to use the trade
|
12584
|
-
names, trademarks, service marks, or product names of the Licensor,
|
12585
|
-
except as required for reasonable and customary use in describing the
|
12586
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
12587
|
-
|
12588
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
12589
|
-
agreed to in writing, Licensor provides the Work (and each
|
12590
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
12591
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
12592
|
-
implied, including, without limitation, any warranties or conditions
|
12593
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
12594
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
12595
|
-
appropriateness of using or redistributing the Work and assume any
|
12596
|
-
risks associated with Your exercise of permissions under this License.
|
12597
|
-
|
12598
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
12599
|
-
whether in tort (including negligence), contract, or otherwise,
|
12600
|
-
unless required by applicable law (such as deliberate and grossly
|
12601
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
12602
|
-
liable to You for damages, including any direct, indirect, special,
|
12603
|
-
incidental, or consequential damages of any character arising as a
|
12604
|
-
result of this License or out of the use or inability to use the
|
12605
|
-
Work (including but not limited to damages for loss of goodwill,
|
12606
|
-
work stoppage, computer failure or malfunction, or any and all
|
12607
|
-
other commercial damages or losses), even if such Contributor
|
12608
|
-
has been advised of the possibility of such damages.
|
12609
|
-
|
12610
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
12611
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
12612
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
12613
|
-
or other liability obligations and/or rights consistent with this
|
12614
|
-
License. However, in accepting such obligations, You may act only
|
12615
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
12616
|
-
of any other Contributor, and only if You agree to indemnify,
|
12617
|
-
defend, and hold each Contributor harmless for any liability
|
12618
|
-
incurred by, or claims asserted against, such Contributor by reason
|
12619
|
-
of your accepting any such warranty or additional liability.
|
12620
|
-
|
12621
|
-
END OF TERMS AND CONDITIONS
|
12622
|
-
|
12623
|
-
APPENDIX: How to apply the Apache License to your work.
|
12624
|
-
|
12625
|
-
To apply the Apache License to your work, attach the following
|
12626
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
12627
|
-
replaced with your own identifying information. (Don't include
|
12628
|
-
the brackets!) The text should be enclosed in the appropriate
|
12629
|
-
comment syntax for the file format. We also recommend that a
|
12630
|
-
file or class name and description of purpose be included on the
|
12631
|
-
same "printed page" as the copyright notice for easier
|
12632
|
-
identification within third-party archives.
|
12633
|
-
|
12634
|
-
Copyright [yyyy] [name of copyright owner]
|
12635
|
-
|
12636
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
12637
|
-
you may not use this file except in compliance with the License.
|
12638
|
-
You may obtain a copy of the License at
|
12639
|
-
|
12640
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
12641
|
-
|
12642
|
-
Unless required by applicable law or agreed to in writing, software
|
12643
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
12644
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12645
|
-
See the License for the specific language governing permissions and
|
12646
|
-
limitations under the License.
|
12647
|
-
|
12648
|
-
================================================================================
|
12649
|
-
hashbrown v0.13.2 LICENSE-MIT
|
12650
|
-
================================================================================
|
12651
|
-
|
12652
|
-
Copyright (c) 2016 Amanieu d'Antras
|
12653
|
-
|
12654
|
-
Permission is hereby granted, free of charge, to any
|
12655
|
-
person obtaining a copy of this software and associated
|
12656
|
-
documentation files (the "Software"), to deal in the
|
12657
|
-
Software without restriction, including without
|
12658
|
-
limitation the rights to use, copy, modify, merge,
|
12659
|
-
publish, distribute, sublicense, and/or sell copies of
|
12660
|
-
the Software, and to permit persons to whom the Software
|
12661
|
-
is furnished to do so, subject to the following
|
12662
|
-
conditions:
|
12663
|
-
|
12664
|
-
The above copyright notice and this permission notice
|
12665
|
-
shall be included in all copies or substantial portions
|
12666
|
-
of the Software.
|
12667
|
-
|
12668
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
12669
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
12670
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
12671
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
12672
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
12673
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
12674
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
12675
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
12676
|
-
DEALINGS IN THE SOFTWARE.
|
12677
|
-
|
12678
|
-
================================================================================
|
12679
|
-
hashbrown v0.14.3 LICENSE-APACHE
|
12637
|
+
hashbrown LICENSE-APACHE
|
12680
12638
|
================================================================================
|
12681
12639
|
|
12682
12640
|
Apache License
|
@@ -12882,7 +12840,7 @@ See the License for the specific language governing permissions and
|
|
12882
12840
|
limitations under the License.
|
12883
12841
|
|
12884
12842
|
================================================================================
|
12885
|
-
hashbrown
|
12843
|
+
hashbrown LICENSE-MIT
|
12886
12844
|
================================================================================
|
12887
12845
|
|
12888
12846
|
Copyright (c) 2016 Amanieu d'Antras
|
@@ -13805,7 +13763,243 @@ APPENDIX: How to apply the Apache License to your work.
|
|
13805
13763
|
same "printed page" as the copyright notice for easier
|
13806
13764
|
identification within third-party archives.
|
13807
13765
|
|
13808
|
-
Copyright 2020 Andrew Straw
|
13766
|
+
Copyright 2020 Andrew Straw
|
13767
|
+
|
13768
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
13769
|
+
you may not use this file except in compliance with the License.
|
13770
|
+
You may obtain a copy of the License at
|
13771
|
+
|
13772
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
13773
|
+
|
13774
|
+
Unless required by applicable law or agreed to in writing, software
|
13775
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
13776
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13777
|
+
See the License for the specific language governing permissions and
|
13778
|
+
limitations under the License.
|
13779
|
+
|
13780
|
+
================================================================================
|
13781
|
+
iana-time-zone LICENSE-MIT
|
13782
|
+
================================================================================
|
13783
|
+
|
13784
|
+
Copyright (c) 2020 Andrew D. Straw
|
13785
|
+
|
13786
|
+
Permission is hereby granted, free of charge, to any
|
13787
|
+
person obtaining a copy of this software and associated
|
13788
|
+
documentation files (the "Software"), to deal in the
|
13789
|
+
Software without restriction, including without
|
13790
|
+
limitation the rights to use, copy, modify, merge,
|
13791
|
+
publish, distribute, sublicense, and/or sell copies of
|
13792
|
+
the Software, and to permit persons to whom the Software
|
13793
|
+
is furnished to do so, subject to the following
|
13794
|
+
conditions:
|
13795
|
+
|
13796
|
+
The above copyright notice and this permission notice
|
13797
|
+
shall be included in all copies or substantial portions
|
13798
|
+
of the Software.
|
13799
|
+
|
13800
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
13801
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
13802
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
13803
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
13804
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
13805
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
13806
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
13807
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
13808
|
+
DEALINGS IN THE SOFTWARE.
|
13809
|
+
|
13810
|
+
================================================================================
|
13811
|
+
indexmap LICENSE-APACHE
|
13812
|
+
================================================================================
|
13813
|
+
|
13814
|
+
Apache License
|
13815
|
+
Version 2.0, January 2004
|
13816
|
+
http://www.apache.org/licenses/
|
13817
|
+
|
13818
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
13819
|
+
|
13820
|
+
1. Definitions.
|
13821
|
+
|
13822
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
13823
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
13824
|
+
|
13825
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13826
|
+
the copyright owner that is granting the License.
|
13827
|
+
|
13828
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
13829
|
+
other entities that control, are controlled by, or are under common
|
13830
|
+
control with that entity. For the purposes of this definition,
|
13831
|
+
"control" means (i) the power, direct or indirect, to cause the
|
13832
|
+
direction or management of such entity, whether by contract or
|
13833
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
13834
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
13835
|
+
|
13836
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
13837
|
+
exercising permissions granted by this License.
|
13838
|
+
|
13839
|
+
"Source" form shall mean the preferred form for making modifications,
|
13840
|
+
including but not limited to software source code, documentation
|
13841
|
+
source, and configuration files.
|
13842
|
+
|
13843
|
+
"Object" form shall mean any form resulting from mechanical
|
13844
|
+
transformation or translation of a Source form, including but
|
13845
|
+
not limited to compiled object code, generated documentation,
|
13846
|
+
and conversions to other media types.
|
13847
|
+
|
13848
|
+
"Work" shall mean the work of authorship, whether in Source or
|
13849
|
+
Object form, made available under the License, as indicated by a
|
13850
|
+
copyright notice that is included in or attached to the work
|
13851
|
+
(an example is provided in the Appendix below).
|
13852
|
+
|
13853
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
13854
|
+
form, that is based on (or derived from) the Work and for which the
|
13855
|
+
editorial revisions, annotations, elaborations, or other modifications
|
13856
|
+
represent, as a whole, an original work of authorship. For the purposes
|
13857
|
+
of this License, Derivative Works shall not include works that remain
|
13858
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
13859
|
+
the Work and Derivative Works thereof.
|
13860
|
+
|
13861
|
+
"Contribution" shall mean any work of authorship, including
|
13862
|
+
the original version of the Work and any modifications or additions
|
13863
|
+
to that Work or Derivative Works thereof, that is intentionally
|
13864
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
13865
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
13866
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
13867
|
+
means any form of electronic, verbal, or written communication sent
|
13868
|
+
to the Licensor or its representatives, including but not limited to
|
13869
|
+
communication on electronic mailing lists, source code control systems,
|
13870
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
13871
|
+
Licensor for the purpose of discussing and improving the Work, but
|
13872
|
+
excluding communication that is conspicuously marked or otherwise
|
13873
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
13874
|
+
|
13875
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
13876
|
+
on behalf of whom a Contribution has been received by Licensor and
|
13877
|
+
subsequently incorporated within the Work.
|
13878
|
+
|
13879
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
13880
|
+
this License, each Contributor hereby grants to You a perpetual,
|
13881
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
13882
|
+
copyright license to reproduce, prepare Derivative Works of,
|
13883
|
+
publicly display, publicly perform, sublicense, and distribute the
|
13884
|
+
Work and such Derivative Works in Source or Object form.
|
13885
|
+
|
13886
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
13887
|
+
this License, each Contributor hereby grants to You a perpetual,
|
13888
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
13889
|
+
(except as stated in this section) patent license to make, have made,
|
13890
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
13891
|
+
where such license applies only to those patent claims licensable
|
13892
|
+
by such Contributor that are necessarily infringed by their
|
13893
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
13894
|
+
with the Work to which such Contribution(s) was submitted. If You
|
13895
|
+
institute patent litigation against any entity (including a
|
13896
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
13897
|
+
or a Contribution incorporated within the Work constitutes direct
|
13898
|
+
or contributory patent infringement, then any patent licenses
|
13899
|
+
granted to You under this License for that Work shall terminate
|
13900
|
+
as of the date such litigation is filed.
|
13901
|
+
|
13902
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
13903
|
+
Work or Derivative Works thereof in any medium, with or without
|
13904
|
+
modifications, and in Source or Object form, provided that You
|
13905
|
+
meet the following conditions:
|
13906
|
+
|
13907
|
+
(a) You must give any other recipients of the Work or
|
13908
|
+
Derivative Works a copy of this License; and
|
13909
|
+
|
13910
|
+
(b) You must cause any modified files to carry prominent notices
|
13911
|
+
stating that You changed the files; and
|
13912
|
+
|
13913
|
+
(c) You must retain, in the Source form of any Derivative Works
|
13914
|
+
that You distribute, all copyright, patent, trademark, and
|
13915
|
+
attribution notices from the Source form of the Work,
|
13916
|
+
excluding those notices that do not pertain to any part of
|
13917
|
+
the Derivative Works; and
|
13918
|
+
|
13919
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
13920
|
+
distribution, then any Derivative Works that You distribute must
|
13921
|
+
include a readable copy of the attribution notices contained
|
13922
|
+
within such NOTICE file, excluding those notices that do not
|
13923
|
+
pertain to any part of the Derivative Works, in at least one
|
13924
|
+
of the following places: within a NOTICE text file distributed
|
13925
|
+
as part of the Derivative Works; within the Source form or
|
13926
|
+
documentation, if provided along with the Derivative Works; or,
|
13927
|
+
within a display generated by the Derivative Works, if and
|
13928
|
+
wherever such third-party notices normally appear. The contents
|
13929
|
+
of the NOTICE file are for informational purposes only and
|
13930
|
+
do not modify the License. You may add Your own attribution
|
13931
|
+
notices within Derivative Works that You distribute, alongside
|
13932
|
+
or as an addendum to the NOTICE text from the Work, provided
|
13933
|
+
that such additional attribution notices cannot be construed
|
13934
|
+
as modifying the License.
|
13935
|
+
|
13936
|
+
You may add Your own copyright statement to Your modifications and
|
13937
|
+
may provide additional or different license terms and conditions
|
13938
|
+
for use, reproduction, or distribution of Your modifications, or
|
13939
|
+
for any such Derivative Works as a whole, provided Your use,
|
13940
|
+
reproduction, and distribution of the Work otherwise complies with
|
13941
|
+
the conditions stated in this License.
|
13942
|
+
|
13943
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
13944
|
+
any Contribution intentionally submitted for inclusion in the Work
|
13945
|
+
by You to the Licensor shall be under the terms and conditions of
|
13946
|
+
this License, without any additional terms or conditions.
|
13947
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
13948
|
+
the terms of any separate license agreement you may have executed
|
13949
|
+
with Licensor regarding such Contributions.
|
13950
|
+
|
13951
|
+
6. Trademarks. This License does not grant permission to use the trade
|
13952
|
+
names, trademarks, service marks, or product names of the Licensor,
|
13953
|
+
except as required for reasonable and customary use in describing the
|
13954
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
13955
|
+
|
13956
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
13957
|
+
agreed to in writing, Licensor provides the Work (and each
|
13958
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
13959
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
13960
|
+
implied, including, without limitation, any warranties or conditions
|
13961
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
13962
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
13963
|
+
appropriateness of using or redistributing the Work and assume any
|
13964
|
+
risks associated with Your exercise of permissions under this License.
|
13965
|
+
|
13966
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
13967
|
+
whether in tort (including negligence), contract, or otherwise,
|
13968
|
+
unless required by applicable law (such as deliberate and grossly
|
13969
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
13970
|
+
liable to You for damages, including any direct, indirect, special,
|
13971
|
+
incidental, or consequential damages of any character arising as a
|
13972
|
+
result of this License or out of the use or inability to use the
|
13973
|
+
Work (including but not limited to damages for loss of goodwill,
|
13974
|
+
work stoppage, computer failure or malfunction, or any and all
|
13975
|
+
other commercial damages or losses), even if such Contributor
|
13976
|
+
has been advised of the possibility of such damages.
|
13977
|
+
|
13978
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
13979
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
13980
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
13981
|
+
or other liability obligations and/or rights consistent with this
|
13982
|
+
License. However, in accepting such obligations, You may act only
|
13983
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
13984
|
+
of any other Contributor, and only if You agree to indemnify,
|
13985
|
+
defend, and hold each Contributor harmless for any liability
|
13986
|
+
incurred by, or claims asserted against, such Contributor by reason
|
13987
|
+
of your accepting any such warranty or additional liability.
|
13988
|
+
|
13989
|
+
END OF TERMS AND CONDITIONS
|
13990
|
+
|
13991
|
+
APPENDIX: How to apply the Apache License to your work.
|
13992
|
+
|
13993
|
+
To apply the Apache License to your work, attach the following
|
13994
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
13995
|
+
replaced with your own identifying information. (Don't include
|
13996
|
+
the brackets!) The text should be enclosed in the appropriate
|
13997
|
+
comment syntax for the file format. We also recommend that a
|
13998
|
+
file or class name and description of purpose be included on the
|
13999
|
+
same "printed page" as the copyright notice for easier
|
14000
|
+
identification within third-party archives.
|
14001
|
+
|
14002
|
+
Copyright [yyyy] [name of copyright owner]
|
13809
14003
|
|
13810
14004
|
Licensed under the Apache License, Version 2.0 (the "License");
|
13811
14005
|
you may not use this file except in compliance with the License.
|
@@ -13820,10 +14014,10 @@ See the License for the specific language governing permissions and
|
|
13820
14014
|
limitations under the License.
|
13821
14015
|
|
13822
14016
|
================================================================================
|
13823
|
-
|
14017
|
+
indexmap LICENSE-MIT
|
13824
14018
|
================================================================================
|
13825
14019
|
|
13826
|
-
Copyright (c)
|
14020
|
+
Copyright (c) 2016--2017
|
13827
14021
|
|
13828
14022
|
Permission is hereby granted, free of charge, to any
|
13829
14023
|
person obtaining a copy of this software and associated
|
@@ -13850,7 +14044,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
13850
14044
|
DEALINGS IN THE SOFTWARE.
|
13851
14045
|
|
13852
14046
|
================================================================================
|
13853
|
-
|
14047
|
+
itertools LICENSE-APACHE
|
13854
14048
|
================================================================================
|
13855
14049
|
|
13856
14050
|
Apache License
|
@@ -14056,10 +14250,10 @@ See the License for the specific language governing permissions and
|
|
14056
14250
|
limitations under the License.
|
14057
14251
|
|
14058
14252
|
================================================================================
|
14059
|
-
|
14253
|
+
itertools LICENSE-MIT
|
14060
14254
|
================================================================================
|
14061
14255
|
|
14062
|
-
Copyright (c)
|
14256
|
+
Copyright (c) 2015
|
14063
14257
|
|
14064
14258
|
Permission is hereby granted, free of charge, to any
|
14065
14259
|
person obtaining a copy of this software and associated
|
@@ -19241,6 +19435,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19241
19435
|
SOFTWARE.
|
19242
19436
|
|
19243
19437
|
|
19438
|
+
================================================================================
|
19439
|
+
lz4-sys LICENSE
|
19440
|
+
================================================================================
|
19441
|
+
|
19442
|
+
The MIT License (MIT)
|
19443
|
+
|
19444
|
+
Copyright (c) 2015 Artem V. Navrotskiy
|
19445
|
+
|
19446
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
19447
|
+
of this software and associated documentation files (the "Software"), to deal
|
19448
|
+
in the Software without restriction, including without limitation the rights
|
19449
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
19450
|
+
copies of the Software, and to permit persons to whom the Software is
|
19451
|
+
furnished to do so, subject to the following conditions:
|
19452
|
+
|
19453
|
+
The above copyright notice and this permission notice shall be included in all
|
19454
|
+
copies or substantial portions of the Software.
|
19455
|
+
|
19456
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19457
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19458
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19459
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19460
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19461
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19462
|
+
SOFTWARE.
|
19463
|
+
|
19464
|
+
|
19244
19465
|
================================================================================
|
19245
19466
|
lz4-sys liblz4/LICENSE
|
19246
19467
|
================================================================================
|
@@ -23198,7 +23419,12 @@ IN THE SOFTWARE.
|
|
23198
23419
|
parse-zoneinfo LICENSE
|
23199
23420
|
================================================================================
|
23200
23421
|
|
23201
|
-
|
23422
|
+
Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
|
23423
|
+
The licenses do not apply to files in the tzdb folder which are in the
|
23424
|
+
public domain. parse-zoneinfo was forked from zoneinfo-parse, which
|
23425
|
+
was originally created by Benjamin Sago under the MIT license.
|
23426
|
+
|
23427
|
+
Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers
|
23202
23428
|
|
23203
23429
|
The MIT License
|
23204
23430
|
|
@@ -23220,11 +23446,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23220
23446
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23221
23447
|
SOFTWARE.
|
23222
23448
|
|
23223
|
-
|
23224
|
-
peeking_take_while LICENSE-APACHE
|
23225
|
-
================================================================================
|
23226
|
-
|
23227
|
-
Apache License
|
23449
|
+
Apache License
|
23228
23450
|
Version 2.0, January 2004
|
23229
23451
|
http://www.apache.org/licenses/
|
23230
23452
|
|
@@ -23412,13 +23634,13 @@ APPENDIX: How to apply the Apache License to your work.
|
|
23412
23634
|
same "printed page" as the copyright notice for easier
|
23413
23635
|
identification within third-party archives.
|
23414
23636
|
|
23415
|
-
Copyright
|
23637
|
+
Copyright 2016 Djzin
|
23416
23638
|
|
23417
23639
|
Licensed under the Apache License, Version 2.0 (the "License");
|
23418
23640
|
you may not use this file except in compliance with the License.
|
23419
23641
|
You may obtain a copy of the License at
|
23420
23642
|
|
23421
|
-
|
23643
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
23422
23644
|
|
23423
23645
|
Unless required by applicable law or agreed to in writing, software
|
23424
23646
|
distributed under the License is distributed on an "AS IS" BASIS,
|
@@ -23426,36 +23648,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
23426
23648
|
See the License for the specific language governing permissions and
|
23427
23649
|
limitations under the License.
|
23428
23650
|
|
23429
|
-
================================================================================
|
23430
|
-
peeking_take_while LICENSE-MIT
|
23431
|
-
================================================================================
|
23432
|
-
|
23433
|
-
Copyright (c) 2015 The Rust Project Developers
|
23434
|
-
|
23435
|
-
Permission is hereby granted, free of charge, to any
|
23436
|
-
person obtaining a copy of this software and associated
|
23437
|
-
documentation files (the "Software"), to deal in the
|
23438
|
-
Software without restriction, including without
|
23439
|
-
limitation the rights to use, copy, modify, merge,
|
23440
|
-
publish, distribute, sublicense, and/or sell copies of
|
23441
|
-
the Software, and to permit persons to whom the Software
|
23442
|
-
is furnished to do so, subject to the following
|
23443
|
-
conditions:
|
23444
|
-
|
23445
|
-
The above copyright notice and this permission notice
|
23446
|
-
shall be included in all copies or substantial portions
|
23447
|
-
of the Software.
|
23448
|
-
|
23449
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
23450
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
23451
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
23452
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
23453
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
23454
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23455
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
23456
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
23457
|
-
DEALINGS IN THE SOFTWARE.
|
23458
|
-
|
23459
23651
|
================================================================================
|
23460
23652
|
percent-encoding LICENSE-APACHE
|
23461
23653
|
================================================================================
|
@@ -24474,188 +24666,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
24474
24666
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
24475
24667
|
DEALINGS IN THE SOFTWARE.
|
24476
24668
|
|
24477
|
-
================================================================================
|
24478
|
-
planus LICENSE-APACHE
|
24479
|
-
================================================================================
|
24480
|
-
|
24481
|
-
Apache License
|
24482
|
-
Version 2.0, January 2004
|
24483
|
-
http://www.apache.org/licenses/
|
24484
|
-
|
24485
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
24486
|
-
|
24487
|
-
1. Definitions.
|
24488
|
-
|
24489
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
24490
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
24491
|
-
|
24492
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
24493
|
-
the copyright owner that is granting the License.
|
24494
|
-
|
24495
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
24496
|
-
other entities that control, are controlled by, or are under common
|
24497
|
-
control with that entity. For the purposes of this definition,
|
24498
|
-
"control" means (i) the power, direct or indirect, to cause the
|
24499
|
-
direction or management of such entity, whether by contract or
|
24500
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
24501
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
24502
|
-
|
24503
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
24504
|
-
exercising permissions granted by this License.
|
24505
|
-
|
24506
|
-
"Source" form shall mean the preferred form for making modifications,
|
24507
|
-
including but not limited to software source code, documentation
|
24508
|
-
source, and configuration files.
|
24509
|
-
|
24510
|
-
"Object" form shall mean any form resulting from mechanical
|
24511
|
-
transformation or translation of a Source form, including but
|
24512
|
-
not limited to compiled object code, generated documentation,
|
24513
|
-
and conversions to other media types.
|
24514
|
-
|
24515
|
-
"Work" shall mean the work of authorship, whether in Source or
|
24516
|
-
Object form, made available under the License, as indicated by a
|
24517
|
-
copyright notice that is included in or attached to the work
|
24518
|
-
(an example is provided in the Appendix below).
|
24519
|
-
|
24520
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
24521
|
-
form, that is based on (or derived from) the Work and for which the
|
24522
|
-
editorial revisions, annotations, elaborations, or other modifications
|
24523
|
-
represent, as a whole, an original work of authorship. For the purposes
|
24524
|
-
of this License, Derivative Works shall not include works that remain
|
24525
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
24526
|
-
the Work and Derivative Works thereof.
|
24527
|
-
|
24528
|
-
"Contribution" shall mean any work of authorship, including
|
24529
|
-
the original version of the Work and any modifications or additions
|
24530
|
-
to that Work or Derivative Works thereof, that is intentionally
|
24531
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
24532
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
24533
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
24534
|
-
means any form of electronic, verbal, or written communication sent
|
24535
|
-
to the Licensor or its representatives, including but not limited to
|
24536
|
-
communication on electronic mailing lists, source code control systems,
|
24537
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
24538
|
-
Licensor for the purpose of discussing and improving the Work, but
|
24539
|
-
excluding communication that is conspicuously marked or otherwise
|
24540
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
24541
|
-
|
24542
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
24543
|
-
on behalf of whom a Contribution has been received by Licensor and
|
24544
|
-
subsequently incorporated within the Work.
|
24545
|
-
|
24546
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
24547
|
-
this License, each Contributor hereby grants to You a perpetual,
|
24548
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
24549
|
-
copyright license to reproduce, prepare Derivative Works of,
|
24550
|
-
publicly display, publicly perform, sublicense, and distribute the
|
24551
|
-
Work and such Derivative Works in Source or Object form.
|
24552
|
-
|
24553
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
24554
|
-
this License, each Contributor hereby grants to You a perpetual,
|
24555
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
24556
|
-
(except as stated in this section) patent license to make, have made,
|
24557
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
24558
|
-
where such license applies only to those patent claims licensable
|
24559
|
-
by such Contributor that are necessarily infringed by their
|
24560
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
24561
|
-
with the Work to which such Contribution(s) was submitted. If You
|
24562
|
-
institute patent litigation against any entity (including a
|
24563
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
24564
|
-
or a Contribution incorporated within the Work constitutes direct
|
24565
|
-
or contributory patent infringement, then any patent licenses
|
24566
|
-
granted to You under this License for that Work shall terminate
|
24567
|
-
as of the date such litigation is filed.
|
24568
|
-
|
24569
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
24570
|
-
Work or Derivative Works thereof in any medium, with or without
|
24571
|
-
modifications, and in Source or Object form, provided that You
|
24572
|
-
meet the following conditions:
|
24573
|
-
|
24574
|
-
(a) You must give any other recipients of the Work or
|
24575
|
-
Derivative Works a copy of this License; and
|
24576
|
-
|
24577
|
-
(b) You must cause any modified files to carry prominent notices
|
24578
|
-
stating that You changed the files; and
|
24579
|
-
|
24580
|
-
(c) You must retain, in the Source form of any Derivative Works
|
24581
|
-
that You distribute, all copyright, patent, trademark, and
|
24582
|
-
attribution notices from the Source form of the Work,
|
24583
|
-
excluding those notices that do not pertain to any part of
|
24584
|
-
the Derivative Works; and
|
24585
|
-
|
24586
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
24587
|
-
distribution, then any Derivative Works that You distribute must
|
24588
|
-
include a readable copy of the attribution notices contained
|
24589
|
-
within such NOTICE file, excluding those notices that do not
|
24590
|
-
pertain to any part of the Derivative Works, in at least one
|
24591
|
-
of the following places: within a NOTICE text file distributed
|
24592
|
-
as part of the Derivative Works; within the Source form or
|
24593
|
-
documentation, if provided along with the Derivative Works; or,
|
24594
|
-
within a display generated by the Derivative Works, if and
|
24595
|
-
wherever such third-party notices normally appear. The contents
|
24596
|
-
of the NOTICE file are for informational purposes only and
|
24597
|
-
do not modify the License. You may add Your own attribution
|
24598
|
-
notices within Derivative Works that You distribute, alongside
|
24599
|
-
or as an addendum to the NOTICE text from the Work, provided
|
24600
|
-
that such additional attribution notices cannot be construed
|
24601
|
-
as modifying the License.
|
24602
|
-
|
24603
|
-
You may add Your own copyright statement to Your modifications and
|
24604
|
-
may provide additional or different license terms and conditions
|
24605
|
-
for use, reproduction, or distribution of Your modifications, or
|
24606
|
-
for any such Derivative Works as a whole, provided Your use,
|
24607
|
-
reproduction, and distribution of the Work otherwise complies with
|
24608
|
-
the conditions stated in this License.
|
24609
|
-
|
24610
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
24611
|
-
any Contribution intentionally submitted for inclusion in the Work
|
24612
|
-
by You to the Licensor shall be under the terms and conditions of
|
24613
|
-
this License, without any additional terms or conditions.
|
24614
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
24615
|
-
the terms of any separate license agreement you may have executed
|
24616
|
-
with Licensor regarding such Contributions.
|
24617
|
-
|
24618
|
-
6. Trademarks. This License does not grant permission to use the trade
|
24619
|
-
names, trademarks, service marks, or product names of the Licensor,
|
24620
|
-
except as required for reasonable and customary use in describing the
|
24621
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
24622
|
-
|
24623
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
24624
|
-
agreed to in writing, Licensor provides the Work (and each
|
24625
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
24626
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
24627
|
-
implied, including, without limitation, any warranties or conditions
|
24628
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
24629
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
24630
|
-
appropriateness of using or redistributing the Work and assume any
|
24631
|
-
risks associated with Your exercise of permissions under this License.
|
24632
|
-
|
24633
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
24634
|
-
whether in tort (including negligence), contract, or otherwise,
|
24635
|
-
unless required by applicable law (such as deliberate and grossly
|
24636
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
24637
|
-
liable to You for damages, including any direct, indirect, special,
|
24638
|
-
incidental, or consequential damages of any character arising as a
|
24639
|
-
result of this License or out of the use or inability to use the
|
24640
|
-
Work (including but not limited to damages for loss of goodwill,
|
24641
|
-
work stoppage, computer failure or malfunction, or any and all
|
24642
|
-
other commercial damages or losses), even if such Contributor
|
24643
|
-
has been advised of the possibility of such damages.
|
24644
|
-
|
24645
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
24646
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
24647
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
24648
|
-
or other liability obligations and/or rights consistent with this
|
24649
|
-
License. However, in accepting such obligations, You may act only
|
24650
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
24651
|
-
of any other Contributor, and only if You agree to indemnify,
|
24652
|
-
defend, and hold each Contributor harmless for any liability
|
24653
|
-
incurred by, or claims asserted against, such Contributor by reason
|
24654
|
-
of your accepting any such warranty or additional liability.
|
24655
|
-
|
24656
|
-
END OF TERMS AND CONDITIONS
|
24657
|
-
|
24658
|
-
|
24659
24669
|
================================================================================
|
24660
24670
|
planus LICENSE-MIT
|
24661
24671
|
================================================================================
|
@@ -24683,6 +24693,188 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
24683
24693
|
SOFTWARE.
|
24684
24694
|
|
24685
24695
|
|
24696
|
+
================================================================================
|
24697
|
+
planus LICENSE-APACHE
|
24698
|
+
================================================================================
|
24699
|
+
|
24700
|
+
Apache License
|
24701
|
+
Version 2.0, January 2004
|
24702
|
+
http://www.apache.org/licenses/
|
24703
|
+
|
24704
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
24705
|
+
|
24706
|
+
1. Definitions.
|
24707
|
+
|
24708
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
24709
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
24710
|
+
|
24711
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
24712
|
+
the copyright owner that is granting the License.
|
24713
|
+
|
24714
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
24715
|
+
other entities that control, are controlled by, or are under common
|
24716
|
+
control with that entity. For the purposes of this definition,
|
24717
|
+
"control" means (i) the power, direct or indirect, to cause the
|
24718
|
+
direction or management of such entity, whether by contract or
|
24719
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
24720
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
24721
|
+
|
24722
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24723
|
+
exercising permissions granted by this License.
|
24724
|
+
|
24725
|
+
"Source" form shall mean the preferred form for making modifications,
|
24726
|
+
including but not limited to software source code, documentation
|
24727
|
+
source, and configuration files.
|
24728
|
+
|
24729
|
+
"Object" form shall mean any form resulting from mechanical
|
24730
|
+
transformation or translation of a Source form, including but
|
24731
|
+
not limited to compiled object code, generated documentation,
|
24732
|
+
and conversions to other media types.
|
24733
|
+
|
24734
|
+
"Work" shall mean the work of authorship, whether in Source or
|
24735
|
+
Object form, made available under the License, as indicated by a
|
24736
|
+
copyright notice that is included in or attached to the work
|
24737
|
+
(an example is provided in the Appendix below).
|
24738
|
+
|
24739
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
24740
|
+
form, that is based on (or derived from) the Work and for which the
|
24741
|
+
editorial revisions, annotations, elaborations, or other modifications
|
24742
|
+
represent, as a whole, an original work of authorship. For the purposes
|
24743
|
+
of this License, Derivative Works shall not include works that remain
|
24744
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
24745
|
+
the Work and Derivative Works thereof.
|
24746
|
+
|
24747
|
+
"Contribution" shall mean any work of authorship, including
|
24748
|
+
the original version of the Work and any modifications or additions
|
24749
|
+
to that Work or Derivative Works thereof, that is intentionally
|
24750
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
24751
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
24752
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
24753
|
+
means any form of electronic, verbal, or written communication sent
|
24754
|
+
to the Licensor or its representatives, including but not limited to
|
24755
|
+
communication on electronic mailing lists, source code control systems,
|
24756
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
24757
|
+
Licensor for the purpose of discussing and improving the Work, but
|
24758
|
+
excluding communication that is conspicuously marked or otherwise
|
24759
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
24760
|
+
|
24761
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
24762
|
+
on behalf of whom a Contribution has been received by Licensor and
|
24763
|
+
subsequently incorporated within the Work.
|
24764
|
+
|
24765
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
24766
|
+
this License, each Contributor hereby grants to You a perpetual,
|
24767
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
24768
|
+
copyright license to reproduce, prepare Derivative Works of,
|
24769
|
+
publicly display, publicly perform, sublicense, and distribute the
|
24770
|
+
Work and such Derivative Works in Source or Object form.
|
24771
|
+
|
24772
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
24773
|
+
this License, each Contributor hereby grants to You a perpetual,
|
24774
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
24775
|
+
(except as stated in this section) patent license to make, have made,
|
24776
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
24777
|
+
where such license applies only to those patent claims licensable
|
24778
|
+
by such Contributor that are necessarily infringed by their
|
24779
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
24780
|
+
with the Work to which such Contribution(s) was submitted. If You
|
24781
|
+
institute patent litigation against any entity (including a
|
24782
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
24783
|
+
or a Contribution incorporated within the Work constitutes direct
|
24784
|
+
or contributory patent infringement, then any patent licenses
|
24785
|
+
granted to You under this License for that Work shall terminate
|
24786
|
+
as of the date such litigation is filed.
|
24787
|
+
|
24788
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
24789
|
+
Work or Derivative Works thereof in any medium, with or without
|
24790
|
+
modifications, and in Source or Object form, provided that You
|
24791
|
+
meet the following conditions:
|
24792
|
+
|
24793
|
+
(a) You must give any other recipients of the Work or
|
24794
|
+
Derivative Works a copy of this License; and
|
24795
|
+
|
24796
|
+
(b) You must cause any modified files to carry prominent notices
|
24797
|
+
stating that You changed the files; and
|
24798
|
+
|
24799
|
+
(c) You must retain, in the Source form of any Derivative Works
|
24800
|
+
that You distribute, all copyright, patent, trademark, and
|
24801
|
+
attribution notices from the Source form of the Work,
|
24802
|
+
excluding those notices that do not pertain to any part of
|
24803
|
+
the Derivative Works; and
|
24804
|
+
|
24805
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
24806
|
+
distribution, then any Derivative Works that You distribute must
|
24807
|
+
include a readable copy of the attribution notices contained
|
24808
|
+
within such NOTICE file, excluding those notices that do not
|
24809
|
+
pertain to any part of the Derivative Works, in at least one
|
24810
|
+
of the following places: within a NOTICE text file distributed
|
24811
|
+
as part of the Derivative Works; within the Source form or
|
24812
|
+
documentation, if provided along with the Derivative Works; or,
|
24813
|
+
within a display generated by the Derivative Works, if and
|
24814
|
+
wherever such third-party notices normally appear. The contents
|
24815
|
+
of the NOTICE file are for informational purposes only and
|
24816
|
+
do not modify the License. You may add Your own attribution
|
24817
|
+
notices within Derivative Works that You distribute, alongside
|
24818
|
+
or as an addendum to the NOTICE text from the Work, provided
|
24819
|
+
that such additional attribution notices cannot be construed
|
24820
|
+
as modifying the License.
|
24821
|
+
|
24822
|
+
You may add Your own copyright statement to Your modifications and
|
24823
|
+
may provide additional or different license terms and conditions
|
24824
|
+
for use, reproduction, or distribution of Your modifications, or
|
24825
|
+
for any such Derivative Works as a whole, provided Your use,
|
24826
|
+
reproduction, and distribution of the Work otherwise complies with
|
24827
|
+
the conditions stated in this License.
|
24828
|
+
|
24829
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
24830
|
+
any Contribution intentionally submitted for inclusion in the Work
|
24831
|
+
by You to the Licensor shall be under the terms and conditions of
|
24832
|
+
this License, without any additional terms or conditions.
|
24833
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
24834
|
+
the terms of any separate license agreement you may have executed
|
24835
|
+
with Licensor regarding such Contributions.
|
24836
|
+
|
24837
|
+
6. Trademarks. This License does not grant permission to use the trade
|
24838
|
+
names, trademarks, service marks, or product names of the Licensor,
|
24839
|
+
except as required for reasonable and customary use in describing the
|
24840
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
24841
|
+
|
24842
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
24843
|
+
agreed to in writing, Licensor provides the Work (and each
|
24844
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
24845
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
24846
|
+
implied, including, without limitation, any warranties or conditions
|
24847
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
24848
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
24849
|
+
appropriateness of using or redistributing the Work and assume any
|
24850
|
+
risks associated with Your exercise of permissions under this License.
|
24851
|
+
|
24852
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
24853
|
+
whether in tort (including negligence), contract, or otherwise,
|
24854
|
+
unless required by applicable law (such as deliberate and grossly
|
24855
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
24856
|
+
liable to You for damages, including any direct, indirect, special,
|
24857
|
+
incidental, or consequential damages of any character arising as a
|
24858
|
+
result of this License or out of the use or inability to use the
|
24859
|
+
Work (including but not limited to damages for loss of goodwill,
|
24860
|
+
work stoppage, computer failure or malfunction, or any and all
|
24861
|
+
other commercial damages or losses), even if such Contributor
|
24862
|
+
has been advised of the possibility of such damages.
|
24863
|
+
|
24864
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
24865
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
24866
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
24867
|
+
or other liability obligations and/or rights consistent with this
|
24868
|
+
License. However, in accepting such obligations, You may act only
|
24869
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
24870
|
+
of any other Contributor, and only if You agree to indemnify,
|
24871
|
+
defend, and hold each Contributor harmless for any liability
|
24872
|
+
incurred by, or claims asserted against, such Contributor by reason
|
24873
|
+
of your accepting any such warranty or additional liability.
|
24874
|
+
|
24875
|
+
END OF TERMS AND CONDITIONS
|
24876
|
+
|
24877
|
+
|
24686
24878
|
================================================================================
|
24687
24879
|
polars LICENSE
|
24688
24880
|
================================================================================
|
@@ -25502,6 +25694,31 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25502
25694
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25503
25695
|
SOFTWARE.
|
25504
25696
|
|
25697
|
+
================================================================================
|
25698
|
+
polars-mem-engine LICENSE
|
25699
|
+
================================================================================
|
25700
|
+
|
25701
|
+
Copyright (c) 2020 Ritchie Vink
|
25702
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25703
|
+
|
25704
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25705
|
+
of this software and associated documentation files (the "Software"), to deal
|
25706
|
+
in the Software without restriction, including without limitation the rights
|
25707
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
25708
|
+
copies of the Software, and to permit persons to whom the Software is
|
25709
|
+
furnished to do so, subject to the following conditions:
|
25710
|
+
|
25711
|
+
The above copyright notice and this permission notice shall be included in all
|
25712
|
+
copies or substantial portions of the Software.
|
25713
|
+
|
25714
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
25715
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
25716
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25717
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25718
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25719
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25720
|
+
SOFTWARE.
|
25721
|
+
|
25505
25722
|
================================================================================
|
25506
25723
|
polars-ops LICENSE
|
25507
25724
|
================================================================================
|
@@ -34826,33 +35043,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34826
35043
|
SOFTWARE.
|
34827
35044
|
|
34828
35045
|
================================================================================
|
34829
|
-
strum_macros
|
34830
|
-
================================================================================
|
34831
|
-
|
34832
|
-
MIT License
|
34833
|
-
|
34834
|
-
Copyright (c) 2019 Peter Glotfelty
|
34835
|
-
|
34836
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
34837
|
-
of this software and associated documentation files (the "Software"), to deal
|
34838
|
-
in the Software without restriction, including without limitation the rights
|
34839
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
34840
|
-
copies of the Software, and to permit persons to whom the Software is
|
34841
|
-
furnished to do so, subject to the following conditions:
|
34842
|
-
|
34843
|
-
The above copyright notice and this permission notice shall be included in all
|
34844
|
-
copies or substantial portions of the Software.
|
34845
|
-
|
34846
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
34847
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
34848
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
34849
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
34850
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
34851
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
34852
|
-
SOFTWARE.
|
34853
|
-
|
34854
|
-
================================================================================
|
34855
|
-
strum_macros v0.26.2 LICENSE
|
35046
|
+
strum_macros LICENSE
|
34856
35047
|
================================================================================
|
34857
35048
|
|
34858
35049
|
MIT License
|
@@ -35112,7 +35303,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
35112
35303
|
DEALINGS IN THE SOFTWARE.
|
35113
35304
|
|
35114
35305
|
================================================================================
|
35115
|
-
syn v2.0.
|
35306
|
+
syn v2.0.67 LICENSE-APACHE
|
35116
35307
|
================================================================================
|
35117
35308
|
|
35118
35309
|
Apache License
|
@@ -35293,7 +35484,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
35293
35484
|
END OF TERMS AND CONDITIONS
|
35294
35485
|
|
35295
35486
|
================================================================================
|
35296
|
-
syn v2.0.
|
35487
|
+
syn v2.0.67 LICENSE-MIT
|
35297
35488
|
================================================================================
|
35298
35489
|
|
35299
35490
|
Permission is hereby granted, free of charge, to any
|
@@ -35988,31 +36179,27 @@ DEALINGS IN THE SOFTWARE.
|
|
35988
36179
|
tokio LICENSE
|
35989
36180
|
================================================================================
|
35990
36181
|
|
35991
|
-
|
36182
|
+
MIT License
|
35992
36183
|
|
35993
|
-
|
35994
|
-
person obtaining a copy of this software and associated
|
35995
|
-
documentation files (the "Software"), to deal in the
|
35996
|
-
Software without restriction, including without
|
35997
|
-
limitation the rights to use, copy, modify, merge,
|
35998
|
-
publish, distribute, sublicense, and/or sell copies of
|
35999
|
-
the Software, and to permit persons to whom the Software
|
36000
|
-
is furnished to do so, subject to the following
|
36001
|
-
conditions:
|
36184
|
+
Copyright (c) Tokio Contributors
|
36002
36185
|
|
36003
|
-
|
36004
|
-
|
36005
|
-
|
36186
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
36187
|
+
of this software and associated documentation files (the "Software"), to deal
|
36188
|
+
in the Software without restriction, including without limitation the rights
|
36189
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
36190
|
+
copies of the Software, and to permit persons to whom the Software is
|
36191
|
+
furnished to do so, subject to the following conditions:
|
36006
36192
|
|
36007
|
-
|
36008
|
-
|
36009
|
-
|
36010
|
-
|
36011
|
-
|
36012
|
-
|
36013
|
-
|
36014
|
-
IN
|
36015
|
-
|
36193
|
+
The above copyright notice and this permission notice shall be included in all
|
36194
|
+
copies or substantial portions of the Software.
|
36195
|
+
|
36196
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
36197
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
36198
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
36199
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
36200
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
36201
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
36202
|
+
SOFTWARE.
|
36016
36203
|
|
36017
36204
|
================================================================================
|
36018
36205
|
tokio-util LICENSE
|