polars-df 0.2.0-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +3 -0
  3. data/CHANGELOG.md +33 -0
  4. data/Cargo.lock +2230 -0
  5. data/Cargo.toml +10 -0
  6. data/LICENSE-THIRD-PARTY.txt +38856 -0
  7. data/LICENSE.txt +20 -0
  8. data/README.md +91 -0
  9. data/lib/polars/3.0/polars.bundle +0 -0
  10. data/lib/polars/3.1/polars.bundle +0 -0
  11. data/lib/polars/3.2/polars.bundle +0 -0
  12. data/lib/polars/batched_csv_reader.rb +96 -0
  13. data/lib/polars/cat_expr.rb +52 -0
  14. data/lib/polars/cat_name_space.rb +54 -0
  15. data/lib/polars/convert.rb +100 -0
  16. data/lib/polars/data_frame.rb +4833 -0
  17. data/lib/polars/data_types.rb +122 -0
  18. data/lib/polars/date_time_expr.rb +1418 -0
  19. data/lib/polars/date_time_name_space.rb +1484 -0
  20. data/lib/polars/dynamic_group_by.rb +52 -0
  21. data/lib/polars/exceptions.rb +20 -0
  22. data/lib/polars/expr.rb +5307 -0
  23. data/lib/polars/expr_dispatch.rb +22 -0
  24. data/lib/polars/functions.rb +453 -0
  25. data/lib/polars/group_by.rb +558 -0
  26. data/lib/polars/io.rb +814 -0
  27. data/lib/polars/lazy_frame.rb +2442 -0
  28. data/lib/polars/lazy_functions.rb +1195 -0
  29. data/lib/polars/lazy_group_by.rb +93 -0
  30. data/lib/polars/list_expr.rb +610 -0
  31. data/lib/polars/list_name_space.rb +346 -0
  32. data/lib/polars/meta_expr.rb +54 -0
  33. data/lib/polars/rolling_group_by.rb +35 -0
  34. data/lib/polars/series.rb +3730 -0
  35. data/lib/polars/slice.rb +104 -0
  36. data/lib/polars/string_expr.rb +972 -0
  37. data/lib/polars/string_name_space.rb +690 -0
  38. data/lib/polars/struct_expr.rb +100 -0
  39. data/lib/polars/struct_name_space.rb +64 -0
  40. data/lib/polars/utils.rb +192 -0
  41. data/lib/polars/version.rb +4 -0
  42. data/lib/polars/when.rb +16 -0
  43. data/lib/polars/when_then.rb +19 -0
  44. data/lib/polars-df.rb +1 -0
  45. data/lib/polars.rb +50 -0
  46. metadata +89 -0
