polars-df 0.4.0-aarch64-linux → 0.6.0-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/Cargo.lock +447 -410
- data/Cargo.toml +0 -1
- data/LICENSE-THIRD-PARTY.txt +2386 -1216
- data/README.md +6 -5
- data/lib/polars/3.0/polars.so +0 -0
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/array_expr.rb +84 -0
- data/lib/polars/array_name_space.rb +77 -0
- data/lib/polars/batched_csv_reader.rb +1 -1
- data/lib/polars/convert.rb +2 -2
- data/lib/polars/data_frame.rb +289 -96
- data/lib/polars/data_types.rb +169 -33
- data/lib/polars/date_time_expr.rb +142 -2
- data/lib/polars/date_time_name_space.rb +17 -3
- data/lib/polars/expr.rb +145 -78
- data/lib/polars/functions.rb +0 -1
- data/lib/polars/group_by.rb +1 -22
- data/lib/polars/lazy_frame.rb +84 -31
- data/lib/polars/lazy_functions.rb +71 -32
- data/lib/polars/list_expr.rb +94 -45
- data/lib/polars/list_name_space.rb +13 -13
- data/lib/polars/rolling_group_by.rb +4 -2
- data/lib/polars/series.rb +249 -87
- data/lib/polars/string_expr.rb +277 -45
- data/lib/polars/string_name_space.rb +137 -22
- data/lib/polars/struct_name_space.rb +32 -0
- data/lib/polars/utils.rb +138 -54
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +5 -2
- metadata +4 -2
data/LICENSE-THIRD-PARTY.txt
CHANGED
@@ -14,7 +14,7 @@ ahash v0.8.3
|
|
14
14
|
https://github.com/tkaitchuck/ahash
|
15
15
|
MIT OR Apache-2.0
|
16
16
|
|
17
|
-
aho-corasick
|
17
|
+
aho-corasick v1.0.2
|
18
18
|
https://github.com/BurntSushi/aho-corasick
|
19
19
|
Unlicense OR MIT
|
20
20
|
|
@@ -26,6 +26,14 @@ alloc-stdlib v0.2.2
|
|
26
26
|
https://github.com/dropbox/rust-alloc-no-stdlib
|
27
27
|
BSD-3-Clause
|
28
28
|
|
29
|
+
allocator-api2 v0.2.16
|
30
|
+
https://github.com/zakarumych/allocator-api2
|
31
|
+
MIT OR Apache-2.0
|
32
|
+
|
33
|
+
argminmax v0.6.1
|
34
|
+
https://github.com/jvdd/argminmax
|
35
|
+
MIT
|
36
|
+
|
29
37
|
array-init-cursor v0.2.0
|
30
38
|
https://github.com/planus-org/planus
|
31
39
|
MIT/Apache-2.0
|
@@ -34,19 +42,19 @@ arrow-format v0.8.1
|
|
34
42
|
https://github.com/DataEngineeringLabs/arrow-format
|
35
43
|
Apache-2.0
|
36
44
|
|
37
|
-
arrow2 v0.17.
|
45
|
+
arrow2 v0.17.3
|
38
46
|
https://github.com/jorgecarleitao/arrow2
|
39
47
|
Apache-2.0
|
40
48
|
|
41
|
-
async-stream v0.3.
|
49
|
+
async-stream v0.3.5
|
42
50
|
https://github.com/tokio-rs/async-stream
|
43
51
|
MIT
|
44
52
|
|
45
|
-
async-stream-impl v0.3.
|
53
|
+
async-stream-impl v0.3.5
|
46
54
|
https://github.com/tokio-rs/async-stream
|
47
55
|
MIT
|
48
56
|
|
49
|
-
async-trait v0.1.
|
57
|
+
async-trait v0.1.71
|
50
58
|
https://github.com/dtolnay/async-trait
|
51
59
|
MIT OR Apache-2.0
|
52
60
|
|
@@ -62,11 +70,11 @@ avro-schema v0.3.0
|
|
62
70
|
https://github.com/DataEngineeringLabs/avro-schema
|
63
71
|
MIT/Apache-2.0
|
64
72
|
|
65
|
-
base64 v0.21.
|
73
|
+
base64 v0.21.2
|
66
74
|
https://github.com/marshallpierce/rust-base64
|
67
75
|
MIT OR Apache-2.0
|
68
76
|
|
69
|
-
bindgen v0.
|
77
|
+
bindgen v0.62.0
|
70
78
|
https://rust-lang.github.io/rust-bindgen/
|
71
79
|
BSD-3-Clause
|
72
80
|
|
@@ -110,18 +118,18 @@ chrono v0.4.24
|
|
110
118
|
https://github.com/chronotope/chrono
|
111
119
|
MIT/Apache-2.0
|
112
120
|
|
113
|
-
chrono-tz v0.8.
|
121
|
+
chrono-tz v0.8.3
|
114
122
|
https://github.com/chronotope/chrono-tz
|
115
123
|
MIT OR Apache-2.0
|
116
124
|
|
117
|
-
chrono-tz-build v0.
|
125
|
+
chrono-tz-build v0.2.0
|
118
126
|
MIT OR Apache-2.0
|
119
127
|
|
120
|
-
clang-sys v1.6.
|
128
|
+
clang-sys v1.6.1
|
121
129
|
https://github.com/KyleMayes/clang-sys
|
122
130
|
Apache-2.0
|
123
131
|
|
124
|
-
comfy-table
|
132
|
+
comfy-table v7.0.1
|
125
133
|
https://github.com/nukesor/comfy-table
|
126
134
|
MIT
|
127
135
|
|
@@ -137,7 +145,7 @@ crc32fast v1.3.2
|
|
137
145
|
https://github.com/srijs/rust-crc32fast
|
138
146
|
MIT OR Apache-2.0
|
139
147
|
|
140
|
-
crossbeam-channel v0.5.
|
148
|
+
crossbeam-channel v0.5.8
|
141
149
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel
|
142
150
|
MIT OR Apache-2.0
|
143
151
|
|
@@ -145,26 +153,22 @@ crossbeam-deque v0.8.3
|
|
145
153
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque
|
146
154
|
MIT OR Apache-2.0
|
147
155
|
|
148
|
-
crossbeam-epoch v0.9.
|
156
|
+
crossbeam-epoch v0.9.15
|
149
157
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch
|
150
158
|
MIT OR Apache-2.0
|
151
159
|
|
152
|
-
crossbeam-
|
160
|
+
crossbeam-queue v0.3.8
|
161
|
+
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue
|
162
|
+
MIT OR Apache-2.0
|
163
|
+
|
164
|
+
crossbeam-utils v0.8.16
|
153
165
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils
|
154
166
|
MIT OR Apache-2.0
|
155
167
|
|
156
|
-
crossterm v0.
|
168
|
+
crossterm v0.26.1
|
157
169
|
https://github.com/crossterm-rs/crossterm
|
158
170
|
MIT
|
159
171
|
|
160
|
-
dirs v4.0.0
|
161
|
-
https://github.com/soc/dirs-rs
|
162
|
-
MIT OR Apache-2.0
|
163
|
-
|
164
|
-
dirs-sys v0.3.7
|
165
|
-
https://github.com/dirs-dev/dirs-sys-rs
|
166
|
-
MIT OR Apache-2.0
|
167
|
-
|
168
172
|
dyn-clone v1.0.11
|
169
173
|
https://github.com/dtolnay/dyn-clone
|
170
174
|
MIT OR Apache-2.0
|
@@ -173,10 +177,14 @@ either v1.8.1
|
|
173
177
|
https://github.com/bluss/either
|
174
178
|
MIT OR Apache-2.0
|
175
179
|
|
176
|
-
enum_dispatch v0.3.
|
180
|
+
enum_dispatch v0.3.12
|
177
181
|
https://gitlab.com/antonok/enum_dispatch
|
178
182
|
MIT OR Apache-2.0
|
179
183
|
|
184
|
+
equivalent v1.0.1
|
185
|
+
https://github.com/cuviper/equivalent
|
186
|
+
Apache-2.0 OR MIT
|
187
|
+
|
180
188
|
ethnum v1.3.2
|
181
189
|
https://github.com/nlordell/ethnum-rs
|
182
190
|
MIT OR Apache-2.0
|
@@ -189,7 +197,7 @@ fast-float v0.2.0
|
|
189
197
|
https://github.com/aldanor/fast-float-rust
|
190
198
|
MIT OR Apache-2.0
|
191
199
|
|
192
|
-
flate2 v1.0.
|
200
|
+
flate2 v1.0.26
|
193
201
|
https://github.com/rust-lang/flate2-rs
|
194
202
|
MIT OR Apache-2.0
|
195
203
|
|
@@ -201,43 +209,43 @@ foreign_vec v0.1.0
|
|
201
209
|
https://github.com/DataEngineeringLabs/foreign_vec
|
202
210
|
MIT
|
203
211
|
|
204
|
-
futures v0.3.
|
212
|
+
futures v0.3.28
|
205
213
|
https://rust-lang.github.io/futures-rs
|
206
214
|
MIT OR Apache-2.0
|
207
215
|
|
208
|
-
futures-channel v0.3.
|
216
|
+
futures-channel v0.3.28
|
209
217
|
https://rust-lang.github.io/futures-rs
|
210
218
|
MIT OR Apache-2.0
|
211
219
|
|
212
|
-
futures-core v0.3.
|
220
|
+
futures-core v0.3.28
|
213
221
|
https://rust-lang.github.io/futures-rs
|
214
222
|
MIT OR Apache-2.0
|
215
223
|
|
216
|
-
futures-executor v0.3.
|
224
|
+
futures-executor v0.3.28
|
217
225
|
https://rust-lang.github.io/futures-rs
|
218
226
|
MIT OR Apache-2.0
|
219
227
|
|
220
|
-
futures-io v0.3.
|
228
|
+
futures-io v0.3.28
|
221
229
|
https://rust-lang.github.io/futures-rs
|
222
230
|
MIT OR Apache-2.0
|
223
231
|
|
224
|
-
futures-macro v0.3.
|
232
|
+
futures-macro v0.3.28
|
225
233
|
https://rust-lang.github.io/futures-rs
|
226
234
|
MIT OR Apache-2.0
|
227
235
|
|
228
|
-
futures-sink v0.3.
|
236
|
+
futures-sink v0.3.28
|
229
237
|
https://rust-lang.github.io/futures-rs
|
230
238
|
MIT OR Apache-2.0
|
231
239
|
|
232
|
-
futures-task v0.3.
|
240
|
+
futures-task v0.3.28
|
233
241
|
https://rust-lang.github.io/futures-rs
|
234
242
|
MIT OR Apache-2.0
|
235
243
|
|
236
|
-
futures-util v0.3.
|
244
|
+
futures-util v0.3.28
|
237
245
|
https://rust-lang.github.io/futures-rs
|
238
246
|
MIT OR Apache-2.0
|
239
247
|
|
240
|
-
getrandom v0.2.
|
248
|
+
getrandom v0.2.10
|
241
249
|
https://github.com/rust-random/getrandom
|
242
250
|
MIT OR Apache-2.0
|
243
251
|
|
@@ -245,7 +253,7 @@ glob v0.3.1
|
|
245
253
|
https://github.com/rust-lang/glob
|
246
254
|
MIT OR Apache-2.0
|
247
255
|
|
248
|
-
halfbrown v0.
|
256
|
+
halfbrown v0.2.4
|
249
257
|
https://github.com/Licenser/halfbrown
|
250
258
|
Apache-2.0/MIT
|
251
259
|
|
@@ -253,11 +261,11 @@ hash_hasher v2.0.3
|
|
253
261
|
https://github.com/Fraser999/Hash-Hasher.git
|
254
262
|
Apache-2.0 OR MIT
|
255
263
|
|
256
|
-
hashbrown v0.
|
264
|
+
hashbrown v0.13.2
|
257
265
|
https://github.com/rust-lang/hashbrown
|
258
266
|
MIT OR Apache-2.0
|
259
267
|
|
260
|
-
hashbrown v0.
|
268
|
+
hashbrown v0.14.0
|
261
269
|
https://github.com/rust-lang/hashbrown
|
262
270
|
MIT OR Apache-2.0
|
263
271
|
|
@@ -269,15 +277,19 @@ hex v0.4.3
|
|
269
277
|
https://github.com/KokaKiwi/rust-hex
|
270
278
|
MIT OR Apache-2.0
|
271
279
|
|
272
|
-
|
280
|
+
home v0.5.5
|
281
|
+
https://github.com/rust-lang/cargo
|
282
|
+
MIT OR Apache-2.0
|
283
|
+
|
284
|
+
iana-time-zone v0.1.57
|
273
285
|
https://github.com/strawlab/iana-time-zone
|
274
286
|
MIT OR Apache-2.0
|
275
287
|
|
276
|
-
indexmap
|
288
|
+
indexmap v2.0.0
|
277
289
|
https://github.com/bluss/indexmap
|
278
290
|
Apache-2.0 OR MIT
|
279
291
|
|
280
|
-
itoa v1.0.
|
292
|
+
itoa v1.0.8
|
281
293
|
https://github.com/dtolnay/itoa
|
282
294
|
MIT OR Apache-2.0
|
283
295
|
|
@@ -297,10 +309,6 @@ jobserver v0.1.26
|
|
297
309
|
https://github.com/alexcrichton/jobserver-rs
|
298
310
|
MIT/Apache-2.0
|
299
311
|
|
300
|
-
json-deserializer v0.4.4
|
301
|
-
https://github.com/jorgecarleitao/json-deserializer
|
302
|
-
Apache-2.0
|
303
|
-
|
304
312
|
jsonpath_lib v0.3.0
|
305
313
|
https://github.com/freestrings/jsonpath
|
306
314
|
MIT
|
@@ -341,11 +349,11 @@ lexical-write-integer v0.8.5
|
|
341
349
|
https://github.com/Alexhuszagh/rust-lexical
|
342
350
|
MIT/Apache-2.0
|
343
351
|
|
344
|
-
libc v0.2.
|
352
|
+
libc v0.2.147
|
345
353
|
https://github.com/rust-lang/libc
|
346
354
|
MIT OR Apache-2.0
|
347
355
|
|
348
|
-
libflate v1.
|
356
|
+
libflate v1.4.0
|
349
357
|
https://github.com/sile/libflate
|
350
358
|
MIT
|
351
359
|
|
@@ -357,15 +365,15 @@ libloading v0.7.4
|
|
357
365
|
https://github.com/nagisa/rust_libloading/
|
358
366
|
ISC
|
359
367
|
|
360
|
-
libm v0.2.
|
368
|
+
libm v0.2.7
|
361
369
|
https://github.com/rust-lang/libm
|
362
370
|
MIT OR Apache-2.0
|
363
371
|
|
364
|
-
lock_api v0.4.
|
372
|
+
lock_api v0.4.10
|
365
373
|
https://github.com/Amanieu/parking_lot
|
366
374
|
MIT OR Apache-2.0
|
367
375
|
|
368
|
-
log v0.4.
|
376
|
+
log v0.4.19
|
369
377
|
https://github.com/rust-lang/log
|
370
378
|
MIT OR Apache-2.0
|
371
379
|
|
@@ -377,7 +385,7 @@ lz4-sys v1.9.4
|
|
377
385
|
https://github.com/10xGenomics/lz4-rs
|
378
386
|
MIT
|
379
387
|
|
380
|
-
magnus v0.5.
|
388
|
+
magnus v0.5.4
|
381
389
|
https://github.com/matsadler/magnus
|
382
390
|
MIT
|
383
391
|
|
@@ -393,7 +401,7 @@ memmap2 v0.5.10
|
|
393
401
|
https://github.com/RazrFalcon/memmap2-rs
|
394
402
|
MIT OR Apache-2.0
|
395
403
|
|
396
|
-
memoffset v0.
|
404
|
+
memoffset v0.9.0
|
397
405
|
https://github.com/Gilnaa/memoffset
|
398
406
|
MIT
|
399
407
|
|
@@ -401,19 +409,19 @@ minimal-lexical v0.2.1
|
|
401
409
|
https://github.com/Alexhuszagh/minimal-lexical
|
402
410
|
MIT/Apache-2.0
|
403
411
|
|
404
|
-
miniz_oxide v0.
|
412
|
+
miniz_oxide v0.7.1
|
405
413
|
https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
|
406
414
|
MIT OR Zlib OR Apache-2.0
|
407
415
|
|
408
|
-
mio v0.8.
|
416
|
+
mio v0.8.8
|
409
417
|
https://github.com/tokio-rs/mio
|
410
418
|
MIT
|
411
419
|
|
412
|
-
multiversion v0.7.
|
420
|
+
multiversion v0.7.2
|
413
421
|
https://github.com/calebzulawski/multiversion
|
414
422
|
MIT OR Apache-2.0
|
415
423
|
|
416
|
-
multiversion-macros v0.7.
|
424
|
+
multiversion-macros v0.7.2
|
417
425
|
https://github.com/calebzulawski/multiversion
|
418
426
|
MIT OR Apache-2.0
|
419
427
|
|
@@ -433,11 +441,11 @@ num-traits v0.2.15
|
|
433
441
|
https://github.com/rust-num/num-traits
|
434
442
|
MIT OR Apache-2.0
|
435
443
|
|
436
|
-
num_cpus v1.
|
444
|
+
num_cpus v1.16.0
|
437
445
|
https://github.com/seanmonstar/num_cpus
|
438
446
|
MIT OR Apache-2.0
|
439
447
|
|
440
|
-
once_cell v1.
|
448
|
+
once_cell v1.18.0
|
441
449
|
https://github.com/matklad/once_cell
|
442
450
|
MIT OR Apache-2.0
|
443
451
|
|
@@ -445,7 +453,7 @@ parking_lot v0.12.1
|
|
445
453
|
https://github.com/Amanieu/parking_lot
|
446
454
|
MIT OR Apache-2.0
|
447
455
|
|
448
|
-
parking_lot_core v0.9.
|
456
|
+
parking_lot_core v0.9.8
|
449
457
|
https://github.com/Amanieu/parking_lot
|
450
458
|
MIT OR Apache-2.0
|
451
459
|
|
@@ -453,7 +461,7 @@ parquet-format-safe v0.2.4
|
|
453
461
|
https://github.com/jorgecarleitao/parquet-format-safe
|
454
462
|
MIT/Apache-2.0
|
455
463
|
|
456
|
-
parquet2 v0.17.
|
464
|
+
parquet2 v0.17.2
|
457
465
|
https://github.com/jorgecarleitao/parquet2
|
458
466
|
Apache-2.0
|
459
467
|
|
@@ -465,23 +473,23 @@ peeking_take_while v0.1.2
|
|
465
473
|
https://github.com/fitzgen/peeking_take_while
|
466
474
|
Apache-2.0/MIT
|
467
475
|
|
468
|
-
phf v0.11.
|
476
|
+
phf v0.11.2
|
469
477
|
https://github.com/rust-phf/rust-phf
|
470
478
|
MIT
|
471
479
|
|
472
|
-
phf_codegen v0.11.
|
480
|
+
phf_codegen v0.11.2
|
473
481
|
https://github.com/rust-phf/rust-phf
|
474
482
|
MIT
|
475
483
|
|
476
|
-
phf_generator v0.11.
|
484
|
+
phf_generator v0.11.2
|
477
485
|
https://github.com/rust-phf/rust-phf
|
478
486
|
MIT
|
479
487
|
|
480
|
-
phf_shared v0.11.
|
488
|
+
phf_shared v0.11.2
|
481
489
|
https://github.com/rust-phf/rust-phf
|
482
490
|
MIT
|
483
491
|
|
484
|
-
pin-project-lite v0.2.
|
492
|
+
pin-project-lite v0.2.10
|
485
493
|
https://github.com/taiki-e/pin-project-lite
|
486
494
|
Apache-2.0 OR MIT
|
487
495
|
|
@@ -489,7 +497,7 @@ pin-utils v0.1.0
|
|
489
497
|
https://github.com/rust-lang-nursery/pin-utils
|
490
498
|
MIT OR Apache-2.0
|
491
499
|
|
492
|
-
pkg-config v0.3.
|
500
|
+
pkg-config v0.3.27
|
493
501
|
https://github.com/rust-lang/pkg-config-rs
|
494
502
|
MIT OR Apache-2.0
|
495
503
|
|
@@ -497,60 +505,68 @@ planus v0.3.1
|
|
497
505
|
https://github.com/planus-org/planus
|
498
506
|
MIT/Apache-2.0
|
499
507
|
|
500
|
-
polars v0.
|
508
|
+
polars v0.31.1
|
509
|
+
https://github.com/pola-rs/polars
|
510
|
+
MIT
|
511
|
+
|
512
|
+
polars-arrow v0.31.1
|
513
|
+
MIT
|
514
|
+
|
515
|
+
polars-core v0.31.1
|
501
516
|
https://github.com/pola-rs/polars
|
502
517
|
MIT
|
503
518
|
|
504
|
-
polars-
|
519
|
+
polars-error v0.31.1
|
520
|
+
https://github.com/pola-rs/polars
|
505
521
|
MIT
|
506
522
|
|
507
|
-
polars-
|
523
|
+
polars-io v0.31.1
|
508
524
|
https://github.com/pola-rs/polars
|
509
525
|
MIT
|
510
526
|
|
511
|
-
polars-
|
527
|
+
polars-json v0.31.1
|
512
528
|
https://github.com/pola-rs/polars
|
513
529
|
MIT
|
514
530
|
|
515
|
-
polars-
|
531
|
+
polars-lazy v0.31.1
|
516
532
|
https://github.com/pola-rs/polars
|
517
533
|
MIT
|
518
534
|
|
519
|
-
polars-
|
535
|
+
polars-ops v0.31.1
|
520
536
|
https://github.com/pola-rs/polars
|
521
537
|
MIT
|
522
538
|
|
523
|
-
polars-
|
539
|
+
polars-pipe v0.31.1
|
524
540
|
https://github.com/pola-rs/polars
|
525
541
|
MIT
|
526
542
|
|
527
|
-
polars-
|
543
|
+
polars-plan v0.31.1
|
528
544
|
https://github.com/pola-rs/polars
|
529
545
|
MIT
|
530
546
|
|
531
|
-
polars-
|
547
|
+
polars-row v0.31.1
|
532
548
|
https://github.com/pola-rs/polars
|
533
549
|
MIT
|
534
550
|
|
535
|
-
polars-
|
551
|
+
polars-sql v0.31.1
|
536
552
|
https://github.com/pola-rs/polars
|
537
553
|
MIT
|
538
554
|
|
539
|
-
polars-time v0.
|
555
|
+
polars-time v0.31.1
|
540
556
|
MIT
|
541
557
|
|
542
|
-
polars-utils v0.
|
558
|
+
polars-utils v0.31.1
|
543
559
|
MIT
|
544
560
|
|
545
561
|
ppv-lite86 v0.2.17
|
546
562
|
https://github.com/cryptocorrosion/cryptocorrosion
|
547
563
|
MIT/Apache-2.0
|
548
564
|
|
549
|
-
proc-macro2 v1.0.
|
565
|
+
proc-macro2 v1.0.64
|
550
566
|
https://github.com/dtolnay/proc-macro2
|
551
567
|
MIT OR Apache-2.0
|
552
568
|
|
553
|
-
quote v1.0.
|
569
|
+
quote v1.0.29
|
554
570
|
https://github.com/dtolnay/quote
|
555
571
|
MIT OR Apache-2.0
|
556
572
|
|
@@ -578,11 +594,11 @@ rayon-core v1.11.0
|
|
578
594
|
https://github.com/rayon-rs/rayon
|
579
595
|
MIT OR Apache-2.0
|
580
596
|
|
581
|
-
rb-sys v0.9.
|
597
|
+
rb-sys v0.9.79
|
582
598
|
https://github.com/oxidize-rb/rb-sys
|
583
599
|
MIT OR Apache-2.0
|
584
600
|
|
585
|
-
rb-sys-build v0.9.
|
601
|
+
rb-sys-build v0.9.79
|
586
602
|
https://github.com/oxidize-rb/rb-sys
|
587
603
|
MIT OR Apache-2.0
|
588
604
|
|
@@ -590,14 +606,22 @@ rb-sys-env v0.1.2
|
|
590
606
|
https://github.com/oxidize-rb/rb-sys
|
591
607
|
MIT OR Apache-2.0
|
592
608
|
|
593
|
-
regex v1.
|
609
|
+
regex v1.9.1
|
594
610
|
https://github.com/rust-lang/regex
|
595
611
|
MIT OR Apache-2.0
|
596
612
|
|
613
|
+
regex-automata v0.3.3
|
614
|
+
https://github.com/rust-lang/regex/tree/master/regex-automata
|
615
|
+
MIT OR Apache-2.0
|
616
|
+
|
597
617
|
regex-syntax v0.6.29
|
598
618
|
https://github.com/rust-lang/regex
|
599
619
|
MIT OR Apache-2.0
|
600
620
|
|
621
|
+
regex-syntax v0.7.4
|
622
|
+
https://github.com/rust-lang/regex/tree/master/regex-syntax
|
623
|
+
MIT OR Apache-2.0
|
624
|
+
|
601
625
|
rle-decode-fast v1.0.3
|
602
626
|
https://github.com/WanzenBug/rle-decode-helper
|
603
627
|
MIT OR Apache-2.0
|
@@ -610,11 +634,11 @@ rustc_version v0.4.0
|
|
610
634
|
https://github.com/Kimundi/rustc-version-rs
|
611
635
|
MIT/Apache-2.0
|
612
636
|
|
613
|
-
rustversion v1.0.
|
637
|
+
rustversion v1.0.13
|
614
638
|
https://github.com/dtolnay/rustversion
|
615
639
|
MIT OR Apache-2.0
|
616
640
|
|
617
|
-
ryu v1.0.
|
641
|
+
ryu v1.0.14
|
618
642
|
https://github.com/dtolnay/ryu
|
619
643
|
Apache-2.0 OR BSL-1.0
|
620
644
|
|
@@ -626,19 +650,19 @@ semver v1.0.17
|
|
626
650
|
https://github.com/dtolnay/semver
|
627
651
|
MIT OR Apache-2.0
|
628
652
|
|
629
|
-
seq-macro v0.3.
|
653
|
+
seq-macro v0.3.4
|
630
654
|
https://github.com/dtolnay/seq-macro
|
631
655
|
MIT OR Apache-2.0
|
632
656
|
|
633
|
-
serde v1.0.
|
657
|
+
serde v1.0.171
|
634
658
|
https://serde.rs
|
635
659
|
MIT OR Apache-2.0
|
636
660
|
|
637
|
-
serde_derive v1.0.
|
661
|
+
serde_derive v1.0.171
|
638
662
|
https://serde.rs
|
639
663
|
MIT OR Apache-2.0
|
640
664
|
|
641
|
-
serde_json v1.0.
|
665
|
+
serde_json v1.0.102
|
642
666
|
https://github.com/serde-rs/json
|
643
667
|
MIT OR Apache-2.0
|
644
668
|
|
@@ -650,7 +674,7 @@ shlex v1.1.0
|
|
650
674
|
https://github.com/comex/rust-shlex
|
651
675
|
MIT OR Apache-2.0
|
652
676
|
|
653
|
-
signal-hook v0.3.
|
677
|
+
signal-hook v0.3.16
|
654
678
|
https://github.com/vorner/signal-hook
|
655
679
|
Apache-2.0/MIT
|
656
680
|
|
@@ -662,7 +686,7 @@ signal-hook-registry v1.4.1
|
|
662
686
|
https://github.com/vorner/signal-hook
|
663
687
|
Apache-2.0/MIT
|
664
688
|
|
665
|
-
simd-json v0.
|
689
|
+
simd-json v0.10.3
|
666
690
|
https://github.com/simd-lite/simd-json
|
667
691
|
Apache-2.0 OR MIT
|
668
692
|
|
@@ -678,7 +702,7 @@ slab v0.4.8
|
|
678
702
|
https://github.com/tokio-rs/slab
|
679
703
|
MIT
|
680
704
|
|
681
|
-
smallvec v1.
|
705
|
+
smallvec v1.11.0
|
682
706
|
https://github.com/servo/rust-smallvec
|
683
707
|
MIT OR Apache-2.0
|
684
708
|
|
@@ -694,6 +718,10 @@ socket2 v0.4.9
|
|
694
718
|
https://github.com/rust-lang/socket2
|
695
719
|
MIT OR Apache-2.0
|
696
720
|
|
721
|
+
sqlparser v0.34.0
|
722
|
+
https://github.com/sqlparser-rs/sqlparser-rs
|
723
|
+
Apache-2.0
|
724
|
+
|
697
725
|
static_assertions v1.1.0
|
698
726
|
https://github.com/nvzqz/static-assertions-rs
|
699
727
|
MIT OR Apache-2.0
|
@@ -718,27 +746,31 @@ strum_macros v0.24.3
|
|
718
746
|
https://github.com/Peternator7/strum
|
719
747
|
MIT
|
720
748
|
|
749
|
+
strum_macros v0.25.1
|
750
|
+
https://github.com/Peternator7/strum
|
751
|
+
MIT
|
752
|
+
|
721
753
|
syn v1.0.109
|
722
754
|
https://github.com/dtolnay/syn
|
723
755
|
MIT OR Apache-2.0
|
724
756
|
|
725
|
-
syn v2.0.
|
757
|
+
syn v2.0.26
|
726
758
|
https://github.com/dtolnay/syn
|
727
759
|
MIT OR Apache-2.0
|
728
760
|
|
729
|
-
sysinfo v0.
|
761
|
+
sysinfo v0.29.4
|
730
762
|
https://github.com/GuillaumeGomez/sysinfo
|
731
763
|
MIT
|
732
764
|
|
733
|
-
target-features v0.1.
|
765
|
+
target-features v0.1.4
|
734
766
|
https://github.com/calebzulawski/target-features
|
735
767
|
MIT OR Apache-2.0
|
736
768
|
|
737
|
-
thiserror v1.0.
|
769
|
+
thiserror v1.0.43
|
738
770
|
https://github.com/dtolnay/thiserror
|
739
771
|
MIT OR Apache-2.0
|
740
772
|
|
741
|
-
thiserror-impl v1.0.
|
773
|
+
thiserror-impl v1.0.43
|
742
774
|
https://github.com/dtolnay/thiserror
|
743
775
|
MIT OR Apache-2.0
|
744
776
|
|
@@ -746,11 +778,11 @@ time v0.1.45
|
|
746
778
|
https://github.com/time-rs/time
|
747
779
|
MIT/Apache-2.0
|
748
780
|
|
749
|
-
tokio v1.
|
781
|
+
tokio v1.29.1
|
750
782
|
https://tokio.rs
|
751
783
|
MIT
|
752
784
|
|
753
|
-
unicode-ident v1.0.
|
785
|
+
unicode-ident v1.0.11
|
754
786
|
https://github.com/dtolnay/unicode-ident
|
755
787
|
(MIT OR Apache-2.0) AND Unicode-DFS-2016
|
756
788
|
|
@@ -758,7 +790,7 @@ unicode-width v0.1.10
|
|
758
790
|
https://github.com/unicode-rs/unicode-width
|
759
791
|
MIT/Apache-2.0
|
760
792
|
|
761
|
-
value-trait v0.
|
793
|
+
value-trait v0.6.1
|
762
794
|
https://github.com/simd-lite/value-trait
|
763
795
|
Apache-2.0/MIT
|
764
796
|
|
@@ -770,23 +802,15 @@ xxhash-rust v0.8.6
|
|
770
802
|
https://github.com/DoumanAsh/xxhash-rust
|
771
803
|
BSL-1.0
|
772
804
|
|
773
|
-
zstd v0.11.2+zstd.1.5.2
|
774
|
-
https://github.com/gyscos/zstd-rs
|
775
|
-
MIT
|
776
|
-
|
777
805
|
zstd v0.12.3+zstd.1.5.2
|
778
806
|
https://github.com/gyscos/zstd-rs
|
779
807
|
MIT
|
780
808
|
|
781
|
-
zstd-safe
|
809
|
+
zstd-safe v6.0.5+zstd.1.5.4
|
782
810
|
https://github.com/gyscos/zstd-rs
|
783
811
|
MIT/Apache-2.0
|
784
812
|
|
785
|
-
zstd-
|
786
|
-
https://github.com/gyscos/zstd-rs
|
787
|
-
MIT/Apache-2.0
|
788
|
-
|
789
|
-
zstd-sys v2.0.7+zstd.1.5.4
|
813
|
+
zstd-sys v2.0.8+zstd.1.5.5
|
790
814
|
https://github.com/gyscos/zstd-rs
|
791
815
|
MIT/Apache-2.0
|
792
816
|
|
@@ -1422,6 +1446,43 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
1422
1446
|
|
1423
1447
|
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.
|
1424
1448
|
|
1449
|
+
================================================================================
|
1450
|
+
allocator-api2 COPYING
|
1451
|
+
================================================================================
|
1452
|
+
|
1453
|
+
Copyright 2023 The allocator-api2 Project Developers
|
1454
|
+
|
1455
|
+
Licensed under the Apache License, Version 2.0, <license/LICENSE-APACHE or
|
1456
|
+
http://apache.org/licenses/LICENSE-2.0> or the MIT license <license/LICENSE-MIT or
|
1457
|
+
http://opensource.org/licenses/MIT>, at your option. This file may not be
|
1458
|
+
copied, modified, or distributed except according to those terms.
|
1459
|
+
|
1460
|
+
================================================================================
|
1461
|
+
argminmax LICENSE
|
1462
|
+
================================================================================
|
1463
|
+
|
1464
|
+
MIT License
|
1465
|
+
|
1466
|
+
Copyright (c) 2022 Jeroen Van Der Donckt
|
1467
|
+
|
1468
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1469
|
+
of this software and associated documentation files (the "Software"), to deal
|
1470
|
+
in the Software without restriction, including without limitation the rights
|
1471
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1472
|
+
copies of the Software, and to permit persons to whom the Software is
|
1473
|
+
furnished to do so, subject to the following conditions:
|
1474
|
+
|
1475
|
+
The above copyright notice and this permission notice shall be included in all
|
1476
|
+
copies or substantial portions of the Software.
|
1477
|
+
|
1478
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1479
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1480
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1481
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1482
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1483
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1484
|
+
SOFTWARE.
|
1485
|
+
|
1425
1486
|
================================================================================
|
1426
1487
|
array-init-cursor LICENSE-APACHE
|
1427
1488
|
================================================================================
|
@@ -4540,6 +4601,238 @@ limitations under the License.
|
|
4540
4601
|
~~~~
|
4541
4602
|
|
4542
4603
|
|
4604
|
+
================================================================================
|
4605
|
+
chrono-tz LICENSE
|
4606
|
+
================================================================================
|
4607
|
+
|
4608
|
+
Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
|
4609
|
+
The licenses do not apply to files in the tzdb folder which are in the
|
4610
|
+
public domain.
|
4611
|
+
|
4612
|
+
Copyright (c) 2016 Djzin
|
4613
|
+
|
4614
|
+
The MIT License
|
4615
|
+
|
4616
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4617
|
+
of this software and associated documentation files (the "Software"), to deal
|
4618
|
+
in the Software without restriction, including without limitation the rights
|
4619
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4620
|
+
copies of the Software, and to permit persons to whom the Software is
|
4621
|
+
furnished to do so, subject to the following conditions:
|
4622
|
+
|
4623
|
+
The above copyright notice and this permission notice shall be included in all
|
4624
|
+
copies or substantial portions of the Software.
|
4625
|
+
|
4626
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4627
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4628
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4629
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4630
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4631
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4632
|
+
SOFTWARE.
|
4633
|
+
|
4634
|
+
Apache License
|
4635
|
+
Version 2.0, January 2004
|
4636
|
+
http://www.apache.org/licenses/
|
4637
|
+
|
4638
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4639
|
+
|
4640
|
+
1. Definitions.
|
4641
|
+
|
4642
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
4643
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
4644
|
+
|
4645
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
4646
|
+
the copyright owner that is granting the License.
|
4647
|
+
|
4648
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
4649
|
+
other entities that control, are controlled by, or are under common
|
4650
|
+
control with that entity. For the purposes of this definition,
|
4651
|
+
"control" means (i) the power, direct or indirect, to cause the
|
4652
|
+
direction or management of such entity, whether by contract or
|
4653
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4654
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
4655
|
+
|
4656
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
4657
|
+
exercising permissions granted by this License.
|
4658
|
+
|
4659
|
+
"Source" form shall mean the preferred form for making modifications,
|
4660
|
+
including but not limited to software source code, documentation
|
4661
|
+
source, and configuration files.
|
4662
|
+
|
4663
|
+
"Object" form shall mean any form resulting from mechanical
|
4664
|
+
transformation or translation of a Source form, including but
|
4665
|
+
not limited to compiled object code, generated documentation,
|
4666
|
+
and conversions to other media types.
|
4667
|
+
|
4668
|
+
"Work" shall mean the work of authorship, whether in Source or
|
4669
|
+
Object form, made available under the License, as indicated by a
|
4670
|
+
copyright notice that is included in or attached to the work
|
4671
|
+
(an example is provided in the Appendix below).
|
4672
|
+
|
4673
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
4674
|
+
form, that is based on (or derived from) the Work and for which the
|
4675
|
+
editorial revisions, annotations, elaborations, or other modifications
|
4676
|
+
represent, as a whole, an original work of authorship. For the purposes
|
4677
|
+
of this License, Derivative Works shall not include works that remain
|
4678
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
4679
|
+
the Work and Derivative Works thereof.
|
4680
|
+
|
4681
|
+
"Contribution" shall mean any work of authorship, including
|
4682
|
+
the original version of the Work and any modifications or additions
|
4683
|
+
to that Work or Derivative Works thereof, that is intentionally
|
4684
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
4685
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
4686
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
4687
|
+
means any form of electronic, verbal, or written communication sent
|
4688
|
+
to the Licensor or its representatives, including but not limited to
|
4689
|
+
communication on electronic mailing lists, source code control systems,
|
4690
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
4691
|
+
Licensor for the purpose of discussing and improving the Work, but
|
4692
|
+
excluding communication that is conspicuously marked or otherwise
|
4693
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
4694
|
+
|
4695
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
4696
|
+
on behalf of whom a Contribution has been received by Licensor and
|
4697
|
+
subsequently incorporated within the Work.
|
4698
|
+
|
4699
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
4700
|
+
this License, each Contributor hereby grants to You a perpetual,
|
4701
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4702
|
+
copyright license to reproduce, prepare Derivative Works of,
|
4703
|
+
publicly display, publicly perform, sublicense, and distribute the
|
4704
|
+
Work and such Derivative Works in Source or Object form.
|
4705
|
+
|
4706
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
4707
|
+
this License, each Contributor hereby grants to You a perpetual,
|
4708
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4709
|
+
(except as stated in this section) patent license to make, have made,
|
4710
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
4711
|
+
where such license applies only to those patent claims licensable
|
4712
|
+
by such Contributor that are necessarily infringed by their
|
4713
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
4714
|
+
with the Work to which such Contribution(s) was submitted. If You
|
4715
|
+
institute patent litigation against any entity (including a
|
4716
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
4717
|
+
or a Contribution incorporated within the Work constitutes direct
|
4718
|
+
or contributory patent infringement, then any patent licenses
|
4719
|
+
granted to You under this License for that Work shall terminate
|
4720
|
+
as of the date such litigation is filed.
|
4721
|
+
|
4722
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
4723
|
+
Work or Derivative Works thereof in any medium, with or without
|
4724
|
+
modifications, and in Source or Object form, provided that You
|
4725
|
+
meet the following conditions:
|
4726
|
+
|
4727
|
+
(a) You must give any other recipients of the Work or
|
4728
|
+
Derivative Works a copy of this License; and
|
4729
|
+
|
4730
|
+
(b) You must cause any modified files to carry prominent notices
|
4731
|
+
stating that You changed the files; and
|
4732
|
+
|
4733
|
+
(c) You must retain, in the Source form of any Derivative Works
|
4734
|
+
that You distribute, all copyright, patent, trademark, and
|
4735
|
+
attribution notices from the Source form of the Work,
|
4736
|
+
excluding those notices that do not pertain to any part of
|
4737
|
+
the Derivative Works; and
|
4738
|
+
|
4739
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
4740
|
+
distribution, then any Derivative Works that You distribute must
|
4741
|
+
include a readable copy of the attribution notices contained
|
4742
|
+
within such NOTICE file, excluding those notices that do not
|
4743
|
+
pertain to any part of the Derivative Works, in at least one
|
4744
|
+
of the following places: within a NOTICE text file distributed
|
4745
|
+
as part of the Derivative Works; within the Source form or
|
4746
|
+
documentation, if provided along with the Derivative Works; or,
|
4747
|
+
within a display generated by the Derivative Works, if and
|
4748
|
+
wherever such third-party notices normally appear. The contents
|
4749
|
+
of the NOTICE file are for informational purposes only and
|
4750
|
+
do not modify the License. You may add Your own attribution
|
4751
|
+
notices within Derivative Works that You distribute, alongside
|
4752
|
+
or as an addendum to the NOTICE text from the Work, provided
|
4753
|
+
that such additional attribution notices cannot be construed
|
4754
|
+
as modifying the License.
|
4755
|
+
|
4756
|
+
You may add Your own copyright statement to Your modifications and
|
4757
|
+
may provide additional or different license terms and conditions
|
4758
|
+
for use, reproduction, or distribution of Your modifications, or
|
4759
|
+
for any such Derivative Works as a whole, provided Your use,
|
4760
|
+
reproduction, and distribution of the Work otherwise complies with
|
4761
|
+
the conditions stated in this License.
|
4762
|
+
|
4763
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
4764
|
+
any Contribution intentionally submitted for inclusion in the Work
|
4765
|
+
by You to the Licensor shall be under the terms and conditions of
|
4766
|
+
this License, without any additional terms or conditions.
|
4767
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
4768
|
+
the terms of any separate license agreement you may have executed
|
4769
|
+
with Licensor regarding such Contributions.
|
4770
|
+
|
4771
|
+
6. Trademarks. This License does not grant permission to use the trade
|
4772
|
+
names, trademarks, service marks, or product names of the Licensor,
|
4773
|
+
except as required for reasonable and customary use in describing the
|
4774
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
4775
|
+
|
4776
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
4777
|
+
agreed to in writing, Licensor provides the Work (and each
|
4778
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
4779
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
4780
|
+
implied, including, without limitation, any warranties or conditions
|
4781
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
4782
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
4783
|
+
appropriateness of using or redistributing the Work and assume any
|
4784
|
+
risks associated with Your exercise of permissions under this License.
|
4785
|
+
|
4786
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
4787
|
+
whether in tort (including negligence), contract, or otherwise,
|
4788
|
+
unless required by applicable law (such as deliberate and grossly
|
4789
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
4790
|
+
liable to You for damages, including any direct, indirect, special,
|
4791
|
+
incidental, or consequential damages of any character arising as a
|
4792
|
+
result of this License or out of the use or inability to use the
|
4793
|
+
Work (including but not limited to damages for loss of goodwill,
|
4794
|
+
work stoppage, computer failure or malfunction, or any and all
|
4795
|
+
other commercial damages or losses), even if such Contributor
|
4796
|
+
has been advised of the possibility of such damages.
|
4797
|
+
|
4798
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
4799
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
4800
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
4801
|
+
or other liability obligations and/or rights consistent with this
|
4802
|
+
License. However, in accepting such obligations, You may act only
|
4803
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
4804
|
+
of any other Contributor, and only if You agree to indemnify,
|
4805
|
+
defend, and hold each Contributor harmless for any liability
|
4806
|
+
incurred by, or claims asserted against, such Contributor by reason
|
4807
|
+
of your accepting any such warranty or additional liability.
|
4808
|
+
|
4809
|
+
END OF TERMS AND CONDITIONS
|
4810
|
+
|
4811
|
+
APPENDIX: How to apply the Apache License to your work.
|
4812
|
+
|
4813
|
+
To apply the Apache License to your work, attach the following
|
4814
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
4815
|
+
replaced with your own identifying information. (Don't include
|
4816
|
+
the brackets!) The text should be enclosed in the appropriate
|
4817
|
+
comment syntax for the file format. We also recommend that a
|
4818
|
+
file or class name and description of purpose be included on the
|
4819
|
+
same "printed page" as the copyright notice for easier
|
4820
|
+
identification within third-party archives.
|
4821
|
+
|
4822
|
+
Copyright 2016 Djzin
|
4823
|
+
|
4824
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4825
|
+
you may not use this file except in compliance with the License.
|
4826
|
+
You may obtain a copy of the License at
|
4827
|
+
|
4828
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
4829
|
+
|
4830
|
+
Unless required by applicable law or agreed to in writing, software
|
4831
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
4832
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4833
|
+
See the License for the specific language governing permissions and
|
4834
|
+
limitations under the License.
|
4835
|
+
|
4543
4836
|
================================================================================
|
4544
4837
|
chrono-tz tz/LICENSE
|
4545
4838
|
================================================================================
|
@@ -4786,208 +5079,208 @@ limitations under the License.
|
|
4786
5079
|
clang-sys LICENSE.txt
|
4787
5080
|
================================================================================
|
4788
5081
|
|
4789
|
-
|
4790
|
-
Apache License
|
4791
|
-
Version 2.0, January 2004
|
4792
|
-
http://www.apache.org/licenses/
|
4793
|
-
|
4794
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4795
|
-
|
4796
|
-
1. Definitions.
|
4797
|
-
|
4798
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
4799
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
4800
|
-
|
4801
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
4802
|
-
the copyright owner that is granting the License.
|
4803
|
-
|
4804
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
4805
|
-
other entities that control, are controlled by, or are under common
|
4806
|
-
control with that entity. For the purposes of this definition,
|
4807
|
-
"control" means (i) the power, direct or indirect, to cause the
|
4808
|
-
direction or management of such entity, whether by contract or
|
4809
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4810
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
4811
|
-
|
4812
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
4813
|
-
exercising permissions granted by this License.
|
4814
|
-
|
4815
|
-
"Source" form shall mean the preferred form for making modifications,
|
4816
|
-
including but not limited to software source code, documentation
|
4817
|
-
source, and configuration files.
|
4818
|
-
|
4819
|
-
"Object" form shall mean any form resulting from mechanical
|
4820
|
-
transformation or translation of a Source form, including but
|
4821
|
-
not limited to compiled object code, generated documentation,
|
4822
|
-
and conversions to other media types.
|
4823
|
-
|
4824
|
-
"Work" shall mean the work of authorship, whether in Source or
|
4825
|
-
Object form, made available under the License, as indicated by a
|
4826
|
-
copyright notice that is included in or attached to the work
|
4827
|
-
(an example is provided in the Appendix below).
|
4828
|
-
|
4829
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
4830
|
-
form, that is based on (or derived from) the Work and for which the
|
4831
|
-
editorial revisions, annotations, elaborations, or other modifications
|
4832
|
-
represent, as a whole, an original work of authorship. For the purposes
|
4833
|
-
of this License, Derivative Works shall not include works that remain
|
4834
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
4835
|
-
the Work and Derivative Works thereof.
|
4836
|
-
|
4837
|
-
"Contribution" shall mean any work of authorship, including
|
4838
|
-
the original version of the Work and any modifications or additions
|
4839
|
-
to that Work or Derivative Works thereof, that is intentionally
|
4840
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
4841
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
4842
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
4843
|
-
means any form of electronic, verbal, or written communication sent
|
4844
|
-
to the Licensor or its representatives, including but not limited to
|
4845
|
-
communication on electronic mailing lists, source code control systems,
|
4846
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
4847
|
-
Licensor for the purpose of discussing and improving the Work, but
|
4848
|
-
excluding communication that is conspicuously marked or otherwise
|
4849
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
4850
|
-
|
4851
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
4852
|
-
on behalf of whom a Contribution has been received by Licensor and
|
4853
|
-
subsequently incorporated within the Work.
|
4854
|
-
|
4855
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
4856
|
-
this License, each Contributor hereby grants to You a perpetual,
|
4857
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4858
|
-
copyright license to reproduce, prepare Derivative Works of,
|
4859
|
-
publicly display, publicly perform, sublicense, and distribute the
|
4860
|
-
Work and such Derivative Works in Source or Object form.
|
4861
|
-
|
4862
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
4863
|
-
this License, each Contributor hereby grants to You a perpetual,
|
4864
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4865
|
-
(except as stated in this section) patent license to make, have made,
|
4866
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
4867
|
-
where such license applies only to those patent claims licensable
|
4868
|
-
by such Contributor that are necessarily infringed by their
|
4869
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
4870
|
-
with the Work to which such Contribution(s) was submitted. If You
|
4871
|
-
institute patent litigation against any entity (including a
|
4872
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
4873
|
-
or a Contribution incorporated within the Work constitutes direct
|
4874
|
-
or contributory patent infringement, then any patent licenses
|
4875
|
-
granted to You under this License for that Work shall terminate
|
4876
|
-
as of the date such litigation is filed.
|
4877
|
-
|
4878
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
4879
|
-
Work or Derivative Works thereof in any medium, with or without
|
4880
|
-
modifications, and in Source or Object form, provided that You
|
4881
|
-
meet the following conditions:
|
4882
|
-
|
4883
|
-
(a) You must give any other recipients of the Work or
|
4884
|
-
Derivative Works a copy of this License; and
|
4885
|
-
|
4886
|
-
(b) You must cause any modified files to carry prominent notices
|
4887
|
-
stating that You changed the files; and
|
4888
|
-
|
4889
|
-
(c) You must retain, in the Source form of any Derivative Works
|
4890
|
-
that You distribute, all copyright, patent, trademark, and
|
4891
|
-
attribution notices from the Source form of the Work,
|
4892
|
-
excluding those notices that do not pertain to any part of
|
4893
|
-
the Derivative Works; and
|
4894
|
-
|
4895
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
4896
|
-
distribution, then any Derivative Works that You distribute must
|
4897
|
-
include a readable copy of the attribution notices contained
|
4898
|
-
within such NOTICE file, excluding those notices that do not
|
4899
|
-
pertain to any part of the Derivative Works, in at least one
|
4900
|
-
of the following places: within a NOTICE text file distributed
|
4901
|
-
as part of the Derivative Works; within the Source form or
|
4902
|
-
documentation, if provided along with the Derivative Works; or,
|
4903
|
-
within a display generated by the Derivative Works, if and
|
4904
|
-
wherever such third-party notices normally appear. The contents
|
4905
|
-
of the NOTICE file are for informational purposes only and
|
4906
|
-
do not modify the License. You may add Your own attribution
|
4907
|
-
notices within Derivative Works that You distribute, alongside
|
4908
|
-
or as an addendum to the NOTICE text from the Work, provided
|
4909
|
-
that such additional attribution notices cannot be construed
|
4910
|
-
as modifying the License.
|
4911
|
-
|
4912
|
-
You may add Your own copyright statement to Your modifications and
|
4913
|
-
may provide additional or different license terms and conditions
|
4914
|
-
for use, reproduction, or distribution of Your modifications, or
|
4915
|
-
for any such Derivative Works as a whole, provided Your use,
|
4916
|
-
reproduction, and distribution of the Work otherwise complies with
|
4917
|
-
the conditions stated in this License.
|
4918
|
-
|
4919
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
4920
|
-
any Contribution intentionally submitted for inclusion in the Work
|
4921
|
-
by You to the Licensor shall be under the terms and conditions of
|
4922
|
-
this License, without any additional terms or conditions.
|
4923
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
4924
|
-
the terms of any separate license agreement you may have executed
|
4925
|
-
with Licensor regarding such Contributions.
|
4926
|
-
|
4927
|
-
6. Trademarks. This License does not grant permission to use the trade
|
4928
|
-
names, trademarks, service marks, or product names of the Licensor,
|
4929
|
-
except as required for reasonable and customary use in describing the
|
4930
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
4931
|
-
|
4932
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
4933
|
-
agreed to in writing, Licensor provides the Work (and each
|
4934
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
4935
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
4936
|
-
implied, including, without limitation, any warranties or conditions
|
4937
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
4938
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
4939
|
-
appropriateness of using or redistributing the Work and assume any
|
4940
|
-
risks associated with Your exercise of permissions under this License.
|
4941
|
-
|
4942
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
4943
|
-
whether in tort (including negligence), contract, or otherwise,
|
4944
|
-
unless required by applicable law (such as deliberate and grossly
|
4945
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
4946
|
-
liable to You for damages, including any direct, indirect, special,
|
4947
|
-
incidental, or consequential damages of any character arising as a
|
4948
|
-
result of this License or out of the use or inability to use the
|
4949
|
-
Work (including but not limited to damages for loss of goodwill,
|
4950
|
-
work stoppage, computer failure or malfunction, or any and all
|
4951
|
-
other commercial damages or losses), even if such Contributor
|
4952
|
-
has been advised of the possibility of such damages.
|
4953
|
-
|
4954
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
4955
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
4956
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
4957
|
-
or other liability obligations and/or rights consistent with this
|
4958
|
-
License. However, in accepting such obligations, You may act only
|
4959
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
4960
|
-
of any other Contributor, and only if You agree to indemnify,
|
4961
|
-
defend, and hold each Contributor harmless for any liability
|
4962
|
-
incurred by, or claims asserted against, such Contributor by reason
|
4963
|
-
of your accepting any such warranty or additional liability.
|
4964
|
-
|
4965
|
-
END OF TERMS AND CONDITIONS
|
4966
|
-
|
4967
|
-
APPENDIX: How to apply the Apache License to your work.
|
4968
|
-
|
4969
|
-
To apply the Apache License to your work, attach the following
|
4970
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
4971
|
-
replaced with your own identifying information. (Don't include
|
4972
|
-
the brackets!) The text should be enclosed in the appropriate
|
4973
|
-
comment syntax for the file format. We also recommend that a
|
4974
|
-
file or class name and description of purpose be included on the
|
4975
|
-
same "printed page" as the copyright notice for easier
|
4976
|
-
identification within third-party archives.
|
4977
|
-
|
4978
|
-
Copyright [yyyy] [name of copyright owner]
|
4979
|
-
|
4980
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
4981
|
-
you may not use this file except in compliance with the License.
|
4982
|
-
You may obtain a copy of the License at
|
4983
|
-
|
4984
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
4985
|
-
|
4986
|
-
Unless required by applicable law or agreed to in writing, software
|
4987
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
4988
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4989
|
-
See the License for the specific language governing permissions and
|
4990
|
-
limitations under the License.
|
5082
|
+
|
5083
|
+
Apache License
|
5084
|
+
Version 2.0, January 2004
|
5085
|
+
http://www.apache.org/licenses/
|
5086
|
+
|
5087
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
5088
|
+
|
5089
|
+
1. Definitions.
|
5090
|
+
|
5091
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
5092
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
5093
|
+
|
5094
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
5095
|
+
the copyright owner that is granting the License.
|
5096
|
+
|
5097
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
5098
|
+
other entities that control, are controlled by, or are under common
|
5099
|
+
control with that entity. For the purposes of this definition,
|
5100
|
+
"control" means (i) the power, direct or indirect, to cause the
|
5101
|
+
direction or management of such entity, whether by contract or
|
5102
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
5103
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
5104
|
+
|
5105
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
5106
|
+
exercising permissions granted by this License.
|
5107
|
+
|
5108
|
+
"Source" form shall mean the preferred form for making modifications,
|
5109
|
+
including but not limited to software source code, documentation
|
5110
|
+
source, and configuration files.
|
5111
|
+
|
5112
|
+
"Object" form shall mean any form resulting from mechanical
|
5113
|
+
transformation or translation of a Source form, including but
|
5114
|
+
not limited to compiled object code, generated documentation,
|
5115
|
+
and conversions to other media types.
|
5116
|
+
|
5117
|
+
"Work" shall mean the work of authorship, whether in Source or
|
5118
|
+
Object form, made available under the License, as indicated by a
|
5119
|
+
copyright notice that is included in or attached to the work
|
5120
|
+
(an example is provided in the Appendix below).
|
5121
|
+
|
5122
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
5123
|
+
form, that is based on (or derived from) the Work and for which the
|
5124
|
+
editorial revisions, annotations, elaborations, or other modifications
|
5125
|
+
represent, as a whole, an original work of authorship. For the purposes
|
5126
|
+
of this License, Derivative Works shall not include works that remain
|
5127
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
5128
|
+
the Work and Derivative Works thereof.
|
5129
|
+
|
5130
|
+
"Contribution" shall mean any work of authorship, including
|
5131
|
+
the original version of the Work and any modifications or additions
|
5132
|
+
to that Work or Derivative Works thereof, that is intentionally
|
5133
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
5134
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
5135
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
5136
|
+
means any form of electronic, verbal, or written communication sent
|
5137
|
+
to the Licensor or its representatives, including but not limited to
|
5138
|
+
communication on electronic mailing lists, source code control systems,
|
5139
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
5140
|
+
Licensor for the purpose of discussing and improving the Work, but
|
5141
|
+
excluding communication that is conspicuously marked or otherwise
|
5142
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
5143
|
+
|
5144
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
5145
|
+
on behalf of whom a Contribution has been received by Licensor and
|
5146
|
+
subsequently incorporated within the Work.
|
5147
|
+
|
5148
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
5149
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5150
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5151
|
+
copyright license to reproduce, prepare Derivative Works of,
|
5152
|
+
publicly display, publicly perform, sublicense, and distribute the
|
5153
|
+
Work and such Derivative Works in Source or Object form.
|
5154
|
+
|
5155
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
5156
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5157
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5158
|
+
(except as stated in this section) patent license to make, have made,
|
5159
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
5160
|
+
where such license applies only to those patent claims licensable
|
5161
|
+
by such Contributor that are necessarily infringed by their
|
5162
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
5163
|
+
with the Work to which such Contribution(s) was submitted. If You
|
5164
|
+
institute patent litigation against any entity (including a
|
5165
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
5166
|
+
or a Contribution incorporated within the Work constitutes direct
|
5167
|
+
or contributory patent infringement, then any patent licenses
|
5168
|
+
granted to You under this License for that Work shall terminate
|
5169
|
+
as of the date such litigation is filed.
|
5170
|
+
|
5171
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
5172
|
+
Work or Derivative Works thereof in any medium, with or without
|
5173
|
+
modifications, and in Source or Object form, provided that You
|
5174
|
+
meet the following conditions:
|
5175
|
+
|
5176
|
+
(a) You must give any other recipients of the Work or
|
5177
|
+
Derivative Works a copy of this License; and
|
5178
|
+
|
5179
|
+
(b) You must cause any modified files to carry prominent notices
|
5180
|
+
stating that You changed the files; and
|
5181
|
+
|
5182
|
+
(c) You must retain, in the Source form of any Derivative Works
|
5183
|
+
that You distribute, all copyright, patent, trademark, and
|
5184
|
+
attribution notices from the Source form of the Work,
|
5185
|
+
excluding those notices that do not pertain to any part of
|
5186
|
+
the Derivative Works; and
|
5187
|
+
|
5188
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
5189
|
+
distribution, then any Derivative Works that You distribute must
|
5190
|
+
include a readable copy of the attribution notices contained
|
5191
|
+
within such NOTICE file, excluding those notices that do not
|
5192
|
+
pertain to any part of the Derivative Works, in at least one
|
5193
|
+
of the following places: within a NOTICE text file distributed
|
5194
|
+
as part of the Derivative Works; within the Source form or
|
5195
|
+
documentation, if provided along with the Derivative Works; or,
|
5196
|
+
within a display generated by the Derivative Works, if and
|
5197
|
+
wherever such third-party notices normally appear. The contents
|
5198
|
+
of the NOTICE file are for informational purposes only and
|
5199
|
+
do not modify the License. You may add Your own attribution
|
5200
|
+
notices within Derivative Works that You distribute, alongside
|
5201
|
+
or as an addendum to the NOTICE text from the Work, provided
|
5202
|
+
that such additional attribution notices cannot be construed
|
5203
|
+
as modifying the License.
|
5204
|
+
|
5205
|
+
You may add Your own copyright statement to Your modifications and
|
5206
|
+
may provide additional or different license terms and conditions
|
5207
|
+
for use, reproduction, or distribution of Your modifications, or
|
5208
|
+
for any such Derivative Works as a whole, provided Your use,
|
5209
|
+
reproduction, and distribution of the Work otherwise complies with
|
5210
|
+
the conditions stated in this License.
|
5211
|
+
|
5212
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
5213
|
+
any Contribution intentionally submitted for inclusion in the Work
|
5214
|
+
by You to the Licensor shall be under the terms and conditions of
|
5215
|
+
this License, without any additional terms or conditions.
|
5216
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
5217
|
+
the terms of any separate license agreement you may have executed
|
5218
|
+
with Licensor regarding such Contributions.
|
5219
|
+
|
5220
|
+
6. Trademarks. This License does not grant permission to use the trade
|
5221
|
+
names, trademarks, service marks, or product names of the Licensor,
|
5222
|
+
except as required for reasonable and customary use in describing the
|
5223
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
5224
|
+
|
5225
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
5226
|
+
agreed to in writing, Licensor provides the Work (and each
|
5227
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
5228
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
5229
|
+
implied, including, without limitation, any warranties or conditions
|
5230
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
5231
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
5232
|
+
appropriateness of using or redistributing the Work and assume any
|
5233
|
+
risks associated with Your exercise of permissions under this License.
|
5234
|
+
|
5235
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
5236
|
+
whether in tort (including negligence), contract, or otherwise,
|
5237
|
+
unless required by applicable law (such as deliberate and grossly
|
5238
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
5239
|
+
liable to You for damages, including any direct, indirect, special,
|
5240
|
+
incidental, or consequential damages of any character arising as a
|
5241
|
+
result of this License or out of the use or inability to use the
|
5242
|
+
Work (including but not limited to damages for loss of goodwill,
|
5243
|
+
work stoppage, computer failure or malfunction, or any and all
|
5244
|
+
other commercial damages or losses), even if such Contributor
|
5245
|
+
has been advised of the possibility of such damages.
|
5246
|
+
|
5247
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
5248
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
5249
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
5250
|
+
or other liability obligations and/or rights consistent with this
|
5251
|
+
License. However, in accepting such obligations, You may act only
|
5252
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
5253
|
+
of any other Contributor, and only if You agree to indemnify,
|
5254
|
+
defend, and hold each Contributor harmless for any liability
|
5255
|
+
incurred by, or claims asserted against, such Contributor by reason
|
5256
|
+
of your accepting any such warranty or additional liability.
|
5257
|
+
|
5258
|
+
END OF TERMS AND CONDITIONS
|
5259
|
+
|
5260
|
+
APPENDIX: How to apply the Apache License to your work.
|
5261
|
+
|
5262
|
+
To apply the Apache License to your work, attach the following
|
5263
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
5264
|
+
replaced with your own identifying information. (Don't include
|
5265
|
+
the brackets!) The text should be enclosed in the appropriate
|
5266
|
+
comment syntax for the file format. We also recommend that a
|
5267
|
+
file or class name and description of purpose be included on the
|
5268
|
+
same "printed page" as the copyright notice for easier
|
5269
|
+
identification within third-party archives.
|
5270
|
+
|
5271
|
+
Copyright [yyyy] [name of copyright owner]
|
5272
|
+
|
5273
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5274
|
+
you may not use this file except in compliance with the License.
|
5275
|
+
You may obtain a copy of the License at
|
5276
|
+
|
5277
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
5278
|
+
|
5279
|
+
Unless required by applicable law or agreed to in writing, software
|
5280
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
5281
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5282
|
+
See the License for the specific language governing permissions and
|
5283
|
+
limitations under the License.
|
4991
5284
|
|
4992
5285
|
================================================================================
|
4993
5286
|
comfy-table LICENSE
|
@@ -7025,7 +7318,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
7025
7318
|
DEALINGS IN THE SOFTWARE.
|
7026
7319
|
|
7027
7320
|
================================================================================
|
7028
|
-
crossbeam-
|
7321
|
+
crossbeam-queue LICENSE-APACHE
|
7029
7322
|
================================================================================
|
7030
7323
|
|
7031
7324
|
Apache License
|
@@ -7231,7 +7524,7 @@ See the License for the specific language governing permissions and
|
|
7231
7524
|
limitations under the License.
|
7232
7525
|
|
7233
7526
|
================================================================================
|
7234
|
-
crossbeam-
|
7527
|
+
crossbeam-queue LICENSE-MIT
|
7235
7528
|
================================================================================
|
7236
7529
|
|
7237
7530
|
The MIT License (MIT)
|
@@ -7263,33 +7556,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
7263
7556
|
DEALINGS IN THE SOFTWARE.
|
7264
7557
|
|
7265
7558
|
================================================================================
|
7266
|
-
|
7267
|
-
================================================================================
|
7268
|
-
|
7269
|
-
MIT License
|
7270
|
-
|
7271
|
-
Copyright (c) 2019 Timon
|
7272
|
-
|
7273
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7274
|
-
of this software and associated documentation files (the "Software"), to deal
|
7275
|
-
in the Software without restriction, including without limitation the rights
|
7276
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7277
|
-
copies of the Software, and to permit persons to whom the Software is
|
7278
|
-
furnished to do so, subject to the following conditions:
|
7279
|
-
|
7280
|
-
The above copyright notice and this permission notice shall be included in all
|
7281
|
-
copies or substantial portions of the Software.
|
7282
|
-
|
7283
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
7284
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
7285
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
7286
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
7287
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
7288
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
7289
|
-
SOFTWARE.
|
7290
|
-
|
7291
|
-
================================================================================
|
7292
|
-
dirs LICENSE-APACHE
|
7559
|
+
crossbeam-utils LICENSE-APACHE
|
7293
7560
|
================================================================================
|
7294
7561
|
|
7295
7562
|
Apache License
|
@@ -7467,32 +7734,93 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7467
7734
|
incurred by, or claims asserted against, such Contributor by reason
|
7468
7735
|
of your accepting any such warranty or additional liability.
|
7469
7736
|
|
7737
|
+
END OF TERMS AND CONDITIONS
|
7738
|
+
|
7739
|
+
APPENDIX: How to apply the Apache License to your work.
|
7740
|
+
|
7741
|
+
To apply the Apache License to your work, attach the following
|
7742
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
7743
|
+
replaced with your own identifying information. (Don't include
|
7744
|
+
the brackets!) The text should be enclosed in the appropriate
|
7745
|
+
comment syntax for the file format. We also recommend that a
|
7746
|
+
file or class name and description of purpose be included on the
|
7747
|
+
same "printed page" as the copyright notice for easier
|
7748
|
+
identification within third-party archives.
|
7749
|
+
|
7750
|
+
Copyright [yyyy] [name of copyright owner]
|
7751
|
+
|
7752
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
7753
|
+
you may not use this file except in compliance with the License.
|
7754
|
+
You may obtain a copy of the License at
|
7755
|
+
|
7756
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
7757
|
+
|
7758
|
+
Unless required by applicable law or agreed to in writing, software
|
7759
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
7760
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
7761
|
+
See the License for the specific language governing permissions and
|
7762
|
+
limitations under the License.
|
7763
|
+
|
7470
7764
|
================================================================================
|
7471
|
-
|
7765
|
+
crossbeam-utils LICENSE-MIT
|
7472
7766
|
================================================================================
|
7473
7767
|
|
7474
|
-
|
7768
|
+
The MIT License (MIT)
|
7475
7769
|
|
7476
|
-
|
7477
|
-
of this software and associated documentation files (the "Software"), to deal
|
7478
|
-
in the Software without restriction, including without limitation the rights
|
7479
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7480
|
-
copies of the Software, and to permit persons to whom the Software is
|
7481
|
-
furnished to do so, subject to the following conditions:
|
7770
|
+
Copyright (c) 2019 The Crossbeam Project Developers
|
7482
7771
|
|
7483
|
-
|
7484
|
-
|
7772
|
+
Permission is hereby granted, free of charge, to any
|
7773
|
+
person obtaining a copy of this software and associated
|
7774
|
+
documentation files (the "Software"), to deal in the
|
7775
|
+
Software without restriction, including without
|
7776
|
+
limitation the rights to use, copy, modify, merge,
|
7777
|
+
publish, distribute, sublicense, and/or sell copies of
|
7778
|
+
the Software, and to permit persons to whom the Software
|
7779
|
+
is furnished to do so, subject to the following
|
7780
|
+
conditions:
|
7485
7781
|
|
7486
|
-
|
7487
|
-
|
7488
|
-
|
7489
|
-
|
7490
|
-
|
7491
|
-
|
7492
|
-
|
7782
|
+
The above copyright notice and this permission notice
|
7783
|
+
shall be included in all copies or substantial portions
|
7784
|
+
of the Software.
|
7785
|
+
|
7786
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
7787
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
7788
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
7789
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
7790
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
7791
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
7792
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
7793
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
7794
|
+
DEALINGS IN THE SOFTWARE.
|
7795
|
+
|
7796
|
+
================================================================================
|
7797
|
+
crossterm LICENSE
|
7798
|
+
================================================================================
|
7799
|
+
|
7800
|
+
MIT License
|
7801
|
+
|
7802
|
+
Copyright (c) 2019 Timon
|
7803
|
+
|
7804
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7805
|
+
of this software and associated documentation files (the "Software"), to deal
|
7806
|
+
in the Software without restriction, including without limitation the rights
|
7807
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7808
|
+
copies of the Software, and to permit persons to whom the Software is
|
7809
|
+
furnished to do so, subject to the following conditions:
|
7810
|
+
|
7811
|
+
The above copyright notice and this permission notice shall be included in all
|
7812
|
+
copies or substantial portions of the Software.
|
7813
|
+
|
7814
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
7815
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
7816
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
7817
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
7818
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
7819
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
7820
|
+
SOFTWARE.
|
7493
7821
|
|
7494
7822
|
================================================================================
|
7495
|
-
|
7823
|
+
dyn-clone LICENSE-APACHE
|
7496
7824
|
================================================================================
|
7497
7825
|
|
7498
7826
|
Apache License
|
@@ -7670,32 +7998,38 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7670
7998
|
incurred by, or claims asserted against, such Contributor by reason
|
7671
7999
|
of your accepting any such warranty or additional liability.
|
7672
8000
|
|
8001
|
+
END OF TERMS AND CONDITIONS
|
8002
|
+
|
7673
8003
|
================================================================================
|
7674
|
-
|
8004
|
+
dyn-clone LICENSE-MIT
|
7675
8005
|
================================================================================
|
7676
8006
|
|
7677
|
-
|
7678
|
-
|
7679
|
-
|
7680
|
-
|
7681
|
-
|
7682
|
-
|
7683
|
-
|
7684
|
-
furnished to do so, subject to the following
|
8007
|
+
Permission is hereby granted, free of charge, to any
|
8008
|
+
person obtaining a copy of this software and associated
|
8009
|
+
documentation files (the "Software"), to deal in the
|
8010
|
+
Software without restriction, including without
|
8011
|
+
limitation the rights to use, copy, modify, merge,
|
8012
|
+
publish, distribute, sublicense, and/or sell copies of
|
8013
|
+
the Software, and to permit persons to whom the Software
|
8014
|
+
is furnished to do so, subject to the following
|
8015
|
+
conditions:
|
7685
8016
|
|
7686
|
-
The above copyright notice and this permission notice
|
7687
|
-
copies or substantial portions
|
8017
|
+
The above copyright notice and this permission notice
|
8018
|
+
shall be included in all copies or substantial portions
|
8019
|
+
of the Software.
|
7688
8020
|
|
7689
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
7690
|
-
IMPLIED, INCLUDING BUT NOT LIMITED
|
7691
|
-
|
7692
|
-
|
7693
|
-
|
7694
|
-
|
7695
|
-
|
8021
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
8022
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
8023
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
8024
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
8025
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
8026
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
8027
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
8028
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
8029
|
+
DEALINGS IN THE SOFTWARE.
|
7696
8030
|
|
7697
8031
|
================================================================================
|
7698
|
-
|
8032
|
+
either LICENSE-APACHE
|
7699
8033
|
================================================================================
|
7700
8034
|
|
7701
8035
|
Apache License
|
@@ -7875,10 +8209,37 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7875
8209
|
|
7876
8210
|
END OF TERMS AND CONDITIONS
|
7877
8211
|
|
8212
|
+
APPENDIX: How to apply the Apache License to your work.
|
8213
|
+
|
8214
|
+
To apply the Apache License to your work, attach the following
|
8215
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
8216
|
+
replaced with your own identifying information. (Don't include
|
8217
|
+
the brackets!) The text should be enclosed in the appropriate
|
8218
|
+
comment syntax for the file format. We also recommend that a
|
8219
|
+
file or class name and description of purpose be included on the
|
8220
|
+
same "printed page" as the copyright notice for easier
|
8221
|
+
identification within third-party archives.
|
8222
|
+
|
8223
|
+
Copyright [yyyy] [name of copyright owner]
|
8224
|
+
|
8225
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
8226
|
+
you may not use this file except in compliance with the License.
|
8227
|
+
You may obtain a copy of the License at
|
8228
|
+
|
8229
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8230
|
+
|
8231
|
+
Unless required by applicable law or agreed to in writing, software
|
8232
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
8233
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8234
|
+
See the License for the specific language governing permissions and
|
8235
|
+
limitations under the License.
|
8236
|
+
|
7878
8237
|
================================================================================
|
7879
|
-
|
8238
|
+
either LICENSE-MIT
|
7880
8239
|
================================================================================
|
7881
8240
|
|
8241
|
+
Copyright (c) 2015
|
8242
|
+
|
7882
8243
|
Permission is hereby granted, free of charge, to any
|
7883
8244
|
person obtaining a copy of this software and associated
|
7884
8245
|
documentation files (the "Software"), to deal in the
|
@@ -7904,7 +8265,33 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
7904
8265
|
DEALINGS IN THE SOFTWARE.
|
7905
8266
|
|
7906
8267
|
================================================================================
|
7907
|
-
|
8268
|
+
enum_dispatch LICENSE
|
8269
|
+
================================================================================
|
8270
|
+
|
8271
|
+
MIT License
|
8272
|
+
|
8273
|
+
Copyright (c) 2019 Anton Lazarev
|
8274
|
+
|
8275
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
8276
|
+
of this software and associated documentation files (the "Software"), to deal
|
8277
|
+
in the Software without restriction, including without limitation the rights
|
8278
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8279
|
+
copies of the Software, and to permit persons to whom the Software is
|
8280
|
+
furnished to do so, subject to the following conditions:
|
8281
|
+
|
8282
|
+
The above copyright notice and this permission notice shall be included in all
|
8283
|
+
copies or substantial portions of the Software.
|
8284
|
+
|
8285
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
8286
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
8287
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
8288
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
8289
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
8290
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
8291
|
+
SOFTWARE.
|
8292
|
+
|
8293
|
+
================================================================================
|
8294
|
+
equivalent LICENSE-APACHE
|
7908
8295
|
================================================================================
|
7909
8296
|
|
7910
8297
|
Apache License
|
@@ -8110,10 +8497,10 @@ See the License for the specific language governing permissions and
|
|
8110
8497
|
limitations under the License.
|
8111
8498
|
|
8112
8499
|
================================================================================
|
8113
|
-
|
8500
|
+
equivalent LICENSE-MIT
|
8114
8501
|
================================================================================
|
8115
8502
|
|
8116
|
-
Copyright (c)
|
8503
|
+
Copyright (c) 2016--2023
|
8117
8504
|
|
8118
8505
|
Permission is hereby granted, free of charge, to any
|
8119
8506
|
person obtaining a copy of this software and associated
|
@@ -8139,32 +8526,6 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
8139
8526
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
8140
8527
|
DEALINGS IN THE SOFTWARE.
|
8141
8528
|
|
8142
|
-
================================================================================
|
8143
|
-
enum_dispatch LICENSE
|
8144
|
-
================================================================================
|
8145
|
-
|
8146
|
-
MIT License
|
8147
|
-
|
8148
|
-
Copyright (c) 2019 Anton Lazarev
|
8149
|
-
|
8150
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
8151
|
-
of this software and associated documentation files (the "Software"), to deal
|
8152
|
-
in the Software without restriction, including without limitation the rights
|
8153
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8154
|
-
copies of the Software, and to permit persons to whom the Software is
|
8155
|
-
furnished to do so, subject to the following conditions:
|
8156
|
-
|
8157
|
-
The above copyright notice and this permission notice shall be included in all
|
8158
|
-
copies or substantial portions of the Software.
|
8159
|
-
|
8160
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
8161
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
8162
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
8163
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
8164
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
8165
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
8166
|
-
SOFTWARE.
|
8167
|
-
|
8168
8529
|
================================================================================
|
8169
8530
|
ethnum LICENSE-APACHE
|
8170
8531
|
================================================================================
|
@@ -12206,7 +12567,7 @@ OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
12206
12567
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
12207
12568
|
|
12208
12569
|
================================================================================
|
12209
|
-
hashbrown v0.
|
12570
|
+
hashbrown v0.13.2 LICENSE-APACHE
|
12210
12571
|
================================================================================
|
12211
12572
|
|
12212
12573
|
Apache License
|
@@ -12412,7 +12773,7 @@ See the License for the specific language governing permissions and
|
|
12412
12773
|
limitations under the License.
|
12413
12774
|
|
12414
12775
|
================================================================================
|
12415
|
-
hashbrown v0.
|
12776
|
+
hashbrown v0.13.2 LICENSE-MIT
|
12416
12777
|
================================================================================
|
12417
12778
|
|
12418
12779
|
Copyright (c) 2016 Amanieu d'Antras
|
@@ -12442,7 +12803,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
12442
12803
|
DEALINGS IN THE SOFTWARE.
|
12443
12804
|
|
12444
12805
|
================================================================================
|
12445
|
-
hashbrown v0.
|
12806
|
+
hashbrown v0.14.0 LICENSE-APACHE
|
12446
12807
|
================================================================================
|
12447
12808
|
|
12448
12809
|
Apache License
|
@@ -12648,7 +13009,7 @@ See the License for the specific language governing permissions and
|
|
12648
13009
|
limitations under the License.
|
12649
13010
|
|
12650
13011
|
================================================================================
|
12651
|
-
hashbrown v0.
|
13012
|
+
hashbrown v0.14.0 LICENSE-MIT
|
12652
13013
|
================================================================================
|
12653
13014
|
|
12654
13015
|
Copyright (c) 2016 Amanieu d'Antras
|
@@ -13146,12 +13507,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
13146
13507
|
SOFTWARE.
|
13147
13508
|
|
13148
13509
|
================================================================================
|
13149
|
-
|
13510
|
+
home LICENSE-APACHE
|
13150
13511
|
================================================================================
|
13151
13512
|
|
13152
13513
|
Apache License
|
13153
13514
|
Version 2.0, January 2004
|
13154
|
-
|
13515
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
13155
13516
|
|
13156
13517
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
13157
13518
|
|
@@ -13337,13 +13698,13 @@ APPENDIX: How to apply the Apache License to your work.
|
|
13337
13698
|
same "printed page" as the copyright notice for easier
|
13338
13699
|
identification within third-party archives.
|
13339
13700
|
|
13340
|
-
Copyright
|
13701
|
+
Copyright [yyyy] [name of copyright owner]
|
13341
13702
|
|
13342
13703
|
Licensed under the Apache License, Version 2.0 (the "License");
|
13343
13704
|
you may not use this file except in compliance with the License.
|
13344
13705
|
You may obtain a copy of the License at
|
13345
13706
|
|
13346
|
-
|
13707
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
13347
13708
|
|
13348
13709
|
Unless required by applicable law or agreed to in writing, software
|
13349
13710
|
distributed under the License is distributed on an "AS IS" BASIS,
|
@@ -13352,11 +13713,9 @@ See the License for the specific language governing permissions and
|
|
13352
13713
|
limitations under the License.
|
13353
13714
|
|
13354
13715
|
================================================================================
|
13355
|
-
|
13716
|
+
home LICENSE-MIT
|
13356
13717
|
================================================================================
|
13357
13718
|
|
13358
|
-
Copyright (c) 2020 Andrew D. Straw
|
13359
|
-
|
13360
13719
|
Permission is hereby granted, free of charge, to any
|
13361
13720
|
person obtaining a copy of this software and associated
|
13362
13721
|
documentation files (the "Software"), to deal in the
|
@@ -13382,7 +13741,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
13382
13741
|
DEALINGS IN THE SOFTWARE.
|
13383
13742
|
|
13384
13743
|
================================================================================
|
13385
|
-
|
13744
|
+
iana-time-zone LICENSE-APACHE
|
13386
13745
|
================================================================================
|
13387
13746
|
|
13388
13747
|
Apache License
|
@@ -13573,7 +13932,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
13573
13932
|
same "printed page" as the copyright notice for easier
|
13574
13933
|
identification within third-party archives.
|
13575
13934
|
|
13576
|
-
Copyright
|
13935
|
+
Copyright 2020 Andrew Straw
|
13577
13936
|
|
13578
13937
|
Licensed under the Apache License, Version 2.0 (the "License");
|
13579
13938
|
you may not use this file except in compliance with the License.
|
@@ -13588,219 +13947,10 @@ See the License for the specific language governing permissions and
|
|
13588
13947
|
limitations under the License.
|
13589
13948
|
|
13590
13949
|
================================================================================
|
13591
|
-
|
13592
|
-
================================================================================
|
13593
|
-
|
13594
|
-
Copyright (c) 2016--2017
|
13595
|
-
|
13596
|
-
Permission is hereby granted, free of charge, to any
|
13597
|
-
person obtaining a copy of this software and associated
|
13598
|
-
documentation files (the "Software"), to deal in the
|
13599
|
-
Software without restriction, including without
|
13600
|
-
limitation the rights to use, copy, modify, merge,
|
13601
|
-
publish, distribute, sublicense, and/or sell copies of
|
13602
|
-
the Software, and to permit persons to whom the Software
|
13603
|
-
is furnished to do so, subject to the following
|
13604
|
-
conditions:
|
13605
|
-
|
13606
|
-
The above copyright notice and this permission notice
|
13607
|
-
shall be included in all copies or substantial portions
|
13608
|
-
of the Software.
|
13609
|
-
|
13610
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
13611
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
13612
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
13613
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
13614
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
13615
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
13616
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
13617
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
13618
|
-
DEALINGS IN THE SOFTWARE.
|
13619
|
-
|
13620
|
-
================================================================================
|
13621
|
-
itoa LICENSE-APACHE
|
13950
|
+
iana-time-zone LICENSE-MIT
|
13622
13951
|
================================================================================
|
13623
13952
|
|
13624
|
-
|
13625
|
-
Version 2.0, January 2004
|
13626
|
-
http://www.apache.org/licenses/
|
13627
|
-
|
13628
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
13629
|
-
|
13630
|
-
1. Definitions.
|
13631
|
-
|
13632
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
13633
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
13634
|
-
|
13635
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
13636
|
-
the copyright owner that is granting the License.
|
13637
|
-
|
13638
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
13639
|
-
other entities that control, are controlled by, or are under common
|
13640
|
-
control with that entity. For the purposes of this definition,
|
13641
|
-
"control" means (i) the power, direct or indirect, to cause the
|
13642
|
-
direction or management of such entity, whether by contract or
|
13643
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
13644
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
13645
|
-
|
13646
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
13647
|
-
exercising permissions granted by this License.
|
13648
|
-
|
13649
|
-
"Source" form shall mean the preferred form for making modifications,
|
13650
|
-
including but not limited to software source code, documentation
|
13651
|
-
source, and configuration files.
|
13652
|
-
|
13653
|
-
"Object" form shall mean any form resulting from mechanical
|
13654
|
-
transformation or translation of a Source form, including but
|
13655
|
-
not limited to compiled object code, generated documentation,
|
13656
|
-
and conversions to other media types.
|
13657
|
-
|
13658
|
-
"Work" shall mean the work of authorship, whether in Source or
|
13659
|
-
Object form, made available under the License, as indicated by a
|
13660
|
-
copyright notice that is included in or attached to the work
|
13661
|
-
(an example is provided in the Appendix below).
|
13662
|
-
|
13663
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
13664
|
-
form, that is based on (or derived from) the Work and for which the
|
13665
|
-
editorial revisions, annotations, elaborations, or other modifications
|
13666
|
-
represent, as a whole, an original work of authorship. For the purposes
|
13667
|
-
of this License, Derivative Works shall not include works that remain
|
13668
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
13669
|
-
the Work and Derivative Works thereof.
|
13670
|
-
|
13671
|
-
"Contribution" shall mean any work of authorship, including
|
13672
|
-
the original version of the Work and any modifications or additions
|
13673
|
-
to that Work or Derivative Works thereof, that is intentionally
|
13674
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
13675
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
13676
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
13677
|
-
means any form of electronic, verbal, or written communication sent
|
13678
|
-
to the Licensor or its representatives, including but not limited to
|
13679
|
-
communication on electronic mailing lists, source code control systems,
|
13680
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
13681
|
-
Licensor for the purpose of discussing and improving the Work, but
|
13682
|
-
excluding communication that is conspicuously marked or otherwise
|
13683
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
13684
|
-
|
13685
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
13686
|
-
on behalf of whom a Contribution has been received by Licensor and
|
13687
|
-
subsequently incorporated within the Work.
|
13688
|
-
|
13689
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
13690
|
-
this License, each Contributor hereby grants to You a perpetual,
|
13691
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
13692
|
-
copyright license to reproduce, prepare Derivative Works of,
|
13693
|
-
publicly display, publicly perform, sublicense, and distribute the
|
13694
|
-
Work and such Derivative Works in Source or Object form.
|
13695
|
-
|
13696
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
13697
|
-
this License, each Contributor hereby grants to You a perpetual,
|
13698
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
13699
|
-
(except as stated in this section) patent license to make, have made,
|
13700
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
13701
|
-
where such license applies only to those patent claims licensable
|
13702
|
-
by such Contributor that are necessarily infringed by their
|
13703
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
13704
|
-
with the Work to which such Contribution(s) was submitted. If You
|
13705
|
-
institute patent litigation against any entity (including a
|
13706
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
13707
|
-
or a Contribution incorporated within the Work constitutes direct
|
13708
|
-
or contributory patent infringement, then any patent licenses
|
13709
|
-
granted to You under this License for that Work shall terminate
|
13710
|
-
as of the date such litigation is filed.
|
13711
|
-
|
13712
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
13713
|
-
Work or Derivative Works thereof in any medium, with or without
|
13714
|
-
modifications, and in Source or Object form, provided that You
|
13715
|
-
meet the following conditions:
|
13716
|
-
|
13717
|
-
(a) You must give any other recipients of the Work or
|
13718
|
-
Derivative Works a copy of this License; and
|
13719
|
-
|
13720
|
-
(b) You must cause any modified files to carry prominent notices
|
13721
|
-
stating that You changed the files; and
|
13722
|
-
|
13723
|
-
(c) You must retain, in the Source form of any Derivative Works
|
13724
|
-
that You distribute, all copyright, patent, trademark, and
|
13725
|
-
attribution notices from the Source form of the Work,
|
13726
|
-
excluding those notices that do not pertain to any part of
|
13727
|
-
the Derivative Works; and
|
13728
|
-
|
13729
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
13730
|
-
distribution, then any Derivative Works that You distribute must
|
13731
|
-
include a readable copy of the attribution notices contained
|
13732
|
-
within such NOTICE file, excluding those notices that do not
|
13733
|
-
pertain to any part of the Derivative Works, in at least one
|
13734
|
-
of the following places: within a NOTICE text file distributed
|
13735
|
-
as part of the Derivative Works; within the Source form or
|
13736
|
-
documentation, if provided along with the Derivative Works; or,
|
13737
|
-
within a display generated by the Derivative Works, if and
|
13738
|
-
wherever such third-party notices normally appear. The contents
|
13739
|
-
of the NOTICE file are for informational purposes only and
|
13740
|
-
do not modify the License. You may add Your own attribution
|
13741
|
-
notices within Derivative Works that You distribute, alongside
|
13742
|
-
or as an addendum to the NOTICE text from the Work, provided
|
13743
|
-
that such additional attribution notices cannot be construed
|
13744
|
-
as modifying the License.
|
13745
|
-
|
13746
|
-
You may add Your own copyright statement to Your modifications and
|
13747
|
-
may provide additional or different license terms and conditions
|
13748
|
-
for use, reproduction, or distribution of Your modifications, or
|
13749
|
-
for any such Derivative Works as a whole, provided Your use,
|
13750
|
-
reproduction, and distribution of the Work otherwise complies with
|
13751
|
-
the conditions stated in this License.
|
13752
|
-
|
13753
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
13754
|
-
any Contribution intentionally submitted for inclusion in the Work
|
13755
|
-
by You to the Licensor shall be under the terms and conditions of
|
13756
|
-
this License, without any additional terms or conditions.
|
13757
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
13758
|
-
the terms of any separate license agreement you may have executed
|
13759
|
-
with Licensor regarding such Contributions.
|
13760
|
-
|
13761
|
-
6. Trademarks. This License does not grant permission to use the trade
|
13762
|
-
names, trademarks, service marks, or product names of the Licensor,
|
13763
|
-
except as required for reasonable and customary use in describing the
|
13764
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
13765
|
-
|
13766
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
13767
|
-
agreed to in writing, Licensor provides the Work (and each
|
13768
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
13769
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
13770
|
-
implied, including, without limitation, any warranties or conditions
|
13771
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
13772
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
13773
|
-
appropriateness of using or redistributing the Work and assume any
|
13774
|
-
risks associated with Your exercise of permissions under this License.
|
13775
|
-
|
13776
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
13777
|
-
whether in tort (including negligence), contract, or otherwise,
|
13778
|
-
unless required by applicable law (such as deliberate and grossly
|
13779
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
13780
|
-
liable to You for damages, including any direct, indirect, special,
|
13781
|
-
incidental, or consequential damages of any character arising as a
|
13782
|
-
result of this License or out of the use or inability to use the
|
13783
|
-
Work (including but not limited to damages for loss of goodwill,
|
13784
|
-
work stoppage, computer failure or malfunction, or any and all
|
13785
|
-
other commercial damages or losses), even if such Contributor
|
13786
|
-
has been advised of the possibility of such damages.
|
13787
|
-
|
13788
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
13789
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
13790
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
13791
|
-
or other liability obligations and/or rights consistent with this
|
13792
|
-
License. However, in accepting such obligations, You may act only
|
13793
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
13794
|
-
of any other Contributor, and only if You agree to indemnify,
|
13795
|
-
defend, and hold each Contributor harmless for any liability
|
13796
|
-
incurred by, or claims asserted against, such Contributor by reason
|
13797
|
-
of your accepting any such warranty or additional liability.
|
13798
|
-
|
13799
|
-
END OF TERMS AND CONDITIONS
|
13800
|
-
|
13801
|
-
================================================================================
|
13802
|
-
itoa LICENSE-MIT
|
13803
|
-
================================================================================
|
13953
|
+
Copyright (c) 2020 Andrew D. Straw
|
13804
13954
|
|
13805
13955
|
Permission is hereby granted, free of charge, to any
|
13806
13956
|
person obtaining a copy of this software and associated
|
@@ -13827,34 +13977,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
13827
13977
|
DEALINGS IN THE SOFTWARE.
|
13828
13978
|
|
13829
13979
|
================================================================================
|
13830
|
-
|
13831
|
-
================================================================================
|
13832
|
-
|
13833
|
-
|
13834
|
-
The MIT License (MIT)
|
13835
|
-
Copyright (c) 2014-2016 Milo Yip, 2020 Ryohei Machida
|
13836
|
-
|
13837
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
13838
|
-
of this software and associated documentation files (the "Software"), to deal
|
13839
|
-
in the Software without restriction, including without limitation the rights
|
13840
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
13841
|
-
copies of the Software, and to permit persons to whom the Software is
|
13842
|
-
furnished to do so, subject to the following conditions:
|
13843
|
-
|
13844
|
-
The above copyright notice and this permission notice shall be included in all
|
13845
|
-
copies or substantial portions of the Software.
|
13846
|
-
|
13847
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
13848
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
13849
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
13850
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
13851
|
-
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
13852
|
-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
13853
|
-
OR OTHER DEALINGS IN THE SOFTWARE.
|
13854
|
-
|
13855
|
-
|
13856
|
-
================================================================================
|
13857
|
-
jemalloc-sys LICENSE-APACHE
|
13980
|
+
indexmap LICENSE-APACHE
|
13858
13981
|
================================================================================
|
13859
13982
|
|
13860
13983
|
Apache License
|
@@ -14060,10 +14183,10 @@ See the License for the specific language governing permissions and
|
|
14060
14183
|
limitations under the License.
|
14061
14184
|
|
14062
14185
|
================================================================================
|
14063
|
-
|
14186
|
+
indexmap LICENSE-MIT
|
14064
14187
|
================================================================================
|
14065
14188
|
|
14066
|
-
Copyright (c)
|
14189
|
+
Copyright (c) 2016--2017
|
14067
14190
|
|
14068
14191
|
Permission is hereby granted, free of charge, to any
|
14069
14192
|
person obtaining a copy of this software and associated
|
@@ -14090,39 +14213,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
14090
14213
|
DEALINGS IN THE SOFTWARE.
|
14091
14214
|
|
14092
14215
|
================================================================================
|
14093
|
-
|
14094
|
-
================================================================================
|
14095
|
-
|
14096
|
-
Unless otherwise specified, files in the jemalloc source distribution are
|
14097
|
-
subject to the following license:
|
14098
|
-
--------------------------------------------------------------------------------
|
14099
|
-
Copyright (C) 2002-present Jason Evans <jasone@canonware.com>.
|
14100
|
-
All rights reserved.
|
14101
|
-
Copyright (C) 2007-2012 Mozilla Foundation. All rights reserved.
|
14102
|
-
Copyright (C) 2009-present Facebook, Inc. All rights reserved.
|
14103
|
-
|
14104
|
-
Redistribution and use in source and binary forms, with or without
|
14105
|
-
modification, are permitted provided that the following conditions are met:
|
14106
|
-
1. Redistributions of source code must retain the above copyright notice(s),
|
14107
|
-
this list of conditions and the following disclaimer.
|
14108
|
-
2. Redistributions in binary form must reproduce the above copyright notice(s),
|
14109
|
-
this list of conditions and the following disclaimer in the documentation
|
14110
|
-
and/or other materials provided with the distribution.
|
14111
|
-
|
14112
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY EXPRESS
|
14113
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
14114
|
-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
14115
|
-
EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
14116
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
14117
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
14118
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
14119
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
14120
|
-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
14121
|
-
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
14122
|
-
--------------------------------------------------------------------------------
|
14123
|
-
|
14124
|
-
================================================================================
|
14125
|
-
jemallocator LICENSE-APACHE
|
14216
|
+
itoa LICENSE-APACHE
|
14126
14217
|
================================================================================
|
14127
14218
|
|
14128
14219
|
Apache License
|
@@ -14302,37 +14393,10 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
14302
14393
|
|
14303
14394
|
END OF TERMS AND CONDITIONS
|
14304
14395
|
|
14305
|
-
APPENDIX: How to apply the Apache License to your work.
|
14306
|
-
|
14307
|
-
To apply the Apache License to your work, attach the following
|
14308
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
14309
|
-
replaced with your own identifying information. (Don't include
|
14310
|
-
the brackets!) The text should be enclosed in the appropriate
|
14311
|
-
comment syntax for the file format. We also recommend that a
|
14312
|
-
file or class name and description of purpose be included on the
|
14313
|
-
same "printed page" as the copyright notice for easier
|
14314
|
-
identification within third-party archives.
|
14315
|
-
|
14316
|
-
Copyright [yyyy] [name of copyright owner]
|
14317
|
-
|
14318
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
14319
|
-
you may not use this file except in compliance with the License.
|
14320
|
-
You may obtain a copy of the License at
|
14321
|
-
|
14322
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
14323
|
-
|
14324
|
-
Unless required by applicable law or agreed to in writing, software
|
14325
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
14326
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14327
|
-
See the License for the specific language governing permissions and
|
14328
|
-
limitations under the License.
|
14329
|
-
|
14330
14396
|
================================================================================
|
14331
|
-
|
14397
|
+
itoa LICENSE-MIT
|
14332
14398
|
================================================================================
|
14333
14399
|
|
14334
|
-
Copyright (c) 2014 Alex Crichton
|
14335
|
-
|
14336
14400
|
Permission is hereby granted, free of charge, to any
|
14337
14401
|
person obtaining a copy of this software and associated
|
14338
14402
|
documentation files (the "Software"), to deal in the
|
@@ -14358,7 +14422,34 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
14358
14422
|
DEALINGS IN THE SOFTWARE.
|
14359
14423
|
|
14360
14424
|
================================================================================
|
14361
|
-
|
14425
|
+
itoap LICENSE
|
14426
|
+
================================================================================
|
14427
|
+
|
14428
|
+
|
14429
|
+
The MIT License (MIT)
|
14430
|
+
Copyright (c) 2014-2016 Milo Yip, 2020 Ryohei Machida
|
14431
|
+
|
14432
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
14433
|
+
of this software and associated documentation files (the "Software"), to deal
|
14434
|
+
in the Software without restriction, including without limitation the rights
|
14435
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14436
|
+
copies of the Software, and to permit persons to whom the Software is
|
14437
|
+
furnished to do so, subject to the following conditions:
|
14438
|
+
|
14439
|
+
The above copyright notice and this permission notice shall be included in all
|
14440
|
+
copies or substantial portions of the Software.
|
14441
|
+
|
14442
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
14443
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
14444
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
14445
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
14446
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
14447
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
14448
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
14449
|
+
|
14450
|
+
|
14451
|
+
================================================================================
|
14452
|
+
jemalloc-sys LICENSE-APACHE
|
14362
14453
|
================================================================================
|
14363
14454
|
|
14364
14455
|
Apache License
|
@@ -14564,7 +14655,7 @@ See the License for the specific language governing permissions and
|
|
14564
14655
|
limitations under the License.
|
14565
14656
|
|
14566
14657
|
================================================================================
|
14567
|
-
|
14658
|
+
jemalloc-sys LICENSE-MIT
|
14568
14659
|
================================================================================
|
14569
14660
|
|
14570
14661
|
Copyright (c) 2014 Alex Crichton
|
@@ -14594,229 +14685,39 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
14594
14685
|
DEALINGS IN THE SOFTWARE.
|
14595
14686
|
|
14596
14687
|
================================================================================
|
14597
|
-
|
14598
|
-
================================================================================
|
14599
|
-
|
14600
|
-
|
14601
|
-
Apache License
|
14602
|
-
Version 2.0, January 2004
|
14603
|
-
https://www.apache.org/licenses/
|
14604
|
-
|
14605
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
14606
|
-
|
14607
|
-
1. Definitions.
|
14608
|
-
|
14609
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
14610
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
14611
|
-
|
14612
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
14613
|
-
the copyright owner that is granting the License.
|
14614
|
-
|
14615
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
14616
|
-
other entities that control, are controlled by, or are under common
|
14617
|
-
control with that entity. For the purposes of this definition,
|
14618
|
-
"control" means (i) the power, direct or indirect, to cause the
|
14619
|
-
direction or management of such entity, whether by contract or
|
14620
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
14621
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
14622
|
-
|
14623
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
14624
|
-
exercising permissions granted by this License.
|
14625
|
-
|
14626
|
-
"Source" form shall mean the preferred form for making modifications,
|
14627
|
-
including but not limited to software source code, documentation
|
14628
|
-
source, and configuration files.
|
14629
|
-
|
14630
|
-
"Object" form shall mean any form resulting from mechanical
|
14631
|
-
transformation or translation of a Source form, including but
|
14632
|
-
not limited to compiled object code, generated documentation,
|
14633
|
-
and conversions to other media types.
|
14634
|
-
|
14635
|
-
"Work" shall mean the work of authorship, whether in Source or
|
14636
|
-
Object form, made available under the License, as indicated by a
|
14637
|
-
copyright notice that is included in or attached to the work
|
14638
|
-
(an example is provided in the Appendix below).
|
14639
|
-
|
14640
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
14641
|
-
form, that is based on (or derived from) the Work and for which the
|
14642
|
-
editorial revisions, annotations, elaborations, or other modifications
|
14643
|
-
represent, as a whole, an original work of authorship. For the purposes
|
14644
|
-
of this License, Derivative Works shall not include works that remain
|
14645
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
14646
|
-
the Work and Derivative Works thereof.
|
14647
|
-
|
14648
|
-
"Contribution" shall mean any work of authorship, including
|
14649
|
-
the original version of the Work and any modifications or additions
|
14650
|
-
to that Work or Derivative Works thereof, that is intentionally
|
14651
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
14652
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
14653
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
14654
|
-
means any form of electronic, verbal, or written communication sent
|
14655
|
-
to the Licensor or its representatives, including but not limited to
|
14656
|
-
communication on electronic mailing lists, source code control systems,
|
14657
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
14658
|
-
Licensor for the purpose of discussing and improving the Work, but
|
14659
|
-
excluding communication that is conspicuously marked or otherwise
|
14660
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
14661
|
-
|
14662
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
14663
|
-
on behalf of whom a Contribution has been received by Licensor and
|
14664
|
-
subsequently incorporated within the Work.
|
14665
|
-
|
14666
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
14667
|
-
this License, each Contributor hereby grants to You a perpetual,
|
14668
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
14669
|
-
copyright license to reproduce, prepare Derivative Works of,
|
14670
|
-
publicly display, publicly perform, sublicense, and distribute the
|
14671
|
-
Work and such Derivative Works in Source or Object form.
|
14672
|
-
|
14673
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
14674
|
-
this License, each Contributor hereby grants to You a perpetual,
|
14675
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
14676
|
-
(except as stated in this section) patent license to make, have made,
|
14677
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
14678
|
-
where such license applies only to those patent claims licensable
|
14679
|
-
by such Contributor that are necessarily infringed by their
|
14680
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
14681
|
-
with the Work to which such Contribution(s) was submitted. If You
|
14682
|
-
institute patent litigation against any entity (including a
|
14683
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
14684
|
-
or a Contribution incorporated within the Work constitutes direct
|
14685
|
-
or contributory patent infringement, then any patent licenses
|
14686
|
-
granted to You under this License for that Work shall terminate
|
14687
|
-
as of the date such litigation is filed.
|
14688
|
-
|
14689
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
14690
|
-
Work or Derivative Works thereof in any medium, with or without
|
14691
|
-
modifications, and in Source or Object form, provided that You
|
14692
|
-
meet the following conditions:
|
14693
|
-
|
14694
|
-
(a) You must give any other recipients of the Work or
|
14695
|
-
Derivative Works a copy of this License; and
|
14696
|
-
|
14697
|
-
(b) You must cause any modified files to carry prominent notices
|
14698
|
-
stating that You changed the files; and
|
14699
|
-
|
14700
|
-
(c) You must retain, in the Source form of any Derivative Works
|
14701
|
-
that You distribute, all copyright, patent, trademark, and
|
14702
|
-
attribution notices from the Source form of the Work,
|
14703
|
-
excluding those notices that do not pertain to any part of
|
14704
|
-
the Derivative Works; and
|
14705
|
-
|
14706
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
14707
|
-
distribution, then any Derivative Works that You distribute must
|
14708
|
-
include a readable copy of the attribution notices contained
|
14709
|
-
within such NOTICE file, excluding those notices that do not
|
14710
|
-
pertain to any part of the Derivative Works, in at least one
|
14711
|
-
of the following places: within a NOTICE text file distributed
|
14712
|
-
as part of the Derivative Works; within the Source form or
|
14713
|
-
documentation, if provided along with the Derivative Works; or,
|
14714
|
-
within a display generated by the Derivative Works, if and
|
14715
|
-
wherever such third-party notices normally appear. The contents
|
14716
|
-
of the NOTICE file are for informational purposes only and
|
14717
|
-
do not modify the License. You may add Your own attribution
|
14718
|
-
notices within Derivative Works that You distribute, alongside
|
14719
|
-
or as an addendum to the NOTICE text from the Work, provided
|
14720
|
-
that such additional attribution notices cannot be construed
|
14721
|
-
as modifying the License.
|
14722
|
-
|
14723
|
-
You may add Your own copyright statement to Your modifications and
|
14724
|
-
may provide additional or different license terms and conditions
|
14725
|
-
for use, reproduction, or distribution of Your modifications, or
|
14726
|
-
for any such Derivative Works as a whole, provided Your use,
|
14727
|
-
reproduction, and distribution of the Work otherwise complies with
|
14728
|
-
the conditions stated in this License.
|
14729
|
-
|
14730
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
14731
|
-
any Contribution intentionally submitted for inclusion in the Work
|
14732
|
-
by You to the Licensor shall be under the terms and conditions of
|
14733
|
-
this License, without any additional terms or conditions.
|
14734
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
14735
|
-
the terms of any separate license agreement you may have executed
|
14736
|
-
with Licensor regarding such Contributions.
|
14737
|
-
|
14738
|
-
6. Trademarks. This License does not grant permission to use the trade
|
14739
|
-
names, trademarks, service marks, or product names of the Licensor,
|
14740
|
-
except as required for reasonable and customary use in describing the
|
14741
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
14742
|
-
|
14743
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
14744
|
-
agreed to in writing, Licensor provides the Work (and each
|
14745
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
14746
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
14747
|
-
implied, including, without limitation, any warranties or conditions
|
14748
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
14749
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
14750
|
-
appropriateness of using or redistributing the Work and assume any
|
14751
|
-
risks associated with Your exercise of permissions under this License.
|
14752
|
-
|
14753
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
14754
|
-
whether in tort (including negligence), contract, or otherwise,
|
14755
|
-
unless required by applicable law (such as deliberate and grossly
|
14756
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
14757
|
-
liable to You for damages, including any direct, indirect, special,
|
14758
|
-
incidental, or consequential damages of any character arising as a
|
14759
|
-
result of this License or out of the use or inability to use the
|
14760
|
-
Work (including but not limited to damages for loss of goodwill,
|
14761
|
-
work stoppage, computer failure or malfunction, or any and all
|
14762
|
-
other commercial damages or losses), even if such Contributor
|
14763
|
-
has been advised of the possibility of such damages.
|
14764
|
-
|
14765
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
14766
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
14767
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
14768
|
-
or other liability obligations and/or rights consistent with this
|
14769
|
-
License. However, in accepting such obligations, You may act only
|
14770
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
14771
|
-
of any other Contributor, and only if You agree to indemnify,
|
14772
|
-
defend, and hold each Contributor harmless for any liability
|
14773
|
-
incurred by, or claims asserted against, such Contributor by reason
|
14774
|
-
of your accepting any such warranty or additional liability.
|
14775
|
-
|
14776
|
-
END OF TERMS AND CONDITIONS
|
14777
|
-
|
14778
|
-
Copyright 2020-2022 Jorge C. Leitão
|
14779
|
-
|
14780
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
14781
|
-
you may not use this file except in compliance with the License.
|
14782
|
-
You may obtain a copy of the License at
|
14783
|
-
|
14784
|
-
https://www.apache.org/licenses/LICENSE-2.0
|
14785
|
-
|
14786
|
-
Unless required by applicable law or agreed to in writing, software
|
14787
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
14788
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14789
|
-
See the License for the specific language governing permissions and
|
14790
|
-
limitations under the License.
|
14791
|
-
|
14792
|
-
================================================================================
|
14793
|
-
jsonpath_lib LICENSE
|
14688
|
+
jemalloc-sys jemalloc/COPYING
|
14794
14689
|
================================================================================
|
14795
14690
|
|
14796
|
-
|
14797
|
-
|
14798
|
-
|
14799
|
-
|
14800
|
-
|
14801
|
-
|
14802
|
-
|
14803
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14804
|
-
copies of the Software, and to permit persons to whom the Software is
|
14805
|
-
furnished to do so, subject to the following conditions:
|
14691
|
+
Unless otherwise specified, files in the jemalloc source distribution are
|
14692
|
+
subject to the following license:
|
14693
|
+
--------------------------------------------------------------------------------
|
14694
|
+
Copyright (C) 2002-present Jason Evans <jasone@canonware.com>.
|
14695
|
+
All rights reserved.
|
14696
|
+
Copyright (C) 2007-2012 Mozilla Foundation. All rights reserved.
|
14697
|
+
Copyright (C) 2009-present Facebook, Inc. All rights reserved.
|
14806
14698
|
|
14807
|
-
|
14808
|
-
|
14699
|
+
Redistribution and use in source and binary forms, with or without
|
14700
|
+
modification, are permitted provided that the following conditions are met:
|
14701
|
+
1. Redistributions of source code must retain the above copyright notice(s),
|
14702
|
+
this list of conditions and the following disclaimer.
|
14703
|
+
2. Redistributions in binary form must reproduce the above copyright notice(s),
|
14704
|
+
this list of conditions and the following disclaimer in the documentation
|
14705
|
+
and/or other materials provided with the distribution.
|
14809
14706
|
|
14810
|
-
|
14811
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
14812
|
-
FITNESS FOR A PARTICULAR PURPOSE
|
14813
|
-
|
14814
|
-
|
14815
|
-
|
14816
|
-
|
14707
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY EXPRESS
|
14708
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
14709
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
14710
|
+
EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
14711
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
14712
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
14713
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
14714
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
14715
|
+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
14716
|
+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
14717
|
+
--------------------------------------------------------------------------------
|
14817
14718
|
|
14818
14719
|
================================================================================
|
14819
|
-
|
14720
|
+
jemallocator LICENSE-APACHE
|
14820
14721
|
================================================================================
|
14821
14722
|
|
14822
14723
|
Apache License
|
@@ -15022,10 +14923,10 @@ See the License for the specific language governing permissions and
|
|
15022
14923
|
limitations under the License.
|
15023
14924
|
|
15024
14925
|
================================================================================
|
15025
|
-
|
14926
|
+
jemallocator LICENSE-MIT
|
15026
14927
|
================================================================================
|
15027
14928
|
|
15028
|
-
Copyright (c)
|
14929
|
+
Copyright (c) 2014 Alex Crichton
|
15029
14930
|
|
15030
14931
|
Permission is hereby granted, free of charge, to any
|
15031
14932
|
person obtaining a copy of this software and associated
|
@@ -15052,7 +14953,505 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
15052
14953
|
DEALINGS IN THE SOFTWARE.
|
15053
14954
|
|
15054
14955
|
================================================================================
|
15055
|
-
|
14956
|
+
jobserver LICENSE-APACHE
|
14957
|
+
================================================================================
|
14958
|
+
|
14959
|
+
Apache License
|
14960
|
+
Version 2.0, January 2004
|
14961
|
+
http://www.apache.org/licenses/
|
14962
|
+
|
14963
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
14964
|
+
|
14965
|
+
1. Definitions.
|
14966
|
+
|
14967
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
14968
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
14969
|
+
|
14970
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14971
|
+
the copyright owner that is granting the License.
|
14972
|
+
|
14973
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
14974
|
+
other entities that control, are controlled by, or are under common
|
14975
|
+
control with that entity. For the purposes of this definition,
|
14976
|
+
"control" means (i) the power, direct or indirect, to cause the
|
14977
|
+
direction or management of such entity, whether by contract or
|
14978
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
14979
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
14980
|
+
|
14981
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
14982
|
+
exercising permissions granted by this License.
|
14983
|
+
|
14984
|
+
"Source" form shall mean the preferred form for making modifications,
|
14985
|
+
including but not limited to software source code, documentation
|
14986
|
+
source, and configuration files.
|
14987
|
+
|
14988
|
+
"Object" form shall mean any form resulting from mechanical
|
14989
|
+
transformation or translation of a Source form, including but
|
14990
|
+
not limited to compiled object code, generated documentation,
|
14991
|
+
and conversions to other media types.
|
14992
|
+
|
14993
|
+
"Work" shall mean the work of authorship, whether in Source or
|
14994
|
+
Object form, made available under the License, as indicated by a
|
14995
|
+
copyright notice that is included in or attached to the work
|
14996
|
+
(an example is provided in the Appendix below).
|
14997
|
+
|
14998
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
14999
|
+
form, that is based on (or derived from) the Work and for which the
|
15000
|
+
editorial revisions, annotations, elaborations, or other modifications
|
15001
|
+
represent, as a whole, an original work of authorship. For the purposes
|
15002
|
+
of this License, Derivative Works shall not include works that remain
|
15003
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
15004
|
+
the Work and Derivative Works thereof.
|
15005
|
+
|
15006
|
+
"Contribution" shall mean any work of authorship, including
|
15007
|
+
the original version of the Work and any modifications or additions
|
15008
|
+
to that Work or Derivative Works thereof, that is intentionally
|
15009
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
15010
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
15011
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
15012
|
+
means any form of electronic, verbal, or written communication sent
|
15013
|
+
to the Licensor or its representatives, including but not limited to
|
15014
|
+
communication on electronic mailing lists, source code control systems,
|
15015
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
15016
|
+
Licensor for the purpose of discussing and improving the Work, but
|
15017
|
+
excluding communication that is conspicuously marked or otherwise
|
15018
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
15019
|
+
|
15020
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
15021
|
+
on behalf of whom a Contribution has been received by Licensor and
|
15022
|
+
subsequently incorporated within the Work.
|
15023
|
+
|
15024
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
15025
|
+
this License, each Contributor hereby grants to You a perpetual,
|
15026
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
15027
|
+
copyright license to reproduce, prepare Derivative Works of,
|
15028
|
+
publicly display, publicly perform, sublicense, and distribute the
|
15029
|
+
Work and such Derivative Works in Source or Object form.
|
15030
|
+
|
15031
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
15032
|
+
this License, each Contributor hereby grants to You a perpetual,
|
15033
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
15034
|
+
(except as stated in this section) patent license to make, have made,
|
15035
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
15036
|
+
where such license applies only to those patent claims licensable
|
15037
|
+
by such Contributor that are necessarily infringed by their
|
15038
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
15039
|
+
with the Work to which such Contribution(s) was submitted. If You
|
15040
|
+
institute patent litigation against any entity (including a
|
15041
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
15042
|
+
or a Contribution incorporated within the Work constitutes direct
|
15043
|
+
or contributory patent infringement, then any patent licenses
|
15044
|
+
granted to You under this License for that Work shall terminate
|
15045
|
+
as of the date such litigation is filed.
|
15046
|
+
|
15047
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
15048
|
+
Work or Derivative Works thereof in any medium, with or without
|
15049
|
+
modifications, and in Source or Object form, provided that You
|
15050
|
+
meet the following conditions:
|
15051
|
+
|
15052
|
+
(a) You must give any other recipients of the Work or
|
15053
|
+
Derivative Works a copy of this License; and
|
15054
|
+
|
15055
|
+
(b) You must cause any modified files to carry prominent notices
|
15056
|
+
stating that You changed the files; and
|
15057
|
+
|
15058
|
+
(c) You must retain, in the Source form of any Derivative Works
|
15059
|
+
that You distribute, all copyright, patent, trademark, and
|
15060
|
+
attribution notices from the Source form of the Work,
|
15061
|
+
excluding those notices that do not pertain to any part of
|
15062
|
+
the Derivative Works; and
|
15063
|
+
|
15064
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
15065
|
+
distribution, then any Derivative Works that You distribute must
|
15066
|
+
include a readable copy of the attribution notices contained
|
15067
|
+
within such NOTICE file, excluding those notices that do not
|
15068
|
+
pertain to any part of the Derivative Works, in at least one
|
15069
|
+
of the following places: within a NOTICE text file distributed
|
15070
|
+
as part of the Derivative Works; within the Source form or
|
15071
|
+
documentation, if provided along with the Derivative Works; or,
|
15072
|
+
within a display generated by the Derivative Works, if and
|
15073
|
+
wherever such third-party notices normally appear. The contents
|
15074
|
+
of the NOTICE file are for informational purposes only and
|
15075
|
+
do not modify the License. You may add Your own attribution
|
15076
|
+
notices within Derivative Works that You distribute, alongside
|
15077
|
+
or as an addendum to the NOTICE text from the Work, provided
|
15078
|
+
that such additional attribution notices cannot be construed
|
15079
|
+
as modifying the License.
|
15080
|
+
|
15081
|
+
You may add Your own copyright statement to Your modifications and
|
15082
|
+
may provide additional or different license terms and conditions
|
15083
|
+
for use, reproduction, or distribution of Your modifications, or
|
15084
|
+
for any such Derivative Works as a whole, provided Your use,
|
15085
|
+
reproduction, and distribution of the Work otherwise complies with
|
15086
|
+
the conditions stated in this License.
|
15087
|
+
|
15088
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
15089
|
+
any Contribution intentionally submitted for inclusion in the Work
|
15090
|
+
by You to the Licensor shall be under the terms and conditions of
|
15091
|
+
this License, without any additional terms or conditions.
|
15092
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
15093
|
+
the terms of any separate license agreement you may have executed
|
15094
|
+
with Licensor regarding such Contributions.
|
15095
|
+
|
15096
|
+
6. Trademarks. This License does not grant permission to use the trade
|
15097
|
+
names, trademarks, service marks, or product names of the Licensor,
|
15098
|
+
except as required for reasonable and customary use in describing the
|
15099
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
15100
|
+
|
15101
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
15102
|
+
agreed to in writing, Licensor provides the Work (and each
|
15103
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
15104
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
15105
|
+
implied, including, without limitation, any warranties or conditions
|
15106
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
15107
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
15108
|
+
appropriateness of using or redistributing the Work and assume any
|
15109
|
+
risks associated with Your exercise of permissions under this License.
|
15110
|
+
|
15111
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
15112
|
+
whether in tort (including negligence), contract, or otherwise,
|
15113
|
+
unless required by applicable law (such as deliberate and grossly
|
15114
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
15115
|
+
liable to You for damages, including any direct, indirect, special,
|
15116
|
+
incidental, or consequential damages of any character arising as a
|
15117
|
+
result of this License or out of the use or inability to use the
|
15118
|
+
Work (including but not limited to damages for loss of goodwill,
|
15119
|
+
work stoppage, computer failure or malfunction, or any and all
|
15120
|
+
other commercial damages or losses), even if such Contributor
|
15121
|
+
has been advised of the possibility of such damages.
|
15122
|
+
|
15123
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
15124
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
15125
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
15126
|
+
or other liability obligations and/or rights consistent with this
|
15127
|
+
License. However, in accepting such obligations, You may act only
|
15128
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
15129
|
+
of any other Contributor, and only if You agree to indemnify,
|
15130
|
+
defend, and hold each Contributor harmless for any liability
|
15131
|
+
incurred by, or claims asserted against, such Contributor by reason
|
15132
|
+
of your accepting any such warranty or additional liability.
|
15133
|
+
|
15134
|
+
END OF TERMS AND CONDITIONS
|
15135
|
+
|
15136
|
+
APPENDIX: How to apply the Apache License to your work.
|
15137
|
+
|
15138
|
+
To apply the Apache License to your work, attach the following
|
15139
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
15140
|
+
replaced with your own identifying information. (Don't include
|
15141
|
+
the brackets!) The text should be enclosed in the appropriate
|
15142
|
+
comment syntax for the file format. We also recommend that a
|
15143
|
+
file or class name and description of purpose be included on the
|
15144
|
+
same "printed page" as the copyright notice for easier
|
15145
|
+
identification within third-party archives.
|
15146
|
+
|
15147
|
+
Copyright [yyyy] [name of copyright owner]
|
15148
|
+
|
15149
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
15150
|
+
you may not use this file except in compliance with the License.
|
15151
|
+
You may obtain a copy of the License at
|
15152
|
+
|
15153
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15154
|
+
|
15155
|
+
Unless required by applicable law or agreed to in writing, software
|
15156
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
15157
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15158
|
+
See the License for the specific language governing permissions and
|
15159
|
+
limitations under the License.
|
15160
|
+
|
15161
|
+
================================================================================
|
15162
|
+
jobserver LICENSE-MIT
|
15163
|
+
================================================================================
|
15164
|
+
|
15165
|
+
Copyright (c) 2014 Alex Crichton
|
15166
|
+
|
15167
|
+
Permission is hereby granted, free of charge, to any
|
15168
|
+
person obtaining a copy of this software and associated
|
15169
|
+
documentation files (the "Software"), to deal in the
|
15170
|
+
Software without restriction, including without
|
15171
|
+
limitation the rights to use, copy, modify, merge,
|
15172
|
+
publish, distribute, sublicense, and/or sell copies of
|
15173
|
+
the Software, and to permit persons to whom the Software
|
15174
|
+
is furnished to do so, subject to the following
|
15175
|
+
conditions:
|
15176
|
+
|
15177
|
+
The above copyright notice and this permission notice
|
15178
|
+
shall be included in all copies or substantial portions
|
15179
|
+
of the Software.
|
15180
|
+
|
15181
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
15182
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
15183
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
15184
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
15185
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
15186
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
15187
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
15188
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
15189
|
+
DEALINGS IN THE SOFTWARE.
|
15190
|
+
|
15191
|
+
================================================================================
|
15192
|
+
jsonpath_lib LICENSE
|
15193
|
+
================================================================================
|
15194
|
+
|
15195
|
+
MIT License
|
15196
|
+
|
15197
|
+
Copyright (c) [2019] [Changseok Han]
|
15198
|
+
|
15199
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
15200
|
+
of this software and associated documentation files (the "Software"), to deal
|
15201
|
+
in the Software without restriction, including without limitation the rights
|
15202
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
15203
|
+
copies of the Software, and to permit persons to whom the Software is
|
15204
|
+
furnished to do so, subject to the following conditions:
|
15205
|
+
|
15206
|
+
The above copyright notice and this permission notice shall be included in all
|
15207
|
+
copies or substantial portions of the Software.
|
15208
|
+
|
15209
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15210
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15211
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
15212
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
15213
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
15214
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
15215
|
+
SOFTWARE.
|
15216
|
+
|
15217
|
+
================================================================================
|
15218
|
+
lazy_static LICENSE-APACHE
|
15219
|
+
================================================================================
|
15220
|
+
|
15221
|
+
Apache License
|
15222
|
+
Version 2.0, January 2004
|
15223
|
+
http://www.apache.org/licenses/
|
15224
|
+
|
15225
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
15226
|
+
|
15227
|
+
1. Definitions.
|
15228
|
+
|
15229
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
15230
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
15231
|
+
|
15232
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
15233
|
+
the copyright owner that is granting the License.
|
15234
|
+
|
15235
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
15236
|
+
other entities that control, are controlled by, or are under common
|
15237
|
+
control with that entity. For the purposes of this definition,
|
15238
|
+
"control" means (i) the power, direct or indirect, to cause the
|
15239
|
+
direction or management of such entity, whether by contract or
|
15240
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
15241
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
15242
|
+
|
15243
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
15244
|
+
exercising permissions granted by this License.
|
15245
|
+
|
15246
|
+
"Source" form shall mean the preferred form for making modifications,
|
15247
|
+
including but not limited to software source code, documentation
|
15248
|
+
source, and configuration files.
|
15249
|
+
|
15250
|
+
"Object" form shall mean any form resulting from mechanical
|
15251
|
+
transformation or translation of a Source form, including but
|
15252
|
+
not limited to compiled object code, generated documentation,
|
15253
|
+
and conversions to other media types.
|
15254
|
+
|
15255
|
+
"Work" shall mean the work of authorship, whether in Source or
|
15256
|
+
Object form, made available under the License, as indicated by a
|
15257
|
+
copyright notice that is included in or attached to the work
|
15258
|
+
(an example is provided in the Appendix below).
|
15259
|
+
|
15260
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
15261
|
+
form, that is based on (or derived from) the Work and for which the
|
15262
|
+
editorial revisions, annotations, elaborations, or other modifications
|
15263
|
+
represent, as a whole, an original work of authorship. For the purposes
|
15264
|
+
of this License, Derivative Works shall not include works that remain
|
15265
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
15266
|
+
the Work and Derivative Works thereof.
|
15267
|
+
|
15268
|
+
"Contribution" shall mean any work of authorship, including
|
15269
|
+
the original version of the Work and any modifications or additions
|
15270
|
+
to that Work or Derivative Works thereof, that is intentionally
|
15271
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
15272
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
15273
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
15274
|
+
means any form of electronic, verbal, or written communication sent
|
15275
|
+
to the Licensor or its representatives, including but not limited to
|
15276
|
+
communication on electronic mailing lists, source code control systems,
|
15277
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
15278
|
+
Licensor for the purpose of discussing and improving the Work, but
|
15279
|
+
excluding communication that is conspicuously marked or otherwise
|
15280
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
15281
|
+
|
15282
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
15283
|
+
on behalf of whom a Contribution has been received by Licensor and
|
15284
|
+
subsequently incorporated within the Work.
|
15285
|
+
|
15286
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
15287
|
+
this License, each Contributor hereby grants to You a perpetual,
|
15288
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
15289
|
+
copyright license to reproduce, prepare Derivative Works of,
|
15290
|
+
publicly display, publicly perform, sublicense, and distribute the
|
15291
|
+
Work and such Derivative Works in Source or Object form.
|
15292
|
+
|
15293
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
15294
|
+
this License, each Contributor hereby grants to You a perpetual,
|
15295
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
15296
|
+
(except as stated in this section) patent license to make, have made,
|
15297
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
15298
|
+
where such license applies only to those patent claims licensable
|
15299
|
+
by such Contributor that are necessarily infringed by their
|
15300
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
15301
|
+
with the Work to which such Contribution(s) was submitted. If You
|
15302
|
+
institute patent litigation against any entity (including a
|
15303
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
15304
|
+
or a Contribution incorporated within the Work constitutes direct
|
15305
|
+
or contributory patent infringement, then any patent licenses
|
15306
|
+
granted to You under this License for that Work shall terminate
|
15307
|
+
as of the date such litigation is filed.
|
15308
|
+
|
15309
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
15310
|
+
Work or Derivative Works thereof in any medium, with or without
|
15311
|
+
modifications, and in Source or Object form, provided that You
|
15312
|
+
meet the following conditions:
|
15313
|
+
|
15314
|
+
(a) You must give any other recipients of the Work or
|
15315
|
+
Derivative Works a copy of this License; and
|
15316
|
+
|
15317
|
+
(b) You must cause any modified files to carry prominent notices
|
15318
|
+
stating that You changed the files; and
|
15319
|
+
|
15320
|
+
(c) You must retain, in the Source form of any Derivative Works
|
15321
|
+
that You distribute, all copyright, patent, trademark, and
|
15322
|
+
attribution notices from the Source form of the Work,
|
15323
|
+
excluding those notices that do not pertain to any part of
|
15324
|
+
the Derivative Works; and
|
15325
|
+
|
15326
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
15327
|
+
distribution, then any Derivative Works that You distribute must
|
15328
|
+
include a readable copy of the attribution notices contained
|
15329
|
+
within such NOTICE file, excluding those notices that do not
|
15330
|
+
pertain to any part of the Derivative Works, in at least one
|
15331
|
+
of the following places: within a NOTICE text file distributed
|
15332
|
+
as part of the Derivative Works; within the Source form or
|
15333
|
+
documentation, if provided along with the Derivative Works; or,
|
15334
|
+
within a display generated by the Derivative Works, if and
|
15335
|
+
wherever such third-party notices normally appear. The contents
|
15336
|
+
of the NOTICE file are for informational purposes only and
|
15337
|
+
do not modify the License. You may add Your own attribution
|
15338
|
+
notices within Derivative Works that You distribute, alongside
|
15339
|
+
or as an addendum to the NOTICE text from the Work, provided
|
15340
|
+
that such additional attribution notices cannot be construed
|
15341
|
+
as modifying the License.
|
15342
|
+
|
15343
|
+
You may add Your own copyright statement to Your modifications and
|
15344
|
+
may provide additional or different license terms and conditions
|
15345
|
+
for use, reproduction, or distribution of Your modifications, or
|
15346
|
+
for any such Derivative Works as a whole, provided Your use,
|
15347
|
+
reproduction, and distribution of the Work otherwise complies with
|
15348
|
+
the conditions stated in this License.
|
15349
|
+
|
15350
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
15351
|
+
any Contribution intentionally submitted for inclusion in the Work
|
15352
|
+
by You to the Licensor shall be under the terms and conditions of
|
15353
|
+
this License, without any additional terms or conditions.
|
15354
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
15355
|
+
the terms of any separate license agreement you may have executed
|
15356
|
+
with Licensor regarding such Contributions.
|
15357
|
+
|
15358
|
+
6. Trademarks. This License does not grant permission to use the trade
|
15359
|
+
names, trademarks, service marks, or product names of the Licensor,
|
15360
|
+
except as required for reasonable and customary use in describing the
|
15361
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
15362
|
+
|
15363
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
15364
|
+
agreed to in writing, Licensor provides the Work (and each
|
15365
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
15366
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
15367
|
+
implied, including, without limitation, any warranties or conditions
|
15368
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
15369
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
15370
|
+
appropriateness of using or redistributing the Work and assume any
|
15371
|
+
risks associated with Your exercise of permissions under this License.
|
15372
|
+
|
15373
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
15374
|
+
whether in tort (including negligence), contract, or otherwise,
|
15375
|
+
unless required by applicable law (such as deliberate and grossly
|
15376
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
15377
|
+
liable to You for damages, including any direct, indirect, special,
|
15378
|
+
incidental, or consequential damages of any character arising as a
|
15379
|
+
result of this License or out of the use or inability to use the
|
15380
|
+
Work (including but not limited to damages for loss of goodwill,
|
15381
|
+
work stoppage, computer failure or malfunction, or any and all
|
15382
|
+
other commercial damages or losses), even if such Contributor
|
15383
|
+
has been advised of the possibility of such damages.
|
15384
|
+
|
15385
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
15386
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
15387
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
15388
|
+
or other liability obligations and/or rights consistent with this
|
15389
|
+
License. However, in accepting such obligations, You may act only
|
15390
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
15391
|
+
of any other Contributor, and only if You agree to indemnify,
|
15392
|
+
defend, and hold each Contributor harmless for any liability
|
15393
|
+
incurred by, or claims asserted against, such Contributor by reason
|
15394
|
+
of your accepting any such warranty or additional liability.
|
15395
|
+
|
15396
|
+
END OF TERMS AND CONDITIONS
|
15397
|
+
|
15398
|
+
APPENDIX: How to apply the Apache License to your work.
|
15399
|
+
|
15400
|
+
To apply the Apache License to your work, attach the following
|
15401
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
15402
|
+
replaced with your own identifying information. (Don't include
|
15403
|
+
the brackets!) The text should be enclosed in the appropriate
|
15404
|
+
comment syntax for the file format. We also recommend that a
|
15405
|
+
file or class name and description of purpose be included on the
|
15406
|
+
same "printed page" as the copyright notice for easier
|
15407
|
+
identification within third-party archives.
|
15408
|
+
|
15409
|
+
Copyright [yyyy] [name of copyright owner]
|
15410
|
+
|
15411
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
15412
|
+
you may not use this file except in compliance with the License.
|
15413
|
+
You may obtain a copy of the License at
|
15414
|
+
|
15415
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15416
|
+
|
15417
|
+
Unless required by applicable law or agreed to in writing, software
|
15418
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
15419
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15420
|
+
See the License for the specific language governing permissions and
|
15421
|
+
limitations under the License.
|
15422
|
+
|
15423
|
+
================================================================================
|
15424
|
+
lazy_static LICENSE-MIT
|
15425
|
+
================================================================================
|
15426
|
+
|
15427
|
+
Copyright (c) 2010 The Rust Project Developers
|
15428
|
+
|
15429
|
+
Permission is hereby granted, free of charge, to any
|
15430
|
+
person obtaining a copy of this software and associated
|
15431
|
+
documentation files (the "Software"), to deal in the
|
15432
|
+
Software without restriction, including without
|
15433
|
+
limitation the rights to use, copy, modify, merge,
|
15434
|
+
publish, distribute, sublicense, and/or sell copies of
|
15435
|
+
the Software, and to permit persons to whom the Software
|
15436
|
+
is furnished to do so, subject to the following
|
15437
|
+
conditions:
|
15438
|
+
|
15439
|
+
The above copyright notice and this permission notice
|
15440
|
+
shall be included in all copies or substantial portions
|
15441
|
+
of the Software.
|
15442
|
+
|
15443
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
15444
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
15445
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
15446
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
15447
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
15448
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
15449
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
15450
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
15451
|
+
DEALINGS IN THE SOFTWARE.
|
15452
|
+
|
15453
|
+
================================================================================
|
15454
|
+
lazycell LICENSE-APACHE
|
15056
15455
|
================================================================================
|
15057
15456
|
|
15058
15457
|
Apache License
|
@@ -19734,237 +20133,237 @@ DEALINGS IN THE SOFTWARE.
|
|
19734
20133
|
log LICENSE-APACHE
|
19735
20134
|
================================================================================
|
19736
20135
|
|
19737
|
-
Apache License
|
19738
|
-
Version 2.0, January 2004
|
19739
|
-
http://www.apache.org/licenses/
|
19740
|
-
|
19741
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
19742
|
-
|
19743
|
-
1. Definitions.
|
19744
|
-
|
19745
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
19746
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
19747
|
-
|
19748
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
19749
|
-
the copyright owner that is granting the License.
|
19750
|
-
|
19751
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
19752
|
-
other entities that control, are controlled by, or are under common
|
19753
|
-
control with that entity. For the purposes of this definition,
|
19754
|
-
"control" means (i) the power, direct or indirect, to cause the
|
19755
|
-
direction or management of such entity, whether by contract or
|
19756
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
19757
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
19758
|
-
|
19759
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
19760
|
-
exercising permissions granted by this License.
|
19761
|
-
|
19762
|
-
"Source" form shall mean the preferred form for making modifications,
|
19763
|
-
including but not limited to software source code, documentation
|
19764
|
-
source, and configuration files.
|
19765
|
-
|
19766
|
-
"Object" form shall mean any form resulting from mechanical
|
19767
|
-
transformation or translation of a Source form, including but
|
19768
|
-
not limited to compiled object code, generated documentation,
|
19769
|
-
and conversions to other media types.
|
19770
|
-
|
19771
|
-
"Work" shall mean the work of authorship, whether in Source or
|
19772
|
-
Object form, made available under the License, as indicated by a
|
19773
|
-
copyright notice that is included in or attached to the work
|
19774
|
-
(an example is provided in the Appendix below).
|
19775
|
-
|
19776
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
19777
|
-
form, that is based on (or derived from) the Work and for which the
|
19778
|
-
editorial revisions, annotations, elaborations, or other modifications
|
19779
|
-
represent, as a whole, an original work of authorship. For the purposes
|
19780
|
-
of this License, Derivative Works shall not include works that remain
|
19781
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
19782
|
-
the Work and Derivative Works thereof.
|
19783
|
-
|
19784
|
-
"Contribution" shall mean any work of authorship, including
|
19785
|
-
the original version of the Work and any modifications or additions
|
19786
|
-
to that Work or Derivative Works thereof, that is intentionally
|
19787
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
19788
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
19789
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
19790
|
-
means any form of electronic, verbal, or written communication sent
|
19791
|
-
to the Licensor or its representatives, including but not limited to
|
19792
|
-
communication on electronic mailing lists, source code control systems,
|
19793
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
19794
|
-
Licensor for the purpose of discussing and improving the Work, but
|
19795
|
-
excluding communication that is conspicuously marked or otherwise
|
19796
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
19797
|
-
|
19798
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
19799
|
-
on behalf of whom a Contribution has been received by Licensor and
|
19800
|
-
subsequently incorporated within the Work.
|
19801
|
-
|
19802
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
19803
|
-
this License, each Contributor hereby grants to You a perpetual,
|
19804
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
19805
|
-
copyright license to reproduce, prepare Derivative Works of,
|
19806
|
-
publicly display, publicly perform, sublicense, and distribute the
|
19807
|
-
Work and such Derivative Works in Source or Object form.
|
19808
|
-
|
19809
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
19810
|
-
this License, each Contributor hereby grants to You a perpetual,
|
19811
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
19812
|
-
(except as stated in this section) patent license to make, have made,
|
19813
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
19814
|
-
where such license applies only to those patent claims licensable
|
19815
|
-
by such Contributor that are necessarily infringed by their
|
19816
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
19817
|
-
with the Work to which such Contribution(s) was submitted. If You
|
19818
|
-
institute patent litigation against any entity (including a
|
19819
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
19820
|
-
or a Contribution incorporated within the Work constitutes direct
|
19821
|
-
or contributory patent infringement, then any patent licenses
|
19822
|
-
granted to You under this License for that Work shall terminate
|
19823
|
-
as of the date such litigation is filed.
|
19824
|
-
|
19825
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
19826
|
-
Work or Derivative Works thereof in any medium, with or without
|
19827
|
-
modifications, and in Source or Object form, provided that You
|
19828
|
-
meet the following conditions:
|
19829
|
-
|
19830
|
-
(a) You must give any other recipients of the Work or
|
19831
|
-
Derivative Works a copy of this License; and
|
19832
|
-
|
19833
|
-
(b) You must cause any modified files to carry prominent notices
|
19834
|
-
stating that You changed the files; and
|
19835
|
-
|
19836
|
-
(c) You must retain, in the Source form of any Derivative Works
|
19837
|
-
that You distribute, all copyright, patent, trademark, and
|
19838
|
-
attribution notices from the Source form of the Work,
|
19839
|
-
excluding those notices that do not pertain to any part of
|
19840
|
-
the Derivative Works; and
|
19841
|
-
|
19842
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
19843
|
-
distribution, then any Derivative Works that You distribute must
|
19844
|
-
include a readable copy of the attribution notices contained
|
19845
|
-
within such NOTICE file, excluding those notices that do not
|
19846
|
-
pertain to any part of the Derivative Works, in at least one
|
19847
|
-
of the following places: within a NOTICE text file distributed
|
19848
|
-
as part of the Derivative Works; within the Source form or
|
19849
|
-
documentation, if provided along with the Derivative Works; or,
|
19850
|
-
within a display generated by the Derivative Works, if and
|
19851
|
-
wherever such third-party notices normally appear. The contents
|
19852
|
-
of the NOTICE file are for informational purposes only and
|
19853
|
-
do not modify the License. You may add Your own attribution
|
19854
|
-
notices within Derivative Works that You distribute, alongside
|
19855
|
-
or as an addendum to the NOTICE text from the Work, provided
|
19856
|
-
that such additional attribution notices cannot be construed
|
19857
|
-
as modifying the License.
|
19858
|
-
|
19859
|
-
You may add Your own copyright statement to Your modifications and
|
19860
|
-
may provide additional or different license terms and conditions
|
19861
|
-
for use, reproduction, or distribution of Your modifications, or
|
19862
|
-
for any such Derivative Works as a whole, provided Your use,
|
19863
|
-
reproduction, and distribution of the Work otherwise complies with
|
19864
|
-
the conditions stated in this License.
|
19865
|
-
|
19866
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
19867
|
-
any Contribution intentionally submitted for inclusion in the Work
|
19868
|
-
by You to the Licensor shall be under the terms and conditions of
|
19869
|
-
this License, without any additional terms or conditions.
|
19870
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
19871
|
-
the terms of any separate license agreement you may have executed
|
19872
|
-
with Licensor regarding such Contributions.
|
19873
|
-
|
19874
|
-
6. Trademarks. This License does not grant permission to use the trade
|
19875
|
-
names, trademarks, service marks, or product names of the Licensor,
|
19876
|
-
except as required for reasonable and customary use in describing the
|
19877
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
19878
|
-
|
19879
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
19880
|
-
agreed to in writing, Licensor provides the Work (and each
|
19881
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
19882
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
19883
|
-
implied, including, without limitation, any warranties or conditions
|
19884
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
19885
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
19886
|
-
appropriateness of using or redistributing the Work and assume any
|
19887
|
-
risks associated with Your exercise of permissions under this License.
|
19888
|
-
|
19889
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
19890
|
-
whether in tort (including negligence), contract, or otherwise,
|
19891
|
-
unless required by applicable law (such as deliberate and grossly
|
19892
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
19893
|
-
liable to You for damages, including any direct, indirect, special,
|
19894
|
-
incidental, or consequential damages of any character arising as a
|
19895
|
-
result of this License or out of the use or inability to use the
|
19896
|
-
Work (including but not limited to damages for loss of goodwill,
|
19897
|
-
work stoppage, computer failure or malfunction, or any and all
|
19898
|
-
other commercial damages or losses), even if such Contributor
|
19899
|
-
has been advised of the possibility of such damages.
|
19900
|
-
|
19901
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
19902
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
19903
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
19904
|
-
or other liability obligations and/or rights consistent with this
|
19905
|
-
License. However, in accepting such obligations, You may act only
|
19906
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
19907
|
-
of any other Contributor, and only if You agree to indemnify,
|
19908
|
-
defend, and hold each Contributor harmless for any liability
|
19909
|
-
incurred by, or claims asserted against, such Contributor by reason
|
19910
|
-
of your accepting any such warranty or additional liability.
|
19911
|
-
|
19912
|
-
END OF TERMS AND CONDITIONS
|
19913
|
-
|
19914
|
-
APPENDIX: How to apply the Apache License to your work.
|
19915
|
-
|
19916
|
-
To apply the Apache License to your work, attach the following
|
19917
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
19918
|
-
replaced with your own identifying information. (Don't include
|
19919
|
-
the brackets!) The text should be enclosed in the appropriate
|
19920
|
-
comment syntax for the file format. We also recommend that a
|
19921
|
-
file or class name and description of purpose be included on the
|
19922
|
-
same "printed page" as the copyright notice for easier
|
19923
|
-
identification within third-party archives.
|
19924
|
-
|
19925
|
-
Copyright [yyyy] [name of copyright owner]
|
19926
|
-
|
19927
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
19928
|
-
you may not use this file except in compliance with the License.
|
19929
|
-
You may obtain a copy of the License at
|
19930
|
-
|
19931
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
19932
|
-
|
19933
|
-
Unless required by applicable law or agreed to in writing, software
|
19934
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
19935
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19936
|
-
See the License for the specific language governing permissions and
|
19937
|
-
limitations under the License.
|
20136
|
+
Apache License
|
20137
|
+
Version 2.0, January 2004
|
20138
|
+
http://www.apache.org/licenses/
|
20139
|
+
|
20140
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
20141
|
+
|
20142
|
+
1. Definitions.
|
20143
|
+
|
20144
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
20145
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
20146
|
+
|
20147
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
20148
|
+
the copyright owner that is granting the License.
|
20149
|
+
|
20150
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
20151
|
+
other entities that control, are controlled by, or are under common
|
20152
|
+
control with that entity. For the purposes of this definition,
|
20153
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20154
|
+
direction or management of such entity, whether by contract or
|
20155
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
20156
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
20157
|
+
|
20158
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
20159
|
+
exercising permissions granted by this License.
|
20160
|
+
|
20161
|
+
"Source" form shall mean the preferred form for making modifications,
|
20162
|
+
including but not limited to software source code, documentation
|
20163
|
+
source, and configuration files.
|
20164
|
+
|
20165
|
+
"Object" form shall mean any form resulting from mechanical
|
20166
|
+
transformation or translation of a Source form, including but
|
20167
|
+
not limited to compiled object code, generated documentation,
|
20168
|
+
and conversions to other media types.
|
20169
|
+
|
20170
|
+
"Work" shall mean the work of authorship, whether in Source or
|
20171
|
+
Object form, made available under the License, as indicated by a
|
20172
|
+
copyright notice that is included in or attached to the work
|
20173
|
+
(an example is provided in the Appendix below).
|
20174
|
+
|
20175
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
20176
|
+
form, that is based on (or derived from) the Work and for which the
|
20177
|
+
editorial revisions, annotations, elaborations, or other modifications
|
20178
|
+
represent, as a whole, an original work of authorship. For the purposes
|
20179
|
+
of this License, Derivative Works shall not include works that remain
|
20180
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
20181
|
+
the Work and Derivative Works thereof.
|
20182
|
+
|
20183
|
+
"Contribution" shall mean any work of authorship, including
|
20184
|
+
the original version of the Work and any modifications or additions
|
20185
|
+
to that Work or Derivative Works thereof, that is intentionally
|
20186
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
20187
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
20188
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
20189
|
+
means any form of electronic, verbal, or written communication sent
|
20190
|
+
to the Licensor or its representatives, including but not limited to
|
20191
|
+
communication on electronic mailing lists, source code control systems,
|
20192
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
20193
|
+
Licensor for the purpose of discussing and improving the Work, but
|
20194
|
+
excluding communication that is conspicuously marked or otherwise
|
20195
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
20196
|
+
|
20197
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
20198
|
+
on behalf of whom a Contribution has been received by Licensor and
|
20199
|
+
subsequently incorporated within the Work.
|
20200
|
+
|
20201
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
20202
|
+
this License, each Contributor hereby grants to You a perpetual,
|
20203
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
20204
|
+
copyright license to reproduce, prepare Derivative Works of,
|
20205
|
+
publicly display, publicly perform, sublicense, and distribute the
|
20206
|
+
Work and such Derivative Works in Source or Object form.
|
20207
|
+
|
20208
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
20209
|
+
this License, each Contributor hereby grants to You a perpetual,
|
20210
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
20211
|
+
(except as stated in this section) patent license to make, have made,
|
20212
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
20213
|
+
where such license applies only to those patent claims licensable
|
20214
|
+
by such Contributor that are necessarily infringed by their
|
20215
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
20216
|
+
with the Work to which such Contribution(s) was submitted. If You
|
20217
|
+
institute patent litigation against any entity (including a
|
20218
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
20219
|
+
or a Contribution incorporated within the Work constitutes direct
|
20220
|
+
or contributory patent infringement, then any patent licenses
|
20221
|
+
granted to You under this License for that Work shall terminate
|
20222
|
+
as of the date such litigation is filed.
|
20223
|
+
|
20224
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
20225
|
+
Work or Derivative Works thereof in any medium, with or without
|
20226
|
+
modifications, and in Source or Object form, provided that You
|
20227
|
+
meet the following conditions:
|
20228
|
+
|
20229
|
+
(a) You must give any other recipients of the Work or
|
20230
|
+
Derivative Works a copy of this License; and
|
20231
|
+
|
20232
|
+
(b) You must cause any modified files to carry prominent notices
|
20233
|
+
stating that You changed the files; and
|
20234
|
+
|
20235
|
+
(c) You must retain, in the Source form of any Derivative Works
|
20236
|
+
that You distribute, all copyright, patent, trademark, and
|
20237
|
+
attribution notices from the Source form of the Work,
|
20238
|
+
excluding those notices that do not pertain to any part of
|
20239
|
+
the Derivative Works; and
|
20240
|
+
|
20241
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
20242
|
+
distribution, then any Derivative Works that You distribute must
|
20243
|
+
include a readable copy of the attribution notices contained
|
20244
|
+
within such NOTICE file, excluding those notices that do not
|
20245
|
+
pertain to any part of the Derivative Works, in at least one
|
20246
|
+
of the following places: within a NOTICE text file distributed
|
20247
|
+
as part of the Derivative Works; within the Source form or
|
20248
|
+
documentation, if provided along with the Derivative Works; or,
|
20249
|
+
within a display generated by the Derivative Works, if and
|
20250
|
+
wherever such third-party notices normally appear. The contents
|
20251
|
+
of the NOTICE file are for informational purposes only and
|
20252
|
+
do not modify the License. You may add Your own attribution
|
20253
|
+
notices within Derivative Works that You distribute, alongside
|
20254
|
+
or as an addendum to the NOTICE text from the Work, provided
|
20255
|
+
that such additional attribution notices cannot be construed
|
20256
|
+
as modifying the License.
|
20257
|
+
|
20258
|
+
You may add Your own copyright statement to Your modifications and
|
20259
|
+
may provide additional or different license terms and conditions
|
20260
|
+
for use, reproduction, or distribution of Your modifications, or
|
20261
|
+
for any such Derivative Works as a whole, provided Your use,
|
20262
|
+
reproduction, and distribution of the Work otherwise complies with
|
20263
|
+
the conditions stated in this License.
|
20264
|
+
|
20265
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
20266
|
+
any Contribution intentionally submitted for inclusion in the Work
|
20267
|
+
by You to the Licensor shall be under the terms and conditions of
|
20268
|
+
this License, without any additional terms or conditions.
|
20269
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
20270
|
+
the terms of any separate license agreement you may have executed
|
20271
|
+
with Licensor regarding such Contributions.
|
20272
|
+
|
20273
|
+
6. Trademarks. This License does not grant permission to use the trade
|
20274
|
+
names, trademarks, service marks, or product names of the Licensor,
|
20275
|
+
except as required for reasonable and customary use in describing the
|
20276
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
20277
|
+
|
20278
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
20279
|
+
agreed to in writing, Licensor provides the Work (and each
|
20280
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
20281
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
20282
|
+
implied, including, without limitation, any warranties or conditions
|
20283
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
20284
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
20285
|
+
appropriateness of using or redistributing the Work and assume any
|
20286
|
+
risks associated with Your exercise of permissions under this License.
|
20287
|
+
|
20288
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
20289
|
+
whether in tort (including negligence), contract, or otherwise,
|
20290
|
+
unless required by applicable law (such as deliberate and grossly
|
20291
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
20292
|
+
liable to You for damages, including any direct, indirect, special,
|
20293
|
+
incidental, or consequential damages of any character arising as a
|
20294
|
+
result of this License or out of the use or inability to use the
|
20295
|
+
Work (including but not limited to damages for loss of goodwill,
|
20296
|
+
work stoppage, computer failure or malfunction, or any and all
|
20297
|
+
other commercial damages or losses), even if such Contributor
|
20298
|
+
has been advised of the possibility of such damages.
|
20299
|
+
|
20300
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
20301
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
20302
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
20303
|
+
or other liability obligations and/or rights consistent with this
|
20304
|
+
License. However, in accepting such obligations, You may act only
|
20305
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
20306
|
+
of any other Contributor, and only if You agree to indemnify,
|
20307
|
+
defend, and hold each Contributor harmless for any liability
|
20308
|
+
incurred by, or claims asserted against, such Contributor by reason
|
20309
|
+
of your accepting any such warranty or additional liability.
|
20310
|
+
|
20311
|
+
END OF TERMS AND CONDITIONS
|
20312
|
+
|
20313
|
+
APPENDIX: How to apply the Apache License to your work.
|
20314
|
+
|
20315
|
+
To apply the Apache License to your work, attach the following
|
20316
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
20317
|
+
replaced with your own identifying information. (Don't include
|
20318
|
+
the brackets!) The text should be enclosed in the appropriate
|
20319
|
+
comment syntax for the file format. We also recommend that a
|
20320
|
+
file or class name and description of purpose be included on the
|
20321
|
+
same "printed page" as the copyright notice for easier
|
20322
|
+
identification within third-party archives.
|
20323
|
+
|
20324
|
+
Copyright [yyyy] [name of copyright owner]
|
20325
|
+
|
20326
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
20327
|
+
you may not use this file except in compliance with the License.
|
20328
|
+
You may obtain a copy of the License at
|
20329
|
+
|
20330
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
20331
|
+
|
20332
|
+
Unless required by applicable law or agreed to in writing, software
|
20333
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
20334
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
20335
|
+
See the License for the specific language governing permissions and
|
20336
|
+
limitations under the License.
|
19938
20337
|
|
19939
20338
|
================================================================================
|
19940
20339
|
log LICENSE-MIT
|
19941
20340
|
================================================================================
|
19942
20341
|
|
19943
|
-
Copyright (c) 2014 The Rust Project Developers
|
19944
|
-
|
19945
|
-
Permission is hereby granted, free of charge, to any
|
19946
|
-
person obtaining a copy of this software and associated
|
19947
|
-
documentation files (the "Software"), to deal in the
|
19948
|
-
Software without restriction, including without
|
19949
|
-
limitation the rights to use, copy, modify, merge,
|
19950
|
-
publish, distribute, sublicense, and/or sell copies of
|
19951
|
-
the Software, and to permit persons to whom the Software
|
19952
|
-
is furnished to do so, subject to the following
|
19953
|
-
conditions:
|
19954
|
-
|
19955
|
-
The above copyright notice and this permission notice
|
19956
|
-
shall be included in all copies or substantial portions
|
19957
|
-
of the Software.
|
19958
|
-
|
19959
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
19960
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
19961
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
19962
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
19963
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
19964
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19965
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
19966
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
19967
|
-
DEALINGS IN THE SOFTWARE.
|
20342
|
+
Copyright (c) 2014 The Rust Project Developers
|
20343
|
+
|
20344
|
+
Permission is hereby granted, free of charge, to any
|
20345
|
+
person obtaining a copy of this software and associated
|
20346
|
+
documentation files (the "Software"), to deal in the
|
20347
|
+
Software without restriction, including without
|
20348
|
+
limitation the rights to use, copy, modify, merge,
|
20349
|
+
publish, distribute, sublicense, and/or sell copies of
|
20350
|
+
the Software, and to permit persons to whom the Software
|
20351
|
+
is furnished to do so, subject to the following
|
20352
|
+
conditions:
|
20353
|
+
|
20354
|
+
The above copyright notice and this permission notice
|
20355
|
+
shall be included in all copies or substantial portions
|
20356
|
+
of the Software.
|
20357
|
+
|
20358
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
20359
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
20360
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
20361
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
20362
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
20363
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20364
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
20365
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
20366
|
+
DEALINGS IN THE SOFTWARE.
|
19968
20367
|
|
19969
20368
|
================================================================================
|
19970
20369
|
lz4 LICENSE
|
@@ -25774,6 +26173,30 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25774
26173
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25775
26174
|
SOFTWARE.
|
25776
26175
|
|
26176
|
+
================================================================================
|
26177
|
+
polars-json LICENSE
|
26178
|
+
================================================================================
|
26179
|
+
|
26180
|
+
Copyright (c) 2020 Ritchie Vink
|
26181
|
+
|
26182
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
26183
|
+
of this software and associated documentation files (the "Software"), to deal
|
26184
|
+
in the Software without restriction, including without limitation the rights
|
26185
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
26186
|
+
copies of the Software, and to permit persons to whom the Software is
|
26187
|
+
furnished to do so, subject to the following conditions:
|
26188
|
+
|
26189
|
+
The above copyright notice and this permission notice shall be included in all
|
26190
|
+
copies or substantial portions of the Software.
|
26191
|
+
|
26192
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
26193
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
26194
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
26195
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
26196
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
26197
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26198
|
+
SOFTWARE.
|
26199
|
+
|
25777
26200
|
================================================================================
|
25778
26201
|
polars-lazy LICENSE
|
25779
26202
|
================================================================================
|
@@ -25894,6 +26317,30 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25894
26317
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25895
26318
|
SOFTWARE.
|
25896
26319
|
|
26320
|
+
================================================================================
|
26321
|
+
polars-sql LICENSE
|
26322
|
+
================================================================================
|
26323
|
+
|
26324
|
+
Copyright (c) 2020 Ritchie Vink
|
26325
|
+
|
26326
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
26327
|
+
of this software and associated documentation files (the "Software"), to deal
|
26328
|
+
in the Software without restriction, including without limitation the rights
|
26329
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
26330
|
+
copies of the Software, and to permit persons to whom the Software is
|
26331
|
+
furnished to do so, subject to the following conditions:
|
26332
|
+
|
26333
|
+
The above copyright notice and this permission notice shall be included in all
|
26334
|
+
copies or substantial portions of the Software.
|
26335
|
+
|
26336
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
26337
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
26338
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
26339
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
26340
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
26341
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26342
|
+
SOFTWARE.
|
26343
|
+
|
25897
26344
|
================================================================================
|
25898
26345
|
polars-time LICENSE
|
25899
26346
|
================================================================================
|
@@ -28862,31 +29309,541 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
28862
29309
|
DEALINGS IN THE SOFTWARE.
|
28863
29310
|
|
28864
29311
|
================================================================================
|
28865
|
-
regex
|
29312
|
+
regex-automata LICENSE-APACHE
|
29313
|
+
================================================================================
|
29314
|
+
|
29315
|
+
Apache License
|
29316
|
+
Version 2.0, January 2004
|
29317
|
+
http://www.apache.org/licenses/
|
29318
|
+
|
29319
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
29320
|
+
|
29321
|
+
1. Definitions.
|
29322
|
+
|
29323
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
29324
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
29325
|
+
|
29326
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
29327
|
+
the copyright owner that is granting the License.
|
29328
|
+
|
29329
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
29330
|
+
other entities that control, are controlled by, or are under common
|
29331
|
+
control with that entity. For the purposes of this definition,
|
29332
|
+
"control" means (i) the power, direct or indirect, to cause the
|
29333
|
+
direction or management of such entity, whether by contract or
|
29334
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
29335
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
29336
|
+
|
29337
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
29338
|
+
exercising permissions granted by this License.
|
29339
|
+
|
29340
|
+
"Source" form shall mean the preferred form for making modifications,
|
29341
|
+
including but not limited to software source code, documentation
|
29342
|
+
source, and configuration files.
|
29343
|
+
|
29344
|
+
"Object" form shall mean any form resulting from mechanical
|
29345
|
+
transformation or translation of a Source form, including but
|
29346
|
+
not limited to compiled object code, generated documentation,
|
29347
|
+
and conversions to other media types.
|
29348
|
+
|
29349
|
+
"Work" shall mean the work of authorship, whether in Source or
|
29350
|
+
Object form, made available under the License, as indicated by a
|
29351
|
+
copyright notice that is included in or attached to the work
|
29352
|
+
(an example is provided in the Appendix below).
|
29353
|
+
|
29354
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
29355
|
+
form, that is based on (or derived from) the Work and for which the
|
29356
|
+
editorial revisions, annotations, elaborations, or other modifications
|
29357
|
+
represent, as a whole, an original work of authorship. For the purposes
|
29358
|
+
of this License, Derivative Works shall not include works that remain
|
29359
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
29360
|
+
the Work and Derivative Works thereof.
|
29361
|
+
|
29362
|
+
"Contribution" shall mean any work of authorship, including
|
29363
|
+
the original version of the Work and any modifications or additions
|
29364
|
+
to that Work or Derivative Works thereof, that is intentionally
|
29365
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
29366
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
29367
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
29368
|
+
means any form of electronic, verbal, or written communication sent
|
29369
|
+
to the Licensor or its representatives, including but not limited to
|
29370
|
+
communication on electronic mailing lists, source code control systems,
|
29371
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
29372
|
+
Licensor for the purpose of discussing and improving the Work, but
|
29373
|
+
excluding communication that is conspicuously marked or otherwise
|
29374
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
29375
|
+
|
29376
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
29377
|
+
on behalf of whom a Contribution has been received by Licensor and
|
29378
|
+
subsequently incorporated within the Work.
|
29379
|
+
|
29380
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
29381
|
+
this License, each Contributor hereby grants to You a perpetual,
|
29382
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
29383
|
+
copyright license to reproduce, prepare Derivative Works of,
|
29384
|
+
publicly display, publicly perform, sublicense, and distribute the
|
29385
|
+
Work and such Derivative Works in Source or Object form.
|
29386
|
+
|
29387
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
29388
|
+
this License, each Contributor hereby grants to You a perpetual,
|
29389
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
29390
|
+
(except as stated in this section) patent license to make, have made,
|
29391
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
29392
|
+
where such license applies only to those patent claims licensable
|
29393
|
+
by such Contributor that are necessarily infringed by their
|
29394
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
29395
|
+
with the Work to which such Contribution(s) was submitted. If You
|
29396
|
+
institute patent litigation against any entity (including a
|
29397
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
29398
|
+
or a Contribution incorporated within the Work constitutes direct
|
29399
|
+
or contributory patent infringement, then any patent licenses
|
29400
|
+
granted to You under this License for that Work shall terminate
|
29401
|
+
as of the date such litigation is filed.
|
29402
|
+
|
29403
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
29404
|
+
Work or Derivative Works thereof in any medium, with or without
|
29405
|
+
modifications, and in Source or Object form, provided that You
|
29406
|
+
meet the following conditions:
|
29407
|
+
|
29408
|
+
(a) You must give any other recipients of the Work or
|
29409
|
+
Derivative Works a copy of this License; and
|
29410
|
+
|
29411
|
+
(b) You must cause any modified files to carry prominent notices
|
29412
|
+
stating that You changed the files; and
|
29413
|
+
|
29414
|
+
(c) You must retain, in the Source form of any Derivative Works
|
29415
|
+
that You distribute, all copyright, patent, trademark, and
|
29416
|
+
attribution notices from the Source form of the Work,
|
29417
|
+
excluding those notices that do not pertain to any part of
|
29418
|
+
the Derivative Works; and
|
29419
|
+
|
29420
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
29421
|
+
distribution, then any Derivative Works that You distribute must
|
29422
|
+
include a readable copy of the attribution notices contained
|
29423
|
+
within such NOTICE file, excluding those notices that do not
|
29424
|
+
pertain to any part of the Derivative Works, in at least one
|
29425
|
+
of the following places: within a NOTICE text file distributed
|
29426
|
+
as part of the Derivative Works; within the Source form or
|
29427
|
+
documentation, if provided along with the Derivative Works; or,
|
29428
|
+
within a display generated by the Derivative Works, if and
|
29429
|
+
wherever such third-party notices normally appear. The contents
|
29430
|
+
of the NOTICE file are for informational purposes only and
|
29431
|
+
do not modify the License. You may add Your own attribution
|
29432
|
+
notices within Derivative Works that You distribute, alongside
|
29433
|
+
or as an addendum to the NOTICE text from the Work, provided
|
29434
|
+
that such additional attribution notices cannot be construed
|
29435
|
+
as modifying the License.
|
29436
|
+
|
29437
|
+
You may add Your own copyright statement to Your modifications and
|
29438
|
+
may provide additional or different license terms and conditions
|
29439
|
+
for use, reproduction, or distribution of Your modifications, or
|
29440
|
+
for any such Derivative Works as a whole, provided Your use,
|
29441
|
+
reproduction, and distribution of the Work otherwise complies with
|
29442
|
+
the conditions stated in this License.
|
29443
|
+
|
29444
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
29445
|
+
any Contribution intentionally submitted for inclusion in the Work
|
29446
|
+
by You to the Licensor shall be under the terms and conditions of
|
29447
|
+
this License, without any additional terms or conditions.
|
29448
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
29449
|
+
the terms of any separate license agreement you may have executed
|
29450
|
+
with Licensor regarding such Contributions.
|
29451
|
+
|
29452
|
+
6. Trademarks. This License does not grant permission to use the trade
|
29453
|
+
names, trademarks, service marks, or product names of the Licensor,
|
29454
|
+
except as required for reasonable and customary use in describing the
|
29455
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
29456
|
+
|
29457
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
29458
|
+
agreed to in writing, Licensor provides the Work (and each
|
29459
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
29460
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
29461
|
+
implied, including, without limitation, any warranties or conditions
|
29462
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
29463
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
29464
|
+
appropriateness of using or redistributing the Work and assume any
|
29465
|
+
risks associated with Your exercise of permissions under this License.
|
29466
|
+
|
29467
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
29468
|
+
whether in tort (including negligence), contract, or otherwise,
|
29469
|
+
unless required by applicable law (such as deliberate and grossly
|
29470
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
29471
|
+
liable to You for damages, including any direct, indirect, special,
|
29472
|
+
incidental, or consequential damages of any character arising as a
|
29473
|
+
result of this License or out of the use or inability to use the
|
29474
|
+
Work (including but not limited to damages for loss of goodwill,
|
29475
|
+
work stoppage, computer failure or malfunction, or any and all
|
29476
|
+
other commercial damages or losses), even if such Contributor
|
29477
|
+
has been advised of the possibility of such damages.
|
29478
|
+
|
29479
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
29480
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
29481
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
29482
|
+
or other liability obligations and/or rights consistent with this
|
29483
|
+
License. However, in accepting such obligations, You may act only
|
29484
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
29485
|
+
of any other Contributor, and only if You agree to indemnify,
|
29486
|
+
defend, and hold each Contributor harmless for any liability
|
29487
|
+
incurred by, or claims asserted against, such Contributor by reason
|
29488
|
+
of your accepting any such warranty or additional liability.
|
29489
|
+
|
29490
|
+
END OF TERMS AND CONDITIONS
|
29491
|
+
|
29492
|
+
APPENDIX: How to apply the Apache License to your work.
|
29493
|
+
|
29494
|
+
To apply the Apache License to your work, attach the following
|
29495
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
29496
|
+
replaced with your own identifying information. (Don't include
|
29497
|
+
the brackets!) The text should be enclosed in the appropriate
|
29498
|
+
comment syntax for the file format. We also recommend that a
|
29499
|
+
file or class name and description of purpose be included on the
|
29500
|
+
same "printed page" as the copyright notice for easier
|
29501
|
+
identification within third-party archives.
|
29502
|
+
|
29503
|
+
Copyright [yyyy] [name of copyright owner]
|
29504
|
+
|
29505
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
29506
|
+
you may not use this file except in compliance with the License.
|
29507
|
+
You may obtain a copy of the License at
|
29508
|
+
|
29509
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
29510
|
+
|
29511
|
+
Unless required by applicable law or agreed to in writing, software
|
29512
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
29513
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
29514
|
+
See the License for the specific language governing permissions and
|
29515
|
+
limitations under the License.
|
29516
|
+
|
29517
|
+
================================================================================
|
29518
|
+
regex-automata LICENSE-MIT
|
29519
|
+
================================================================================
|
29520
|
+
|
29521
|
+
Copyright (c) 2014 The Rust Project Developers
|
29522
|
+
|
29523
|
+
Permission is hereby granted, free of charge, to any
|
29524
|
+
person obtaining a copy of this software and associated
|
29525
|
+
documentation files (the "Software"), to deal in the
|
29526
|
+
Software without restriction, including without
|
29527
|
+
limitation the rights to use, copy, modify, merge,
|
29528
|
+
publish, distribute, sublicense, and/or sell copies of
|
29529
|
+
the Software, and to permit persons to whom the Software
|
29530
|
+
is furnished to do so, subject to the following
|
29531
|
+
conditions:
|
29532
|
+
|
29533
|
+
The above copyright notice and this permission notice
|
29534
|
+
shall be included in all copies or substantial portions
|
29535
|
+
of the Software.
|
29536
|
+
|
29537
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
29538
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
29539
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
29540
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
29541
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
29542
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
29543
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
29544
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
29545
|
+
DEALINGS IN THE SOFTWARE.
|
29546
|
+
|
29547
|
+
================================================================================
|
29548
|
+
regex-syntax v0.6.29 LICENSE-APACHE
|
29549
|
+
================================================================================
|
29550
|
+
|
29551
|
+
Apache License
|
29552
|
+
Version 2.0, January 2004
|
29553
|
+
http://www.apache.org/licenses/
|
29554
|
+
|
29555
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
29556
|
+
|
29557
|
+
1. Definitions.
|
29558
|
+
|
29559
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
29560
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
29561
|
+
|
29562
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
29563
|
+
the copyright owner that is granting the License.
|
29564
|
+
|
29565
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
29566
|
+
other entities that control, are controlled by, or are under common
|
29567
|
+
control with that entity. For the purposes of this definition,
|
29568
|
+
"control" means (i) the power, direct or indirect, to cause the
|
29569
|
+
direction or management of such entity, whether by contract or
|
29570
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
29571
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
29572
|
+
|
29573
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
29574
|
+
exercising permissions granted by this License.
|
29575
|
+
|
29576
|
+
"Source" form shall mean the preferred form for making modifications,
|
29577
|
+
including but not limited to software source code, documentation
|
29578
|
+
source, and configuration files.
|
29579
|
+
|
29580
|
+
"Object" form shall mean any form resulting from mechanical
|
29581
|
+
transformation or translation of a Source form, including but
|
29582
|
+
not limited to compiled object code, generated documentation,
|
29583
|
+
and conversions to other media types.
|
29584
|
+
|
29585
|
+
"Work" shall mean the work of authorship, whether in Source or
|
29586
|
+
Object form, made available under the License, as indicated by a
|
29587
|
+
copyright notice that is included in or attached to the work
|
29588
|
+
(an example is provided in the Appendix below).
|
29589
|
+
|
29590
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
29591
|
+
form, that is based on (or derived from) the Work and for which the
|
29592
|
+
editorial revisions, annotations, elaborations, or other modifications
|
29593
|
+
represent, as a whole, an original work of authorship. For the purposes
|
29594
|
+
of this License, Derivative Works shall not include works that remain
|
29595
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
29596
|
+
the Work and Derivative Works thereof.
|
29597
|
+
|
29598
|
+
"Contribution" shall mean any work of authorship, including
|
29599
|
+
the original version of the Work and any modifications or additions
|
29600
|
+
to that Work or Derivative Works thereof, that is intentionally
|
29601
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
29602
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
29603
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
29604
|
+
means any form of electronic, verbal, or written communication sent
|
29605
|
+
to the Licensor or its representatives, including but not limited to
|
29606
|
+
communication on electronic mailing lists, source code control systems,
|
29607
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
29608
|
+
Licensor for the purpose of discussing and improving the Work, but
|
29609
|
+
excluding communication that is conspicuously marked or otherwise
|
29610
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
29611
|
+
|
29612
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
29613
|
+
on behalf of whom a Contribution has been received by Licensor and
|
29614
|
+
subsequently incorporated within the Work.
|
29615
|
+
|
29616
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
29617
|
+
this License, each Contributor hereby grants to You a perpetual,
|
29618
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
29619
|
+
copyright license to reproduce, prepare Derivative Works of,
|
29620
|
+
publicly display, publicly perform, sublicense, and distribute the
|
29621
|
+
Work and such Derivative Works in Source or Object form.
|
29622
|
+
|
29623
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
29624
|
+
this License, each Contributor hereby grants to You a perpetual,
|
29625
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
29626
|
+
(except as stated in this section) patent license to make, have made,
|
29627
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
29628
|
+
where such license applies only to those patent claims licensable
|
29629
|
+
by such Contributor that are necessarily infringed by their
|
29630
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
29631
|
+
with the Work to which such Contribution(s) was submitted. If You
|
29632
|
+
institute patent litigation against any entity (including a
|
29633
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
29634
|
+
or a Contribution incorporated within the Work constitutes direct
|
29635
|
+
or contributory patent infringement, then any patent licenses
|
29636
|
+
granted to You under this License for that Work shall terminate
|
29637
|
+
as of the date such litigation is filed.
|
29638
|
+
|
29639
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
29640
|
+
Work or Derivative Works thereof in any medium, with or without
|
29641
|
+
modifications, and in Source or Object form, provided that You
|
29642
|
+
meet the following conditions:
|
29643
|
+
|
29644
|
+
(a) You must give any other recipients of the Work or
|
29645
|
+
Derivative Works a copy of this License; and
|
29646
|
+
|
29647
|
+
(b) You must cause any modified files to carry prominent notices
|
29648
|
+
stating that You changed the files; and
|
29649
|
+
|
29650
|
+
(c) You must retain, in the Source form of any Derivative Works
|
29651
|
+
that You distribute, all copyright, patent, trademark, and
|
29652
|
+
attribution notices from the Source form of the Work,
|
29653
|
+
excluding those notices that do not pertain to any part of
|
29654
|
+
the Derivative Works; and
|
29655
|
+
|
29656
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
29657
|
+
distribution, then any Derivative Works that You distribute must
|
29658
|
+
include a readable copy of the attribution notices contained
|
29659
|
+
within such NOTICE file, excluding those notices that do not
|
29660
|
+
pertain to any part of the Derivative Works, in at least one
|
29661
|
+
of the following places: within a NOTICE text file distributed
|
29662
|
+
as part of the Derivative Works; within the Source form or
|
29663
|
+
documentation, if provided along with the Derivative Works; or,
|
29664
|
+
within a display generated by the Derivative Works, if and
|
29665
|
+
wherever such third-party notices normally appear. The contents
|
29666
|
+
of the NOTICE file are for informational purposes only and
|
29667
|
+
do not modify the License. You may add Your own attribution
|
29668
|
+
notices within Derivative Works that You distribute, alongside
|
29669
|
+
or as an addendum to the NOTICE text from the Work, provided
|
29670
|
+
that such additional attribution notices cannot be construed
|
29671
|
+
as modifying the License.
|
29672
|
+
|
29673
|
+
You may add Your own copyright statement to Your modifications and
|
29674
|
+
may provide additional or different license terms and conditions
|
29675
|
+
for use, reproduction, or distribution of Your modifications, or
|
29676
|
+
for any such Derivative Works as a whole, provided Your use,
|
29677
|
+
reproduction, and distribution of the Work otherwise complies with
|
29678
|
+
the conditions stated in this License.
|
29679
|
+
|
29680
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
29681
|
+
any Contribution intentionally submitted for inclusion in the Work
|
29682
|
+
by You to the Licensor shall be under the terms and conditions of
|
29683
|
+
this License, without any additional terms or conditions.
|
29684
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
29685
|
+
the terms of any separate license agreement you may have executed
|
29686
|
+
with Licensor regarding such Contributions.
|
29687
|
+
|
29688
|
+
6. Trademarks. This License does not grant permission to use the trade
|
29689
|
+
names, trademarks, service marks, or product names of the Licensor,
|
29690
|
+
except as required for reasonable and customary use in describing the
|
29691
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
29692
|
+
|
29693
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
29694
|
+
agreed to in writing, Licensor provides the Work (and each
|
29695
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
29696
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
29697
|
+
implied, including, without limitation, any warranties or conditions
|
29698
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
29699
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
29700
|
+
appropriateness of using or redistributing the Work and assume any
|
29701
|
+
risks associated with Your exercise of permissions under this License.
|
29702
|
+
|
29703
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
29704
|
+
whether in tort (including negligence), contract, or otherwise,
|
29705
|
+
unless required by applicable law (such as deliberate and grossly
|
29706
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
29707
|
+
liable to You for damages, including any direct, indirect, special,
|
29708
|
+
incidental, or consequential damages of any character arising as a
|
29709
|
+
result of this License or out of the use or inability to use the
|
29710
|
+
Work (including but not limited to damages for loss of goodwill,
|
29711
|
+
work stoppage, computer failure or malfunction, or any and all
|
29712
|
+
other commercial damages or losses), even if such Contributor
|
29713
|
+
has been advised of the possibility of such damages.
|
29714
|
+
|
29715
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
29716
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
29717
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
29718
|
+
or other liability obligations and/or rights consistent with this
|
29719
|
+
License. However, in accepting such obligations, You may act only
|
29720
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
29721
|
+
of any other Contributor, and only if You agree to indemnify,
|
29722
|
+
defend, and hold each Contributor harmless for any liability
|
29723
|
+
incurred by, or claims asserted against, such Contributor by reason
|
29724
|
+
of your accepting any such warranty or additional liability.
|
29725
|
+
|
29726
|
+
END OF TERMS AND CONDITIONS
|
29727
|
+
|
29728
|
+
APPENDIX: How to apply the Apache License to your work.
|
29729
|
+
|
29730
|
+
To apply the Apache License to your work, attach the following
|
29731
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
29732
|
+
replaced with your own identifying information. (Don't include
|
29733
|
+
the brackets!) The text should be enclosed in the appropriate
|
29734
|
+
comment syntax for the file format. We also recommend that a
|
29735
|
+
file or class name and description of purpose be included on the
|
29736
|
+
same "printed page" as the copyright notice for easier
|
29737
|
+
identification within third-party archives.
|
29738
|
+
|
29739
|
+
Copyright [yyyy] [name of copyright owner]
|
29740
|
+
|
29741
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
29742
|
+
you may not use this file except in compliance with the License.
|
29743
|
+
You may obtain a copy of the License at
|
29744
|
+
|
29745
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
29746
|
+
|
29747
|
+
Unless required by applicable law or agreed to in writing, software
|
29748
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
29749
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
29750
|
+
See the License for the specific language governing permissions and
|
29751
|
+
limitations under the License.
|
29752
|
+
|
29753
|
+
================================================================================
|
29754
|
+
regex-syntax v0.6.29 LICENSE-MIT
|
29755
|
+
================================================================================
|
29756
|
+
|
29757
|
+
Copyright (c) 2014 The Rust Project Developers
|
29758
|
+
|
29759
|
+
Permission is hereby granted, free of charge, to any
|
29760
|
+
person obtaining a copy of this software and associated
|
29761
|
+
documentation files (the "Software"), to deal in the
|
29762
|
+
Software without restriction, including without
|
29763
|
+
limitation the rights to use, copy, modify, merge,
|
29764
|
+
publish, distribute, sublicense, and/or sell copies of
|
29765
|
+
the Software, and to permit persons to whom the Software
|
29766
|
+
is furnished to do so, subject to the following
|
29767
|
+
conditions:
|
29768
|
+
|
29769
|
+
The above copyright notice and this permission notice
|
29770
|
+
shall be included in all copies or substantial portions
|
29771
|
+
of the Software.
|
29772
|
+
|
29773
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
29774
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
29775
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
29776
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
29777
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
29778
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
29779
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
29780
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
29781
|
+
DEALINGS IN THE SOFTWARE.
|
29782
|
+
|
29783
|
+
================================================================================
|
29784
|
+
regex-syntax v0.6.29 src/unicode_tables/LICENSE-UNICODE
|
28866
29785
|
================================================================================
|
28867
29786
|
|
28868
|
-
|
29787
|
+
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
29788
|
+
|
29789
|
+
Unicode Data Files include all data files under the directories
|
29790
|
+
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
|
29791
|
+
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and
|
29792
|
+
http://www.unicode.org/utility/trac/browser/.
|
29793
|
+
|
29794
|
+
Unicode Data Files do not include PDF online code charts under the
|
29795
|
+
directory http://www.unicode.org/Public/.
|
29796
|
+
|
29797
|
+
Software includes any source code published in the Unicode Standard
|
29798
|
+
or under the directories
|
29799
|
+
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
|
29800
|
+
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and
|
29801
|
+
http://www.unicode.org/utility/trac/browser/.
|
28869
29802
|
|
28870
|
-
|
28871
|
-
|
29803
|
+
NOTICE TO USER: Carefully read the following legal agreement.
|
29804
|
+
BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
|
29805
|
+
DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
|
29806
|
+
YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
|
29807
|
+
TERMS AND CONDITIONS OF THIS AGREEMENT.
|
29808
|
+
IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
|
29809
|
+
THE DATA FILES OR SOFTWARE.
|
29810
|
+
|
29811
|
+
COPYRIGHT AND PERMISSION NOTICE
|
29812
|
+
|
29813
|
+
Copyright © 1991-2018 Unicode, Inc. All rights reserved.
|
29814
|
+
Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
|
29815
|
+
|
29816
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
29817
|
+
a copy of the Unicode data files and any associated documentation
|
29818
|
+
(the "Data Files") or Unicode software and any associated documentation
|
29819
|
+
(the "Software") to deal in the Data Files or Software
|
28872
29820
|
without restriction, including without limitation the rights to use,
|
28873
|
-
copy, modify, merge, publish, distribute, and/or sell copies of
|
28874
|
-
Software, and to permit persons to whom the
|
28875
|
-
|
28876
|
-
|
28877
|
-
|
28878
|
-
|
28879
|
-
|
28880
|
-
|
28881
|
-
|
28882
|
-
|
28883
|
-
|
28884
|
-
|
28885
|
-
|
28886
|
-
|
29821
|
+
copy, modify, merge, publish, distribute, and/or sell copies of
|
29822
|
+
the Data Files or Software, and to permit persons to whom the Data Files
|
29823
|
+
or Software are furnished to do so, provided that either
|
29824
|
+
(a) this copyright and permission notice appear with all copies
|
29825
|
+
of the Data Files or Software, or
|
29826
|
+
(b) this copyright and permission notice appear in associated
|
29827
|
+
Documentation.
|
29828
|
+
|
29829
|
+
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
|
29830
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
29831
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
29832
|
+
NONINFRINGEMENT OF THIRD PARTY RIGHTS.
|
29833
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
|
29834
|
+
NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
|
29835
|
+
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
29836
|
+
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
29837
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
29838
|
+
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
|
29839
|
+
|
29840
|
+
Except as contained in this notice, the name of a copyright holder
|
29841
|
+
shall not be used in advertising or otherwise to promote the sale,
|
29842
|
+
use or other dealings in these Data Files or Software without prior
|
29843
|
+
written authorization of the copyright holder.
|
28887
29844
|
|
28888
29845
|
================================================================================
|
28889
|
-
regex-syntax LICENSE-APACHE
|
29846
|
+
regex-syntax v0.7.4 LICENSE-APACHE
|
28890
29847
|
================================================================================
|
28891
29848
|
|
28892
29849
|
Apache License
|
@@ -29092,7 +30049,7 @@ See the License for the specific language governing permissions and
|
|
29092
30049
|
limitations under the License.
|
29093
30050
|
|
29094
30051
|
================================================================================
|
29095
|
-
regex-syntax LICENSE-MIT
|
30052
|
+
regex-syntax v0.7.4 LICENSE-MIT
|
29096
30053
|
================================================================================
|
29097
30054
|
|
29098
30055
|
Copyright (c) 2014 The Rust Project Developers
|
@@ -29122,7 +30079,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
29122
30079
|
DEALINGS IN THE SOFTWARE.
|
29123
30080
|
|
29124
30081
|
================================================================================
|
29125
|
-
regex-syntax src/unicode_tables/LICENSE-UNICODE
|
30082
|
+
regex-syntax v0.7.4 src/unicode_tables/LICENSE-UNICODE
|
29126
30083
|
================================================================================
|
29127
30084
|
|
29128
30085
|
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
@@ -33727,6 +34684,212 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
33727
34684
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
33728
34685
|
DEALINGS IN THE SOFTWARE.
|
33729
34686
|
|
34687
|
+
================================================================================
|
34688
|
+
sqlparser LICENSE.TXT
|
34689
|
+
================================================================================
|
34690
|
+
|
34691
|
+
Apache License
|
34692
|
+
Version 2.0, January 2004
|
34693
|
+
http://www.apache.org/licenses/
|
34694
|
+
|
34695
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
34696
|
+
|
34697
|
+
1. Definitions.
|
34698
|
+
|
34699
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
34700
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
34701
|
+
|
34702
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
34703
|
+
the copyright owner that is granting the License.
|
34704
|
+
|
34705
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
34706
|
+
other entities that control, are controlled by, or are under common
|
34707
|
+
control with that entity. For the purposes of this definition,
|
34708
|
+
"control" means (i) the power, direct or indirect, to cause the
|
34709
|
+
direction or management of such entity, whether by contract or
|
34710
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
34711
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
34712
|
+
|
34713
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
34714
|
+
exercising permissions granted by this License.
|
34715
|
+
|
34716
|
+
"Source" form shall mean the preferred form for making modifications,
|
34717
|
+
including but not limited to software source code, documentation
|
34718
|
+
source, and configuration files.
|
34719
|
+
|
34720
|
+
"Object" form shall mean any form resulting from mechanical
|
34721
|
+
transformation or translation of a Source form, including but
|
34722
|
+
not limited to compiled object code, generated documentation,
|
34723
|
+
and conversions to other media types.
|
34724
|
+
|
34725
|
+
"Work" shall mean the work of authorship, whether in Source or
|
34726
|
+
Object form, made available under the License, as indicated by a
|
34727
|
+
copyright notice that is included in or attached to the work
|
34728
|
+
(an example is provided in the Appendix below).
|
34729
|
+
|
34730
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
34731
|
+
form, that is based on (or derived from) the Work and for which the
|
34732
|
+
editorial revisions, annotations, elaborations, or other modifications
|
34733
|
+
represent, as a whole, an original work of authorship. For the purposes
|
34734
|
+
of this License, Derivative Works shall not include works that remain
|
34735
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
34736
|
+
the Work and Derivative Works thereof.
|
34737
|
+
|
34738
|
+
"Contribution" shall mean any work of authorship, including
|
34739
|
+
the original version of the Work and any modifications or additions
|
34740
|
+
to that Work or Derivative Works thereof, that is intentionally
|
34741
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
34742
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
34743
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
34744
|
+
means any form of electronic, verbal, or written communication sent
|
34745
|
+
to the Licensor or its representatives, including but not limited to
|
34746
|
+
communication on electronic mailing lists, source code control systems,
|
34747
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
34748
|
+
Licensor for the purpose of discussing and improving the Work, but
|
34749
|
+
excluding communication that is conspicuously marked or otherwise
|
34750
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
34751
|
+
|
34752
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
34753
|
+
on behalf of whom a Contribution has been received by Licensor and
|
34754
|
+
subsequently incorporated within the Work.
|
34755
|
+
|
34756
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
34757
|
+
this License, each Contributor hereby grants to You a perpetual,
|
34758
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
34759
|
+
copyright license to reproduce, prepare Derivative Works of,
|
34760
|
+
publicly display, publicly perform, sublicense, and distribute the
|
34761
|
+
Work and such Derivative Works in Source or Object form.
|
34762
|
+
|
34763
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
34764
|
+
this License, each Contributor hereby grants to You a perpetual,
|
34765
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
34766
|
+
(except as stated in this section) patent license to make, have made,
|
34767
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
34768
|
+
where such license applies only to those patent claims licensable
|
34769
|
+
by such Contributor that are necessarily infringed by their
|
34770
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
34771
|
+
with the Work to which such Contribution(s) was submitted. If You
|
34772
|
+
institute patent litigation against any entity (including a
|
34773
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
34774
|
+
or a Contribution incorporated within the Work constitutes direct
|
34775
|
+
or contributory patent infringement, then any patent licenses
|
34776
|
+
granted to You under this License for that Work shall terminate
|
34777
|
+
as of the date such litigation is filed.
|
34778
|
+
|
34779
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
34780
|
+
Work or Derivative Works thereof in any medium, with or without
|
34781
|
+
modifications, and in Source or Object form, provided that You
|
34782
|
+
meet the following conditions:
|
34783
|
+
|
34784
|
+
(a) You must give any other recipients of the Work or
|
34785
|
+
Derivative Works a copy of this License; and
|
34786
|
+
|
34787
|
+
(b) You must cause any modified files to carry prominent notices
|
34788
|
+
stating that You changed the files; and
|
34789
|
+
|
34790
|
+
(c) You must retain, in the Source form of any Derivative Works
|
34791
|
+
that You distribute, all copyright, patent, trademark, and
|
34792
|
+
attribution notices from the Source form of the Work,
|
34793
|
+
excluding those notices that do not pertain to any part of
|
34794
|
+
the Derivative Works; and
|
34795
|
+
|
34796
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
34797
|
+
distribution, then any Derivative Works that You distribute must
|
34798
|
+
include a readable copy of the attribution notices contained
|
34799
|
+
within such NOTICE file, excluding those notices that do not
|
34800
|
+
pertain to any part of the Derivative Works, in at least one
|
34801
|
+
of the following places: within a NOTICE text file distributed
|
34802
|
+
as part of the Derivative Works; within the Source form or
|
34803
|
+
documentation, if provided along with the Derivative Works; or,
|
34804
|
+
within a display generated by the Derivative Works, if and
|
34805
|
+
wherever such third-party notices normally appear. The contents
|
34806
|
+
of the NOTICE file are for informational purposes only and
|
34807
|
+
do not modify the License. You may add Your own attribution
|
34808
|
+
notices within Derivative Works that You distribute, alongside
|
34809
|
+
or as an addendum to the NOTICE text from the Work, provided
|
34810
|
+
that such additional attribution notices cannot be construed
|
34811
|
+
as modifying the License.
|
34812
|
+
|
34813
|
+
You may add Your own copyright statement to Your modifications and
|
34814
|
+
may provide additional or different license terms and conditions
|
34815
|
+
for use, reproduction, or distribution of Your modifications, or
|
34816
|
+
for any such Derivative Works as a whole, provided Your use,
|
34817
|
+
reproduction, and distribution of the Work otherwise complies with
|
34818
|
+
the conditions stated in this License.
|
34819
|
+
|
34820
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
34821
|
+
any Contribution intentionally submitted for inclusion in the Work
|
34822
|
+
by You to the Licensor shall be under the terms and conditions of
|
34823
|
+
this License, without any additional terms or conditions.
|
34824
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
34825
|
+
the terms of any separate license agreement you may have executed
|
34826
|
+
with Licensor regarding such Contributions.
|
34827
|
+
|
34828
|
+
6. Trademarks. This License does not grant permission to use the trade
|
34829
|
+
names, trademarks, service marks, or product names of the Licensor,
|
34830
|
+
except as required for reasonable and customary use in describing the
|
34831
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
34832
|
+
|
34833
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
34834
|
+
agreed to in writing, Licensor provides the Work (and each
|
34835
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
34836
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
34837
|
+
implied, including, without limitation, any warranties or conditions
|
34838
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
34839
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
34840
|
+
appropriateness of using or redistributing the Work and assume any
|
34841
|
+
risks associated with Your exercise of permissions under this License.
|
34842
|
+
|
34843
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
34844
|
+
whether in tort (including negligence), contract, or otherwise,
|
34845
|
+
unless required by applicable law (such as deliberate and grossly
|
34846
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
34847
|
+
liable to You for damages, including any direct, indirect, special,
|
34848
|
+
incidental, or consequential damages of any character arising as a
|
34849
|
+
result of this License or out of the use or inability to use the
|
34850
|
+
Work (including but not limited to damages for loss of goodwill,
|
34851
|
+
work stoppage, computer failure or malfunction, or any and all
|
34852
|
+
other commercial damages or losses), even if such Contributor
|
34853
|
+
has been advised of the possibility of such damages.
|
34854
|
+
|
34855
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
34856
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
34857
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
34858
|
+
or other liability obligations and/or rights consistent with this
|
34859
|
+
License. However, in accepting such obligations, You may act only
|
34860
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
34861
|
+
of any other Contributor, and only if You agree to indemnify,
|
34862
|
+
defend, and hold each Contributor harmless for any liability
|
34863
|
+
incurred by, or claims asserted against, such Contributor by reason
|
34864
|
+
of your accepting any such warranty or additional liability.
|
34865
|
+
|
34866
|
+
END OF TERMS AND CONDITIONS
|
34867
|
+
|
34868
|
+
APPENDIX: How to apply the Apache License to your work.
|
34869
|
+
|
34870
|
+
To apply the Apache License to your work, attach the following
|
34871
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
34872
|
+
replaced with your own identifying information. (Don't include
|
34873
|
+
the brackets!) The text should be enclosed in the appropriate
|
34874
|
+
comment syntax for the file format. We also recommend that a
|
34875
|
+
file or class name and description of purpose be included on the
|
34876
|
+
same "printed page" as the copyright notice for easier
|
34877
|
+
identification within third-party archives.
|
34878
|
+
|
34879
|
+
Copyright [yyyy] [name of copyright owner]
|
34880
|
+
|
34881
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
34882
|
+
you may not use this file except in compliance with the License.
|
34883
|
+
You may obtain a copy of the License at
|
34884
|
+
|
34885
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
34886
|
+
|
34887
|
+
Unless required by applicable law or agreed to in writing, software
|
34888
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
34889
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
34890
|
+
See the License for the specific language governing permissions and
|
34891
|
+
limitations under the License.
|
34892
|
+
|
33730
34893
|
================================================================================
|
33731
34894
|
static_assertions LICENSE-APACHE
|
33732
34895
|
================================================================================
|
@@ -34672,7 +35835,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34672
35835
|
SOFTWARE.
|
34673
35836
|
|
34674
35837
|
================================================================================
|
34675
|
-
strum_macros LICENSE
|
35838
|
+
strum_macros v0.24.3 LICENSE
|
35839
|
+
================================================================================
|
35840
|
+
|
35841
|
+
MIT License
|
35842
|
+
|
35843
|
+
Copyright (c) 2019 Peter Glotfelty
|
35844
|
+
|
35845
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
35846
|
+
of this software and associated documentation files (the "Software"), to deal
|
35847
|
+
in the Software without restriction, including without limitation the rights
|
35848
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
35849
|
+
copies of the Software, and to permit persons to whom the Software is
|
35850
|
+
furnished to do so, subject to the following conditions:
|
35851
|
+
|
35852
|
+
The above copyright notice and this permission notice shall be included in all
|
35853
|
+
copies or substantial portions of the Software.
|
35854
|
+
|
35855
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
35856
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
35857
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
35858
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
35859
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
35860
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
35861
|
+
SOFTWARE.
|
35862
|
+
|
35863
|
+
================================================================================
|
35864
|
+
strum_macros v0.25.1 LICENSE
|
34676
35865
|
================================================================================
|
34677
35866
|
|
34678
35867
|
MIT License
|
@@ -34932,7 +36121,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
34932
36121
|
DEALINGS IN THE SOFTWARE.
|
34933
36122
|
|
34934
36123
|
================================================================================
|
34935
|
-
syn v2.0.
|
36124
|
+
syn v2.0.26 LICENSE-APACHE
|
34936
36125
|
================================================================================
|
34937
36126
|
|
34938
36127
|
Apache License
|
@@ -35113,7 +36302,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
35113
36302
|
END OF TERMS AND CONDITIONS
|
35114
36303
|
|
35115
36304
|
================================================================================
|
35116
|
-
syn v2.0.
|
36305
|
+
syn v2.0.26 LICENSE-MIT
|
35117
36306
|
================================================================================
|
35118
36307
|
|
35119
36308
|
Permission is hereby granted, free of charge, to any
|
@@ -37058,7 +38247,7 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
37058
38247
|
DEALINGS IN THE SOFTWARE.
|
37059
38248
|
|
37060
38249
|
================================================================================
|
37061
|
-
zstd
|
38250
|
+
zstd LICENSE
|
37062
38251
|
================================================================================
|
37063
38252
|
|
37064
38253
|
The MIT License (MIT)
|
@@ -37071,26 +38260,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
37071
38260
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
37072
38261
|
|
37073
38262
|
================================================================================
|
37074
|
-
zstd
|
37075
|
-
================================================================================
|
37076
|
-
|
37077
|
-
The MIT License (MIT)
|
37078
|
-
Copyright (c) 2016 Alexandre Bury
|
37079
|
-
|
37080
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
37081
|
-
|
37082
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
37083
|
-
|
37084
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
37085
|
-
|
37086
|
-
================================================================================
|
37087
|
-
zstd-safe v5.0.2+zstd.1.5.2 LICENSE
|
37088
|
-
================================================================================
|
37089
|
-
|
37090
|
-
MIT or Apache-2.0
|
37091
|
-
|
37092
|
-
================================================================================
|
37093
|
-
zstd-safe v6.0.4+zstd.1.5.4 LICENSE
|
38263
|
+
zstd-safe LICENSE
|
37094
38264
|
================================================================================
|
37095
38265
|
|
37096
38266
|
MIT or Apache-2.0
|