polars-df 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Cargo.lock ADDED
@@ -0,0 +1,1946 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.6"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
16
+ dependencies = [
17
+ "getrandom",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.8.2"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "getrandom",
30
+ "once_cell",
31
+ "version_check",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "aho-corasick"
36
+ version = "0.7.19"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
39
+ dependencies = [
40
+ "memchr",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "alloc-no-stdlib"
45
+ version = "2.0.4"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
48
+
49
+ [[package]]
50
+ name = "alloc-stdlib"
51
+ version = "0.2.2"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
54
+ dependencies = [
55
+ "alloc-no-stdlib",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "anyhow"
60
+ version = "1.0.66"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
63
+
64
+ [[package]]
65
+ name = "array-init-cursor"
66
+ version = "0.2.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
69
+
70
+ [[package]]
71
+ name = "arrow-format"
72
+ version = "0.7.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "8df5d25bc6d676271277120c41ef28760fe0a9f070677a58db621c0f983f9c20"
75
+ dependencies = [
76
+ "planus",
77
+ "serde",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "arrow2"
82
+ version = "0.14.2"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "ee6f62e41078c967a4c063fcbdfd3801a2a9632276402c045311c4d73d0845f3"
85
+ dependencies = [
86
+ "ahash 0.7.6",
87
+ "arrow-format",
88
+ "base64",
89
+ "bytemuck",
90
+ "chrono",
91
+ "chrono-tz",
92
+ "dyn-clone",
93
+ "either",
94
+ "ethnum",
95
+ "fallible-streaming-iterator",
96
+ "foreign_vec",
97
+ "futures",
98
+ "hash_hasher",
99
+ "indexmap",
100
+ "json-deserializer",
101
+ "lexical-core",
102
+ "lz4",
103
+ "multiversion",
104
+ "num-traits",
105
+ "parquet2",
106
+ "simdutf8",
107
+ "streaming-iterator",
108
+ "strength_reduce",
109
+ "zstd",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "async-stream"
114
+ version = "0.3.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
117
+ dependencies = [
118
+ "async-stream-impl",
119
+ "futures-core",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "async-stream-impl"
124
+ version = "0.3.3"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
127
+ dependencies = [
128
+ "proc-macro2",
129
+ "quote",
130
+ "syn",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "async-trait"
135
+ version = "0.1.58"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
138
+ dependencies = [
139
+ "proc-macro2",
140
+ "quote",
141
+ "syn",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "autocfg"
146
+ version = "1.1.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
149
+
150
+ [[package]]
151
+ name = "base64"
152
+ version = "0.13.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
155
+
156
+ [[package]]
157
+ name = "bindgen"
158
+ version = "0.60.1"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
161
+ dependencies = [
162
+ "bitflags",
163
+ "cexpr",
164
+ "clang-sys",
165
+ "lazy_static",
166
+ "lazycell",
167
+ "peeking_take_while",
168
+ "proc-macro2",
169
+ "quote",
170
+ "regex",
171
+ "rustc-hash",
172
+ "shlex",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "bitflags"
177
+ version = "1.3.2"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
180
+
181
+ [[package]]
182
+ name = "brotli"
183
+ version = "3.3.4"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
186
+ dependencies = [
187
+ "alloc-no-stdlib",
188
+ "alloc-stdlib",
189
+ "brotli-decompressor",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "brotli-decompressor"
194
+ version = "2.3.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
197
+ dependencies = [
198
+ "alloc-no-stdlib",
199
+ "alloc-stdlib",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "bumpalo"
204
+ version = "3.9.1"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
207
+
208
+ [[package]]
209
+ name = "bytemuck"
210
+ version = "1.12.3"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "aaa3a8d9a1ca92e282c96a32d6511b695d7d994d1d102ba85d279f9b2756947f"
213
+ dependencies = [
214
+ "bytemuck_derive",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "bytemuck_derive"
219
+ version = "1.3.0"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "5fe233b960f12f8007e3db2d136e3cb1c291bfd7396e384ee76025fc1a3932b4"
222
+ dependencies = [
223
+ "proc-macro2",
224
+ "quote",
225
+ "syn",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "byteorder"
230
+ version = "1.4.3"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
233
+
234
+ [[package]]
235
+ name = "cc"
236
+ version = "1.0.76"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
239
+ dependencies = [
240
+ "jobserver",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "cexpr"
245
+ version = "0.6.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
248
+ dependencies = [
249
+ "nom",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "cfg-if"
254
+ version = "1.0.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
257
+
258
+ [[package]]
259
+ name = "chrono"
260
+ version = "0.4.20"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0"
263
+ dependencies = [
264
+ "js-sys",
265
+ "num-integer",
266
+ "num-traits",
267
+ "time",
268
+ "wasm-bindgen",
269
+ "winapi",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "chrono-tz"
274
+ version = "0.6.3"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
277
+ dependencies = [
278
+ "chrono",
279
+ "chrono-tz-build",
280
+ "phf",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "chrono-tz-build"
285
+ version = "0.0.3"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
288
+ dependencies = [
289
+ "parse-zoneinfo",
290
+ "phf",
291
+ "phf_codegen",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "clang-sys"
296
+ version = "1.4.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
299
+ dependencies = [
300
+ "glob",
301
+ "libc",
302
+ "libloading",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "comfy-table"
307
+ version = "6.1.2"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "1090f39f45786ec6dc6286f8ea9c75d0a7ef0a0d3cda674cef0c3af7b307fbc2"
310
+ dependencies = [
311
+ "crossterm",
312
+ "strum",
313
+ "strum_macros",
314
+ "unicode-width",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "crc32fast"
319
+ version = "1.3.2"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
322
+ dependencies = [
323
+ "cfg-if",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "crossbeam-channel"
328
+ version = "0.5.4"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
331
+ dependencies = [
332
+ "cfg-if",
333
+ "crossbeam-utils",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "crossbeam-deque"
338
+ version = "0.8.1"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
341
+ dependencies = [
342
+ "cfg-if",
343
+ "crossbeam-epoch",
344
+ "crossbeam-utils",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "crossbeam-epoch"
349
+ version = "0.9.8"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
352
+ dependencies = [
353
+ "autocfg",
354
+ "cfg-if",
355
+ "crossbeam-utils",
356
+ "lazy_static",
357
+ "memoffset",
358
+ "scopeguard",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "crossbeam-utils"
363
+ version = "0.8.8"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
366
+ dependencies = [
367
+ "cfg-if",
368
+ "lazy_static",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "crossterm"
373
+ version = "0.25.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
376
+ dependencies = [
377
+ "bitflags",
378
+ "crossterm_winapi",
379
+ "libc",
380
+ "mio",
381
+ "parking_lot",
382
+ "signal-hook",
383
+ "signal-hook-mio",
384
+ "winapi",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "crossterm_winapi"
389
+ version = "0.9.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
392
+ dependencies = [
393
+ "winapi",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "csv-core"
398
+ version = "0.1.10"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
401
+ dependencies = [
402
+ "memchr",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "dirs"
407
+ version = "4.0.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
410
+ dependencies = [
411
+ "dirs-sys",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "dirs-sys"
416
+ version = "0.3.7"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
419
+ dependencies = [
420
+ "libc",
421
+ "redox_users",
422
+ "winapi",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "dyn-clone"
427
+ version = "1.0.9"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2"
430
+
431
+ [[package]]
432
+ name = "either"
433
+ version = "1.6.1"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
436
+
437
+ [[package]]
438
+ name = "enum_dispatch"
439
+ version = "0.3.8"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "0eb359f1476bf611266ac1f5355bc14aeca37b299d0ebccc038ee7058891c9cb"
442
+ dependencies = [
443
+ "once_cell",
444
+ "proc-macro2",
445
+ "quote",
446
+ "syn",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "ethnum"
451
+ version = "1.3.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "2eac3c0b9fa6eb75255ebb42c0ba3e2210d102a66d2795afef6fed668f373311"
454
+
455
+ [[package]]
456
+ name = "fallible-streaming-iterator"
457
+ version = "0.1.9"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
460
+
461
+ [[package]]
462
+ name = "flate2"
463
+ version = "1.0.24"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
466
+ dependencies = [
467
+ "crc32fast",
468
+ "miniz_oxide",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "float-cmp"
473
+ version = "0.9.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
476
+ dependencies = [
477
+ "num-traits",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "foreign_vec"
482
+ version = "0.1.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
485
+
486
+ [[package]]
487
+ name = "futures"
488
+ version = "0.3.25"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
491
+ dependencies = [
492
+ "futures-channel",
493
+ "futures-core",
494
+ "futures-executor",
495
+ "futures-io",
496
+ "futures-sink",
497
+ "futures-task",
498
+ "futures-util",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "futures-channel"
503
+ version = "0.3.25"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
506
+ dependencies = [
507
+ "futures-core",
508
+ "futures-sink",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "futures-core"
513
+ version = "0.3.25"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
516
+
517
+ [[package]]
518
+ name = "futures-executor"
519
+ version = "0.3.25"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
522
+ dependencies = [
523
+ "futures-core",
524
+ "futures-task",
525
+ "futures-util",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "futures-io"
530
+ version = "0.3.25"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
533
+
534
+ [[package]]
535
+ name = "futures-macro"
536
+ version = "0.3.25"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
539
+ dependencies = [
540
+ "proc-macro2",
541
+ "quote",
542
+ "syn",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "futures-sink"
547
+ version = "0.3.25"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
550
+
551
+ [[package]]
552
+ name = "futures-task"
553
+ version = "0.3.25"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
556
+
557
+ [[package]]
558
+ name = "futures-util"
559
+ version = "0.3.25"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
562
+ dependencies = [
563
+ "futures-channel",
564
+ "futures-core",
565
+ "futures-io",
566
+ "futures-macro",
567
+ "futures-sink",
568
+ "futures-task",
569
+ "memchr",
570
+ "pin-project-lite",
571
+ "pin-utils",
572
+ "slab",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "fxhash"
577
+ version = "0.2.1"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
580
+ dependencies = [
581
+ "byteorder",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "getrandom"
586
+ version = "0.2.7"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
589
+ dependencies = [
590
+ "cfg-if",
591
+ "libc",
592
+ "wasi",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "glob"
597
+ version = "0.3.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
600
+
601
+ [[package]]
602
+ name = "halfbrown"
603
+ version = "0.1.16"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "ff8ba437813c5a31783dd9a21ce4f555583dc9b048af6bd2b12217394ed9c199"
606
+ dependencies = [
607
+ "fxhash",
608
+ "hashbrown 0.12.3",
609
+ "serde",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "hash_hasher"
614
+ version = "2.0.3"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
617
+
618
+ [[package]]
619
+ name = "hashbrown"
620
+ version = "0.11.2"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
623
+
624
+ [[package]]
625
+ name = "hashbrown"
626
+ version = "0.12.3"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
629
+ dependencies = [
630
+ "ahash 0.7.6",
631
+ "rayon",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "heck"
636
+ version = "0.4.0"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
639
+
640
+ [[package]]
641
+ name = "hermit-abi"
642
+ version = "0.1.19"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
645
+ dependencies = [
646
+ "libc",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "indexmap"
651
+ version = "1.8.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
654
+ dependencies = [
655
+ "autocfg",
656
+ "hashbrown 0.11.2",
657
+ "serde",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "itoa"
662
+ version = "1.0.4"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
665
+
666
+ [[package]]
667
+ name = "jobserver"
668
+ version = "0.1.25"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
671
+ dependencies = [
672
+ "libc",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "js-sys"
677
+ version = "0.3.56"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
680
+ dependencies = [
681
+ "wasm-bindgen",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "json-deserializer"
686
+ version = "0.4.2"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "d784d2d481d0bace3450572391d6076dd6d10c66c0ebc1a0be037b3b420664bd"
689
+ dependencies = [
690
+ "indexmap",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "lazy_static"
695
+ version = "1.4.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
698
+
699
+ [[package]]
700
+ name = "lazycell"
701
+ version = "1.3.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
704
+
705
+ [[package]]
706
+ name = "lexical"
707
+ version = "6.1.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
710
+ dependencies = [
711
+ "lexical-core",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "lexical-core"
716
+ version = "0.8.5"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
719
+ dependencies = [
720
+ "lexical-parse-float",
721
+ "lexical-parse-integer",
722
+ "lexical-util",
723
+ "lexical-write-float",
724
+ "lexical-write-integer",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "lexical-parse-float"
729
+ version = "0.8.5"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
732
+ dependencies = [
733
+ "lexical-parse-integer",
734
+ "lexical-util",
735
+ "static_assertions",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "lexical-parse-integer"
740
+ version = "0.8.6"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
743
+ dependencies = [
744
+ "lexical-util",
745
+ "static_assertions",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "lexical-util"
750
+ version = "0.8.5"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
753
+ dependencies = [
754
+ "static_assertions",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "lexical-write-float"
759
+ version = "0.8.5"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
762
+ dependencies = [
763
+ "lexical-util",
764
+ "lexical-write-integer",
765
+ "static_assertions",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "lexical-write-integer"
770
+ version = "0.8.5"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
773
+ dependencies = [
774
+ "lexical-util",
775
+ "static_assertions",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "libc"
780
+ version = "0.2.121"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
783
+
784
+ [[package]]
785
+ name = "libloading"
786
+ version = "0.7.4"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
789
+ dependencies = [
790
+ "cfg-if",
791
+ "winapi",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "libm"
796
+ version = "0.2.6"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
799
+
800
+ [[package]]
801
+ name = "lock_api"
802
+ version = "0.4.9"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
805
+ dependencies = [
806
+ "autocfg",
807
+ "scopeguard",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "log"
812
+ version = "0.4.14"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
815
+ dependencies = [
816
+ "cfg-if",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "lz4"
821
+ version = "1.24.0"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1"
824
+ dependencies = [
825
+ "libc",
826
+ "lz4-sys",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "lz4-sys"
831
+ version = "1.9.4"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900"
834
+ dependencies = [
835
+ "cc",
836
+ "libc",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "magnus"
841
+ version = "0.4.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "453555eff7ec4de96c9d095f5fe36fa9610b64832ba0e965a43c21d622d077fc"
844
+ dependencies = [
845
+ "magnus-macros",
846
+ "rb-sys",
847
+ "rb-sys-env",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "magnus-macros"
852
+ version = "0.2.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "acc8ba6908cb0f67a4e75cb48fc81a1f0e6a6dd1501936e0c9e2c7c8f9f18e05"
855
+ dependencies = [
856
+ "proc-macro2",
857
+ "quote",
858
+ "syn",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "memchr"
863
+ version = "2.5.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
866
+
867
+ [[package]]
868
+ name = "memmap2"
869
+ version = "0.5.8"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc"
872
+ dependencies = [
873
+ "libc",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "memoffset"
878
+ version = "0.6.5"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
881
+ dependencies = [
882
+ "autocfg",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "minimal-lexical"
887
+ version = "0.2.1"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
890
+
891
+ [[package]]
892
+ name = "miniz_oxide"
893
+ version = "0.5.4"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
896
+ dependencies = [
897
+ "adler",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "mio"
902
+ version = "0.8.5"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
905
+ dependencies = [
906
+ "libc",
907
+ "log",
908
+ "wasi",
909
+ "windows-sys",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "multiversion"
914
+ version = "0.6.1"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "025c962a3dd3cc5e0e520aa9c612201d127dcdf28616974961a649dca64f5373"
917
+ dependencies = [
918
+ "multiversion-macros",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "multiversion-macros"
923
+ version = "0.6.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "a8a3e2bde382ebf960c1f3e79689fa5941625fe9bf694a1cb64af3e85faff3af"
926
+ dependencies = [
927
+ "proc-macro2",
928
+ "quote",
929
+ "syn",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "nom"
934
+ version = "7.1.1"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
937
+ dependencies = [
938
+ "memchr",
939
+ "minimal-lexical",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "num"
944
+ version = "0.4.0"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
947
+ dependencies = [
948
+ "num-bigint",
949
+ "num-complex",
950
+ "num-integer",
951
+ "num-iter",
952
+ "num-rational",
953
+ "num-traits",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "num-bigint"
958
+ version = "0.4.3"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
961
+ dependencies = [
962
+ "autocfg",
963
+ "num-integer",
964
+ "num-traits",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "num-complex"
969
+ version = "0.4.2"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19"
972
+ dependencies = [
973
+ "num-traits",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "num-integer"
978
+ version = "0.1.45"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
981
+ dependencies = [
982
+ "autocfg",
983
+ "num-traits",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "num-iter"
988
+ version = "0.1.43"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
991
+ dependencies = [
992
+ "autocfg",
993
+ "num-integer",
994
+ "num-traits",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "num-rational"
999
+ version = "0.4.1"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1002
+ dependencies = [
1003
+ "autocfg",
1004
+ "num-bigint",
1005
+ "num-integer",
1006
+ "num-traits",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "num-traits"
1011
+ version = "0.2.15"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1014
+ dependencies = [
1015
+ "autocfg",
1016
+ "libm",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "num_cpus"
1021
+ version = "1.13.1"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1024
+ dependencies = [
1025
+ "hermit-abi",
1026
+ "libc",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "once_cell"
1031
+ version = "1.16.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
1034
+
1035
+ [[package]]
1036
+ name = "parking_lot"
1037
+ version = "0.12.1"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1040
+ dependencies = [
1041
+ "lock_api",
1042
+ "parking_lot_core",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "parking_lot_core"
1047
+ version = "0.9.4"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
1050
+ dependencies = [
1051
+ "cfg-if",
1052
+ "libc",
1053
+ "redox_syscall",
1054
+ "smallvec",
1055
+ "windows-sys",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "parquet-format-safe"
1060
+ version = "0.2.4"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
1063
+ dependencies = [
1064
+ "async-trait",
1065
+ "futures",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "parquet2"
1070
+ version = "0.16.3"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "7752b1a7d61b278f36820ba05557a2a8bfcb17f3559254577ef447beda0c4975"
1073
+ dependencies = [
1074
+ "async-stream",
1075
+ "brotli",
1076
+ "flate2",
1077
+ "futures",
1078
+ "lz4",
1079
+ "parquet-format-safe",
1080
+ "seq-macro",
1081
+ "snap",
1082
+ "streaming-decompression",
1083
+ "zstd",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "parse-zoneinfo"
1088
+ version = "0.3.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
1091
+ dependencies = [
1092
+ "regex",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "peeking_take_while"
1097
+ version = "0.1.2"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1100
+
1101
+ [[package]]
1102
+ name = "phf"
1103
+ version = "0.11.1"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
1106
+ dependencies = [
1107
+ "phf_shared",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "phf_codegen"
1112
+ version = "0.11.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
1115
+ dependencies = [
1116
+ "phf_generator",
1117
+ "phf_shared",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "phf_generator"
1122
+ version = "0.11.1"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
1125
+ dependencies = [
1126
+ "phf_shared",
1127
+ "rand",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "phf_shared"
1132
+ version = "0.11.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
1135
+ dependencies = [
1136
+ "siphasher",
1137
+ "uncased",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "pin-project-lite"
1142
+ version = "0.2.9"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1145
+
1146
+ [[package]]
1147
+ name = "pin-utils"
1148
+ version = "0.1.0"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1151
+
1152
+ [[package]]
1153
+ name = "planus"
1154
+ version = "0.3.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1157
+ dependencies = [
1158
+ "array-init-cursor",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "polars"
1163
+ version = "0.1.0"
1164
+ dependencies = [
1165
+ "magnus",
1166
+ "polars 0.25.1",
1167
+ "serde_json",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "polars"
1172
+ version = "0.25.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "112b33c016ec5949e414016b24d329a2188051e4f65d59a555986ecd7c7387ae"
1175
+ dependencies = [
1176
+ "polars-core",
1177
+ "polars-io",
1178
+ "polars-lazy",
1179
+ "polars-ops",
1180
+ "polars-time",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "polars-arrow"
1185
+ version = "0.25.1"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "7aac9a1d70c683cda8dd4958bd489d8c0206c5ab1435a656a14563c6415f5a64"
1188
+ dependencies = [
1189
+ "arrow2",
1190
+ "hashbrown 0.12.3",
1191
+ "num",
1192
+ "serde",
1193
+ "thiserror",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "polars-core"
1198
+ version = "0.25.1"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "fda4c06062d5e22036e686762bd2da2cf2fc003728e123a99f9c2df7335afc10"
1201
+ dependencies = [
1202
+ "ahash 0.8.2",
1203
+ "anyhow",
1204
+ "arrow2",
1205
+ "bitflags",
1206
+ "chrono",
1207
+ "chrono-tz",
1208
+ "comfy-table",
1209
+ "hashbrown 0.12.3",
1210
+ "indexmap",
1211
+ "num",
1212
+ "once_cell",
1213
+ "polars-arrow",
1214
+ "polars-utils",
1215
+ "rand",
1216
+ "rand_distr",
1217
+ "rayon",
1218
+ "regex",
1219
+ "serde",
1220
+ "smartstring",
1221
+ "thiserror",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "polars-io"
1226
+ version = "0.25.1"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "125fd8302050f3b6be46f7a9a92a4ac62dcab738c4e32cd2af7b9be5f4cdf709"
1229
+ dependencies = [
1230
+ "ahash 0.8.2",
1231
+ "anyhow",
1232
+ "arrow2",
1233
+ "csv-core",
1234
+ "dirs",
1235
+ "lexical",
1236
+ "lexical-core",
1237
+ "memchr",
1238
+ "memmap2",
1239
+ "num",
1240
+ "once_cell",
1241
+ "polars-arrow",
1242
+ "polars-core",
1243
+ "polars-time",
1244
+ "polars-utils",
1245
+ "rayon",
1246
+ "regex",
1247
+ "serde",
1248
+ "simd-json",
1249
+ "simdutf8",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "polars-lazy"
1254
+ version = "0.25.1"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "55376a76c7bd050bb42fd124c290e1908e7ebf8f4c6cce6c4c41e56402f10a33"
1257
+ dependencies = [
1258
+ "ahash 0.8.2",
1259
+ "bitflags",
1260
+ "glob",
1261
+ "polars-arrow",
1262
+ "polars-core",
1263
+ "polars-io",
1264
+ "polars-ops",
1265
+ "polars-pipe",
1266
+ "polars-plan",
1267
+ "polars-time",
1268
+ "polars-utils",
1269
+ "rayon",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "polars-ops"
1274
+ version = "0.25.1"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "bfd3f6552b3e9539634c35047f372db331b6227f75c36fcbe4670ab58bbcbeb3"
1277
+ dependencies = [
1278
+ "arrow2",
1279
+ "polars-arrow",
1280
+ "polars-core",
1281
+ "polars-utils",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "polars-pipe"
1286
+ version = "0.25.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "fa865a4fc6dcfb9967505c4714c29277898e21dd29ea7633a3f9d1abbe879a7d"
1289
+ dependencies = [
1290
+ "enum_dispatch",
1291
+ "hashbrown 0.12.3",
1292
+ "num",
1293
+ "polars-core",
1294
+ "polars-io",
1295
+ "polars-plan",
1296
+ "polars-utils",
1297
+ "rayon",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "polars-plan"
1302
+ version = "0.25.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "673480b0ee55b0abb5be247862bfe1f3b623897f504006a10adbc25c878bf531"
1305
+ dependencies = [
1306
+ "ahash 0.8.2",
1307
+ "polars-arrow",
1308
+ "polars-core",
1309
+ "polars-io",
1310
+ "polars-ops",
1311
+ "polars-time",
1312
+ "polars-utils",
1313
+ "rayon",
1314
+ "regex",
1315
+ "serde",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "polars-time"
1320
+ version = "0.25.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "783e53abda73c226807e850d91de67ab376d91866f378306d3e7f6b9844c17de"
1323
+ dependencies = [
1324
+ "chrono",
1325
+ "chrono-tz",
1326
+ "lexical",
1327
+ "polars-arrow",
1328
+ "polars-core",
1329
+ "polars-utils",
1330
+ "serde",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "polars-utils"
1335
+ version = "0.25.1"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "f2d5b6ec3c45989c1fbaf0e13a3832f4b5e418e776518d7a24d62672e5366364"
1338
+ dependencies = [
1339
+ "rayon",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "ppv-lite86"
1344
+ version = "0.2.17"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1347
+
1348
+ [[package]]
1349
+ name = "proc-macro2"
1350
+ version = "1.0.47"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
1353
+ dependencies = [
1354
+ "unicode-ident",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "quote"
1359
+ version = "1.0.16"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "b4af2ec4714533fcdf07e886f17025ace8b997b9ce51204ee69b6da831c3da57"
1362
+ dependencies = [
1363
+ "proc-macro2",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "rand"
1368
+ version = "0.8.5"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1371
+ dependencies = [
1372
+ "libc",
1373
+ "rand_chacha",
1374
+ "rand_core",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "rand_chacha"
1379
+ version = "0.3.1"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1382
+ dependencies = [
1383
+ "ppv-lite86",
1384
+ "rand_core",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "rand_core"
1389
+ version = "0.6.4"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1392
+ dependencies = [
1393
+ "getrandom",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "rand_distr"
1398
+ version = "0.4.3"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
1401
+ dependencies = [
1402
+ "num-traits",
1403
+ "rand",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "rayon"
1408
+ version = "1.5.1"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
1411
+ dependencies = [
1412
+ "autocfg",
1413
+ "crossbeam-deque",
1414
+ "either",
1415
+ "rayon-core",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "rayon-core"
1420
+ version = "1.9.1"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
1423
+ dependencies = [
1424
+ "crossbeam-channel",
1425
+ "crossbeam-deque",
1426
+ "crossbeam-utils",
1427
+ "lazy_static",
1428
+ "num_cpus",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "rb-sys"
1433
+ version = "0.9.44"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "31f48777b8161ff5c077ad74ce486ebe963ca8a92257512bab473b405a80d69f"
1436
+ dependencies = [
1437
+ "rb-sys-build",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "rb-sys-build"
1442
+ version = "0.9.44"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "a46785122aff7077527b78c2518d739c45dc0fbc410a2b8361076ff4bbf993f9"
1445
+ dependencies = [
1446
+ "bindgen",
1447
+ "regex",
1448
+ "shell-words",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "rb-sys-env"
1453
+ version = "0.1.1"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "74c38752410925faeb82c400c06ba2fd9ee6aa8f719dd33994c9e53f5242d25f"
1456
+
1457
+ [[package]]
1458
+ name = "redox_syscall"
1459
+ version = "0.2.16"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
1462
+ dependencies = [
1463
+ "bitflags",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "redox_users"
1468
+ version = "0.4.3"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1471
+ dependencies = [
1472
+ "getrandom",
1473
+ "redox_syscall",
1474
+ "thiserror",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "regex"
1479
+ version = "1.7.0"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
1482
+ dependencies = [
1483
+ "aho-corasick",
1484
+ "memchr",
1485
+ "regex-syntax",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "regex-syntax"
1490
+ version = "0.6.28"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
1493
+
1494
+ [[package]]
1495
+ name = "rustc-hash"
1496
+ version = "1.1.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1499
+
1500
+ [[package]]
1501
+ name = "rustversion"
1502
+ version = "1.0.9"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
1505
+
1506
+ [[package]]
1507
+ name = "ryu"
1508
+ version = "1.0.11"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
1511
+
1512
+ [[package]]
1513
+ name = "scopeguard"
1514
+ version = "1.1.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1517
+
1518
+ [[package]]
1519
+ name = "seq-macro"
1520
+ version = "0.3.1"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "0772c5c30e1a0d91f6834f8e545c69281c099dfa9a3ac58d96a9fd629c8d4898"
1523
+
1524
+ [[package]]
1525
+ name = "serde"
1526
+ version = "1.0.147"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
1529
+ dependencies = [
1530
+ "serde_derive",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "serde_derive"
1535
+ version = "1.0.147"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
1538
+ dependencies = [
1539
+ "proc-macro2",
1540
+ "quote",
1541
+ "syn",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "serde_json"
1546
+ version = "1.0.88"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7"
1549
+ dependencies = [
1550
+ "itoa",
1551
+ "ryu",
1552
+ "serde",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "shell-words"
1557
+ version = "1.1.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1560
+
1561
+ [[package]]
1562
+ name = "shlex"
1563
+ version = "1.1.0"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1566
+
1567
+ [[package]]
1568
+ name = "signal-hook"
1569
+ version = "0.3.14"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
1572
+ dependencies = [
1573
+ "libc",
1574
+ "signal-hook-registry",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "signal-hook-mio"
1579
+ version = "0.2.3"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
1582
+ dependencies = [
1583
+ "libc",
1584
+ "mio",
1585
+ "signal-hook",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "signal-hook-registry"
1590
+ version = "1.4.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
1593
+ dependencies = [
1594
+ "libc",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "simd-json"
1599
+ version = "0.6.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "9bd78b840b9de64fa3f7d72909b76343849f68e8c3d32608db8d38e4e5481f84"
1602
+ dependencies = [
1603
+ "halfbrown",
1604
+ "serde",
1605
+ "serde_json",
1606
+ "simdutf8",
1607
+ "value-trait",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "simdutf8"
1612
+ version = "0.1.4"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
1615
+
1616
+ [[package]]
1617
+ name = "siphasher"
1618
+ version = "0.3.10"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
1621
+
1622
+ [[package]]
1623
+ name = "slab"
1624
+ version = "0.4.7"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
1627
+ dependencies = [
1628
+ "autocfg",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "smallvec"
1633
+ version = "1.10.0"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
1636
+
1637
+ [[package]]
1638
+ name = "smartstring"
1639
+ version = "1.0.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
1642
+ dependencies = [
1643
+ "autocfg",
1644
+ "static_assertions",
1645
+ "version_check",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "snap"
1650
+ version = "1.1.0"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
1653
+
1654
+ [[package]]
1655
+ name = "static_assertions"
1656
+ version = "1.1.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1659
+
1660
+ [[package]]
1661
+ name = "streaming-decompression"
1662
+ version = "0.1.2"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
1665
+ dependencies = [
1666
+ "fallible-streaming-iterator",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "streaming-iterator"
1671
+ version = "0.1.8"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "d55dd09aaa2f85ef8767cc9177294d63c30d62c8533329e75aa51d8b94976e22"
1674
+
1675
+ [[package]]
1676
+ name = "strength_reduce"
1677
+ version = "0.2.4"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
1680
+
1681
+ [[package]]
1682
+ name = "strum"
1683
+ version = "0.24.1"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
1686
+
1687
+ [[package]]
1688
+ name = "strum_macros"
1689
+ version = "0.24.3"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
1692
+ dependencies = [
1693
+ "heck",
1694
+ "proc-macro2",
1695
+ "quote",
1696
+ "rustversion",
1697
+ "syn",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "syn"
1702
+ version = "1.0.103"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
1705
+ dependencies = [
1706
+ "proc-macro2",
1707
+ "quote",
1708
+ "unicode-ident",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "thiserror"
1713
+ version = "1.0.30"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
1716
+ dependencies = [
1717
+ "thiserror-impl",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "thiserror-impl"
1722
+ version = "1.0.30"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
1725
+ dependencies = [
1726
+ "proc-macro2",
1727
+ "quote",
1728
+ "syn",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "time"
1733
+ version = "0.1.43"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
1736
+ dependencies = [
1737
+ "libc",
1738
+ "winapi",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "uncased"
1743
+ version = "0.9.7"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
1746
+ dependencies = [
1747
+ "version_check",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "unicode-ident"
1752
+ version = "1.0.5"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
1755
+
1756
+ [[package]]
1757
+ name = "unicode-width"
1758
+ version = "0.1.10"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
1761
+
1762
+ [[package]]
1763
+ name = "value-trait"
1764
+ version = "0.4.0"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "c0a635407649b66e125e4d2ffd208153210179f8c7c8b71c030aa2ad3eeb4c8f"
1767
+ dependencies = [
1768
+ "float-cmp",
1769
+ "halfbrown",
1770
+ "itoa",
1771
+ "ryu",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "version_check"
1776
+ version = "0.9.4"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1779
+
1780
+ [[package]]
1781
+ name = "wasi"
1782
+ version = "0.11.0+wasi-snapshot-preview1"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1785
+
1786
+ [[package]]
1787
+ name = "wasm-bindgen"
1788
+ version = "0.2.79"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
1791
+ dependencies = [
1792
+ "cfg-if",
1793
+ "wasm-bindgen-macro",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "wasm-bindgen-backend"
1798
+ version = "0.2.79"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
1801
+ dependencies = [
1802
+ "bumpalo",
1803
+ "lazy_static",
1804
+ "log",
1805
+ "proc-macro2",
1806
+ "quote",
1807
+ "syn",
1808
+ "wasm-bindgen-shared",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "wasm-bindgen-macro"
1813
+ version = "0.2.79"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
1816
+ dependencies = [
1817
+ "quote",
1818
+ "wasm-bindgen-macro-support",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "wasm-bindgen-macro-support"
1823
+ version = "0.2.79"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
1826
+ dependencies = [
1827
+ "proc-macro2",
1828
+ "quote",
1829
+ "syn",
1830
+ "wasm-bindgen-backend",
1831
+ "wasm-bindgen-shared",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "wasm-bindgen-shared"
1836
+ version = "0.2.79"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
1839
+
1840
+ [[package]]
1841
+ name = "winapi"
1842
+ version = "0.3.9"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1845
+ dependencies = [
1846
+ "winapi-i686-pc-windows-gnu",
1847
+ "winapi-x86_64-pc-windows-gnu",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "winapi-i686-pc-windows-gnu"
1852
+ version = "0.4.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1855
+
1856
+ [[package]]
1857
+ name = "winapi-x86_64-pc-windows-gnu"
1858
+ version = "0.4.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1861
+
1862
+ [[package]]
1863
+ name = "windows-sys"
1864
+ version = "0.42.0"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1867
+ dependencies = [
1868
+ "windows_aarch64_gnullvm",
1869
+ "windows_aarch64_msvc",
1870
+ "windows_i686_gnu",
1871
+ "windows_i686_msvc",
1872
+ "windows_x86_64_gnu",
1873
+ "windows_x86_64_gnullvm",
1874
+ "windows_x86_64_msvc",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "windows_aarch64_gnullvm"
1879
+ version = "0.42.0"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
1882
+
1883
+ [[package]]
1884
+ name = "windows_aarch64_msvc"
1885
+ version = "0.42.0"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
1888
+
1889
+ [[package]]
1890
+ name = "windows_i686_gnu"
1891
+ version = "0.42.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
1894
+
1895
+ [[package]]
1896
+ name = "windows_i686_msvc"
1897
+ version = "0.42.0"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
1900
+
1901
+ [[package]]
1902
+ name = "windows_x86_64_gnu"
1903
+ version = "0.42.0"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
1906
+
1907
+ [[package]]
1908
+ name = "windows_x86_64_gnullvm"
1909
+ version = "0.42.0"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
1912
+
1913
+ [[package]]
1914
+ name = "windows_x86_64_msvc"
1915
+ version = "0.42.0"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
1918
+
1919
+ [[package]]
1920
+ name = "zstd"
1921
+ version = "0.11.2+zstd.1.5.2"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
1924
+ dependencies = [
1925
+ "zstd-safe",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "zstd-safe"
1930
+ version = "5.0.2+zstd.1.5.2"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
1933
+ dependencies = [
1934
+ "libc",
1935
+ "zstd-sys",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "zstd-sys"
1940
+ version = "2.0.1+zstd.1.5.2"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
1943
+ dependencies = [
1944
+ "cc",
1945
+ "libc",
1946
+ ]