data/Cargo.lock ADDED
@@ -0,0 +1,2230 @@
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 = "adler32"
13
+ version = "1.2.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
16
+
17
+ [[package]]
18
+ name = "ahash"
19
+ version = "0.8.2"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107"
22
+ dependencies = [
23
+ "cfg-if",
24
+ "getrandom",
25
+ "once_cell",
26
+ "version_check",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "aho-corasick"
31
+ version = "0.7.20"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
34
+ dependencies = [
35
+ "memchr",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "alloc-no-stdlib"
40
+ version = "2.0.4"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
43
+
44
+ [[package]]
45
+ name = "alloc-stdlib"
46
+ version = "0.2.2"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
49
+ dependencies = [
50
+ "alloc-no-stdlib",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "android_system_properties"
55
+ version = "0.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
58
+ dependencies = [
59
+ "libc",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anyhow"
64
+ version = "1.0.68"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
67
+
68
+ [[package]]
69
+ name = "array-init-cursor"
70
+ version = "0.2.0"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
73
+
74
+ [[package]]
75
+ name = "arrow-format"
76
+ version = "0.8.1"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "07884ea216994cdc32a2d5f8274a8bee979cfe90274b83f86f440866ee3132c7"
79
+ dependencies = [
80
+ "planus",
81
+ "serde",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "arrow2"
86
+ version = "0.15.0"
87
+ source = "git+https://github.com/ankane/arrow2?rev=9f36b2b97446e6dd495473e4361a70d863ac8027#9f36b2b97446e6dd495473e4361a70d863ac8027"
88
+ dependencies = [
89
+ "ahash",
90
+ "arrow-format",
91
+ "avro-schema",
92
+ "base64",
93
+ "bytemuck",
94
+ "chrono",
95
+ "chrono-tz",
96
+ "dyn-clone",
97
+ "either",
98
+ "ethnum",
99
+ "fallible-streaming-iterator",
100
+ "foreign_vec",
101
+ "futures",
102
+ "hash_hasher",
103
+ "indexmap",
104
+ "json-deserializer",
105
+ "lexical-core",
106
+ "lz4",
107
+ "multiversion",
108
+ "num-traits",
109
+ "parquet2",
110
+ "rustc_version",
111
+ "simdutf8",
112
+ "streaming-iterator",
113
+ "strength_reduce",
114
+ "zstd",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "async-stream"
119
+ version = "0.3.3"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
122
+ dependencies = [
123
+ "async-stream-impl",
124
+ "futures-core",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "async-stream-impl"
129
+ version = "0.3.3"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
132
+ dependencies = [
133
+ "proc-macro2",
134
+ "quote",
135
+ "syn",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "async-trait"
140
+ version = "0.1.61"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "705339e0e4a9690e2908d2b3d049d85682cf19fbd5782494498fbf7003a6a282"
143
+ dependencies = [
144
+ "proc-macro2",
145
+ "quote",
146
+ "syn",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "autocfg"
151
+ version = "1.1.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
154
+
155
+ [[package]]
156
+ name = "avro-schema"
157
+ version = "0.3.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "b5281855b39aba9684d2f47bf96983fbfd8f1725f12fabb0513a8ab879647bbd"
160
+ dependencies = [
161
+ "crc",
162
+ "fallible-streaming-iterator",
163
+ "libflate",
164
+ "serde",
165
+ "serde_json",
166
+ "snap",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "base64"
171
+ version = "0.13.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
174
+
175
+ [[package]]
176
+ name = "bindgen"
177
+ version = "0.60.1"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
180
+ dependencies = [
181
+ "bitflags",
182
+ "cexpr",
183
+ "clang-sys",
184
+ "lazy_static",
185
+ "lazycell",
186
+ "peeking_take_while",
187
+ "proc-macro2",
188
+ "quote",
189
+ "regex",
190
+ "rustc-hash",
191
+ "shlex",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "bitflags"
196
+ version = "1.3.2"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
199
+
200
+ [[package]]
201
+ name = "brotli"
202
+ version = "3.3.4"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
205
+ dependencies = [
206
+ "alloc-no-stdlib",
207
+ "alloc-stdlib",
208
+ "brotli-decompressor",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "brotli-decompressor"
213
+ version = "2.3.2"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
216
+ dependencies = [
217
+ "alloc-no-stdlib",
218
+ "alloc-stdlib",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "bumpalo"
223
+ version = "3.11.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
226
+
227
+ [[package]]
228
+ name = "bytemuck"
229
+ version = "1.12.3"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "aaa3a8d9a1ca92e282c96a32d6511b695d7d994d1d102ba85d279f9b2756947f"
232
+ dependencies = [
233
+ "bytemuck_derive",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "bytemuck_derive"
238
+ version = "1.3.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "5fe233b960f12f8007e3db2d136e3cb1c291bfd7396e384ee76025fc1a3932b4"
241
+ dependencies = [
242
+ "proc-macro2",
243
+ "quote",
244
+ "syn",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "cc"
249
+ version = "1.0.78"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
252
+ dependencies = [
253
+ "jobserver",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "cexpr"
258
+ version = "0.6.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
261
+ dependencies = [
262
+ "nom",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "cfg-if"
267
+ version = "1.0.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
270
+
271
+ [[package]]
272
+ name = "chrono"
273
+ version = "0.4.23"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
276
+ dependencies = [
277
+ "iana-time-zone",
278
+ "js-sys",
279
+ "num-integer",
280
+ "num-traits",
281
+ "time",
282
+ "wasm-bindgen",
283
+ "winapi",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "chrono-tz"
288
+ version = "0.6.3"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
291
+ dependencies = [
292
+ "chrono",
293
+ "chrono-tz-build",
294
+ "phf",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "chrono-tz-build"
299
+ version = "0.0.3"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
302
+ dependencies = [
303
+ "parse-zoneinfo",
304
+ "phf",
305
+ "phf_codegen",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "clang-sys"
310
+ version = "1.4.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
313
+ dependencies = [
314
+ "glob",
315
+ "libc",
316
+ "libloading",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "codespan-reporting"
321
+ version = "0.11.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
324
+ dependencies = [
325
+ "termcolor",
326
+ "unicode-width",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "comfy-table"
331
+ version = "6.1.4"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "6e7b787b0dc42e8111badfdbe4c3059158ccb2db8780352fa1b01e8ccf45cc4d"
334
+ dependencies = [
335
+ "crossterm",
336
+ "strum",
337
+ "strum_macros",
338
+ "unicode-width",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "core-foundation-sys"
343
+ version = "0.8.3"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
346
+
347
+ [[package]]
348
+ name = "crc"
349
+ version = "2.1.0"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23"
352
+ dependencies = [
353
+ "crc-catalog",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "crc-catalog"
358
+ version = "1.1.1"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
361
+
362
+ [[package]]
363
+ name = "crc32fast"
364
+ version = "1.3.2"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
367
+ dependencies = [
368
+ "cfg-if",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "crossbeam-channel"
373
+ version = "0.5.6"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
376
+ dependencies = [
377
+ "cfg-if",
378
+ "crossbeam-utils",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "crossbeam-deque"
383
+ version = "0.8.2"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
386
+ dependencies = [
387
+ "cfg-if",
388
+ "crossbeam-epoch",
389
+ "crossbeam-utils",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "crossbeam-epoch"
394
+ version = "0.9.13"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
397
+ dependencies = [
398
+ "autocfg",
399
+ "cfg-if",
400
+ "crossbeam-utils",
401
+ "memoffset",
402
+ "scopeguard",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "crossbeam-utils"
407
+ version = "0.8.14"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
410
+ dependencies = [
411
+ "cfg-if",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "crossterm"
416
+ version = "0.25.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
419
+ dependencies = [
420
+ "bitflags",
421
+ "crossterm_winapi",
422
+ "libc",
423
+ "mio",
424
+ "parking_lot",
425
+ "signal-hook",
426
+ "signal-hook-mio",
427
+ "winapi",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "crossterm_winapi"
432
+ version = "0.9.0"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
435
+ dependencies = [
436
+ "winapi",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "csv-core"
441
+ version = "0.1.10"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
444
+ dependencies = [
445
+ "memchr",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "cxx"
450
+ version = "1.0.86"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"
453
+ dependencies = [
454
+ "cc",
455
+ "cxxbridge-flags",
456
+ "cxxbridge-macro",
457
+ "link-cplusplus",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "cxx-build"
462
+ version = "1.0.86"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"
465
+ dependencies = [
466
+ "cc",
467
+ "codespan-reporting",
468
+ "once_cell",
469
+ "proc-macro2",
470
+ "quote",
471
+ "scratch",
472
+ "syn",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "cxxbridge-flags"
477
+ version = "1.0.86"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"
480
+
481
+ [[package]]
482
+ name = "cxxbridge-macro"
483
+ version = "1.0.86"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"
486
+ dependencies = [
487
+ "proc-macro2",
488
+ "quote",
489
+ "syn",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "dirs"
494
+ version = "4.0.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
497
+ dependencies = [
498
+ "dirs-sys",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "dirs-sys"
503
+ version = "0.3.7"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
506
+ dependencies = [
507
+ "libc",
508
+ "redox_users",
509
+ "winapi",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "dyn-clone"
514
+ version = "1.0.10"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60"
517
+
518
+ [[package]]
519
+ name = "either"
520
+ version = "1.8.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
523
+
524
+ [[package]]
525
+ name = "enum_dispatch"
526
+ version = "0.3.11"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2"
529
+ dependencies = [
530
+ "once_cell",
531
+ "proc-macro2",
532
+ "quote",
533
+ "syn",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "ethnum"
538
+ version = "1.3.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04"
541
+
542
+ [[package]]
543
+ name = "fallible-streaming-iterator"
544
+ version = "0.1.9"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
547
+
548
+ [[package]]
549
+ name = "flate2"
550
+ version = "1.0.25"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
553
+ dependencies = [
554
+ "crc32fast",
555
+ "miniz_oxide",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "float-cmp"
560
+ version = "0.9.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
563
+ dependencies = [
564
+ "num-traits",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "foreign_vec"
569
+ version = "0.1.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
572
+
573
+ [[package]]
574
+ name = "fs_extra"
575
+ version = "1.2.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
578
+
579
+ [[package]]
580
+ name = "futures"
581
+ version = "0.3.25"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
584
+ dependencies = [
585
+ "futures-channel",
586
+ "futures-core",
587
+ "futures-executor",
588
+ "futures-io",
589
+ "futures-sink",
590
+ "futures-task",
591
+ "futures-util",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "futures-channel"
596
+ version = "0.3.25"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
599
+ dependencies = [
600
+ "futures-core",
601
+ "futures-sink",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "futures-core"
606
+ version = "0.3.25"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
609
+
610
+ [[package]]
611
+ name = "futures-executor"
612
+ version = "0.3.25"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
615
+ dependencies = [
616
+ "futures-core",
617
+ "futures-task",
618
+ "futures-util",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "futures-io"
623
+ version = "0.3.25"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
626
+
627
+ [[package]]
628
+ name = "futures-macro"
629
+ version = "0.3.25"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
632
+ dependencies = [
633
+ "proc-macro2",
634
+ "quote",
635
+ "syn",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "futures-sink"
640
+ version = "0.3.25"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
643
+
644
+ [[package]]
645
+ name = "futures-task"
646
+ version = "0.3.25"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
649
+
650
+ [[package]]
651
+ name = "futures-util"
652
+ version = "0.3.25"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
655
+ dependencies = [
656
+ "futures-channel",
657
+ "futures-core",
658
+ "futures-io",
659
+ "futures-macro",
660
+ "futures-sink",
661
+ "futures-task",
662
+ "memchr",
663
+ "pin-project-lite",
664
+ "pin-utils",
665
+ "slab",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "getrandom"
670
+ version = "0.2.8"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
673
+ dependencies = [
674
+ "cfg-if",
675
+ "libc",
676
+ "wasi 0.11.0+wasi-snapshot-preview1",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "glob"
681
+ version = "0.3.1"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
684
+
685
+ [[package]]
686
+ name = "halfbrown"
687
+ version = "0.1.18"
688
+ source = "git+https://github.com/Licenser/halfbrown?rev=952023c5dd6461b009bb5ba66b9aa979bd75949f#952023c5dd6461b009bb5ba66b9aa979bd75949f"
689
+ dependencies = [
690
+ "hashbrown 0.13.2",
691
+ "rustc-hash",
692
+ "serde",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "hash_hasher"
697
+ version = "2.0.3"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
700
+
701
+ [[package]]
702
+ name = "hashbrown"
703
+ version = "0.12.3"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
706
+
707
+ [[package]]
708
+ name = "hashbrown"
709
+ version = "0.13.2"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
712
+ dependencies = [
713
+ "ahash",
714
+ "rayon",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "heck"
719
+ version = "0.4.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
722
+
723
+ [[package]]
724
+ name = "hermit-abi"
725
+ version = "0.2.6"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
728
+ dependencies = [
729
+ "libc",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "hex"
734
+ version = "0.4.3"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
737
+
738
+ [[package]]
739
+ name = "iana-time-zone"
740
+ version = "0.1.53"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
743
+ dependencies = [
744
+ "android_system_properties",
745
+ "core-foundation-sys",
746
+ "iana-time-zone-haiku",
747
+ "js-sys",
748
+ "wasm-bindgen",
749
+ "winapi",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "iana-time-zone-haiku"
754
+ version = "0.1.1"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
757
+ dependencies = [
758
+ "cxx",
759
+ "cxx-build",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "indexmap"
764
+ version = "1.9.2"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
767
+ dependencies = [
768
+ "autocfg",
769
+ "hashbrown 0.12.3",
770
+ "serde",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "itoa"
775
+ version = "1.0.5"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
778
+
779
+ [[package]]
780
+ name = "jemalloc-sys"
781
+ version = "0.5.2+5.3.0-patched"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "134163979b6eed9564c98637b710b40979939ba351f59952708234ea11b5f3f8"
784
+ dependencies = [
785
+ "cc",
786
+ "fs_extra",
787
+ "libc",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "jemallocator"
792
+ version = "0.5.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "16c2514137880c52b0b4822b563fadd38257c1f380858addb74a400889696ea6"
795
+ dependencies = [
796
+ "jemalloc-sys",
797
+ "libc",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "jobserver"
802
+ version = "0.1.25"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
805
+ dependencies = [
806
+ "libc",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "js-sys"
811
+ version = "0.3.60"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
814
+ dependencies = [
815
+ "wasm-bindgen",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "json-deserializer"
820
+ version = "0.4.4"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "5f63b421e16eb4100beb677af56f0b4f3a4f08bab74ef2af079ce5bb92c2683f"
823
+ dependencies = [
824
+ "indexmap",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "jsonpath_lib"
829
+ version = "0.3.0"
830
+ source = "git+https://github.com/ritchie46/jsonpath?rev=24eaf0b4416edff38a4d1b6b17bc4b9f3f047b4b#24eaf0b4416edff38a4d1b6b17bc4b9f3f047b4b"
831
+ dependencies = [
832
+ "log",
833
+ "serde",
834
+ "serde_json",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "lazy_static"
839
+ version = "1.4.0"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
842
+
843
+ [[package]]
844
+ name = "lazycell"
845
+ version = "1.3.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
848
+
849
+ [[package]]
850
+ name = "lexical"
851
+ version = "6.1.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
854
+ dependencies = [
855
+ "lexical-core",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "lexical-core"
860
+ version = "0.8.5"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
863
+ dependencies = [
864
+ "lexical-parse-float",
865
+ "lexical-parse-integer",
866
+ "lexical-util",
867
+ "lexical-write-float",
868
+ "lexical-write-integer",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "lexical-parse-float"
873
+ version = "0.8.5"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
876
+ dependencies = [
877
+ "lexical-parse-integer",
878
+ "lexical-util",
879
+ "static_assertions",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "lexical-parse-integer"
884
+ version = "0.8.6"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
887
+ dependencies = [
888
+ "lexical-util",
889
+ "static_assertions",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "lexical-util"
894
+ version = "0.8.5"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
897
+ dependencies = [
898
+ "static_assertions",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "lexical-write-float"
903
+ version = "0.8.5"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
906
+ dependencies = [
907
+ "lexical-util",
908
+ "lexical-write-integer",
909
+ "static_assertions",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "lexical-write-integer"
914
+ version = "0.8.5"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
917
+ dependencies = [
918
+ "lexical-util",
919
+ "static_assertions",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "libc"
924
+ version = "0.2.139"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
927
+
928
+ [[package]]
929
+ name = "libflate"
930
+ version = "1.2.0"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "05605ab2bce11bcfc0e9c635ff29ef8b2ea83f29be257ee7d730cac3ee373093"
933
+ dependencies = [
934
+ "adler32",
935
+ "crc32fast",
936
+ "libflate_lz77",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "libflate_lz77"
941
+ version = "1.1.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "39a734c0493409afcd49deee13c006a04e3586b9761a03543c6272c9c51f2f5a"
944
+ dependencies = [
945
+ "rle-decode-fast",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "libloading"
950
+ version = "0.7.4"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
953
+ dependencies = [
954
+ "cfg-if",
955
+ "winapi",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "libm"
960
+ version = "0.2.6"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
963
+
964
+ [[package]]
965
+ name = "libmimalloc-sys"
966
+ version = "0.1.30"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "dd8c7cbf8b89019683667e347572e6d55a7df7ea36b0c4ce69961b0cde67b174"
969
+ dependencies = [
970
+ "cc",
971
+ "libc",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "link-cplusplus"
976
+ version = "1.0.8"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
979
+ dependencies = [
980
+ "cc",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "lock_api"
985
+ version = "0.4.9"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
988
+ dependencies = [
989
+ "autocfg",
990
+ "scopeguard",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "log"
995
+ version = "0.4.17"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
998
+ dependencies = [
999
+ "cfg-if",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "lz4"
1004
+ version = "1.24.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1"
1007
+ dependencies = [
1008
+ "libc",
1009
+ "lz4-sys",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "lz4-sys"
1014
+ version = "1.9.4"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900"
1017
+ dependencies = [
1018
+ "cc",
1019
+ "libc",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "magnus"
1024
+ version = "0.4.4"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "fc87660cd7daa49fddbfd524c836de54d5c927d520cd163f43700c5087c57d6c"
1027
+ dependencies = [
1028
+ "magnus-macros",
1029
+ "rb-sys",
1030
+ "rb-sys-env",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "magnus-macros"
1035
+ version = "0.3.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "206cb23bfeea05180c97522ef6a3e52a4eb17b0ed2f30ee3ca9c4f994d2378ae"
1038
+ dependencies = [
1039
+ "proc-macro2",
1040
+ "quote",
1041
+ "syn",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "memchr"
1046
+ version = "2.5.0"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1049
+
1050
+ [[package]]
1051
+ name = "memmap2"
1052
+ version = "0.5.8"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc"
1055
+ dependencies = [
1056
+ "libc",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "memoffset"
1061
+ version = "0.7.1"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
1064
+ dependencies = [
1065
+ "autocfg",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "mimalloc"
1070
+ version = "0.1.34"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "9dcb174b18635f7561a0c6c9fc2ce57218ac7523cf72c50af80e2d79ab8f3ba1"
1073
+ dependencies = [
1074
+ "libmimalloc-sys",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "minimal-lexical"
1079
+ version = "0.2.1"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1082
+
1083
+ [[package]]
1084
+ name = "miniz_oxide"
1085
+ version = "0.6.2"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1088
+ dependencies = [
1089
+ "adler",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "mio"
1094
+ version = "0.8.5"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
1097
+ dependencies = [
1098
+ "libc",
1099
+ "log",
1100
+ "wasi 0.11.0+wasi-snapshot-preview1",
1101
+ "windows-sys",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "multiversion"
1106
+ version = "0.6.1"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "025c962a3dd3cc5e0e520aa9c612201d127dcdf28616974961a649dca64f5373"
1109
+ dependencies = [
1110
+ "multiversion-macros",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "multiversion-macros"
1115
+ version = "0.6.1"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "a8a3e2bde382ebf960c1f3e79689fa5941625fe9bf694a1cb64af3e85faff3af"
1118
+ dependencies = [
1119
+ "proc-macro2",
1120
+ "quote",
1121
+ "syn",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "nom"
1126
+ version = "7.1.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "e5507769c4919c998e69e49c839d9dc6e693ede4cc4290d6ad8b41d4f09c548c"
1129
+ dependencies = [
1130
+ "memchr",
1131
+ "minimal-lexical",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "now"
1136
+ version = "0.1.3"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1139
+ dependencies = [
1140
+ "chrono",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "num"
1145
+ version = "0.4.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
1148
+ dependencies = [
1149
+ "num-bigint",
1150
+ "num-complex",
1151
+ "num-integer",
1152
+ "num-iter",
1153
+ "num-rational",
1154
+ "num-traits",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "num-bigint"
1159
+ version = "0.4.3"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
1162
+ dependencies = [
1163
+ "autocfg",
1164
+ "num-integer",
1165
+ "num-traits",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "num-complex"
1170
+ version = "0.4.2"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19"
1173
+ dependencies = [
1174
+ "num-traits",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "num-integer"
1179
+ version = "0.1.45"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1182
+ dependencies = [
1183
+ "autocfg",
1184
+ "num-traits",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "num-iter"
1189
+ version = "0.1.43"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
1192
+ dependencies = [
1193
+ "autocfg",
1194
+ "num-integer",
1195
+ "num-traits",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "num-rational"
1200
+ version = "0.4.1"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1203
+ dependencies = [
1204
+ "autocfg",
1205
+ "num-bigint",
1206
+ "num-integer",
1207
+ "num-traits",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "num-traits"
1212
+ version = "0.2.15"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1215
+ dependencies = [
1216
+ "autocfg",
1217
+ "libm",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "num_cpus"
1222
+ version = "1.15.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
1225
+ dependencies = [
1226
+ "hermit-abi",
1227
+ "libc",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "once_cell"
1232
+ version = "1.17.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
1235
+
1236
+ [[package]]
1237
+ name = "parking_lot"
1238
+ version = "0.12.1"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1241
+ dependencies = [
1242
+ "lock_api",
1243
+ "parking_lot_core",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "parking_lot_core"
1248
+ version = "0.9.6"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
1251
+ dependencies = [
1252
+ "cfg-if",
1253
+ "libc",
1254
+ "redox_syscall",
1255
+ "smallvec",
1256
+ "windows-sys",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "parquet-format-safe"
1261
+ version = "0.2.4"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
1264
+ dependencies = [
1265
+ "async-trait",
1266
+ "futures",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "parquet2"
1271
+ version = "0.17.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "aefc53bedbf9bbe0ff8912befafaafe30ced83851fb0aebe86696a9289ebb29e"
1274
+ dependencies = [
1275
+ "async-stream",
1276
+ "brotli",
1277
+ "flate2",
1278
+ "futures",
1279
+ "lz4",
1280
+ "parquet-format-safe",
1281
+ "seq-macro",
1282
+ "snap",
1283
+ "streaming-decompression",
1284
+ "zstd",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "parse-zoneinfo"
1289
+ version = "0.3.0"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
1292
+ dependencies = [
1293
+ "regex",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "peeking_take_while"
1298
+ version = "0.1.2"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1301
+
1302
+ [[package]]
1303
+ name = "phf"
1304
+ version = "0.11.1"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
1307
+ dependencies = [
1308
+ "phf_shared",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "phf_codegen"
1313
+ version = "0.11.1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
1316
+ dependencies = [
1317
+ "phf_generator",
1318
+ "phf_shared",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "phf_generator"
1323
+ version = "0.11.1"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
1326
+ dependencies = [
1327
+ "phf_shared",
1328
+ "rand",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "phf_shared"
1333
+ version = "0.11.1"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
1336
+ dependencies = [
1337
+ "siphasher",
1338
+ "uncased",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "pin-project-lite"
1343
+ version = "0.2.9"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1346
+
1347
+ [[package]]
1348
+ name = "pin-utils"
1349
+ version = "0.1.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1352
+
1353
+ [[package]]
1354
+ name = "pkg-config"
1355
+ version = "0.3.26"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
1358
+
1359
+ [[package]]
1360
+ name = "planus"
1361
+ version = "0.3.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1364
+ dependencies = [
1365
+ "array-init-cursor",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "polars"
1370
+ version = "0.2.0"
1371
+ dependencies = [
1372
+ "ahash",
1373
+ "jemallocator",
1374
+ "magnus",
1375
+ "mimalloc",
1376
+ "polars 0.26.1",
1377
+ "polars-core",
1378
+ "serde_json",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "polars"
1383
+ version = "0.26.1"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "77dddd763763d977fd17e7d3300425da866be08c7185c94fb3979195fbc8fdc7"
1386
+ dependencies = [
1387
+ "polars-core",
1388
+ "polars-io",
1389
+ "polars-lazy",
1390
+ "polars-ops",
1391
+ "polars-time",
1392
+ "version_check",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "polars-arrow"
1397
+ version = "0.26.1"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "6d5e894b6908d288ea24b56c8d99c2944f4b94af51ba662d58631c04806511b7"
1400
+ dependencies = [
1401
+ "arrow2",
1402
+ "chrono",
1403
+ "chrono-tz",
1404
+ "hashbrown 0.13.2",
1405
+ "num",
1406
+ "serde",
1407
+ "thiserror",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "polars-core"
1412
+ version = "0.26.1"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "a3ab5c1e10e42a34a44a6e1421869c84ad56fe217c6120cda697c84bc467eb9c"
1415
+ dependencies = [
1416
+ "ahash",
1417
+ "anyhow",
1418
+ "arrow2",
1419
+ "base64",
1420
+ "bitflags",
1421
+ "chrono",
1422
+ "chrono-tz",
1423
+ "comfy-table",
1424
+ "hashbrown 0.13.2",
1425
+ "hex",
1426
+ "indexmap",
1427
+ "num",
1428
+ "once_cell",
1429
+ "polars-arrow",
1430
+ "polars-utils",
1431
+ "rand",
1432
+ "rand_distr",
1433
+ "rayon",
1434
+ "regex",
1435
+ "serde",
1436
+ "serde_json",
1437
+ "smartstring",
1438
+ "thiserror",
1439
+ "xxhash-rust",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "polars-io"
1444
+ version = "0.26.1"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "882e392cbc3e645bfa7ad582065764e21dc271cfeefee904f43a95ccd1b52cb7"
1447
+ dependencies = [
1448
+ "ahash",
1449
+ "anyhow",
1450
+ "arrow2",
1451
+ "csv-core",
1452
+ "dirs",
1453
+ "lexical",
1454
+ "lexical-core",
1455
+ "memchr",
1456
+ "memmap2",
1457
+ "num",
1458
+ "once_cell",
1459
+ "polars-arrow",
1460
+ "polars-core",
1461
+ "polars-time",
1462
+ "polars-utils",
1463
+ "rayon",
1464
+ "regex",
1465
+ "serde",
1466
+ "serde_json",
1467
+ "simd-json",
1468
+ "simdutf8",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "polars-lazy"
1473
+ version = "0.26.1"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "6cb356861b8967e39ca6205b8bded68b4986f0edd49f259cebbd59ad056e67cc"
1476
+ dependencies = [
1477
+ "ahash",
1478
+ "bitflags",
1479
+ "glob",
1480
+ "polars-arrow",
1481
+ "polars-core",
1482
+ "polars-io",
1483
+ "polars-ops",
1484
+ "polars-pipe",
1485
+ "polars-plan",
1486
+ "polars-time",
1487
+ "polars-utils",
1488
+ "rayon",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "polars-ops"
1493
+ version = "0.26.1"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "771a404f0f84e6801632c534a7b99410a017e227ecc7b9c64bab728c614f05d6"
1496
+ dependencies = [
1497
+ "arrow2",
1498
+ "jsonpath_lib",
1499
+ "polars-arrow",
1500
+ "polars-core",
1501
+ "polars-utils",
1502
+ "serde",
1503
+ "serde_json",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "polars-pipe"
1508
+ version = "0.26.1"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "d1bb37bd32c44defa19be36fcab9387d5b3ad4c683596479caf414e5a00e82af"
1511
+ dependencies = [
1512
+ "enum_dispatch",
1513
+ "hashbrown 0.13.2",
1514
+ "num",
1515
+ "polars-arrow",
1516
+ "polars-core",
1517
+ "polars-io",
1518
+ "polars-plan",
1519
+ "polars-utils",
1520
+ "rayon",
1521
+ "smartstring",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "polars-plan"
1526
+ version = "0.26.1"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "f58b4b3daee78b95937930ad3cfc2a454d57802a92a39ee0ce220bb1ae627ef9"
1529
+ dependencies = [
1530
+ "ahash",
1531
+ "polars-arrow",
1532
+ "polars-core",
1533
+ "polars-io",
1534
+ "polars-ops",
1535
+ "polars-time",
1536
+ "polars-utils",
1537
+ "rayon",
1538
+ "regex",
1539
+ "serde",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "polars-time"
1544
+ version = "0.26.1"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "93593a1a507004f5ac535210542d730178d4f729ef5da48ff2cd13abf570d65e"
1547
+ dependencies = [
1548
+ "chrono",
1549
+ "chrono-tz",
1550
+ "lexical",
1551
+ "now",
1552
+ "polars-arrow",
1553
+ "polars-core",
1554
+ "polars-ops",
1555
+ "polars-utils",
1556
+ "serde",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "polars-utils"
1561
+ version = "0.26.1"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "d6e4fda3c2781247ef4137221f1013398e3d56aa1899f4f99ecf86fa96f64670"
1564
+ dependencies = [
1565
+ "rayon",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "ppv-lite86"
1570
+ version = "0.2.17"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1573
+
1574
+ [[package]]
1575
+ name = "proc-macro2"
1576
+ version = "1.0.49"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
1579
+ dependencies = [
1580
+ "unicode-ident",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "quote"
1585
+ version = "1.0.23"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
1588
+ dependencies = [
1589
+ "proc-macro2",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "rand"
1594
+ version = "0.8.5"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1597
+ dependencies = [
1598
+ "libc",
1599
+ "rand_chacha",
1600
+ "rand_core",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "rand_chacha"
1605
+ version = "0.3.1"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1608
+ dependencies = [
1609
+ "ppv-lite86",
1610
+ "rand_core",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "rand_core"
1615
+ version = "0.6.4"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1618
+ dependencies = [
1619
+ "getrandom",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "rand_distr"
1624
+ version = "0.4.3"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
1627
+ dependencies = [
1628
+ "num-traits",
1629
+ "rand",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "rayon"
1634
+ version = "1.6.1"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
1637
+ dependencies = [
1638
+ "either",
1639
+ "rayon-core",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "rayon-core"
1644
+ version = "1.10.1"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
1647
+ dependencies = [
1648
+ "crossbeam-channel",
1649
+ "crossbeam-deque",
1650
+ "crossbeam-utils",
1651
+ "num_cpus",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "rb-sys"
1656
+ version = "0.9.56"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "ef82428221475c6f9e7893fe30b88d45ac86bdb12e58e7c92055ba4bceb78a69"
1659
+ dependencies = [
1660
+ "rb-sys-build",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "rb-sys-build"
1665
+ version = "0.9.56"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "950bfc239d2e7704576abe4d37b008876bbfd70a99196a188c5caeae2ba7344a"
1668
+ dependencies = [
1669
+ "bindgen",
1670
+ "regex",
1671
+ "shell-words",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "rb-sys-env"
1676
+ version = "0.1.1"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "74c38752410925faeb82c400c06ba2fd9ee6aa8f719dd33994c9e53f5242d25f"
1679
+
1680
+ [[package]]
1681
+ name = "redox_syscall"
1682
+ version = "0.2.16"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
1685
+ dependencies = [
1686
+ "bitflags",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "redox_users"
1691
+ version = "0.4.3"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1694
+ dependencies = [
1695
+ "getrandom",
1696
+ "redox_syscall",
1697
+ "thiserror",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "regex"
1702
+ version = "1.7.1"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
1705
+ dependencies = [
1706
+ "aho-corasick",
1707
+ "memchr",
1708
+ "regex-syntax",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "regex-syntax"
1713
+ version = "0.6.28"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
1716
+
1717
+ [[package]]
1718
+ name = "rle-decode-fast"
1719
+ version = "1.0.3"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
1722
+
1723
+ [[package]]
1724
+ name = "rustc-hash"
1725
+ version = "1.1.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1728
+
1729
+ [[package]]
1730
+ name = "rustc_version"
1731
+ version = "0.4.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1734
+ dependencies = [
1735
+ "semver",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "rustversion"
1740
+ version = "1.0.11"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
1743
+
1744
+ [[package]]
1745
+ name = "ryu"
1746
+ version = "1.0.12"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
1749
+
1750
+ [[package]]
1751
+ name = "scopeguard"
1752
+ version = "1.1.0"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1755
+
1756
+ [[package]]
1757
+ name = "scratch"
1758
+ version = "1.0.3"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
1761
+
1762
+ [[package]]
1763
+ name = "semver"
1764
+ version = "1.0.16"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
1767
+
1768
+ [[package]]
1769
+ name = "seq-macro"
1770
+ version = "0.3.2"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "1685deded9b272198423bdbdb907d8519def2f26cf3699040e54e8c4fbd5c5ce"
1773
+
1774
+ [[package]]
1775
+ name = "serde"
1776
+ version = "1.0.152"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
1779
+ dependencies = [
1780
+ "serde_derive",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "serde_derive"
1785
+ version = "1.0.152"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
1788
+ dependencies = [
1789
+ "proc-macro2",
1790
+ "quote",
1791
+ "syn",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "serde_json"
1796
+ version = "1.0.91"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
1799
+ dependencies = [
1800
+ "indexmap",
1801
+ "itoa",
1802
+ "ryu",
1803
+ "serde",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "shell-words"
1808
+ version = "1.1.0"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1811
+
1812
+ [[package]]
1813
+ name = "shlex"
1814
+ version = "1.1.0"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1817
+
1818
+ [[package]]
1819
+ name = "signal-hook"
1820
+ version = "0.3.14"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
1823
+ dependencies = [
1824
+ "libc",
1825
+ "signal-hook-registry",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "signal-hook-mio"
1830
+ version = "0.2.3"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
1833
+ dependencies = [
1834
+ "libc",
1835
+ "mio",
1836
+ "signal-hook",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "signal-hook-registry"
1841
+ version = "1.4.0"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
1844
+ dependencies = [
1845
+ "libc",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "simd-json"
1850
+ version = "0.7.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "8e3375b6c3d8c048ba09c8b4b6c3f1d3f35e06b71db07d231c323943a949e1b8"
1853
+ dependencies = [
1854
+ "halfbrown",
1855
+ "lexical-core",
1856
+ "serde",
1857
+ "serde_json",
1858
+ "simdutf8",
1859
+ "value-trait",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "simdutf8"
1864
+ version = "0.1.4"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
1867
+
1868
+ [[package]]
1869
+ name = "siphasher"
1870
+ version = "0.3.10"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
1873
+
1874
+ [[package]]
1875
+ name = "slab"
1876
+ version = "0.4.7"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
1879
+ dependencies = [
1880
+ "autocfg",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "smallvec"
1885
+ version = "1.10.0"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
1888
+
1889
+ [[package]]
1890
+ name = "smartstring"
1891
+ version = "1.0.1"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
1894
+ dependencies = [
1895
+ "autocfg",
1896
+ "static_assertions",
1897
+ "version_check",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "snap"
1902
+ version = "1.1.0"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
1905
+
1906
+ [[package]]
1907
+ name = "static_assertions"
1908
+ version = "1.1.0"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1911
+
1912
+ [[package]]
1913
+ name = "streaming-decompression"
1914
+ version = "0.1.2"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
1917
+ dependencies = [
1918
+ "fallible-streaming-iterator",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "streaming-iterator"
1923
+ version = "0.1.9"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
1926
+
1927
+ [[package]]
1928
+ name = "strength_reduce"
1929
+ version = "0.2.4"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
1932
+
1933
+ [[package]]
1934
+ name = "strum"
1935
+ version = "0.24.1"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
1938
+
1939
+ [[package]]
1940
+ name = "strum_macros"
1941
+ version = "0.24.3"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
1944
+ dependencies = [
1945
+ "heck",
1946
+ "proc-macro2",
1947
+ "quote",
1948
+ "rustversion",
1949
+ "syn",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "syn"
1954
+ version = "1.0.107"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
1957
+ dependencies = [
1958
+ "proc-macro2",
1959
+ "quote",
1960
+ "unicode-ident",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "termcolor"
1965
+ version = "1.1.3"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1968
+ dependencies = [
1969
+ "winapi-util",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "thiserror"
1974
+ version = "1.0.38"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
1977
+ dependencies = [
1978
+ "thiserror-impl",
1979
+ ]
1980
+
1981
+ [[package]]
1982
+ name = "thiserror-impl"
1983
+ version = "1.0.38"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
1986
+ dependencies = [
1987
+ "proc-macro2",
1988
+ "quote",
1989
+ "syn",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "time"
1994
+ version = "0.1.45"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
1997
+ dependencies = [
1998
+ "libc",
1999
+ "wasi 0.10.0+wasi-snapshot-preview1",
2000
+ "winapi",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "uncased"
2005
+ version = "0.9.7"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
2008
+ dependencies = [
2009
+ "version_check",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "unicode-ident"
2014
+ version = "1.0.6"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
2017
+
2018
+ [[package]]
2019
+ name = "unicode-width"
2020
+ version = "0.1.10"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2023
+
2024
+ [[package]]
2025
+ name = "value-trait"
2026
+ version = "0.5.1"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "995de1aa349a0dc50f4aa40870dce12961a30229027230bad09acd2843edbe9e"
2029
+ dependencies = [
2030
+ "float-cmp",
2031
+ "halfbrown",
2032
+ "itoa",
2033
+ "ryu",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "version_check"
2038
+ version = "0.9.4"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2041
+
2042
+ [[package]]
2043
+ name = "wasi"
2044
+ version = "0.10.0+wasi-snapshot-preview1"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2047
+
2048
+ [[package]]
2049
+ name = "wasi"
2050
+ version = "0.11.0+wasi-snapshot-preview1"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2053
+
2054
+ [[package]]
2055
+ name = "wasm-bindgen"
2056
+ version = "0.2.83"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
2059
+ dependencies = [
2060
+ "cfg-if",
2061
+ "wasm-bindgen-macro",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "wasm-bindgen-backend"
2066
+ version = "0.2.83"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
2069
+ dependencies = [
2070
+ "bumpalo",
2071
+ "log",
2072
+ "once_cell",
2073
+ "proc-macro2",
2074
+ "quote",
2075
+ "syn",
2076
+ "wasm-bindgen-shared",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "wasm-bindgen-macro"
2081
+ version = "0.2.83"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
2084
+ dependencies = [
2085
+ "quote",
2086
+ "wasm-bindgen-macro-support",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "wasm-bindgen-macro-support"
2091
+ version = "0.2.83"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
2094
+ dependencies = [
2095
+ "proc-macro2",
2096
+ "quote",
2097
+ "syn",
2098
+ "wasm-bindgen-backend",
2099
+ "wasm-bindgen-shared",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "wasm-bindgen-shared"
2104
+ version = "0.2.83"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2107
+
2108
+ [[package]]
2109
+ name = "winapi"
2110
+ version = "0.3.9"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2113
+ dependencies = [
2114
+ "winapi-i686-pc-windows-gnu",
2115
+ "winapi-x86_64-pc-windows-gnu",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "winapi-i686-pc-windows-gnu"
2120
+ version = "0.4.0"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2123
+
2124
+ [[package]]
2125
+ name = "winapi-util"
2126
+ version = "0.1.5"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2129
+ dependencies = [
2130
+ "winapi",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "winapi-x86_64-pc-windows-gnu"
2135
+ version = "0.4.0"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2138
+
2139
+ [[package]]
2140
+ name = "windows-sys"
2141
+ version = "0.42.0"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2144
+ dependencies = [
2145
+ "windows_aarch64_gnullvm",
2146
+ "windows_aarch64_msvc",
2147
+ "windows_i686_gnu",
2148
+ "windows_i686_msvc",
2149
+ "windows_x86_64_gnu",
2150
+ "windows_x86_64_gnullvm",
2151
+ "windows_x86_64_msvc",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "windows_aarch64_gnullvm"
2156
+ version = "0.42.1"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
2159
+
2160
+ [[package]]
2161
+ name = "windows_aarch64_msvc"
2162
+ version = "0.42.1"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
2165
+
2166
+ [[package]]
2167
+ name = "windows_i686_gnu"
2168
+ version = "0.42.1"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
2171
+
2172
+ [[package]]
2173
+ name = "windows_i686_msvc"
2174
+ version = "0.42.1"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
2177
+
2178
+ [[package]]
2179
+ name = "windows_x86_64_gnu"
2180
+ version = "0.42.1"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
2183
+
2184
+ [[package]]
2185
+ name = "windows_x86_64_gnullvm"
2186
+ version = "0.42.1"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
2189
+
2190
+ [[package]]
2191
+ name = "windows_x86_64_msvc"
2192
+ version = "0.42.1"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
2195
+
2196
+ [[package]]
2197
+ name = "xxhash-rust"
2198
+ version = "0.8.6"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"
2201
+
2202
+ [[package]]
2203
+ name = "zstd"
2204
+ version = "0.11.2+zstd.1.5.2"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2207
+ dependencies = [
2208
+ "zstd-safe",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "zstd-safe"
2213
+ version = "5.0.2+zstd.1.5.2"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2216
+ dependencies = [
2217
+ "libc",
2218
+ "zstd-sys",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "zstd-sys"
2223
+ version = "2.0.5+zstd.1.5.2"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "edc50ffce891ad571e9f9afe5039c4837bede781ac4bb13052ed7ae695518596"
2226
+ dependencies = [
2227
+ "cc",
2228
+ "libc",
2229
+ "pkg-config",
2230
+ ]