polars-df 0.10.0-arm64-darwin → 0.12.0-arm64-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 +27 -0
- data/Cargo.lock +392 -351
- data/LICENSE-THIRD-PARTY.txt +1127 -867
- data/README.md +6 -6
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +0 -0
- data/lib/polars/array_expr.rb +4 -4
- data/lib/polars/batched_csv_reader.rb +11 -5
- data/lib/polars/cat_expr.rb +0 -36
- data/lib/polars/cat_name_space.rb +0 -37
- data/lib/polars/convert.rb +6 -1
- data/lib/polars/data_frame.rb +176 -403
- data/lib/polars/data_types.rb +1 -1
- data/lib/polars/date_time_expr.rb +525 -572
- data/lib/polars/date_time_name_space.rb +263 -460
- data/lib/polars/dynamic_group_by.rb +5 -5
- data/lib/polars/exceptions.rb +7 -0
- data/lib/polars/expr.rb +1394 -243
- 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 +90 -57
- data/lib/polars/functions/range/datetime_range.rb +149 -0
- data/lib/polars/functions/range/int_range.rb +2 -2
- data/lib/polars/functions/range/time_range.rb +141 -0
- data/lib/polars/functions/repeat.rb +1 -1
- data/lib/polars/functions/whenthen.rb +1 -1
- data/lib/polars/group_by.rb +88 -23
- data/lib/polars/io/avro.rb +24 -0
- data/lib/polars/{io.rb → io/csv.rb} +299 -493
- data/lib/polars/io/database.rb +73 -0
- data/lib/polars/io/ipc.rb +247 -0
- data/lib/polars/io/json.rb +29 -0
- data/lib/polars/io/ndjson.rb +80 -0
- data/lib/polars/io/parquet.rb +227 -0
- data/lib/polars/lazy_frame.rb +143 -272
- data/lib/polars/lazy_group_by.rb +100 -3
- data/lib/polars/list_expr.rb +11 -11
- data/lib/polars/list_name_space.rb +5 -1
- data/lib/polars/rolling_group_by.rb +7 -9
- data/lib/polars/series.rb +103 -187
- data/lib/polars/string_expr.rb +78 -102
- 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 +8 -300
- data/lib/polars/version.rb +1 -1
- data/lib/polars/whenthen.rb +6 -6
- data/lib/polars.rb +20 -1
- metadata +17 -4
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
|
|
@@ -66,39 +66,39 @@ avro-schema v0.3.0
|
|
66
66
|
https://github.com/DataEngineeringLabs/avro-schema
|
67
67
|
MIT/Apache-2.0
|
68
68
|
|
69
|
-
base64 v0.
|
69
|
+
base64 v0.22.1
|
70
70
|
https://github.com/marshallpierce/rust-base64
|
71
71
|
MIT OR Apache-2.0
|
72
72
|
|
73
|
-
bindgen v0.69.
|
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
|
|
81
|
-
brotli
|
81
|
+
brotli v5.0.0
|
82
82
|
https://github.com/dropbox/rust-brotli
|
83
|
-
BSD-3-Clause
|
83
|
+
BSD-3-Clause OR MIT
|
84
84
|
|
85
|
-
brotli-decompressor
|
85
|
+
brotli-decompressor v4.0.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,15 +169,15 @@ 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
|
|
176
|
-
either v1.
|
177
|
-
https://github.com/
|
176
|
+
either v1.12.0
|
177
|
+
https://github.com/rayon-rs/either
|
178
178
|
MIT OR Apache-2.0
|
179
179
|
|
180
|
-
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.
|
261
|
-
https://github.com/rust-lang/hashbrown
|
262
|
-
MIT OR Apache-2.0
|
263
|
-
|
264
|
-
hashbrown v0.14.3
|
260
|
+
hashbrown v0.14.5
|
265
261
|
https://github.com/rust-lang/hashbrown
|
266
262
|
MIT OR Apache-2.0
|
267
263
|
|
268
|
-
heck v0.
|
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
|
|
@@ -421,7 +421,7 @@ now v0.1.3
|
|
421
421
|
https://github.com/Kilerd/now
|
422
422
|
MIT
|
423
423
|
|
424
|
-
num-traits v0.2.
|
424
|
+
num-traits v0.2.19
|
425
425
|
https://github.com/rust-num/num-traits
|
426
426
|
MIT OR Apache-2.0
|
427
427
|
|
@@ -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,70 +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-
|
511
|
+
polars-expr v0.41.3
|
516
512
|
https://www.pola.rs/
|
517
513
|
MIT
|
518
514
|
|
519
|
-
polars-
|
515
|
+
polars-io v0.41.3
|
520
516
|
https://www.pola.rs/
|
521
517
|
MIT
|
522
518
|
|
523
|
-
polars-
|
519
|
+
polars-json v0.41.3
|
524
520
|
https://www.pola.rs/
|
525
521
|
MIT
|
526
522
|
|
527
|
-
polars-
|
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
|
528
|
+
https://www.pola.rs/
|
529
|
+
MIT
|
530
|
+
|
531
|
+
polars-ops v0.41.3
|
532
|
+
https://www.pola.rs/
|
533
|
+
MIT
|
534
|
+
|
535
|
+
polars-parquet v0.41.3
|
532
536
|
https://www.pola.rs/
|
533
537
|
MIT AND Apache-2.0
|
534
538
|
|
535
|
-
polars-pipe v0.
|
539
|
+
polars-pipe v0.41.3
|
536
540
|
https://www.pola.rs/
|
537
541
|
MIT
|
538
542
|
|
539
|
-
polars-plan v0.
|
543
|
+
polars-plan v0.41.3
|
540
544
|
https://www.pola.rs/
|
541
545
|
MIT
|
542
546
|
|
543
|
-
polars-row v0.
|
547
|
+
polars-row v0.41.3
|
544
548
|
https://www.pola.rs/
|
545
549
|
MIT
|
546
550
|
|
547
|
-
polars-sql v0.
|
551
|
+
polars-sql v0.41.3
|
548
552
|
https://www.pola.rs/
|
549
553
|
MIT
|
550
554
|
|
551
|
-
polars-time v0.
|
555
|
+
polars-time v0.41.3
|
552
556
|
https://www.pola.rs/
|
553
557
|
MIT
|
554
558
|
|
555
|
-
polars-utils v0.
|
559
|
+
polars-utils v0.41.3
|
556
560
|
https://www.pola.rs/
|
557
561
|
MIT
|
558
562
|
|
@@ -560,7 +564,7 @@ ppv-lite86 v0.2.17
|
|
560
564
|
https://github.com/cryptocorrosion/cryptocorrosion
|
561
565
|
MIT/Apache-2.0
|
562
566
|
|
563
|
-
proc-macro2 v1.0.
|
567
|
+
proc-macro2 v1.0.86
|
564
568
|
https://github.com/dtolnay/proc-macro2
|
565
569
|
MIT OR Apache-2.0
|
566
570
|
|
@@ -568,7 +572,7 @@ psm v0.1.21
|
|
568
572
|
https://github.com/rust-lang/stacker/
|
569
573
|
MIT OR Apache-2.0
|
570
574
|
|
571
|
-
quote v1.0.
|
575
|
+
quote v1.0.36
|
572
576
|
https://github.com/dtolnay/quote
|
573
577
|
MIT OR Apache-2.0
|
574
578
|
|
@@ -588,11 +592,11 @@ rand_distr v0.4.3
|
|
588
592
|
https://rust-random.github.io/book
|
589
593
|
MIT OR Apache-2.0
|
590
594
|
|
591
|
-
raw-cpuid v11.0.
|
595
|
+
raw-cpuid v11.0.2
|
592
596
|
https://github.com/gz/rust-cpuid
|
593
597
|
MIT
|
594
598
|
|
595
|
-
rayon v1.
|
599
|
+
rayon v1.10.0
|
596
600
|
https://github.com/rayon-rs/rayon
|
597
601
|
MIT OR Apache-2.0
|
598
602
|
|
@@ -600,11 +604,11 @@ rayon-core v1.12.1
|
|
600
604
|
https://github.com/rayon-rs/rayon
|
601
605
|
MIT OR Apache-2.0
|
602
606
|
|
603
|
-
rb-sys v0.9.
|
607
|
+
rb-sys v0.9.98
|
604
608
|
https://github.com/oxidize-rb/rb-sys
|
605
609
|
MIT OR Apache-2.0
|
606
610
|
|
607
|
-
rb-sys-build v0.9.
|
611
|
+
rb-sys-build v0.9.98
|
608
612
|
https://github.com/oxidize-rb/rb-sys
|
609
613
|
MIT OR Apache-2.0
|
610
614
|
|
@@ -620,23 +624,23 @@ recursive-proc-macro-impl v0.1.1
|
|
620
624
|
https://github.com/orlp/recursive
|
621
625
|
MIT
|
622
626
|
|
623
|
-
ref-cast v1.0.
|
627
|
+
ref-cast v1.0.23
|
624
628
|
https://github.com/dtolnay/ref-cast
|
625
629
|
MIT OR Apache-2.0
|
626
630
|
|
627
|
-
ref-cast-impl v1.0.
|
631
|
+
ref-cast-impl v1.0.23
|
628
632
|
https://github.com/dtolnay/ref-cast
|
629
633
|
MIT OR Apache-2.0
|
630
634
|
|
631
|
-
regex v1.10.
|
635
|
+
regex v1.10.5
|
632
636
|
https://github.com/rust-lang/regex
|
633
637
|
MIT OR Apache-2.0
|
634
638
|
|
635
|
-
regex-automata v0.4.
|
639
|
+
regex-automata v0.4.7
|
636
640
|
https://github.com/rust-lang/regex/tree/master/regex-automata
|
637
641
|
MIT OR Apache-2.0
|
638
642
|
|
639
|
-
regex-syntax v0.8.
|
643
|
+
regex-syntax v0.8.4
|
640
644
|
https://github.com/rust-lang/regex/tree/master/regex-syntax
|
641
645
|
MIT OR Apache-2.0
|
642
646
|
|
@@ -648,11 +652,11 @@ rustc-hash v1.1.0
|
|
648
652
|
https://github.com/rust-lang-nursery/rustc-hash
|
649
653
|
Apache-2.0/MIT
|
650
654
|
|
651
|
-
rustversion v1.0.
|
655
|
+
rustversion v1.0.17
|
652
656
|
https://github.com/dtolnay/rustversion
|
653
657
|
MIT OR Apache-2.0
|
654
658
|
|
655
|
-
ryu v1.0.
|
659
|
+
ryu v1.0.18
|
656
660
|
https://github.com/dtolnay/ryu
|
657
661
|
Apache-2.0 OR BSL-1.0
|
658
662
|
|
@@ -664,15 +668,15 @@ seq-macro v0.3.5
|
|
664
668
|
https://github.com/dtolnay/seq-macro
|
665
669
|
MIT OR Apache-2.0
|
666
670
|
|
667
|
-
serde v1.0.
|
671
|
+
serde v1.0.203
|
668
672
|
https://serde.rs
|
669
673
|
MIT OR Apache-2.0
|
670
674
|
|
671
|
-
serde_derive v1.0.
|
675
|
+
serde_derive v1.0.203
|
672
676
|
https://serde.rs
|
673
677
|
MIT OR Apache-2.0
|
674
678
|
|
675
|
-
serde_json v1.0.
|
679
|
+
serde_json v1.0.117
|
676
680
|
https://github.com/serde-rs/json
|
677
681
|
MIT OR Apache-2.0
|
678
682
|
|
@@ -680,11 +684,11 @@ shell-words v1.1.0
|
|
680
684
|
https://github.com/tmiasko/shell-words
|
681
685
|
MIT/Apache-2.0
|
682
686
|
|
683
|
-
shlex v1.
|
687
|
+
shlex v1.3.0
|
684
688
|
https://github.com/comex/rust-shlex
|
685
689
|
MIT OR Apache-2.0
|
686
690
|
|
687
|
-
simd-json v0.13.
|
691
|
+
simd-json v0.13.10
|
688
692
|
https://github.com/simd-lite/simd-json
|
689
693
|
Apache-2.0 OR MIT
|
690
694
|
|
@@ -700,7 +704,7 @@ slab v0.4.9
|
|
700
704
|
https://github.com/tokio-rs/slab
|
701
705
|
MIT
|
702
706
|
|
703
|
-
smallvec v1.
|
707
|
+
smallvec v1.13.2
|
704
708
|
https://github.com/servo/rust-smallvec
|
705
709
|
MIT OR Apache-2.0
|
706
710
|
|
@@ -712,11 +716,11 @@ snap v1.1.1
|
|
712
716
|
https://github.com/BurntSushi/rust-snappy
|
713
717
|
BSD-3-Clause
|
714
718
|
|
715
|
-
socket2 v0.5.
|
719
|
+
socket2 v0.5.7
|
716
720
|
https://github.com/rust-lang/socket2
|
717
721
|
MIT OR Apache-2.0
|
718
722
|
|
719
|
-
sqlparser v0.
|
723
|
+
sqlparser v0.47.0
|
720
724
|
https://github.com/sqlparser-rs/sqlparser-rs
|
721
725
|
Apache-2.0
|
722
726
|
|
@@ -740,11 +744,11 @@ strength_reduce v0.2.4
|
|
740
744
|
http://github.com/ejmahler/strength_reduce
|
741
745
|
MIT OR Apache-2.0
|
742
746
|
|
743
|
-
strum v0.
|
747
|
+
strum v0.26.2
|
744
748
|
https://github.com/Peternator7/strum
|
745
749
|
MIT
|
746
750
|
|
747
|
-
strum_macros v0.
|
751
|
+
strum_macros v0.26.4
|
748
752
|
https://github.com/Peternator7/strum
|
749
753
|
MIT
|
750
754
|
|
@@ -752,31 +756,31 @@ syn v1.0.109
|
|
752
756
|
https://github.com/dtolnay/syn
|
753
757
|
MIT OR Apache-2.0
|
754
758
|
|
755
|
-
syn v2.0.
|
759
|
+
syn v2.0.67
|
756
760
|
https://github.com/dtolnay/syn
|
757
761
|
MIT OR Apache-2.0
|
758
762
|
|
759
|
-
sysinfo v0.30.
|
763
|
+
sysinfo v0.30.12
|
760
764
|
https://github.com/GuillaumeGomez/sysinfo
|
761
765
|
MIT
|
762
766
|
|
763
|
-
target-features v0.1.
|
767
|
+
target-features v0.1.6
|
764
768
|
https://github.com/calebzulawski/target-features
|
765
769
|
MIT OR Apache-2.0
|
766
770
|
|
767
|
-
thiserror v1.0.
|
771
|
+
thiserror v1.0.61
|
768
772
|
https://github.com/dtolnay/thiserror
|
769
773
|
MIT OR Apache-2.0
|
770
774
|
|
771
|
-
thiserror-impl v1.0.
|
775
|
+
thiserror-impl v1.0.61
|
772
776
|
https://github.com/dtolnay/thiserror
|
773
777
|
MIT OR Apache-2.0
|
774
778
|
|
775
|
-
tokio v1.
|
779
|
+
tokio v1.38.0
|
776
780
|
https://tokio.rs
|
777
781
|
MIT
|
778
782
|
|
779
|
-
tokio-util v0.7.
|
783
|
+
tokio-util v0.7.11
|
780
784
|
https://tokio.rs
|
781
785
|
MIT
|
782
786
|
|
@@ -784,23 +788,23 @@ unicode-ident v1.0.12
|
|
784
788
|
https://github.com/dtolnay/unicode-ident
|
785
789
|
(MIT OR Apache-2.0) AND Unicode-DFS-2016
|
786
790
|
|
787
|
-
unicode-reverse v1.0.
|
791
|
+
unicode-reverse v1.0.9
|
788
792
|
https://github.com/mbrubeck/unicode-reverse
|
789
|
-
MIT
|
793
|
+
MIT OR Apache-2.0
|
790
794
|
|
791
|
-
unicode-segmentation v1.
|
795
|
+
unicode-segmentation v1.11.0
|
792
796
|
https://github.com/unicode-rs/unicode-segmentation
|
793
797
|
MIT/Apache-2.0
|
794
798
|
|
795
|
-
unicode-width v0.1.
|
799
|
+
unicode-width v0.1.13
|
796
800
|
https://github.com/unicode-rs/unicode-width
|
797
|
-
MIT
|
801
|
+
MIT OR Apache-2.0
|
798
802
|
|
799
|
-
uuid v1.
|
803
|
+
uuid v1.8.0
|
800
804
|
https://github.com/uuid-rs/uuid
|
801
805
|
Apache-2.0 OR MIT
|
802
806
|
|
803
|
-
value-trait v0.8.
|
807
|
+
value-trait v0.8.1
|
804
808
|
https://github.com/simd-lite/value-trait
|
805
809
|
Apache-2.0/MIT
|
806
810
|
|
@@ -808,23 +812,23 @@ version_check v0.9.4
|
|
808
812
|
https://github.com/SergioBenitez/version_check
|
809
813
|
MIT/Apache-2.0
|
810
814
|
|
811
|
-
xxhash-rust v0.8.
|
815
|
+
xxhash-rust v0.8.10
|
812
816
|
https://github.com/DoumanAsh/xxhash-rust
|
813
817
|
BSL-1.0
|
814
818
|
|
815
|
-
zerocopy v0.7.
|
819
|
+
zerocopy v0.7.34
|
816
820
|
https://github.com/google/zerocopy
|
817
821
|
BSD-2-Clause OR Apache-2.0 OR MIT
|
818
822
|
|
819
|
-
zstd v0.13.
|
823
|
+
zstd v0.13.1
|
820
824
|
https://github.com/gyscos/zstd-rs
|
821
825
|
MIT
|
822
826
|
|
823
|
-
zstd-safe v7.
|
827
|
+
zstd-safe v7.1.0
|
824
828
|
https://github.com/gyscos/zstd-rs
|
825
829
|
MIT/Apache-2.0
|
826
830
|
|
827
|
-
zstd-sys v2.0.
|
831
|
+
zstd-sys v2.0.11+zstd.1.5.6
|
828
832
|
https://github.com/gyscos/zstd-rs
|
829
833
|
MIT/Apache-2.0
|
830
834
|
|
@@ -1461,15 +1465,213 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
1461
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.
|
1462
1466
|
|
1463
1467
|
================================================================================
|
1464
|
-
allocator-api2
|
1468
|
+
allocator-api2 LICENSE-APACHE
|
1465
1469
|
================================================================================
|
1466
1470
|
|
1467
|
-
|
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
|
1468
1647
|
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1648
|
+
================================================================================
|
1649
|
+
allocator-api2 LICENSE-MIT
|
1650
|
+
================================================================================
|
1651
|
+
|
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.
|
1473
1675
|
|
1474
1676
|
================================================================================
|
1475
1677
|
argminmax LICENSE
|
@@ -4937,208 +5139,208 @@ limitations under the License.
|
|
4937
5139
|
clang-sys LICENSE.txt
|
4938
5140
|
================================================================================
|
4939
5141
|
|
4940
|
-
|
4941
|
-
Apache License
|
4942
|
-
Version 2.0, January 2004
|
4943
|
-
http://www.apache.org/licenses/
|
4944
|
-
|
4945
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4946
|
-
|
4947
|
-
1. Definitions.
|
4948
|
-
|
4949
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
4950
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
4951
|
-
|
4952
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
4953
|
-
the copyright owner that is granting the License.
|
4954
|
-
|
4955
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
4956
|
-
other entities that control, are controlled by, or are under common
|
4957
|
-
control with that entity. For the purposes of this definition,
|
4958
|
-
"control" means (i) the power, direct or indirect, to cause the
|
4959
|
-
direction or management of such entity, whether by contract or
|
4960
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4961
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
4962
|
-
|
4963
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
4964
|
-
exercising permissions granted by this License.
|
4965
|
-
|
4966
|
-
"Source" form shall mean the preferred form for making modifications,
|
4967
|
-
including but not limited to software source code, documentation
|
4968
|
-
source, and configuration files.
|
4969
|
-
|
4970
|
-
"Object" form shall mean any form resulting from mechanical
|
4971
|
-
transformation or translation of a Source form, including but
|
4972
|
-
not limited to compiled object code, generated documentation,
|
4973
|
-
and conversions to other media types.
|
4974
|
-
|
4975
|
-
"Work" shall mean the work of authorship, whether in Source or
|
4976
|
-
Object form, made available under the License, as indicated by a
|
4977
|
-
copyright notice that is included in or attached to the work
|
4978
|
-
(an example is provided in the Appendix below).
|
4979
|
-
|
4980
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
4981
|
-
form, that is based on (or derived from) the Work and for which the
|
4982
|
-
editorial revisions, annotations, elaborations, or other modifications
|
4983
|
-
represent, as a whole, an original work of authorship. For the purposes
|
4984
|
-
of this License, Derivative Works shall not include works that remain
|
4985
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
4986
|
-
the Work and Derivative Works thereof.
|
4987
|
-
|
4988
|
-
"Contribution" shall mean any work of authorship, including
|
4989
|
-
the original version of the Work and any modifications or additions
|
4990
|
-
to that Work or Derivative Works thereof, that is intentionally
|
4991
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
4992
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
4993
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
4994
|
-
means any form of electronic, verbal, or written communication sent
|
4995
|
-
to the Licensor or its representatives, including but not limited to
|
4996
|
-
communication on electronic mailing lists, source code control systems,
|
4997
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
4998
|
-
Licensor for the purpose of discussing and improving the Work, but
|
4999
|
-
excluding communication that is conspicuously marked or otherwise
|
5000
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
5001
|
-
|
5002
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
5003
|
-
on behalf of whom a Contribution has been received by Licensor and
|
5004
|
-
subsequently incorporated within the Work.
|
5005
|
-
|
5006
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
5007
|
-
this License, each Contributor hereby grants to You a perpetual,
|
5008
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5009
|
-
copyright license to reproduce, prepare Derivative Works of,
|
5010
|
-
publicly display, publicly perform, sublicense, and distribute the
|
5011
|
-
Work and such Derivative Works in Source or Object form.
|
5012
|
-
|
5013
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
5014
|
-
this License, each Contributor hereby grants to You a perpetual,
|
5015
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5016
|
-
(except as stated in this section) patent license to make, have made,
|
5017
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
5018
|
-
where such license applies only to those patent claims licensable
|
5019
|
-
by such Contributor that are necessarily infringed by their
|
5020
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
5021
|
-
with the Work to which such Contribution(s) was submitted. If You
|
5022
|
-
institute patent litigation against any entity (including a
|
5023
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
5024
|
-
or a Contribution incorporated within the Work constitutes direct
|
5025
|
-
or contributory patent infringement, then any patent licenses
|
5026
|
-
granted to You under this License for that Work shall terminate
|
5027
|
-
as of the date such litigation is filed.
|
5028
|
-
|
5029
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
5030
|
-
Work or Derivative Works thereof in any medium, with or without
|
5031
|
-
modifications, and in Source or Object form, provided that You
|
5032
|
-
meet the following conditions:
|
5033
|
-
|
5034
|
-
(a) You must give any other recipients of the Work or
|
5035
|
-
Derivative Works a copy of this License; and
|
5036
|
-
|
5037
|
-
(b) You must cause any modified files to carry prominent notices
|
5038
|
-
stating that You changed the files; and
|
5039
|
-
|
5040
|
-
(c) You must retain, in the Source form of any Derivative Works
|
5041
|
-
that You distribute, all copyright, patent, trademark, and
|
5042
|
-
attribution notices from the Source form of the Work,
|
5043
|
-
excluding those notices that do not pertain to any part of
|
5044
|
-
the Derivative Works; and
|
5045
|
-
|
5046
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
5047
|
-
distribution, then any Derivative Works that You distribute must
|
5048
|
-
include a readable copy of the attribution notices contained
|
5049
|
-
within such NOTICE file, excluding those notices that do not
|
5050
|
-
pertain to any part of the Derivative Works, in at least one
|
5051
|
-
of the following places: within a NOTICE text file distributed
|
5052
|
-
as part of the Derivative Works; within the Source form or
|
5053
|
-
documentation, if provided along with the Derivative Works; or,
|
5054
|
-
within a display generated by the Derivative Works, if and
|
5055
|
-
wherever such third-party notices normally appear. The contents
|
5056
|
-
of the NOTICE file are for informational purposes only and
|
5057
|
-
do not modify the License. You may add Your own attribution
|
5058
|
-
notices within Derivative Works that You distribute, alongside
|
5059
|
-
or as an addendum to the NOTICE text from the Work, provided
|
5060
|
-
that such additional attribution notices cannot be construed
|
5061
|
-
as modifying the License.
|
5062
|
-
|
5063
|
-
You may add Your own copyright statement to Your modifications and
|
5064
|
-
may provide additional or different license terms and conditions
|
5065
|
-
for use, reproduction, or distribution of Your modifications, or
|
5066
|
-
for any such Derivative Works as a whole, provided Your use,
|
5067
|
-
reproduction, and distribution of the Work otherwise complies with
|
5068
|
-
the conditions stated in this License.
|
5069
|
-
|
5070
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
5071
|
-
any Contribution intentionally submitted for inclusion in the Work
|
5072
|
-
by You to the Licensor shall be under the terms and conditions of
|
5073
|
-
this License, without any additional terms or conditions.
|
5074
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
5075
|
-
the terms of any separate license agreement you may have executed
|
5076
|
-
with Licensor regarding such Contributions.
|
5077
|
-
|
5078
|
-
6. Trademarks. This License does not grant permission to use the trade
|
5079
|
-
names, trademarks, service marks, or product names of the Licensor,
|
5080
|
-
except as required for reasonable and customary use in describing the
|
5081
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
5082
|
-
|
5083
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
5084
|
-
agreed to in writing, Licensor provides the Work (and each
|
5085
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
5086
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
5087
|
-
implied, including, without limitation, any warranties or conditions
|
5088
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
5089
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
5090
|
-
appropriateness of using or redistributing the Work and assume any
|
5091
|
-
risks associated with Your exercise of permissions under this License.
|
5092
|
-
|
5093
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
5094
|
-
whether in tort (including negligence), contract, or otherwise,
|
5095
|
-
unless required by applicable law (such as deliberate and grossly
|
5096
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
5097
|
-
liable to You for damages, including any direct, indirect, special,
|
5098
|
-
incidental, or consequential damages of any character arising as a
|
5099
|
-
result of this License or out of the use or inability to use the
|
5100
|
-
Work (including but not limited to damages for loss of goodwill,
|
5101
|
-
work stoppage, computer failure or malfunction, or any and all
|
5102
|
-
other commercial damages or losses), even if such Contributor
|
5103
|
-
has been advised of the possibility of such damages.
|
5104
|
-
|
5105
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
5106
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
5107
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
5108
|
-
or other liability obligations and/or rights consistent with this
|
5109
|
-
License. However, in accepting such obligations, You may act only
|
5110
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
5111
|
-
of any other Contributor, and only if You agree to indemnify,
|
5112
|
-
defend, and hold each Contributor harmless for any liability
|
5113
|
-
incurred by, or claims asserted against, such Contributor by reason
|
5114
|
-
of your accepting any such warranty or additional liability.
|
5115
|
-
|
5116
|
-
END OF TERMS AND CONDITIONS
|
5117
|
-
|
5118
|
-
APPENDIX: How to apply the Apache License to your work.
|
5119
|
-
|
5120
|
-
To apply the Apache License to your work, attach the following
|
5121
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
5122
|
-
replaced with your own identifying information. (Don't include
|
5123
|
-
the brackets!) The text should be enclosed in the appropriate
|
5124
|
-
comment syntax for the file format. We also recommend that a
|
5125
|
-
file or class name and description of purpose be included on the
|
5126
|
-
same "printed page" as the copyright notice for easier
|
5127
|
-
identification within third-party archives.
|
5128
|
-
|
5129
|
-
Copyright [yyyy] [name of copyright owner]
|
5130
|
-
|
5131
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
5132
|
-
you may not use this file except in compliance with the License.
|
5133
|
-
You may obtain a copy of the License at
|
5134
|
-
|
5135
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
5136
|
-
|
5137
|
-
Unless required by applicable law or agreed to in writing, software
|
5138
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
5139
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5140
|
-
See the License for the specific language governing permissions and
|
5141
|
-
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.
|
5142
5344
|
|
5143
5345
|
================================================================================
|
5144
5346
|
comfy-table LICENSE
|
@@ -11935,7 +12137,7 @@ limitations under the License.
|
|
11935
12137
|
getrandom LICENSE-MIT
|
11936
12138
|
================================================================================
|
11937
12139
|
|
11938
|
-
Copyright 2018
|
12140
|
+
Copyright (c) 2018-2024 The rust-random Project Developers
|
11939
12141
|
Copyright (c) 2014 The Rust Project Developers
|
11940
12142
|
|
11941
12143
|
Permission is hereby granted, free of charge, to any
|
@@ -12432,243 +12634,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
12432
12634
|
SOFTWARE.
|
12433
12635
|
|
12434
12636
|
================================================================================
|
12435
|
-
hashbrown
|
12436
|
-
================================================================================
|
12437
|
-
|
12438
|
-
Apache License
|
12439
|
-
Version 2.0, January 2004
|
12440
|
-
http://www.apache.org/licenses/
|
12441
|
-
|
12442
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
12443
|
-
|
12444
|
-
1. Definitions.
|
12445
|
-
|
12446
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
12447
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
12448
|
-
|
12449
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
12450
|
-
the copyright owner that is granting the License.
|
12451
|
-
|
12452
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
12453
|
-
other entities that control, are controlled by, or are under common
|
12454
|
-
control with that entity. For the purposes of this definition,
|
12455
|
-
"control" means (i) the power, direct or indirect, to cause the
|
12456
|
-
direction or management of such entity, whether by contract or
|
12457
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
12458
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
12459
|
-
|
12460
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
12461
|
-
exercising permissions granted by this License.
|
12462
|
-
|
12463
|
-
"Source" form shall mean the preferred form for making modifications,
|
12464
|
-
including but not limited to software source code, documentation
|
12465
|
-
source, and configuration files.
|
12466
|
-
|
12467
|
-
"Object" form shall mean any form resulting from mechanical
|
12468
|
-
transformation or translation of a Source form, including but
|
12469
|
-
not limited to compiled object code, generated documentation,
|
12470
|
-
and conversions to other media types.
|
12471
|
-
|
12472
|
-
"Work" shall mean the work of authorship, whether in Source or
|
12473
|
-
Object form, made available under the License, as indicated by a
|
12474
|
-
copyright notice that is included in or attached to the work
|
12475
|
-
(an example is provided in the Appendix below).
|
12476
|
-
|
12477
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
12478
|
-
form, that is based on (or derived from) the Work and for which the
|
12479
|
-
editorial revisions, annotations, elaborations, or other modifications
|
12480
|
-
represent, as a whole, an original work of authorship. For the purposes
|
12481
|
-
of this License, Derivative Works shall not include works that remain
|
12482
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
12483
|
-
the Work and Derivative Works thereof.
|
12484
|
-
|
12485
|
-
"Contribution" shall mean any work of authorship, including
|
12486
|
-
the original version of the Work and any modifications or additions
|
12487
|
-
to that Work or Derivative Works thereof, that is intentionally
|
12488
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
12489
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
12490
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
12491
|
-
means any form of electronic, verbal, or written communication sent
|
12492
|
-
to the Licensor or its representatives, including but not limited to
|
12493
|
-
communication on electronic mailing lists, source code control systems,
|
12494
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
12495
|
-
Licensor for the purpose of discussing and improving the Work, but
|
12496
|
-
excluding communication that is conspicuously marked or otherwise
|
12497
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
12498
|
-
|
12499
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
12500
|
-
on behalf of whom a Contribution has been received by Licensor and
|
12501
|
-
subsequently incorporated within the Work.
|
12502
|
-
|
12503
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
12504
|
-
this License, each Contributor hereby grants to You a perpetual,
|
12505
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
12506
|
-
copyright license to reproduce, prepare Derivative Works of,
|
12507
|
-
publicly display, publicly perform, sublicense, and distribute the
|
12508
|
-
Work and such Derivative Works in Source or Object form.
|
12509
|
-
|
12510
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
12511
|
-
this License, each Contributor hereby grants to You a perpetual,
|
12512
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
12513
|
-
(except as stated in this section) patent license to make, have made,
|
12514
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
12515
|
-
where such license applies only to those patent claims licensable
|
12516
|
-
by such Contributor that are necessarily infringed by their
|
12517
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
12518
|
-
with the Work to which such Contribution(s) was submitted. If You
|
12519
|
-
institute patent litigation against any entity (including a
|
12520
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
12521
|
-
or a Contribution incorporated within the Work constitutes direct
|
12522
|
-
or contributory patent infringement, then any patent licenses
|
12523
|
-
granted to You under this License for that Work shall terminate
|
12524
|
-
as of the date such litigation is filed.
|
12525
|
-
|
12526
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
12527
|
-
Work or Derivative Works thereof in any medium, with or without
|
12528
|
-
modifications, and in Source or Object form, provided that You
|
12529
|
-
meet the following conditions:
|
12530
|
-
|
12531
|
-
(a) You must give any other recipients of the Work or
|
12532
|
-
Derivative Works a copy of this License; and
|
12533
|
-
|
12534
|
-
(b) You must cause any modified files to carry prominent notices
|
12535
|
-
stating that You changed the files; and
|
12536
|
-
|
12537
|
-
(c) You must retain, in the Source form of any Derivative Works
|
12538
|
-
that You distribute, all copyright, patent, trademark, and
|
12539
|
-
attribution notices from the Source form of the Work,
|
12540
|
-
excluding those notices that do not pertain to any part of
|
12541
|
-
the Derivative Works; and
|
12542
|
-
|
12543
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
12544
|
-
distribution, then any Derivative Works that You distribute must
|
12545
|
-
include a readable copy of the attribution notices contained
|
12546
|
-
within such NOTICE file, excluding those notices that do not
|
12547
|
-
pertain to any part of the Derivative Works, in at least one
|
12548
|
-
of the following places: within a NOTICE text file distributed
|
12549
|
-
as part of the Derivative Works; within the Source form or
|
12550
|
-
documentation, if provided along with the Derivative Works; or,
|
12551
|
-
within a display generated by the Derivative Works, if and
|
12552
|
-
wherever such third-party notices normally appear. The contents
|
12553
|
-
of the NOTICE file are for informational purposes only and
|
12554
|
-
do not modify the License. You may add Your own attribution
|
12555
|
-
notices within Derivative Works that You distribute, alongside
|
12556
|
-
or as an addendum to the NOTICE text from the Work, provided
|
12557
|
-
that such additional attribution notices cannot be construed
|
12558
|
-
as modifying the License.
|
12559
|
-
|
12560
|
-
You may add Your own copyright statement to Your modifications and
|
12561
|
-
may provide additional or different license terms and conditions
|
12562
|
-
for use, reproduction, or distribution of Your modifications, or
|
12563
|
-
for any such Derivative Works as a whole, provided Your use,
|
12564
|
-
reproduction, and distribution of the Work otherwise complies with
|
12565
|
-
the conditions stated in this License.
|
12566
|
-
|
12567
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
12568
|
-
any Contribution intentionally submitted for inclusion in the Work
|
12569
|
-
by You to the Licensor shall be under the terms and conditions of
|
12570
|
-
this License, without any additional terms or conditions.
|
12571
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
12572
|
-
the terms of any separate license agreement you may have executed
|
12573
|
-
with Licensor regarding such Contributions.
|
12574
|
-
|
12575
|
-
6. Trademarks. This License does not grant permission to use the trade
|
12576
|
-
names, trademarks, service marks, or product names of the Licensor,
|
12577
|
-
except as required for reasonable and customary use in describing the
|
12578
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
12579
|
-
|
12580
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
12581
|
-
agreed to in writing, Licensor provides the Work (and each
|
12582
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
12583
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
12584
|
-
implied, including, without limitation, any warranties or conditions
|
12585
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
12586
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
12587
|
-
appropriateness of using or redistributing the Work and assume any
|
12588
|
-
risks associated with Your exercise of permissions under this License.
|
12589
|
-
|
12590
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
12591
|
-
whether in tort (including negligence), contract, or otherwise,
|
12592
|
-
unless required by applicable law (such as deliberate and grossly
|
12593
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
12594
|
-
liable to You for damages, including any direct, indirect, special,
|
12595
|
-
incidental, or consequential damages of any character arising as a
|
12596
|
-
result of this License or out of the use or inability to use the
|
12597
|
-
Work (including but not limited to damages for loss of goodwill,
|
12598
|
-
work stoppage, computer failure or malfunction, or any and all
|
12599
|
-
other commercial damages or losses), even if such Contributor
|
12600
|
-
has been advised of the possibility of such damages.
|
12601
|
-
|
12602
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
12603
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
12604
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
12605
|
-
or other liability obligations and/or rights consistent with this
|
12606
|
-
License. However, in accepting such obligations, You may act only
|
12607
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
12608
|
-
of any other Contributor, and only if You agree to indemnify,
|
12609
|
-
defend, and hold each Contributor harmless for any liability
|
12610
|
-
incurred by, or claims asserted against, such Contributor by reason
|
12611
|
-
of your accepting any such warranty or additional liability.
|
12612
|
-
|
12613
|
-
END OF TERMS AND CONDITIONS
|
12614
|
-
|
12615
|
-
APPENDIX: How to apply the Apache License to your work.
|
12616
|
-
|
12617
|
-
To apply the Apache License to your work, attach the following
|
12618
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
12619
|
-
replaced with your own identifying information. (Don't include
|
12620
|
-
the brackets!) The text should be enclosed in the appropriate
|
12621
|
-
comment syntax for the file format. We also recommend that a
|
12622
|
-
file or class name and description of purpose be included on the
|
12623
|
-
same "printed page" as the copyright notice for easier
|
12624
|
-
identification within third-party archives.
|
12625
|
-
|
12626
|
-
Copyright [yyyy] [name of copyright owner]
|
12627
|
-
|
12628
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
12629
|
-
you may not use this file except in compliance with the License.
|
12630
|
-
You may obtain a copy of the License at
|
12631
|
-
|
12632
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
12633
|
-
|
12634
|
-
Unless required by applicable law or agreed to in writing, software
|
12635
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
12636
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12637
|
-
See the License for the specific language governing permissions and
|
12638
|
-
limitations under the License.
|
12639
|
-
|
12640
|
-
================================================================================
|
12641
|
-
hashbrown v0.13.2 LICENSE-MIT
|
12642
|
-
================================================================================
|
12643
|
-
|
12644
|
-
Copyright (c) 2016 Amanieu d'Antras
|
12645
|
-
|
12646
|
-
Permission is hereby granted, free of charge, to any
|
12647
|
-
person obtaining a copy of this software and associated
|
12648
|
-
documentation files (the "Software"), to deal in the
|
12649
|
-
Software without restriction, including without
|
12650
|
-
limitation the rights to use, copy, modify, merge,
|
12651
|
-
publish, distribute, sublicense, and/or sell copies of
|
12652
|
-
the Software, and to permit persons to whom the Software
|
12653
|
-
is furnished to do so, subject to the following
|
12654
|
-
conditions:
|
12655
|
-
|
12656
|
-
The above copyright notice and this permission notice
|
12657
|
-
shall be included in all copies or substantial portions
|
12658
|
-
of the Software.
|
12659
|
-
|
12660
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
12661
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
12662
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
12663
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
12664
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
12665
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
12666
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
12667
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
12668
|
-
DEALINGS IN THE SOFTWARE.
|
12669
|
-
|
12670
|
-
================================================================================
|
12671
|
-
hashbrown v0.14.3 LICENSE-APACHE
|
12637
|
+
hashbrown LICENSE-APACHE
|
12672
12638
|
================================================================================
|
12673
12639
|
|
12674
12640
|
Apache License
|
@@ -12874,7 +12840,7 @@ See the License for the specific language governing permissions and
|
|
12874
12840
|
limitations under the License.
|
12875
12841
|
|
12876
12842
|
================================================================================
|
12877
|
-
hashbrown
|
12843
|
+
hashbrown LICENSE-MIT
|
12878
12844
|
================================================================================
|
12879
12845
|
|
12880
12846
|
Copyright (c) 2016 Amanieu d'Antras
|
@@ -14077,6 +14043,242 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
14077
14043
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
14078
14044
|
DEALINGS IN THE SOFTWARE.
|
14079
14045
|
|
14046
|
+
================================================================================
|
14047
|
+
itertools LICENSE-APACHE
|
14048
|
+
================================================================================
|
14049
|
+
|
14050
|
+
Apache License
|
14051
|
+
Version 2.0, January 2004
|
14052
|
+
http://www.apache.org/licenses/
|
14053
|
+
|
14054
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
14055
|
+
|
14056
|
+
1. Definitions.
|
14057
|
+
|
14058
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
14059
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
14060
|
+
|
14061
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14062
|
+
the copyright owner that is granting the License.
|
14063
|
+
|
14064
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
14065
|
+
other entities that control, are controlled by, or are under common
|
14066
|
+
control with that entity. For the purposes of this definition,
|
14067
|
+
"control" means (i) the power, direct or indirect, to cause the
|
14068
|
+
direction or management of such entity, whether by contract or
|
14069
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
14070
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
14071
|
+
|
14072
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
14073
|
+
exercising permissions granted by this License.
|
14074
|
+
|
14075
|
+
"Source" form shall mean the preferred form for making modifications,
|
14076
|
+
including but not limited to software source code, documentation
|
14077
|
+
source, and configuration files.
|
14078
|
+
|
14079
|
+
"Object" form shall mean any form resulting from mechanical
|
14080
|
+
transformation or translation of a Source form, including but
|
14081
|
+
not limited to compiled object code, generated documentation,
|
14082
|
+
and conversions to other media types.
|
14083
|
+
|
14084
|
+
"Work" shall mean the work of authorship, whether in Source or
|
14085
|
+
Object form, made available under the License, as indicated by a
|
14086
|
+
copyright notice that is included in or attached to the work
|
14087
|
+
(an example is provided in the Appendix below).
|
14088
|
+
|
14089
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
14090
|
+
form, that is based on (or derived from) the Work and for which the
|
14091
|
+
editorial revisions, annotations, elaborations, or other modifications
|
14092
|
+
represent, as a whole, an original work of authorship. For the purposes
|
14093
|
+
of this License, Derivative Works shall not include works that remain
|
14094
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
14095
|
+
the Work and Derivative Works thereof.
|
14096
|
+
|
14097
|
+
"Contribution" shall mean any work of authorship, including
|
14098
|
+
the original version of the Work and any modifications or additions
|
14099
|
+
to that Work or Derivative Works thereof, that is intentionally
|
14100
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
14101
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
14102
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
14103
|
+
means any form of electronic, verbal, or written communication sent
|
14104
|
+
to the Licensor or its representatives, including but not limited to
|
14105
|
+
communication on electronic mailing lists, source code control systems,
|
14106
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
14107
|
+
Licensor for the purpose of discussing and improving the Work, but
|
14108
|
+
excluding communication that is conspicuously marked or otherwise
|
14109
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
14110
|
+
|
14111
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
14112
|
+
on behalf of whom a Contribution has been received by Licensor and
|
14113
|
+
subsequently incorporated within the Work.
|
14114
|
+
|
14115
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
14116
|
+
this License, each Contributor hereby grants to You a perpetual,
|
14117
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
14118
|
+
copyright license to reproduce, prepare Derivative Works of,
|
14119
|
+
publicly display, publicly perform, sublicense, and distribute the
|
14120
|
+
Work and such Derivative Works in Source or Object form.
|
14121
|
+
|
14122
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
14123
|
+
this License, each Contributor hereby grants to You a perpetual,
|
14124
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
14125
|
+
(except as stated in this section) patent license to make, have made,
|
14126
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
14127
|
+
where such license applies only to those patent claims licensable
|
14128
|
+
by such Contributor that are necessarily infringed by their
|
14129
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
14130
|
+
with the Work to which such Contribution(s) was submitted. If You
|
14131
|
+
institute patent litigation against any entity (including a
|
14132
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
14133
|
+
or a Contribution incorporated within the Work constitutes direct
|
14134
|
+
or contributory patent infringement, then any patent licenses
|
14135
|
+
granted to You under this License for that Work shall terminate
|
14136
|
+
as of the date such litigation is filed.
|
14137
|
+
|
14138
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
14139
|
+
Work or Derivative Works thereof in any medium, with or without
|
14140
|
+
modifications, and in Source or Object form, provided that You
|
14141
|
+
meet the following conditions:
|
14142
|
+
|
14143
|
+
(a) You must give any other recipients of the Work or
|
14144
|
+
Derivative Works a copy of this License; and
|
14145
|
+
|
14146
|
+
(b) You must cause any modified files to carry prominent notices
|
14147
|
+
stating that You changed the files; and
|
14148
|
+
|
14149
|
+
(c) You must retain, in the Source form of any Derivative Works
|
14150
|
+
that You distribute, all copyright, patent, trademark, and
|
14151
|
+
attribution notices from the Source form of the Work,
|
14152
|
+
excluding those notices that do not pertain to any part of
|
14153
|
+
the Derivative Works; and
|
14154
|
+
|
14155
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
14156
|
+
distribution, then any Derivative Works that You distribute must
|
14157
|
+
include a readable copy of the attribution notices contained
|
14158
|
+
within such NOTICE file, excluding those notices that do not
|
14159
|
+
pertain to any part of the Derivative Works, in at least one
|
14160
|
+
of the following places: within a NOTICE text file distributed
|
14161
|
+
as part of the Derivative Works; within the Source form or
|
14162
|
+
documentation, if provided along with the Derivative Works; or,
|
14163
|
+
within a display generated by the Derivative Works, if and
|
14164
|
+
wherever such third-party notices normally appear. The contents
|
14165
|
+
of the NOTICE file are for informational purposes only and
|
14166
|
+
do not modify the License. You may add Your own attribution
|
14167
|
+
notices within Derivative Works that You distribute, alongside
|
14168
|
+
or as an addendum to the NOTICE text from the Work, provided
|
14169
|
+
that such additional attribution notices cannot be construed
|
14170
|
+
as modifying the License.
|
14171
|
+
|
14172
|
+
You may add Your own copyright statement to Your modifications and
|
14173
|
+
may provide additional or different license terms and conditions
|
14174
|
+
for use, reproduction, or distribution of Your modifications, or
|
14175
|
+
for any such Derivative Works as a whole, provided Your use,
|
14176
|
+
reproduction, and distribution of the Work otherwise complies with
|
14177
|
+
the conditions stated in this License.
|
14178
|
+
|
14179
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
14180
|
+
any Contribution intentionally submitted for inclusion in the Work
|
14181
|
+
by You to the Licensor shall be under the terms and conditions of
|
14182
|
+
this License, without any additional terms or conditions.
|
14183
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
14184
|
+
the terms of any separate license agreement you may have executed
|
14185
|
+
with Licensor regarding such Contributions.
|
14186
|
+
|
14187
|
+
6. Trademarks. This License does not grant permission to use the trade
|
14188
|
+
names, trademarks, service marks, or product names of the Licensor,
|
14189
|
+
except as required for reasonable and customary use in describing the
|
14190
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
14191
|
+
|
14192
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
14193
|
+
agreed to in writing, Licensor provides the Work (and each
|
14194
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
14195
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
14196
|
+
implied, including, without limitation, any warranties or conditions
|
14197
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
14198
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
14199
|
+
appropriateness of using or redistributing the Work and assume any
|
14200
|
+
risks associated with Your exercise of permissions under this License.
|
14201
|
+
|
14202
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
14203
|
+
whether in tort (including negligence), contract, or otherwise,
|
14204
|
+
unless required by applicable law (such as deliberate and grossly
|
14205
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
14206
|
+
liable to You for damages, including any direct, indirect, special,
|
14207
|
+
incidental, or consequential damages of any character arising as a
|
14208
|
+
result of this License or out of the use or inability to use the
|
14209
|
+
Work (including but not limited to damages for loss of goodwill,
|
14210
|
+
work stoppage, computer failure or malfunction, or any and all
|
14211
|
+
other commercial damages or losses), even if such Contributor
|
14212
|
+
has been advised of the possibility of such damages.
|
14213
|
+
|
14214
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
14215
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
14216
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
14217
|
+
or other liability obligations and/or rights consistent with this
|
14218
|
+
License. However, in accepting such obligations, You may act only
|
14219
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
14220
|
+
of any other Contributor, and only if You agree to indemnify,
|
14221
|
+
defend, and hold each Contributor harmless for any liability
|
14222
|
+
incurred by, or claims asserted against, such Contributor by reason
|
14223
|
+
of your accepting any such warranty or additional liability.
|
14224
|
+
|
14225
|
+
END OF TERMS AND CONDITIONS
|
14226
|
+
|
14227
|
+
APPENDIX: How to apply the Apache License to your work.
|
14228
|
+
|
14229
|
+
To apply the Apache License to your work, attach the following
|
14230
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
14231
|
+
replaced with your own identifying information. (Don't include
|
14232
|
+
the brackets!) The text should be enclosed in the appropriate
|
14233
|
+
comment syntax for the file format. We also recommend that a
|
14234
|
+
file or class name and description of purpose be included on the
|
14235
|
+
same "printed page" as the copyright notice for easier
|
14236
|
+
identification within third-party archives.
|
14237
|
+
|
14238
|
+
Copyright [yyyy] [name of copyright owner]
|
14239
|
+
|
14240
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
14241
|
+
you may not use this file except in compliance with the License.
|
14242
|
+
You may obtain a copy of the License at
|
14243
|
+
|
14244
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
14245
|
+
|
14246
|
+
Unless required by applicable law or agreed to in writing, software
|
14247
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
14248
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14249
|
+
See the License for the specific language governing permissions and
|
14250
|
+
limitations under the License.
|
14251
|
+
|
14252
|
+
================================================================================
|
14253
|
+
itertools LICENSE-MIT
|
14254
|
+
================================================================================
|
14255
|
+
|
14256
|
+
Copyright (c) 2015
|
14257
|
+
|
14258
|
+
Permission is hereby granted, free of charge, to any
|
14259
|
+
person obtaining a copy of this software and associated
|
14260
|
+
documentation files (the "Software"), to deal in the
|
14261
|
+
Software without restriction, including without
|
14262
|
+
limitation the rights to use, copy, modify, merge,
|
14263
|
+
publish, distribute, sublicense, and/or sell copies of
|
14264
|
+
the Software, and to permit persons to whom the Software
|
14265
|
+
is furnished to do so, subject to the following
|
14266
|
+
conditions:
|
14267
|
+
|
14268
|
+
The above copyright notice and this permission notice
|
14269
|
+
shall be included in all copies or substantial portions
|
14270
|
+
of the Software.
|
14271
|
+
|
14272
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
14273
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
14274
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
14275
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
14276
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
14277
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
14278
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
14279
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
14280
|
+
DEALINGS IN THE SOFTWARE.
|
14281
|
+
|
14080
14282
|
================================================================================
|
14081
14283
|
itoa LICENSE-APACHE
|
14082
14284
|
================================================================================
|
@@ -18971,243 +19173,270 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
18971
19173
|
DEALINGS IN THE SOFTWARE.
|
18972
19174
|
|
18973
19175
|
================================================================================
|
18974
|
-
log LICENSE-APACHE
|
19176
|
+
log LICENSE-APACHE
|
19177
|
+
================================================================================
|
19178
|
+
|
19179
|
+
Apache License
|
19180
|
+
Version 2.0, January 2004
|
19181
|
+
http://www.apache.org/licenses/
|
19182
|
+
|
19183
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
19184
|
+
|
19185
|
+
1. Definitions.
|
19186
|
+
|
19187
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
19188
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
19189
|
+
|
19190
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
19191
|
+
the copyright owner that is granting the License.
|
19192
|
+
|
19193
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
19194
|
+
other entities that control, are controlled by, or are under common
|
19195
|
+
control with that entity. For the purposes of this definition,
|
19196
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19197
|
+
direction or management of such entity, whether by contract or
|
19198
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
19199
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
19200
|
+
|
19201
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
19202
|
+
exercising permissions granted by this License.
|
19203
|
+
|
19204
|
+
"Source" form shall mean the preferred form for making modifications,
|
19205
|
+
including but not limited to software source code, documentation
|
19206
|
+
source, and configuration files.
|
19207
|
+
|
19208
|
+
"Object" form shall mean any form resulting from mechanical
|
19209
|
+
transformation or translation of a Source form, including but
|
19210
|
+
not limited to compiled object code, generated documentation,
|
19211
|
+
and conversions to other media types.
|
19212
|
+
|
19213
|
+
"Work" shall mean the work of authorship, whether in Source or
|
19214
|
+
Object form, made available under the License, as indicated by a
|
19215
|
+
copyright notice that is included in or attached to the work
|
19216
|
+
(an example is provided in the Appendix below).
|
19217
|
+
|
19218
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
19219
|
+
form, that is based on (or derived from) the Work and for which the
|
19220
|
+
editorial revisions, annotations, elaborations, or other modifications
|
19221
|
+
represent, as a whole, an original work of authorship. For the purposes
|
19222
|
+
of this License, Derivative Works shall not include works that remain
|
19223
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
19224
|
+
the Work and Derivative Works thereof.
|
19225
|
+
|
19226
|
+
"Contribution" shall mean any work of authorship, including
|
19227
|
+
the original version of the Work and any modifications or additions
|
19228
|
+
to that Work or Derivative Works thereof, that is intentionally
|
19229
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
19230
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
19231
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
19232
|
+
means any form of electronic, verbal, or written communication sent
|
19233
|
+
to the Licensor or its representatives, including but not limited to
|
19234
|
+
communication on electronic mailing lists, source code control systems,
|
19235
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
19236
|
+
Licensor for the purpose of discussing and improving the Work, but
|
19237
|
+
excluding communication that is conspicuously marked or otherwise
|
19238
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
19239
|
+
|
19240
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
19241
|
+
on behalf of whom a Contribution has been received by Licensor and
|
19242
|
+
subsequently incorporated within the Work.
|
19243
|
+
|
19244
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
19245
|
+
this License, each Contributor hereby grants to You a perpetual,
|
19246
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
19247
|
+
copyright license to reproduce, prepare Derivative Works of,
|
19248
|
+
publicly display, publicly perform, sublicense, and distribute the
|
19249
|
+
Work and such Derivative Works in Source or Object form.
|
19250
|
+
|
19251
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
19252
|
+
this License, each Contributor hereby grants to You a perpetual,
|
19253
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
19254
|
+
(except as stated in this section) patent license to make, have made,
|
19255
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
19256
|
+
where such license applies only to those patent claims licensable
|
19257
|
+
by such Contributor that are necessarily infringed by their
|
19258
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
19259
|
+
with the Work to which such Contribution(s) was submitted. If You
|
19260
|
+
institute patent litigation against any entity (including a
|
19261
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
19262
|
+
or a Contribution incorporated within the Work constitutes direct
|
19263
|
+
or contributory patent infringement, then any patent licenses
|
19264
|
+
granted to You under this License for that Work shall terminate
|
19265
|
+
as of the date such litigation is filed.
|
19266
|
+
|
19267
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
19268
|
+
Work or Derivative Works thereof in any medium, with or without
|
19269
|
+
modifications, and in Source or Object form, provided that You
|
19270
|
+
meet the following conditions:
|
19271
|
+
|
19272
|
+
(a) You must give any other recipients of the Work or
|
19273
|
+
Derivative Works a copy of this License; and
|
19274
|
+
|
19275
|
+
(b) You must cause any modified files to carry prominent notices
|
19276
|
+
stating that You changed the files; and
|
19277
|
+
|
19278
|
+
(c) You must retain, in the Source form of any Derivative Works
|
19279
|
+
that You distribute, all copyright, patent, trademark, and
|
19280
|
+
attribution notices from the Source form of the Work,
|
19281
|
+
excluding those notices that do not pertain to any part of
|
19282
|
+
the Derivative Works; and
|
19283
|
+
|
19284
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
19285
|
+
distribution, then any Derivative Works that You distribute must
|
19286
|
+
include a readable copy of the attribution notices contained
|
19287
|
+
within such NOTICE file, excluding those notices that do not
|
19288
|
+
pertain to any part of the Derivative Works, in at least one
|
19289
|
+
of the following places: within a NOTICE text file distributed
|
19290
|
+
as part of the Derivative Works; within the Source form or
|
19291
|
+
documentation, if provided along with the Derivative Works; or,
|
19292
|
+
within a display generated by the Derivative Works, if and
|
19293
|
+
wherever such third-party notices normally appear. The contents
|
19294
|
+
of the NOTICE file are for informational purposes only and
|
19295
|
+
do not modify the License. You may add Your own attribution
|
19296
|
+
notices within Derivative Works that You distribute, alongside
|
19297
|
+
or as an addendum to the NOTICE text from the Work, provided
|
19298
|
+
that such additional attribution notices cannot be construed
|
19299
|
+
as modifying the License.
|
19300
|
+
|
19301
|
+
You may add Your own copyright statement to Your modifications and
|
19302
|
+
may provide additional or different license terms and conditions
|
19303
|
+
for use, reproduction, or distribution of Your modifications, or
|
19304
|
+
for any such Derivative Works as a whole, provided Your use,
|
19305
|
+
reproduction, and distribution of the Work otherwise complies with
|
19306
|
+
the conditions stated in this License.
|
19307
|
+
|
19308
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
19309
|
+
any Contribution intentionally submitted for inclusion in the Work
|
19310
|
+
by You to the Licensor shall be under the terms and conditions of
|
19311
|
+
this License, without any additional terms or conditions.
|
19312
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
19313
|
+
the terms of any separate license agreement you may have executed
|
19314
|
+
with Licensor regarding such Contributions.
|
19315
|
+
|
19316
|
+
6. Trademarks. This License does not grant permission to use the trade
|
19317
|
+
names, trademarks, service marks, or product names of the Licensor,
|
19318
|
+
except as required for reasonable and customary use in describing the
|
19319
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
19320
|
+
|
19321
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
19322
|
+
agreed to in writing, Licensor provides the Work (and each
|
19323
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
19324
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
19325
|
+
implied, including, without limitation, any warranties or conditions
|
19326
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
19327
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
19328
|
+
appropriateness of using or redistributing the Work and assume any
|
19329
|
+
risks associated with Your exercise of permissions under this License.
|
19330
|
+
|
19331
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
19332
|
+
whether in tort (including negligence), contract, or otherwise,
|
19333
|
+
unless required by applicable law (such as deliberate and grossly
|
19334
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
19335
|
+
liable to You for damages, including any direct, indirect, special,
|
19336
|
+
incidental, or consequential damages of any character arising as a
|
19337
|
+
result of this License or out of the use or inability to use the
|
19338
|
+
Work (including but not limited to damages for loss of goodwill,
|
19339
|
+
work stoppage, computer failure or malfunction, or any and all
|
19340
|
+
other commercial damages or losses), even if such Contributor
|
19341
|
+
has been advised of the possibility of such damages.
|
19342
|
+
|
19343
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
19344
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
19345
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
19346
|
+
or other liability obligations and/or rights consistent with this
|
19347
|
+
License. However, in accepting such obligations, You may act only
|
19348
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
19349
|
+
of any other Contributor, and only if You agree to indemnify,
|
19350
|
+
defend, and hold each Contributor harmless for any liability
|
19351
|
+
incurred by, or claims asserted against, such Contributor by reason
|
19352
|
+
of your accepting any such warranty or additional liability.
|
19353
|
+
|
19354
|
+
END OF TERMS AND CONDITIONS
|
19355
|
+
|
19356
|
+
APPENDIX: How to apply the Apache License to your work.
|
19357
|
+
|
19358
|
+
To apply the Apache License to your work, attach the following
|
19359
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
19360
|
+
replaced with your own identifying information. (Don't include
|
19361
|
+
the brackets!) The text should be enclosed in the appropriate
|
19362
|
+
comment syntax for the file format. We also recommend that a
|
19363
|
+
file or class name and description of purpose be included on the
|
19364
|
+
same "printed page" as the copyright notice for easier
|
19365
|
+
identification within third-party archives.
|
19366
|
+
|
19367
|
+
Copyright [yyyy] [name of copyright owner]
|
19368
|
+
|
19369
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
19370
|
+
you may not use this file except in compliance with the License.
|
19371
|
+
You may obtain a copy of the License at
|
19372
|
+
|
19373
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
19374
|
+
|
19375
|
+
Unless required by applicable law or agreed to in writing, software
|
19376
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
19377
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19378
|
+
See the License for the specific language governing permissions and
|
19379
|
+
limitations under the License.
|
19380
|
+
|
19381
|
+
================================================================================
|
19382
|
+
log LICENSE-MIT
|
19383
|
+
================================================================================
|
19384
|
+
|
19385
|
+
Copyright (c) 2014 The Rust Project Developers
|
19386
|
+
|
19387
|
+
Permission is hereby granted, free of charge, to any
|
19388
|
+
person obtaining a copy of this software and associated
|
19389
|
+
documentation files (the "Software"), to deal in the
|
19390
|
+
Software without restriction, including without
|
19391
|
+
limitation the rights to use, copy, modify, merge,
|
19392
|
+
publish, distribute, sublicense, and/or sell copies of
|
19393
|
+
the Software, and to permit persons to whom the Software
|
19394
|
+
is furnished to do so, subject to the following
|
19395
|
+
conditions:
|
19396
|
+
|
19397
|
+
The above copyright notice and this permission notice
|
19398
|
+
shall be included in all copies or substantial portions
|
19399
|
+
of the Software.
|
19400
|
+
|
19401
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
19402
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
19403
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
19404
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
19405
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
19406
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19407
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
19408
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
19409
|
+
DEALINGS IN THE SOFTWARE.
|
19410
|
+
|
19411
|
+
================================================================================
|
19412
|
+
lz4 LICENSE
|
18975
19413
|
================================================================================
|
18976
19414
|
|
18977
|
-
|
18978
|
-
Version 2.0, January 2004
|
18979
|
-
http://www.apache.org/licenses/
|
18980
|
-
|
18981
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
18982
|
-
|
18983
|
-
1. Definitions.
|
18984
|
-
|
18985
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
18986
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
18987
|
-
|
18988
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
18989
|
-
the copyright owner that is granting the License.
|
18990
|
-
|
18991
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
18992
|
-
other entities that control, are controlled by, or are under common
|
18993
|
-
control with that entity. For the purposes of this definition,
|
18994
|
-
"control" means (i) the power, direct or indirect, to cause the
|
18995
|
-
direction or management of such entity, whether by contract or
|
18996
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
18997
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
18998
|
-
|
18999
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
19000
|
-
exercising permissions granted by this License.
|
19001
|
-
|
19002
|
-
"Source" form shall mean the preferred form for making modifications,
|
19003
|
-
including but not limited to software source code, documentation
|
19004
|
-
source, and configuration files.
|
19005
|
-
|
19006
|
-
"Object" form shall mean any form resulting from mechanical
|
19007
|
-
transformation or translation of a Source form, including but
|
19008
|
-
not limited to compiled object code, generated documentation,
|
19009
|
-
and conversions to other media types.
|
19010
|
-
|
19011
|
-
"Work" shall mean the work of authorship, whether in Source or
|
19012
|
-
Object form, made available under the License, as indicated by a
|
19013
|
-
copyright notice that is included in or attached to the work
|
19014
|
-
(an example is provided in the Appendix below).
|
19015
|
-
|
19016
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
19017
|
-
form, that is based on (or derived from) the Work and for which the
|
19018
|
-
editorial revisions, annotations, elaborations, or other modifications
|
19019
|
-
represent, as a whole, an original work of authorship. For the purposes
|
19020
|
-
of this License, Derivative Works shall not include works that remain
|
19021
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
19022
|
-
the Work and Derivative Works thereof.
|
19023
|
-
|
19024
|
-
"Contribution" shall mean any work of authorship, including
|
19025
|
-
the original version of the Work and any modifications or additions
|
19026
|
-
to that Work or Derivative Works thereof, that is intentionally
|
19027
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
19028
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
19029
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
19030
|
-
means any form of electronic, verbal, or written communication sent
|
19031
|
-
to the Licensor or its representatives, including but not limited to
|
19032
|
-
communication on electronic mailing lists, source code control systems,
|
19033
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
19034
|
-
Licensor for the purpose of discussing and improving the Work, but
|
19035
|
-
excluding communication that is conspicuously marked or otherwise
|
19036
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
19037
|
-
|
19038
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
19039
|
-
on behalf of whom a Contribution has been received by Licensor and
|
19040
|
-
subsequently incorporated within the Work.
|
19041
|
-
|
19042
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
19043
|
-
this License, each Contributor hereby grants to You a perpetual,
|
19044
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
19045
|
-
copyright license to reproduce, prepare Derivative Works of,
|
19046
|
-
publicly display, publicly perform, sublicense, and distribute the
|
19047
|
-
Work and such Derivative Works in Source or Object form.
|
19048
|
-
|
19049
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
19050
|
-
this License, each Contributor hereby grants to You a perpetual,
|
19051
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
19052
|
-
(except as stated in this section) patent license to make, have made,
|
19053
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
19054
|
-
where such license applies only to those patent claims licensable
|
19055
|
-
by such Contributor that are necessarily infringed by their
|
19056
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
19057
|
-
with the Work to which such Contribution(s) was submitted. If You
|
19058
|
-
institute patent litigation against any entity (including a
|
19059
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
19060
|
-
or a Contribution incorporated within the Work constitutes direct
|
19061
|
-
or contributory patent infringement, then any patent licenses
|
19062
|
-
granted to You under this License for that Work shall terminate
|
19063
|
-
as of the date such litigation is filed.
|
19064
|
-
|
19065
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
19066
|
-
Work or Derivative Works thereof in any medium, with or without
|
19067
|
-
modifications, and in Source or Object form, provided that You
|
19068
|
-
meet the following conditions:
|
19069
|
-
|
19070
|
-
(a) You must give any other recipients of the Work or
|
19071
|
-
Derivative Works a copy of this License; and
|
19072
|
-
|
19073
|
-
(b) You must cause any modified files to carry prominent notices
|
19074
|
-
stating that You changed the files; and
|
19075
|
-
|
19076
|
-
(c) You must retain, in the Source form of any Derivative Works
|
19077
|
-
that You distribute, all copyright, patent, trademark, and
|
19078
|
-
attribution notices from the Source form of the Work,
|
19079
|
-
excluding those notices that do not pertain to any part of
|
19080
|
-
the Derivative Works; and
|
19081
|
-
|
19082
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
19083
|
-
distribution, then any Derivative Works that You distribute must
|
19084
|
-
include a readable copy of the attribution notices contained
|
19085
|
-
within such NOTICE file, excluding those notices that do not
|
19086
|
-
pertain to any part of the Derivative Works, in at least one
|
19087
|
-
of the following places: within a NOTICE text file distributed
|
19088
|
-
as part of the Derivative Works; within the Source form or
|
19089
|
-
documentation, if provided along with the Derivative Works; or,
|
19090
|
-
within a display generated by the Derivative Works, if and
|
19091
|
-
wherever such third-party notices normally appear. The contents
|
19092
|
-
of the NOTICE file are for informational purposes only and
|
19093
|
-
do not modify the License. You may add Your own attribution
|
19094
|
-
notices within Derivative Works that You distribute, alongside
|
19095
|
-
or as an addendum to the NOTICE text from the Work, provided
|
19096
|
-
that such additional attribution notices cannot be construed
|
19097
|
-
as modifying the License.
|
19098
|
-
|
19099
|
-
You may add Your own copyright statement to Your modifications and
|
19100
|
-
may provide additional or different license terms and conditions
|
19101
|
-
for use, reproduction, or distribution of Your modifications, or
|
19102
|
-
for any such Derivative Works as a whole, provided Your use,
|
19103
|
-
reproduction, and distribution of the Work otherwise complies with
|
19104
|
-
the conditions stated in this License.
|
19105
|
-
|
19106
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
19107
|
-
any Contribution intentionally submitted for inclusion in the Work
|
19108
|
-
by You to the Licensor shall be under the terms and conditions of
|
19109
|
-
this License, without any additional terms or conditions.
|
19110
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
19111
|
-
the terms of any separate license agreement you may have executed
|
19112
|
-
with Licensor regarding such Contributions.
|
19113
|
-
|
19114
|
-
6. Trademarks. This License does not grant permission to use the trade
|
19115
|
-
names, trademarks, service marks, or product names of the Licensor,
|
19116
|
-
except as required for reasonable and customary use in describing the
|
19117
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
19118
|
-
|
19119
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
19120
|
-
agreed to in writing, Licensor provides the Work (and each
|
19121
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
19122
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
19123
|
-
implied, including, without limitation, any warranties or conditions
|
19124
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
19125
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
19126
|
-
appropriateness of using or redistributing the Work and assume any
|
19127
|
-
risks associated with Your exercise of permissions under this License.
|
19128
|
-
|
19129
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
19130
|
-
whether in tort (including negligence), contract, or otherwise,
|
19131
|
-
unless required by applicable law (such as deliberate and grossly
|
19132
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
19133
|
-
liable to You for damages, including any direct, indirect, special,
|
19134
|
-
incidental, or consequential damages of any character arising as a
|
19135
|
-
result of this License or out of the use or inability to use the
|
19136
|
-
Work (including but not limited to damages for loss of goodwill,
|
19137
|
-
work stoppage, computer failure or malfunction, or any and all
|
19138
|
-
other commercial damages or losses), even if such Contributor
|
19139
|
-
has been advised of the possibility of such damages.
|
19140
|
-
|
19141
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
19142
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
19143
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
19144
|
-
or other liability obligations and/or rights consistent with this
|
19145
|
-
License. However, in accepting such obligations, You may act only
|
19146
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
19147
|
-
of any other Contributor, and only if You agree to indemnify,
|
19148
|
-
defend, and hold each Contributor harmless for any liability
|
19149
|
-
incurred by, or claims asserted against, such Contributor by reason
|
19150
|
-
of your accepting any such warranty or additional liability.
|
19151
|
-
|
19152
|
-
END OF TERMS AND CONDITIONS
|
19153
|
-
|
19154
|
-
APPENDIX: How to apply the Apache License to your work.
|
19155
|
-
|
19156
|
-
To apply the Apache License to your work, attach the following
|
19157
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
19158
|
-
replaced with your own identifying information. (Don't include
|
19159
|
-
the brackets!) The text should be enclosed in the appropriate
|
19160
|
-
comment syntax for the file format. We also recommend that a
|
19161
|
-
file or class name and description of purpose be included on the
|
19162
|
-
same "printed page" as the copyright notice for easier
|
19163
|
-
identification within third-party archives.
|
19164
|
-
|
19165
|
-
Copyright [yyyy] [name of copyright owner]
|
19166
|
-
|
19167
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
19168
|
-
you may not use this file except in compliance with the License.
|
19169
|
-
You may obtain a copy of the License at
|
19170
|
-
|
19171
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
19172
|
-
|
19173
|
-
Unless required by applicable law or agreed to in writing, software
|
19174
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
19175
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19176
|
-
See the License for the specific language governing permissions and
|
19177
|
-
limitations under the License.
|
19415
|
+
The MIT License (MIT)
|
19178
19416
|
|
19179
|
-
|
19180
|
-
log LICENSE-MIT
|
19181
|
-
================================================================================
|
19417
|
+
Copyright (c) 2015 Artem V. Navrotskiy
|
19182
19418
|
|
19183
|
-
|
19419
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
19420
|
+
of this software and associated documentation files (the "Software"), to deal
|
19421
|
+
in the Software without restriction, including without limitation the rights
|
19422
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
19423
|
+
copies of the Software, and to permit persons to whom the Software is
|
19424
|
+
furnished to do so, subject to the following conditions:
|
19184
19425
|
|
19185
|
-
|
19186
|
-
|
19187
|
-
documentation files (the "Software"), to deal in the
|
19188
|
-
Software without restriction, including without
|
19189
|
-
limitation the rights to use, copy, modify, merge,
|
19190
|
-
publish, distribute, sublicense, and/or sell copies of
|
19191
|
-
the Software, and to permit persons to whom the Software
|
19192
|
-
is furnished to do so, subject to the following
|
19193
|
-
conditions:
|
19426
|
+
The above copyright notice and this permission notice shall be included in all
|
19427
|
+
copies or substantial portions of the Software.
|
19194
19428
|
|
19195
|
-
|
19196
|
-
|
19197
|
-
|
19429
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19430
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19431
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19432
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19433
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19434
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19435
|
+
SOFTWARE.
|
19198
19436
|
|
19199
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
19200
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
19201
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
19202
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
19203
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
19204
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19205
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
19206
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
19207
|
-
DEALINGS IN THE SOFTWARE.
|
19208
19437
|
|
19209
19438
|
================================================================================
|
19210
|
-
lz4 LICENSE
|
19439
|
+
lz4-sys LICENSE
|
19211
19440
|
================================================================================
|
19212
19441
|
|
19213
19442
|
The MIT License (MIT)
|
@@ -23190,7 +23419,12 @@ IN THE SOFTWARE.
|
|
23190
23419
|
parse-zoneinfo LICENSE
|
23191
23420
|
================================================================================
|
23192
23421
|
|
23193
|
-
|
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
|
23194
23428
|
|
23195
23429
|
The MIT License
|
23196
23430
|
|
@@ -23212,11 +23446,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23212
23446
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23213
23447
|
SOFTWARE.
|
23214
23448
|
|
23215
|
-
|
23216
|
-
peeking_take_while LICENSE-APACHE
|
23217
|
-
================================================================================
|
23218
|
-
|
23219
|
-
Apache License
|
23449
|
+
Apache License
|
23220
23450
|
Version 2.0, January 2004
|
23221
23451
|
http://www.apache.org/licenses/
|
23222
23452
|
|
@@ -23404,13 +23634,13 @@ APPENDIX: How to apply the Apache License to your work.
|
|
23404
23634
|
same "printed page" as the copyright notice for easier
|
23405
23635
|
identification within third-party archives.
|
23406
23636
|
|
23407
|
-
Copyright
|
23637
|
+
Copyright 2016 Djzin
|
23408
23638
|
|
23409
23639
|
Licensed under the Apache License, Version 2.0 (the "License");
|
23410
23640
|
you may not use this file except in compliance with the License.
|
23411
23641
|
You may obtain a copy of the License at
|
23412
23642
|
|
23413
|
-
|
23643
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
23414
23644
|
|
23415
23645
|
Unless required by applicable law or agreed to in writing, software
|
23416
23646
|
distributed under the License is distributed on an "AS IS" BASIS,
|
@@ -23418,36 +23648,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
23418
23648
|
See the License for the specific language governing permissions and
|
23419
23649
|
limitations under the License.
|
23420
23650
|
|
23421
|
-
================================================================================
|
23422
|
-
peeking_take_while LICENSE-MIT
|
23423
|
-
================================================================================
|
23424
|
-
|
23425
|
-
Copyright (c) 2015 The Rust Project Developers
|
23426
|
-
|
23427
|
-
Permission is hereby granted, free of charge, to any
|
23428
|
-
person obtaining a copy of this software and associated
|
23429
|
-
documentation files (the "Software"), to deal in the
|
23430
|
-
Software without restriction, including without
|
23431
|
-
limitation the rights to use, copy, modify, merge,
|
23432
|
-
publish, distribute, sublicense, and/or sell copies of
|
23433
|
-
the Software, and to permit persons to whom the Software
|
23434
|
-
is furnished to do so, subject to the following
|
23435
|
-
conditions:
|
23436
|
-
|
23437
|
-
The above copyright notice and this permission notice
|
23438
|
-
shall be included in all copies or substantial portions
|
23439
|
-
of the Software.
|
23440
|
-
|
23441
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
23442
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
23443
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
23444
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
23445
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
23446
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23447
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
23448
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
23449
|
-
DEALINGS IN THE SOFTWARE.
|
23450
|
-
|
23451
23651
|
================================================================================
|
23452
23652
|
percent-encoding LICENSE-APACHE
|
23453
23653
|
================================================================================
|
@@ -24680,6 +24880,7 @@ polars LICENSE
|
|
24680
24880
|
================================================================================
|
24681
24881
|
|
24682
24882
|
Copyright (c) 2020 Ritchie Vink
|
24883
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
24683
24884
|
|
24684
24885
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
24685
24886
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25323,6 +25524,7 @@ polars-compute LICENSE
|
|
25323
25524
|
================================================================================
|
25324
25525
|
|
25325
25526
|
Copyright (c) 2020 Ritchie Vink
|
25527
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25326
25528
|
|
25327
25529
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25328
25530
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25347,6 +25549,7 @@ polars-core LICENSE
|
|
25347
25549
|
================================================================================
|
25348
25550
|
|
25349
25551
|
Copyright (c) 2020 Ritchie Vink
|
25552
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25350
25553
|
|
25351
25554
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25352
25555
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25371,6 +25574,32 @@ polars-error LICENSE
|
|
25371
25574
|
================================================================================
|
25372
25575
|
|
25373
25576
|
Copyright (c) 2020 Ritchie Vink
|
25577
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25578
|
+
|
25579
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25580
|
+
of this software and associated documentation files (the "Software"), to deal
|
25581
|
+
in the Software without restriction, including without limitation the rights
|
25582
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
25583
|
+
copies of the Software, and to permit persons to whom the Software is
|
25584
|
+
furnished to do so, subject to the following conditions:
|
25585
|
+
|
25586
|
+
The above copyright notice and this permission notice shall be included in all
|
25587
|
+
copies or substantial portions of the Software.
|
25588
|
+
|
25589
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
25590
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
25591
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25592
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25593
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25594
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25595
|
+
SOFTWARE.
|
25596
|
+
|
25597
|
+
================================================================================
|
25598
|
+
polars-expr LICENSE
|
25599
|
+
================================================================================
|
25600
|
+
|
25601
|
+
Copyright (c) 2020 Ritchie Vink
|
25602
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25374
25603
|
|
25375
25604
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25376
25605
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25395,6 +25624,7 @@ polars-io LICENSE
|
|
25395
25624
|
================================================================================
|
25396
25625
|
|
25397
25626
|
Copyright (c) 2020 Ritchie Vink
|
25627
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25398
25628
|
|
25399
25629
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25400
25630
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25419,6 +25649,7 @@ polars-json LICENSE
|
|
25419
25649
|
================================================================================
|
25420
25650
|
|
25421
25651
|
Copyright (c) 2020 Ritchie Vink
|
25652
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25422
25653
|
|
25423
25654
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25424
25655
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25443,6 +25674,32 @@ polars-lazy LICENSE
|
|
25443
25674
|
================================================================================
|
25444
25675
|
|
25445
25676
|
Copyright (c) 2020 Ritchie Vink
|
25677
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25678
|
+
|
25679
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25680
|
+
of this software and associated documentation files (the "Software"), to deal
|
25681
|
+
in the Software without restriction, including without limitation the rights
|
25682
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
25683
|
+
copies of the Software, and to permit persons to whom the Software is
|
25684
|
+
furnished to do so, subject to the following conditions:
|
25685
|
+
|
25686
|
+
The above copyright notice and this permission notice shall be included in all
|
25687
|
+
copies or substantial portions of the Software.
|
25688
|
+
|
25689
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
25690
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
25691
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25692
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25693
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25694
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25695
|
+
SOFTWARE.
|
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.
|
25446
25703
|
|
25447
25704
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25448
25705
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25467,6 +25724,7 @@ polars-ops LICENSE
|
|
25467
25724
|
================================================================================
|
25468
25725
|
|
25469
25726
|
Copyright (c) 2020 Ritchie Vink
|
25727
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25470
25728
|
|
25471
25729
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25472
25730
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25692,6 +25950,7 @@ polars-pipe LICENSE
|
|
25692
25950
|
================================================================================
|
25693
25951
|
|
25694
25952
|
Copyright (c) 2020 Ritchie Vink
|
25953
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25695
25954
|
|
25696
25955
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25697
25956
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25716,6 +25975,7 @@ polars-plan LICENSE
|
|
25716
25975
|
================================================================================
|
25717
25976
|
|
25718
25977
|
Copyright (c) 2020 Ritchie Vink
|
25978
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25719
25979
|
|
25720
25980
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25721
25981
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25740,6 +26000,7 @@ polars-row LICENSE
|
|
25740
26000
|
================================================================================
|
25741
26001
|
|
25742
26002
|
Copyright (c) 2020 Ritchie Vink
|
26003
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25743
26004
|
|
25744
26005
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25745
26006
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25764,6 +26025,7 @@ polars-sql LICENSE
|
|
25764
26025
|
================================================================================
|
25765
26026
|
|
25766
26027
|
Copyright (c) 2020 Ritchie Vink
|
26028
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25767
26029
|
|
25768
26030
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25769
26031
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25788,6 +26050,7 @@ polars-time LICENSE
|
|
25788
26050
|
================================================================================
|
25789
26051
|
|
25790
26052
|
Copyright (c) 2020 Ritchie Vink
|
26053
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25791
26054
|
|
25792
26055
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25793
26056
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -25812,6 +26075,7 @@ polars-utils LICENSE
|
|
25812
26075
|
================================================================================
|
25813
26076
|
|
25814
26077
|
Copyright (c) 2020 Ritchie Vink
|
26078
|
+
Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
25815
26079
|
|
25816
26080
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
25817
26081
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -35039,7 +35303,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
35039
35303
|
DEALINGS IN THE SOFTWARE.
|
35040
35304
|
|
35041
35305
|
================================================================================
|
35042
|
-
syn v2.0.
|
35306
|
+
syn v2.0.67 LICENSE-APACHE
|
35043
35307
|
================================================================================
|
35044
35308
|
|
35045
35309
|
Apache License
|
@@ -35220,7 +35484,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
35220
35484
|
END OF TERMS AND CONDITIONS
|
35221
35485
|
|
35222
35486
|
================================================================================
|
35223
|
-
syn v2.0.
|
35487
|
+
syn v2.0.67 LICENSE-MIT
|
35224
35488
|
================================================================================
|
35225
35489
|
|
35226
35490
|
Permission is hereby granted, free of charge, to any
|
@@ -35915,31 +36179,27 @@ DEALINGS IN THE SOFTWARE.
|
|
35915
36179
|
tokio LICENSE
|
35916
36180
|
================================================================================
|
35917
36181
|
|
35918
|
-
|
36182
|
+
MIT License
|
35919
36183
|
|
35920
|
-
|
35921
|
-
person obtaining a copy of this software and associated
|
35922
|
-
documentation files (the "Software"), to deal in the
|
35923
|
-
Software without restriction, including without
|
35924
|
-
limitation the rights to use, copy, modify, merge,
|
35925
|
-
publish, distribute, sublicense, and/or sell copies of
|
35926
|
-
the Software, and to permit persons to whom the Software
|
35927
|
-
is furnished to do so, subject to the following
|
35928
|
-
conditions:
|
36184
|
+
Copyright (c) Tokio Contributors
|
35929
36185
|
|
35930
|
-
|
35931
|
-
|
35932
|
-
|
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:
|
35933
36192
|
|
35934
|
-
|
35935
|
-
|
35936
|
-
|
35937
|
-
|
35938
|
-
|
35939
|
-
|
35940
|
-
|
35941
|
-
IN
|
35942
|
-
|
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.
|
35943
36203
|
|
35944
36204
|
================================================================================
|
35945
36205
|
tokio-util LICENSE
|