polars-df 0.3.1-x86_64-darwin → 0.5.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -1
- data/Cargo.lock +486 -380
- data/Cargo.toml +0 -2
- data/LICENSE-THIRD-PARTY.txt +6761 -7881
- data/README.md +31 -2
- data/lib/polars/3.0/polars.bundle +0 -0
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/batched_csv_reader.rb +1 -1
- data/lib/polars/binary_expr.rb +77 -0
- data/lib/polars/binary_name_space.rb +66 -0
- data/lib/polars/convert.rb +2 -2
- data/lib/polars/data_frame.rb +263 -87
- data/lib/polars/data_types.rb +6 -4
- data/lib/polars/date_time_expr.rb +148 -8
- data/lib/polars/expr.rb +78 -11
- data/lib/polars/io.rb +73 -62
- data/lib/polars/lazy_frame.rb +107 -10
- data/lib/polars/lazy_functions.rb +7 -3
- data/lib/polars/list_expr.rb +70 -21
- data/lib/polars/list_name_space.rb +2 -2
- data/lib/polars/series.rb +190 -74
- data/lib/polars/string_expr.rb +150 -44
- data/lib/polars/string_name_space.rb +4 -4
- data/lib/polars/struct_name_space.rb +32 -0
- data/lib/polars/utils.rb +51 -9
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +4 -2
- metadata +4 -2
data/Cargo.lock
CHANGED
@@ -28,9 +28,9 @@ dependencies = [
|
|
28
28
|
|
29
29
|
[[package]]
|
30
30
|
name = "aho-corasick"
|
31
|
-
version = "0.
|
31
|
+
version = "1.0.1"
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "
|
33
|
+
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
|
34
34
|
dependencies = [
|
35
35
|
"memchr",
|
36
36
|
]
|
@@ -60,10 +60,13 @@ dependencies = [
|
|
60
60
|
]
|
61
61
|
|
62
62
|
[[package]]
|
63
|
-
name = "
|
64
|
-
version = "
|
63
|
+
name = "argminmax"
|
64
|
+
version = "0.6.1"
|
65
65
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
-
checksum = "
|
66
|
+
checksum = "202108b46429b765ef483f8a24d5c46f48c14acfdacc086dd4ab6dddf6bcdbd2"
|
67
|
+
dependencies = [
|
68
|
+
"num-traits",
|
69
|
+
]
|
67
70
|
|
68
71
|
[[package]]
|
69
72
|
name = "array-init-cursor"
|
@@ -83,22 +86,24 @@ dependencies = [
|
|
83
86
|
|
84
87
|
[[package]]
|
85
88
|
name = "arrow2"
|
86
|
-
version = "0.
|
87
|
-
source = "
|
89
|
+
version = "0.17.1"
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
+
checksum = "a0f73029049896b3d70ba17756afef171ceef3569016cfa9dbca58d29e0e16f9"
|
88
92
|
dependencies = [
|
89
93
|
"ahash",
|
90
94
|
"arrow-format",
|
91
95
|
"avro-schema",
|
92
|
-
"base64
|
96
|
+
"base64",
|
93
97
|
"bytemuck",
|
94
98
|
"chrono",
|
95
|
-
"chrono-tz
|
99
|
+
"chrono-tz",
|
96
100
|
"dyn-clone",
|
97
101
|
"either",
|
98
102
|
"ethnum",
|
99
103
|
"fallible-streaming-iterator",
|
100
104
|
"foreign_vec",
|
101
105
|
"futures",
|
106
|
+
"getrandom",
|
102
107
|
"hash_hasher",
|
103
108
|
"indexmap",
|
104
109
|
"json-deserializer",
|
@@ -107,6 +112,8 @@ dependencies = [
|
|
107
112
|
"multiversion",
|
108
113
|
"num-traits",
|
109
114
|
"parquet2",
|
115
|
+
"regex",
|
116
|
+
"regex-syntax 0.6.29",
|
110
117
|
"rustc_version",
|
111
118
|
"simdutf8",
|
112
119
|
"streaming-iterator",
|
@@ -116,34 +123,44 @@ dependencies = [
|
|
116
123
|
|
117
124
|
[[package]]
|
118
125
|
name = "async-stream"
|
119
|
-
version = "0.3.
|
126
|
+
version = "0.3.5"
|
120
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
121
|
-
checksum = "
|
128
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
122
129
|
dependencies = [
|
123
130
|
"async-stream-impl",
|
124
131
|
"futures-core",
|
132
|
+
"pin-project-lite",
|
125
133
|
]
|
126
134
|
|
127
135
|
[[package]]
|
128
136
|
name = "async-stream-impl"
|
129
|
-
version = "0.3.
|
137
|
+
version = "0.3.5"
|
130
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
139
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
132
140
|
dependencies = [
|
133
141
|
"proc-macro2",
|
134
142
|
"quote",
|
135
|
-
"syn",
|
143
|
+
"syn 2.0.15",
|
136
144
|
]
|
137
145
|
|
138
146
|
[[package]]
|
139
147
|
name = "async-trait"
|
140
|
-
version = "0.1.
|
148
|
+
version = "0.1.68"
|
141
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
|
-
checksum = "
|
150
|
+
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
|
143
151
|
dependencies = [
|
144
152
|
"proc-macro2",
|
145
153
|
"quote",
|
146
|
-
"syn",
|
154
|
+
"syn 2.0.15",
|
155
|
+
]
|
156
|
+
|
157
|
+
[[package]]
|
158
|
+
name = "atoi"
|
159
|
+
version = "2.0.0"
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
162
|
+
dependencies = [
|
163
|
+
"num-traits",
|
147
164
|
]
|
148
165
|
|
149
166
|
[[package]]
|
@@ -166,12 +183,6 @@ dependencies = [
|
|
166
183
|
"snap",
|
167
184
|
]
|
168
185
|
|
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
186
|
[[package]]
|
176
187
|
name = "base64"
|
177
188
|
version = "0.21.0"
|
@@ -226,28 +237,28 @@ dependencies = [
|
|
226
237
|
|
227
238
|
[[package]]
|
228
239
|
name = "bumpalo"
|
229
|
-
version = "3.12.
|
240
|
+
version = "3.12.1"
|
230
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
-
checksum = "
|
242
|
+
checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8"
|
232
243
|
|
233
244
|
[[package]]
|
234
245
|
name = "bytemuck"
|
235
|
-
version = "1.13.
|
246
|
+
version = "1.13.1"
|
236
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
-
checksum = "
|
248
|
+
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
238
249
|
dependencies = [
|
239
250
|
"bytemuck_derive",
|
240
251
|
]
|
241
252
|
|
242
253
|
[[package]]
|
243
254
|
name = "bytemuck_derive"
|
244
|
-
version = "1.4.
|
255
|
+
version = "1.4.1"
|
245
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
-
checksum = "
|
257
|
+
checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192"
|
247
258
|
dependencies = [
|
248
259
|
"proc-macro2",
|
249
260
|
"quote",
|
250
|
-
"syn",
|
261
|
+
"syn 2.0.15",
|
251
262
|
]
|
252
263
|
|
253
264
|
[[package]]
|
@@ -282,14 +293,15 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
282
293
|
|
283
294
|
[[package]]
|
284
295
|
name = "chrono"
|
285
|
-
version = "0.4.
|
296
|
+
version = "0.4.24"
|
286
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
-
checksum = "
|
298
|
+
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
|
288
299
|
dependencies = [
|
289
300
|
"iana-time-zone",
|
290
301
|
"js-sys",
|
291
302
|
"num-integer",
|
292
303
|
"num-traits",
|
304
|
+
"serde",
|
293
305
|
"time",
|
294
306
|
"wasm-bindgen",
|
295
307
|
"winapi",
|
@@ -297,37 +309,15 @@ dependencies = [
|
|
297
309
|
|
298
310
|
[[package]]
|
299
311
|
name = "chrono-tz"
|
300
|
-
version = "0.
|
301
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
-
checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
|
303
|
-
dependencies = [
|
304
|
-
"chrono",
|
305
|
-
"chrono-tz-build 0.0.3",
|
306
|
-
"phf",
|
307
|
-
]
|
308
|
-
|
309
|
-
[[package]]
|
310
|
-
name = "chrono-tz"
|
311
|
-
version = "0.8.1"
|
312
|
+
version = "0.8.2"
|
312
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
313
|
-
checksum = "
|
314
|
+
checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
|
314
315
|
dependencies = [
|
315
316
|
"chrono",
|
316
|
-
"chrono-tz-build
|
317
|
+
"chrono-tz-build",
|
317
318
|
"phf",
|
318
319
|
]
|
319
320
|
|
320
|
-
[[package]]
|
321
|
-
name = "chrono-tz-build"
|
322
|
-
version = "0.0.3"
|
323
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
324
|
-
checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
|
325
|
-
dependencies = [
|
326
|
-
"parse-zoneinfo",
|
327
|
-
"phf",
|
328
|
-
"phf_codegen",
|
329
|
-
]
|
330
|
-
|
331
321
|
[[package]]
|
332
322
|
name = "chrono-tz-build"
|
333
323
|
version = "0.1.0"
|
@@ -341,9 +331,9 @@ dependencies = [
|
|
341
331
|
|
342
332
|
[[package]]
|
343
333
|
name = "clang-sys"
|
344
|
-
version = "1.
|
334
|
+
version = "1.6.1"
|
345
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
346
|
-
checksum = "
|
336
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
347
337
|
dependencies = [
|
348
338
|
"glob",
|
349
339
|
"libc",
|
@@ -374,9 +364,9 @@ dependencies = [
|
|
374
364
|
|
375
365
|
[[package]]
|
376
366
|
name = "core-foundation-sys"
|
377
|
-
version = "0.8.
|
367
|
+
version = "0.8.4"
|
378
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
-
checksum = "
|
369
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
380
370
|
|
381
371
|
[[package]]
|
382
372
|
name = "crc"
|
@@ -404,9 +394,9 @@ dependencies = [
|
|
404
394
|
|
405
395
|
[[package]]
|
406
396
|
name = "crossbeam-channel"
|
407
|
-
version = "0.5.
|
397
|
+
version = "0.5.8"
|
408
398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
-
checksum = "
|
399
|
+
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
410
400
|
dependencies = [
|
411
401
|
"cfg-if",
|
412
402
|
"crossbeam-utils",
|
@@ -414,9 +404,9 @@ dependencies = [
|
|
414
404
|
|
415
405
|
[[package]]
|
416
406
|
name = "crossbeam-deque"
|
417
|
-
version = "0.8.
|
407
|
+
version = "0.8.3"
|
418
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
-
checksum = "
|
409
|
+
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
420
410
|
dependencies = [
|
421
411
|
"cfg-if",
|
422
412
|
"crossbeam-epoch",
|
@@ -425,9 +415,9 @@ dependencies = [
|
|
425
415
|
|
426
416
|
[[package]]
|
427
417
|
name = "crossbeam-epoch"
|
428
|
-
version = "0.9.
|
418
|
+
version = "0.9.14"
|
429
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
-
checksum = "
|
420
|
+
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
|
431
421
|
dependencies = [
|
432
422
|
"autocfg",
|
433
423
|
"cfg-if",
|
@@ -436,11 +426,21 @@ dependencies = [
|
|
436
426
|
"scopeguard",
|
437
427
|
]
|
438
428
|
|
429
|
+
[[package]]
|
430
|
+
name = "crossbeam-queue"
|
431
|
+
version = "0.3.8"
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
+
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
|
434
|
+
dependencies = [
|
435
|
+
"cfg-if",
|
436
|
+
"crossbeam-utils",
|
437
|
+
]
|
438
|
+
|
439
439
|
[[package]]
|
440
440
|
name = "crossbeam-utils"
|
441
|
-
version = "0.8.
|
441
|
+
version = "0.8.15"
|
442
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "
|
443
|
+
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
444
444
|
dependencies = [
|
445
445
|
"cfg-if",
|
446
446
|
]
|
@@ -472,9 +472,9 @@ dependencies = [
|
|
472
472
|
|
473
473
|
[[package]]
|
474
474
|
name = "cxx"
|
475
|
-
version = "1.0.
|
475
|
+
version = "1.0.94"
|
476
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
-
checksum = "
|
477
|
+
checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
|
478
478
|
dependencies = [
|
479
479
|
"cc",
|
480
480
|
"cxxbridge-flags",
|
@@ -484,9 +484,9 @@ dependencies = [
|
|
484
484
|
|
485
485
|
[[package]]
|
486
486
|
name = "cxx-build"
|
487
|
-
version = "1.0.
|
487
|
+
version = "1.0.94"
|
488
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "
|
489
|
+
checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
|
490
490
|
dependencies = [
|
491
491
|
"cc",
|
492
492
|
"codespan-reporting",
|
@@ -494,51 +494,31 @@ dependencies = [
|
|
494
494
|
"proc-macro2",
|
495
495
|
"quote",
|
496
496
|
"scratch",
|
497
|
-
"syn",
|
497
|
+
"syn 2.0.15",
|
498
498
|
]
|
499
499
|
|
500
500
|
[[package]]
|
501
501
|
name = "cxxbridge-flags"
|
502
|
-
version = "1.0.
|
502
|
+
version = "1.0.94"
|
503
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
-
checksum = "
|
504
|
+
checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
|
505
505
|
|
506
506
|
[[package]]
|
507
507
|
name = "cxxbridge-macro"
|
508
|
-
version = "1.0.
|
508
|
+
version = "1.0.94"
|
509
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "
|
510
|
+
checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
511
511
|
dependencies = [
|
512
512
|
"proc-macro2",
|
513
513
|
"quote",
|
514
|
-
"syn",
|
515
|
-
]
|
516
|
-
|
517
|
-
[[package]]
|
518
|
-
name = "dirs"
|
519
|
-
version = "4.0.0"
|
520
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
521
|
-
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
522
|
-
dependencies = [
|
523
|
-
"dirs-sys",
|
524
|
-
]
|
525
|
-
|
526
|
-
[[package]]
|
527
|
-
name = "dirs-sys"
|
528
|
-
version = "0.3.7"
|
529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
530
|
-
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
531
|
-
dependencies = [
|
532
|
-
"libc",
|
533
|
-
"redox_users",
|
534
|
-
"winapi",
|
514
|
+
"syn 2.0.15",
|
535
515
|
]
|
536
516
|
|
537
517
|
[[package]]
|
538
518
|
name = "dyn-clone"
|
539
|
-
version = "1.0.
|
519
|
+
version = "1.0.11"
|
540
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
|
-
checksum = "
|
521
|
+
checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
|
542
522
|
|
543
523
|
[[package]]
|
544
524
|
name = "either"
|
@@ -555,7 +535,7 @@ dependencies = [
|
|
555
535
|
"once_cell",
|
556
536
|
"proc-macro2",
|
557
537
|
"quote",
|
558
|
-
"syn",
|
538
|
+
"syn 1.0.109",
|
559
539
|
]
|
560
540
|
|
561
541
|
[[package]]
|
@@ -570,11 +550,17 @@ version = "0.1.9"
|
|
570
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
551
|
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
572
552
|
|
553
|
+
[[package]]
|
554
|
+
name = "fast-float"
|
555
|
+
version = "0.2.0"
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
+
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
558
|
+
|
573
559
|
[[package]]
|
574
560
|
name = "flate2"
|
575
|
-
version = "1.0.
|
561
|
+
version = "1.0.26"
|
576
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
-
checksum = "
|
563
|
+
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
|
578
564
|
dependencies = [
|
579
565
|
"crc32fast",
|
580
566
|
"miniz_oxide",
|
@@ -597,9 +583,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
597
583
|
|
598
584
|
[[package]]
|
599
585
|
name = "futures"
|
600
|
-
version = "0.3.
|
586
|
+
version = "0.3.28"
|
601
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
-
checksum = "
|
588
|
+
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
603
589
|
dependencies = [
|
604
590
|
"futures-channel",
|
605
591
|
"futures-core",
|
@@ -612,9 +598,9 @@ dependencies = [
|
|
612
598
|
|
613
599
|
[[package]]
|
614
600
|
name = "futures-channel"
|
615
|
-
version = "0.3.
|
601
|
+
version = "0.3.28"
|
616
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
-
checksum = "
|
603
|
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
618
604
|
dependencies = [
|
619
605
|
"futures-core",
|
620
606
|
"futures-sink",
|
@@ -622,15 +608,15 @@ dependencies = [
|
|
622
608
|
|
623
609
|
[[package]]
|
624
610
|
name = "futures-core"
|
625
|
-
version = "0.3.
|
611
|
+
version = "0.3.28"
|
626
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
627
|
-
checksum = "
|
613
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
628
614
|
|
629
615
|
[[package]]
|
630
616
|
name = "futures-executor"
|
631
|
-
version = "0.3.
|
617
|
+
version = "0.3.28"
|
632
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
-
checksum = "
|
619
|
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
634
620
|
dependencies = [
|
635
621
|
"futures-core",
|
636
622
|
"futures-task",
|
@@ -639,38 +625,38 @@ dependencies = [
|
|
639
625
|
|
640
626
|
[[package]]
|
641
627
|
name = "futures-io"
|
642
|
-
version = "0.3.
|
628
|
+
version = "0.3.28"
|
643
629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
644
|
-
checksum = "
|
630
|
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
645
631
|
|
646
632
|
[[package]]
|
647
633
|
name = "futures-macro"
|
648
|
-
version = "0.3.
|
634
|
+
version = "0.3.28"
|
649
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
-
checksum = "
|
636
|
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
651
637
|
dependencies = [
|
652
638
|
"proc-macro2",
|
653
639
|
"quote",
|
654
|
-
"syn",
|
640
|
+
"syn 2.0.15",
|
655
641
|
]
|
656
642
|
|
657
643
|
[[package]]
|
658
644
|
name = "futures-sink"
|
659
|
-
version = "0.3.
|
645
|
+
version = "0.3.28"
|
660
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
-
checksum = "
|
647
|
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
662
648
|
|
663
649
|
[[package]]
|
664
650
|
name = "futures-task"
|
665
|
-
version = "0.3.
|
651
|
+
version = "0.3.28"
|
666
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
-
checksum = "
|
653
|
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
668
654
|
|
669
655
|
[[package]]
|
670
656
|
name = "futures-util"
|
671
|
-
version = "0.3.
|
657
|
+
version = "0.3.28"
|
672
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
-
checksum = "
|
659
|
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
674
660
|
dependencies = [
|
675
661
|
"futures-channel",
|
676
662
|
"futures-core",
|
@@ -686,9 +672,9 @@ dependencies = [
|
|
686
672
|
|
687
673
|
[[package]]
|
688
674
|
name = "getrandom"
|
689
|
-
version = "0.2.
|
675
|
+
version = "0.2.9"
|
690
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
-
checksum = "
|
677
|
+
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
|
692
678
|
dependencies = [
|
693
679
|
"cfg-if",
|
694
680
|
"js-sys",
|
@@ -705,8 +691,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
705
691
|
|
706
692
|
[[package]]
|
707
693
|
name = "halfbrown"
|
708
|
-
version = "0.1
|
709
|
-
source = "
|
694
|
+
version = "0.2.1"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "6d9ab7d9233262d3b74ae4c4a7a090fc4379b07c6eb9b02ecab7cbb12ad67a58"
|
710
697
|
dependencies = [
|
711
698
|
"hashbrown 0.13.2",
|
712
699
|
"rustc-hash",
|
@@ -756,18 +743,27 @@ version = "0.4.3"
|
|
756
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
757
744
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
758
745
|
|
746
|
+
[[package]]
|
747
|
+
name = "home"
|
748
|
+
version = "0.5.5"
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
750
|
+
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
751
|
+
dependencies = [
|
752
|
+
"windows-sys 0.48.0",
|
753
|
+
]
|
754
|
+
|
759
755
|
[[package]]
|
760
756
|
name = "iana-time-zone"
|
761
|
-
version = "0.1.
|
757
|
+
version = "0.1.56"
|
762
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
763
|
-
checksum = "
|
759
|
+
checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
|
764
760
|
dependencies = [
|
765
761
|
"android_system_properties",
|
766
762
|
"core-foundation-sys",
|
767
763
|
"iana-time-zone-haiku",
|
768
764
|
"js-sys",
|
769
765
|
"wasm-bindgen",
|
770
|
-
"
|
766
|
+
"windows",
|
771
767
|
]
|
772
768
|
|
773
769
|
[[package]]
|
@@ -782,9 +778,9 @@ dependencies = [
|
|
782
778
|
|
783
779
|
[[package]]
|
784
780
|
name = "indexmap"
|
785
|
-
version = "1.9.
|
781
|
+
version = "1.9.3"
|
786
782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
787
|
-
checksum = "
|
783
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
788
784
|
dependencies = [
|
789
785
|
"autocfg",
|
790
786
|
"hashbrown 0.12.3",
|
@@ -802,9 +798,15 @@ dependencies = [
|
|
802
798
|
|
803
799
|
[[package]]
|
804
800
|
name = "itoa"
|
805
|
-
version = "1.0.
|
801
|
+
version = "1.0.6"
|
806
802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
-
checksum = "
|
803
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
804
|
+
|
805
|
+
[[package]]
|
806
|
+
name = "itoap"
|
807
|
+
version = "1.0.1"
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
+
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
808
810
|
|
809
811
|
[[package]]
|
810
812
|
name = "jemalloc-sys"
|
@@ -828,9 +830,9 @@ dependencies = [
|
|
828
830
|
|
829
831
|
[[package]]
|
830
832
|
name = "jobserver"
|
831
|
-
version = "0.1.
|
833
|
+
version = "0.1.26"
|
832
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
833
|
-
checksum = "
|
835
|
+
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
|
834
836
|
dependencies = [
|
835
837
|
"libc",
|
836
838
|
]
|
@@ -950,15 +952,15 @@ dependencies = [
|
|
950
952
|
|
951
953
|
[[package]]
|
952
954
|
name = "libc"
|
953
|
-
version = "0.2.
|
955
|
+
version = "0.2.144"
|
954
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
955
|
-
checksum = "
|
957
|
+
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
|
956
958
|
|
957
959
|
[[package]]
|
958
960
|
name = "libflate"
|
959
|
-
version = "1.
|
961
|
+
version = "1.3.0"
|
960
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
-
checksum = "
|
963
|
+
checksum = "97822bf791bd4d5b403713886a5fbe8bf49520fe78e323b0dc480ca1a03e50b0"
|
962
964
|
dependencies = [
|
963
965
|
"adler32",
|
964
966
|
"crc32fast",
|
@@ -967,9 +969,9 @@ dependencies = [
|
|
967
969
|
|
968
970
|
[[package]]
|
969
971
|
name = "libflate_lz77"
|
970
|
-
version = "1.
|
972
|
+
version = "1.2.0"
|
971
973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
972
|
-
checksum = "
|
974
|
+
checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf"
|
973
975
|
dependencies = [
|
974
976
|
"rle-decode-fast",
|
975
977
|
]
|
@@ -992,9 +994,9 @@ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
|
|
992
994
|
|
993
995
|
[[package]]
|
994
996
|
name = "libmimalloc-sys"
|
995
|
-
version = "0.1.
|
997
|
+
version = "0.1.33"
|
996
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
999
|
+
checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e"
|
998
1000
|
dependencies = [
|
999
1001
|
"cc",
|
1000
1002
|
"libc",
|
@@ -1050,9 +1052,9 @@ dependencies = [
|
|
1050
1052
|
|
1051
1053
|
[[package]]
|
1052
1054
|
name = "magnus"
|
1053
|
-
version = "0.5.
|
1055
|
+
version = "0.5.3"
|
1054
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
-
checksum = "
|
1057
|
+
checksum = "c8dc14463c2552e753ef562961f486ca76f17a857c121db40e9f3ade3f35ab81"
|
1056
1058
|
dependencies = [
|
1057
1059
|
"magnus-macros",
|
1058
1060
|
"rb-sys",
|
@@ -1061,13 +1063,13 @@ dependencies = [
|
|
1061
1063
|
|
1062
1064
|
[[package]]
|
1063
1065
|
name = "magnus-macros"
|
1064
|
-
version = "0.4.
|
1066
|
+
version = "0.4.1"
|
1065
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1066
|
-
checksum = "
|
1068
|
+
checksum = "6cc17af1d45442c011aa579d727ec6cff8a69aea8a6bbad26736e7112d749bfb"
|
1067
1069
|
dependencies = [
|
1068
1070
|
"proc-macro2",
|
1069
1071
|
"quote",
|
1070
|
-
"syn",
|
1072
|
+
"syn 1.0.109",
|
1071
1073
|
]
|
1072
1074
|
|
1073
1075
|
[[package]]
|
@@ -1078,27 +1080,27 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
1078
1080
|
|
1079
1081
|
[[package]]
|
1080
1082
|
name = "memmap2"
|
1081
|
-
version = "0.5.
|
1083
|
+
version = "0.5.10"
|
1082
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
-
checksum = "
|
1085
|
+
checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
|
1084
1086
|
dependencies = [
|
1085
1087
|
"libc",
|
1086
1088
|
]
|
1087
1089
|
|
1088
1090
|
[[package]]
|
1089
1091
|
name = "memoffset"
|
1090
|
-
version = "0.
|
1092
|
+
version = "0.8.0"
|
1091
1093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1094
|
+
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
1093
1095
|
dependencies = [
|
1094
1096
|
"autocfg",
|
1095
1097
|
]
|
1096
1098
|
|
1097
1099
|
[[package]]
|
1098
1100
|
name = "mimalloc"
|
1099
|
-
version = "0.1.
|
1101
|
+
version = "0.1.37"
|
1100
1102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
-
checksum = "
|
1103
|
+
checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98"
|
1102
1104
|
dependencies = [
|
1103
1105
|
"libmimalloc-sys",
|
1104
1106
|
]
|
@@ -1111,43 +1113,45 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1111
1113
|
|
1112
1114
|
[[package]]
|
1113
1115
|
name = "miniz_oxide"
|
1114
|
-
version = "0.
|
1116
|
+
version = "0.7.1"
|
1115
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1116
|
-
checksum = "
|
1118
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1117
1119
|
dependencies = [
|
1118
1120
|
"adler",
|
1119
1121
|
]
|
1120
1122
|
|
1121
1123
|
[[package]]
|
1122
1124
|
name = "mio"
|
1123
|
-
version = "0.8.
|
1125
|
+
version = "0.8.6"
|
1124
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
-
checksum = "
|
1127
|
+
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
|
1126
1128
|
dependencies = [
|
1127
1129
|
"libc",
|
1128
1130
|
"log",
|
1129
1131
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1130
|
-
"windows-sys 0.
|
1132
|
+
"windows-sys 0.45.0",
|
1131
1133
|
]
|
1132
1134
|
|
1133
1135
|
[[package]]
|
1134
1136
|
name = "multiversion"
|
1135
|
-
version = "0.
|
1137
|
+
version = "0.7.1"
|
1136
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
-
checksum = "
|
1139
|
+
checksum = "e6a87eede2251ca235e5573086d01d2ab6b59dfaea54c2be10f9320980f7e8f7"
|
1138
1140
|
dependencies = [
|
1139
1141
|
"multiversion-macros",
|
1142
|
+
"target-features",
|
1140
1143
|
]
|
1141
1144
|
|
1142
1145
|
[[package]]
|
1143
1146
|
name = "multiversion-macros"
|
1144
|
-
version = "0.
|
1147
|
+
version = "0.7.1"
|
1145
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "
|
1149
|
+
checksum = "1af1abf82261d780d114014eff4b555e47d823f3b84f893c4388572b40e089fb"
|
1147
1150
|
dependencies = [
|
1148
1151
|
"proc-macro2",
|
1149
1152
|
"quote",
|
1150
|
-
"syn",
|
1153
|
+
"syn 1.0.109",
|
1154
|
+
"target-features",
|
1151
1155
|
]
|
1152
1156
|
|
1153
1157
|
[[package]]
|
@@ -1171,47 +1175,13 @@ dependencies = [
|
|
1171
1175
|
|
1172
1176
|
[[package]]
|
1173
1177
|
name = "ntapi"
|
1174
|
-
version = "0.4.
|
1178
|
+
version = "0.4.1"
|
1175
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1176
|
-
checksum = "
|
1180
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
1177
1181
|
dependencies = [
|
1178
1182
|
"winapi",
|
1179
1183
|
]
|
1180
1184
|
|
1181
|
-
[[package]]
|
1182
|
-
name = "num"
|
1183
|
-
version = "0.4.0"
|
1184
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1185
|
-
checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
|
1186
|
-
dependencies = [
|
1187
|
-
"num-bigint",
|
1188
|
-
"num-complex",
|
1189
|
-
"num-integer",
|
1190
|
-
"num-iter",
|
1191
|
-
"num-rational",
|
1192
|
-
"num-traits",
|
1193
|
-
]
|
1194
|
-
|
1195
|
-
[[package]]
|
1196
|
-
name = "num-bigint"
|
1197
|
-
version = "0.4.3"
|
1198
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
-
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
|
1200
|
-
dependencies = [
|
1201
|
-
"autocfg",
|
1202
|
-
"num-integer",
|
1203
|
-
"num-traits",
|
1204
|
-
]
|
1205
|
-
|
1206
|
-
[[package]]
|
1207
|
-
name = "num-complex"
|
1208
|
-
version = "0.4.3"
|
1209
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1210
|
-
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
|
1211
|
-
dependencies = [
|
1212
|
-
"num-traits",
|
1213
|
-
]
|
1214
|
-
|
1215
1185
|
[[package]]
|
1216
1186
|
name = "num-integer"
|
1217
1187
|
version = "0.1.45"
|
@@ -1222,29 +1192,6 @@ dependencies = [
|
|
1222
1192
|
"num-traits",
|
1223
1193
|
]
|
1224
1194
|
|
1225
|
-
[[package]]
|
1226
|
-
name = "num-iter"
|
1227
|
-
version = "0.1.43"
|
1228
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1229
|
-
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
1230
|
-
dependencies = [
|
1231
|
-
"autocfg",
|
1232
|
-
"num-integer",
|
1233
|
-
"num-traits",
|
1234
|
-
]
|
1235
|
-
|
1236
|
-
[[package]]
|
1237
|
-
name = "num-rational"
|
1238
|
-
version = "0.4.1"
|
1239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
-
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
1241
|
-
dependencies = [
|
1242
|
-
"autocfg",
|
1243
|
-
"num-bigint",
|
1244
|
-
"num-integer",
|
1245
|
-
"num-traits",
|
1246
|
-
]
|
1247
|
-
|
1248
1195
|
[[package]]
|
1249
1196
|
name = "num-traits"
|
1250
1197
|
version = "0.2.15"
|
@@ -1267,9 +1214,9 @@ dependencies = [
|
|
1267
1214
|
|
1268
1215
|
[[package]]
|
1269
1216
|
name = "once_cell"
|
1270
|
-
version = "1.17.
|
1217
|
+
version = "1.17.1"
|
1271
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "
|
1219
|
+
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
1273
1220
|
|
1274
1221
|
[[package]]
|
1275
1222
|
name = "parking_lot"
|
@@ -1331,9 +1278,9 @@ dependencies = [
|
|
1331
1278
|
|
1332
1279
|
[[package]]
|
1333
1280
|
name = "parquet2"
|
1334
|
-
version = "0.17.
|
1281
|
+
version = "0.17.2"
|
1335
1282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1336
|
-
checksum = "
|
1283
|
+
checksum = "579fe5745f02cef3d5f236bfed216fd4693e49e4e920a13475c6132233283bce"
|
1337
1284
|
dependencies = [
|
1338
1285
|
"async-stream",
|
1339
1286
|
"brotli",
|
@@ -1398,7 +1345,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
1345
|
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
|
1399
1346
|
dependencies = [
|
1400
1347
|
"siphasher",
|
1401
|
-
"uncased",
|
1402
1348
|
]
|
1403
1349
|
|
1404
1350
|
[[package]]
|
@@ -1415,9 +1361,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1415
1361
|
|
1416
1362
|
[[package]]
|
1417
1363
|
name = "pkg-config"
|
1418
|
-
version = "0.3.
|
1364
|
+
version = "0.3.27"
|
1419
1365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1420
|
-
checksum = "
|
1366
|
+
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
1421
1367
|
|
1422
1368
|
[[package]]
|
1423
1369
|
name = "planus"
|
@@ -1430,65 +1376,72 @@ dependencies = [
|
|
1430
1376
|
|
1431
1377
|
[[package]]
|
1432
1378
|
name = "polars"
|
1433
|
-
version = "0.
|
1379
|
+
version = "0.5.0"
|
1434
1380
|
dependencies = [
|
1435
1381
|
"ahash",
|
1436
1382
|
"jemallocator",
|
1437
1383
|
"magnus",
|
1438
1384
|
"mimalloc",
|
1439
|
-
"polars 0.
|
1385
|
+
"polars 0.29.0",
|
1440
1386
|
"polars-core",
|
1441
1387
|
"serde_json",
|
1388
|
+
"smartstring",
|
1442
1389
|
]
|
1443
1390
|
|
1444
1391
|
[[package]]
|
1445
1392
|
name = "polars"
|
1446
|
-
version = "0.
|
1393
|
+
version = "0.29.0"
|
1447
1394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1448
|
-
checksum = "
|
1395
|
+
checksum = "aa52642dac73150dcb6ccea276344b2f3c671912b78187ef917e236010ff72ea"
|
1449
1396
|
dependencies = [
|
1450
1397
|
"getrandom",
|
1451
1398
|
"polars-core",
|
1452
1399
|
"polars-io",
|
1453
1400
|
"polars-lazy",
|
1454
1401
|
"polars-ops",
|
1402
|
+
"polars-sql",
|
1455
1403
|
"polars-time",
|
1456
1404
|
"version_check",
|
1457
1405
|
]
|
1458
1406
|
|
1459
1407
|
[[package]]
|
1460
1408
|
name = "polars-arrow"
|
1461
|
-
version = "0.
|
1409
|
+
version = "0.29.0"
|
1462
1410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1463
|
-
checksum = "
|
1411
|
+
checksum = "3d2402d68b447ece4afca6bcac435ff0aa82d70d41c9dd3f0ed249396b41ed5b"
|
1464
1412
|
dependencies = [
|
1465
1413
|
"arrow2",
|
1466
1414
|
"chrono",
|
1467
|
-
"chrono-tz
|
1415
|
+
"chrono-tz",
|
1468
1416
|
"hashbrown 0.13.2",
|
1469
|
-
"
|
1417
|
+
"multiversion",
|
1418
|
+
"num-traits",
|
1419
|
+
"polars-error",
|
1470
1420
|
"serde",
|
1471
1421
|
"thiserror",
|
1472
1422
|
]
|
1473
1423
|
|
1474
1424
|
[[package]]
|
1475
1425
|
name = "polars-core"
|
1476
|
-
version = "0.
|
1426
|
+
version = "0.29.0"
|
1477
1427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1478
|
-
checksum = "
|
1428
|
+
checksum = "caa1f5af0505c67333487c1287f29644c172afbab7374e48a77843646064411c"
|
1479
1429
|
dependencies = [
|
1480
1430
|
"ahash",
|
1481
|
-
"anyhow",
|
1482
1431
|
"arrow2",
|
1483
1432
|
"bitflags",
|
1484
1433
|
"chrono",
|
1485
|
-
"chrono-tz
|
1434
|
+
"chrono-tz",
|
1486
1435
|
"comfy-table",
|
1436
|
+
"either",
|
1487
1437
|
"hashbrown 0.13.2",
|
1488
1438
|
"indexmap",
|
1489
|
-
"
|
1439
|
+
"itoap",
|
1440
|
+
"num-traits",
|
1490
1441
|
"once_cell",
|
1491
1442
|
"polars-arrow",
|
1443
|
+
"polars-error",
|
1444
|
+
"polars-row",
|
1492
1445
|
"polars-utils",
|
1493
1446
|
"rand",
|
1494
1447
|
"rand_distr",
|
@@ -1502,27 +1455,41 @@ dependencies = [
|
|
1502
1455
|
"xxhash-rust",
|
1503
1456
|
]
|
1504
1457
|
|
1458
|
+
[[package]]
|
1459
|
+
name = "polars-error"
|
1460
|
+
version = "0.29.0"
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1462
|
+
checksum = "73c760a2564a930a0b139d08045b7f2a3c0c86ce2668710b44561091d8d1e019"
|
1463
|
+
dependencies = [
|
1464
|
+
"arrow2",
|
1465
|
+
"regex",
|
1466
|
+
"thiserror",
|
1467
|
+
]
|
1468
|
+
|
1505
1469
|
[[package]]
|
1506
1470
|
name = "polars-io"
|
1507
|
-
version = "0.
|
1471
|
+
version = "0.29.0"
|
1508
1472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1509
|
-
checksum = "
|
1473
|
+
checksum = "940e27258666c1d5d928d8b086a241a7a77bf04f370883aaf6c57ff2e83e13b8"
|
1510
1474
|
dependencies = [
|
1511
1475
|
"ahash",
|
1512
|
-
"anyhow",
|
1513
1476
|
"arrow2",
|
1477
|
+
"async-trait",
|
1514
1478
|
"bytes",
|
1515
1479
|
"chrono",
|
1516
|
-
"chrono-tz
|
1517
|
-
"
|
1480
|
+
"chrono-tz",
|
1481
|
+
"fast-float",
|
1482
|
+
"futures",
|
1483
|
+
"home",
|
1518
1484
|
"lexical",
|
1519
1485
|
"lexical-core",
|
1520
1486
|
"memchr",
|
1521
1487
|
"memmap2",
|
1522
|
-
"num",
|
1488
|
+
"num-traits",
|
1523
1489
|
"once_cell",
|
1524
1490
|
"polars-arrow",
|
1525
1491
|
"polars-core",
|
1492
|
+
"polars-error",
|
1526
1493
|
"polars-time",
|
1527
1494
|
"polars-utils",
|
1528
1495
|
"rayon",
|
@@ -1531,17 +1498,19 @@ dependencies = [
|
|
1531
1498
|
"serde_json",
|
1532
1499
|
"simd-json",
|
1533
1500
|
"simdutf8",
|
1501
|
+
"tokio",
|
1534
1502
|
]
|
1535
1503
|
|
1536
1504
|
[[package]]
|
1537
1505
|
name = "polars-lazy"
|
1538
|
-
version = "0.
|
1506
|
+
version = "0.29.0"
|
1539
1507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
-
checksum = "
|
1508
|
+
checksum = "e01ffc3402e9ad40f72d7b8baff7f05fcd12ecd8d19596084bfaa76d9c4e540e"
|
1541
1509
|
dependencies = [
|
1542
1510
|
"ahash",
|
1543
1511
|
"bitflags",
|
1544
1512
|
"glob",
|
1513
|
+
"once_cell",
|
1545
1514
|
"polars-arrow",
|
1546
1515
|
"polars-core",
|
1547
1516
|
"polars-io",
|
@@ -1551,16 +1520,19 @@ dependencies = [
|
|
1551
1520
|
"polars-time",
|
1552
1521
|
"polars-utils",
|
1553
1522
|
"rayon",
|
1523
|
+
"smartstring",
|
1554
1524
|
]
|
1555
1525
|
|
1556
1526
|
[[package]]
|
1557
1527
|
name = "polars-ops"
|
1558
|
-
version = "0.
|
1528
|
+
version = "0.29.0"
|
1559
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1560
|
-
checksum = "
|
1530
|
+
checksum = "192e1871522f2c5b1161f7a51432f27389da751132dc3a472ac77ca213186ae1"
|
1561
1531
|
dependencies = [
|
1532
|
+
"argminmax",
|
1562
1533
|
"arrow2",
|
1563
|
-
"base64
|
1534
|
+
"base64",
|
1535
|
+
"either",
|
1564
1536
|
"hex",
|
1565
1537
|
"jsonpath_lib",
|
1566
1538
|
"memchr",
|
@@ -1569,23 +1541,26 @@ dependencies = [
|
|
1569
1541
|
"polars-utils",
|
1570
1542
|
"serde",
|
1571
1543
|
"serde_json",
|
1544
|
+
"smartstring",
|
1572
1545
|
]
|
1573
1546
|
|
1574
1547
|
[[package]]
|
1575
1548
|
name = "polars-pipe"
|
1576
|
-
version = "0.
|
1549
|
+
version = "0.29.0"
|
1577
1550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1578
|
-
checksum = "
|
1551
|
+
checksum = "d523fe77338a05266884210633f7bd372214cf7277cbf1d7f8133ab2a11978d9"
|
1579
1552
|
dependencies = [
|
1580
1553
|
"crossbeam-channel",
|
1554
|
+
"crossbeam-queue",
|
1581
1555
|
"enum_dispatch",
|
1582
1556
|
"hashbrown 0.13.2",
|
1583
|
-
"num",
|
1557
|
+
"num-traits",
|
1584
1558
|
"polars-arrow",
|
1585
1559
|
"polars-core",
|
1586
1560
|
"polars-io",
|
1587
1561
|
"polars-ops",
|
1588
1562
|
"polars-plan",
|
1563
|
+
"polars-row",
|
1589
1564
|
"polars-utils",
|
1590
1565
|
"rayon",
|
1591
1566
|
"smartstring",
|
@@ -1593,11 +1568,14 @@ dependencies = [
|
|
1593
1568
|
|
1594
1569
|
[[package]]
|
1595
1570
|
name = "polars-plan"
|
1596
|
-
version = "0.
|
1571
|
+
version = "0.29.0"
|
1597
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1598
|
-
checksum = "
|
1573
|
+
checksum = "7354206859d61710cf85529609ac39885907618bd8160f24ced92112aa36ada5"
|
1599
1574
|
dependencies = [
|
1600
1575
|
"ahash",
|
1576
|
+
"arrow2",
|
1577
|
+
"chrono",
|
1578
|
+
"chrono-tz",
|
1601
1579
|
"once_cell",
|
1602
1580
|
"polars-arrow",
|
1603
1581
|
"polars-core",
|
@@ -1608,17 +1586,45 @@ dependencies = [
|
|
1608
1586
|
"rayon",
|
1609
1587
|
"regex",
|
1610
1588
|
"serde",
|
1589
|
+
"smartstring",
|
1590
|
+
]
|
1591
|
+
|
1592
|
+
[[package]]
|
1593
|
+
name = "polars-row"
|
1594
|
+
version = "0.29.0"
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
|
+
checksum = "bbe1bda56117570fc1efd79b23fe40ab2375939387c6aaa048d181f0c14fb6b8"
|
1597
|
+
dependencies = [
|
1598
|
+
"arrow2",
|
1599
|
+
"polars-error",
|
1600
|
+
"polars-utils",
|
1601
|
+
]
|
1602
|
+
|
1603
|
+
[[package]]
|
1604
|
+
name = "polars-sql"
|
1605
|
+
version = "0.29.0"
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
+
checksum = "9520f4e3b7c856f2ea1fc3193b8b7232b82c697b7e1e8098b572bbdb7b007292"
|
1608
|
+
dependencies = [
|
1609
|
+
"polars-arrow",
|
1610
|
+
"polars-core",
|
1611
|
+
"polars-lazy",
|
1612
|
+
"polars-plan",
|
1613
|
+
"serde",
|
1614
|
+
"serde_json",
|
1615
|
+
"sqlparser",
|
1611
1616
|
]
|
1612
1617
|
|
1613
1618
|
[[package]]
|
1614
1619
|
name = "polars-time"
|
1615
|
-
version = "0.
|
1620
|
+
version = "0.29.0"
|
1616
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1617
|
-
checksum = "
|
1622
|
+
checksum = "7406b06f575e8c6e9cc28b97112fd37424262f5eacf3cc95c110381c82ad2dfe"
|
1618
1623
|
dependencies = [
|
1624
|
+
"arrow2",
|
1625
|
+
"atoi",
|
1619
1626
|
"chrono",
|
1620
|
-
"chrono-tz
|
1621
|
-
"lexical",
|
1627
|
+
"chrono-tz",
|
1622
1628
|
"now",
|
1623
1629
|
"once_cell",
|
1624
1630
|
"polars-arrow",
|
@@ -1627,16 +1633,18 @@ dependencies = [
|
|
1627
1633
|
"polars-utils",
|
1628
1634
|
"regex",
|
1629
1635
|
"serde",
|
1636
|
+
"smartstring",
|
1630
1637
|
]
|
1631
1638
|
|
1632
1639
|
[[package]]
|
1633
1640
|
name = "polars-utils"
|
1634
|
-
version = "0.
|
1641
|
+
version = "0.29.0"
|
1635
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1636
|
-
checksum = "
|
1643
|
+
checksum = "1719b022df1b19866b3021ca8c4c1acf860b853f5fc17388e91c8f41064974dc"
|
1637
1644
|
dependencies = [
|
1638
1645
|
"once_cell",
|
1639
1646
|
"rayon",
|
1647
|
+
"smartstring",
|
1640
1648
|
"sysinfo",
|
1641
1649
|
]
|
1642
1650
|
|
@@ -1648,18 +1656,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1648
1656
|
|
1649
1657
|
[[package]]
|
1650
1658
|
name = "proc-macro2"
|
1651
|
-
version = "1.0.
|
1659
|
+
version = "1.0.56"
|
1652
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1653
|
-
checksum = "
|
1661
|
+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
1654
1662
|
dependencies = [
|
1655
1663
|
"unicode-ident",
|
1656
1664
|
]
|
1657
1665
|
|
1658
1666
|
[[package]]
|
1659
1667
|
name = "quote"
|
1660
|
-
version = "1.0.
|
1668
|
+
version = "1.0.27"
|
1661
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1662
|
-
checksum = "
|
1670
|
+
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
|
1663
1671
|
dependencies = [
|
1664
1672
|
"proc-macro2",
|
1665
1673
|
]
|
@@ -1706,9 +1714,9 @@ dependencies = [
|
|
1706
1714
|
|
1707
1715
|
[[package]]
|
1708
1716
|
name = "rayon"
|
1709
|
-
version = "1.
|
1717
|
+
version = "1.7.0"
|
1710
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1711
|
-
checksum = "
|
1719
|
+
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
|
1712
1720
|
dependencies = [
|
1713
1721
|
"either",
|
1714
1722
|
"rayon-core",
|
@@ -1716,9 +1724,9 @@ dependencies = [
|
|
1716
1724
|
|
1717
1725
|
[[package]]
|
1718
1726
|
name = "rayon-core"
|
1719
|
-
version = "1.
|
1727
|
+
version = "1.11.0"
|
1720
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1721
|
-
checksum = "
|
1729
|
+
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
|
1722
1730
|
dependencies = [
|
1723
1731
|
"crossbeam-channel",
|
1724
1732
|
"crossbeam-deque",
|
@@ -1728,25 +1736,26 @@ dependencies = [
|
|
1728
1736
|
|
1729
1737
|
[[package]]
|
1730
1738
|
name = "rb-sys"
|
1731
|
-
version = "0.9.
|
1739
|
+
version = "0.9.75"
|
1732
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1733
|
-
checksum = "
|
1741
|
+
checksum = "32ffbc5146796cb118f5a68196fabf1bccfff94c4830dea18aac0690cb29bb87"
|
1734
1742
|
dependencies = [
|
1735
1743
|
"rb-sys-build",
|
1736
1744
|
]
|
1737
1745
|
|
1738
1746
|
[[package]]
|
1739
1747
|
name = "rb-sys-build"
|
1740
|
-
version = "0.9.
|
1748
|
+
version = "0.9.75"
|
1741
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1742
|
-
checksum = "
|
1750
|
+
checksum = "55edd49608668f9d45b7b1d619e6dab24ce8e591bcb912975936314aad94be40"
|
1743
1751
|
dependencies = [
|
1744
1752
|
"bindgen",
|
1745
1753
|
"lazy_static",
|
1754
|
+
"proc-macro2",
|
1746
1755
|
"quote",
|
1747
1756
|
"regex",
|
1748
1757
|
"shell-words",
|
1749
|
-
"syn",
|
1758
|
+
"syn 1.0.109",
|
1750
1759
|
]
|
1751
1760
|
|
1752
1761
|
[[package]]
|
@@ -1764,33 +1773,28 @@ dependencies = [
|
|
1764
1773
|
"bitflags",
|
1765
1774
|
]
|
1766
1775
|
|
1767
|
-
[[package]]
|
1768
|
-
name = "redox_users"
|
1769
|
-
version = "0.4.3"
|
1770
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1771
|
-
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
1772
|
-
dependencies = [
|
1773
|
-
"getrandom",
|
1774
|
-
"redox_syscall",
|
1775
|
-
"thiserror",
|
1776
|
-
]
|
1777
|
-
|
1778
1776
|
[[package]]
|
1779
1777
|
name = "regex"
|
1780
|
-
version = "1.
|
1778
|
+
version = "1.8.1"
|
1781
1779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1782
|
-
checksum = "
|
1780
|
+
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
|
1783
1781
|
dependencies = [
|
1784
1782
|
"aho-corasick",
|
1785
1783
|
"memchr",
|
1786
|
-
"regex-syntax",
|
1784
|
+
"regex-syntax 0.7.1",
|
1787
1785
|
]
|
1788
1786
|
|
1789
1787
|
[[package]]
|
1790
1788
|
name = "regex-syntax"
|
1791
|
-
version = "0.6.
|
1789
|
+
version = "0.6.29"
|
1792
1790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1793
|
-
checksum = "
|
1791
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
1792
|
+
|
1793
|
+
[[package]]
|
1794
|
+
name = "regex-syntax"
|
1795
|
+
version = "0.7.1"
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
+
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
|
1794
1798
|
|
1795
1799
|
[[package]]
|
1796
1800
|
name = "rle-decode-fast"
|
@@ -1815,15 +1819,15 @@ dependencies = [
|
|
1815
1819
|
|
1816
1820
|
[[package]]
|
1817
1821
|
name = "rustversion"
|
1818
|
-
version = "1.0.
|
1822
|
+
version = "1.0.12"
|
1819
1823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1820
|
-
checksum = "
|
1824
|
+
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
|
1821
1825
|
|
1822
1826
|
[[package]]
|
1823
1827
|
name = "ryu"
|
1824
|
-
version = "1.0.
|
1828
|
+
version = "1.0.13"
|
1825
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1826
|
-
checksum = "
|
1830
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
1827
1831
|
|
1828
1832
|
[[package]]
|
1829
1833
|
name = "scopeguard"
|
@@ -1833,47 +1837,47 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
1833
1837
|
|
1834
1838
|
[[package]]
|
1835
1839
|
name = "scratch"
|
1836
|
-
version = "1.0.
|
1840
|
+
version = "1.0.5"
|
1837
1841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1838
|
-
checksum = "
|
1842
|
+
checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
|
1839
1843
|
|
1840
1844
|
[[package]]
|
1841
1845
|
name = "semver"
|
1842
|
-
version = "1.0.
|
1846
|
+
version = "1.0.17"
|
1843
1847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
-
checksum = "
|
1848
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
1845
1849
|
|
1846
1850
|
[[package]]
|
1847
1851
|
name = "seq-macro"
|
1848
|
-
version = "0.3.
|
1852
|
+
version = "0.3.3"
|
1849
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1850
|
-
checksum = "
|
1854
|
+
checksum = "e6b44e8fc93a14e66336d230954dda83d18b4605ccace8fe09bc7514a71ad0bc"
|
1851
1855
|
|
1852
1856
|
[[package]]
|
1853
1857
|
name = "serde"
|
1854
|
-
version = "1.0.
|
1858
|
+
version = "1.0.162"
|
1855
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "
|
1860
|
+
checksum = "71b2f6e1ab5c2b98c05f0f35b236b22e8df7ead6ffbf51d7808da7f8817e7ab6"
|
1857
1861
|
dependencies = [
|
1858
1862
|
"serde_derive",
|
1859
1863
|
]
|
1860
1864
|
|
1861
1865
|
[[package]]
|
1862
1866
|
name = "serde_derive"
|
1863
|
-
version = "1.0.
|
1867
|
+
version = "1.0.162"
|
1864
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1865
|
-
checksum = "
|
1869
|
+
checksum = "a2a0814352fd64b58489904a44ea8d90cb1a91dcb6b4f5ebabc32c8318e93cb6"
|
1866
1870
|
dependencies = [
|
1867
1871
|
"proc-macro2",
|
1868
1872
|
"quote",
|
1869
|
-
"syn",
|
1873
|
+
"syn 2.0.15",
|
1870
1874
|
]
|
1871
1875
|
|
1872
1876
|
[[package]]
|
1873
1877
|
name = "serde_json"
|
1874
|
-
version = "1.0.
|
1878
|
+
version = "1.0.96"
|
1875
1879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1876
|
-
checksum = "
|
1880
|
+
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
|
1877
1881
|
dependencies = [
|
1878
1882
|
"indexmap",
|
1879
1883
|
"itoa",
|
@@ -1895,9 +1899,9 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
|
1895
1899
|
|
1896
1900
|
[[package]]
|
1897
1901
|
name = "signal-hook"
|
1898
|
-
version = "0.3.
|
1902
|
+
version = "0.3.15"
|
1899
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1900
|
-
checksum = "
|
1904
|
+
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
|
1901
1905
|
dependencies = [
|
1902
1906
|
"libc",
|
1903
1907
|
"signal-hook-registry",
|
@@ -1916,18 +1920,18 @@ dependencies = [
|
|
1916
1920
|
|
1917
1921
|
[[package]]
|
1918
1922
|
name = "signal-hook-registry"
|
1919
|
-
version = "1.4.
|
1923
|
+
version = "1.4.1"
|
1920
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1921
|
-
checksum = "
|
1925
|
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
1922
1926
|
dependencies = [
|
1923
1927
|
"libc",
|
1924
1928
|
]
|
1925
1929
|
|
1926
1930
|
[[package]]
|
1927
1931
|
name = "simd-json"
|
1928
|
-
version = "0.
|
1932
|
+
version = "0.9.2"
|
1929
1933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1930
|
-
checksum = "
|
1934
|
+
checksum = "dbb0157804d962d743f114497a9188fa8b6f9a201faf77ce49454d9e0e61b316"
|
1931
1935
|
dependencies = [
|
1932
1936
|
"halfbrown",
|
1933
1937
|
"lexical-core",
|
@@ -1951,9 +1955,9 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
1951
1955
|
|
1952
1956
|
[[package]]
|
1953
1957
|
name = "slab"
|
1954
|
-
version = "0.4.
|
1958
|
+
version = "0.4.8"
|
1955
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1956
|
-
checksum = "
|
1960
|
+
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
1957
1961
|
dependencies = [
|
1958
1962
|
"autocfg",
|
1959
1963
|
]
|
@@ -1971,6 +1975,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
1975
|
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
1972
1976
|
dependencies = [
|
1973
1977
|
"autocfg",
|
1978
|
+
"serde",
|
1974
1979
|
"static_assertions",
|
1975
1980
|
"version_check",
|
1976
1981
|
]
|
@@ -1981,6 +1986,25 @@ version = "1.1.0"
|
|
1981
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1982
1987
|
checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
|
1983
1988
|
|
1989
|
+
[[package]]
|
1990
|
+
name = "socket2"
|
1991
|
+
version = "0.4.9"
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
+
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
1994
|
+
dependencies = [
|
1995
|
+
"libc",
|
1996
|
+
"winapi",
|
1997
|
+
]
|
1998
|
+
|
1999
|
+
[[package]]
|
2000
|
+
name = "sqlparser"
|
2001
|
+
version = "0.30.0"
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2003
|
+
checksum = "db67dc6ef36edb658196c3fef0464a80b53dbbc194a904e81f9bd4190f9ecc5b"
|
2004
|
+
dependencies = [
|
2005
|
+
"log",
|
2006
|
+
]
|
2007
|
+
|
1984
2008
|
[[package]]
|
1985
2009
|
name = "static_assertions"
|
1986
2010
|
version = "1.1.0"
|
@@ -2024,14 +2048,25 @@ dependencies = [
|
|
2024
2048
|
"proc-macro2",
|
2025
2049
|
"quote",
|
2026
2050
|
"rustversion",
|
2027
|
-
"syn",
|
2051
|
+
"syn 1.0.109",
|
2028
2052
|
]
|
2029
2053
|
|
2030
2054
|
[[package]]
|
2031
2055
|
name = "syn"
|
2032
|
-
version = "1.0.
|
2056
|
+
version = "1.0.109"
|
2033
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2034
|
-
checksum = "
|
2058
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2059
|
+
dependencies = [
|
2060
|
+
"proc-macro2",
|
2061
|
+
"quote",
|
2062
|
+
"unicode-ident",
|
2063
|
+
]
|
2064
|
+
|
2065
|
+
[[package]]
|
2066
|
+
name = "syn"
|
2067
|
+
version = "2.0.15"
|
2068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2069
|
+
checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
|
2035
2070
|
dependencies = [
|
2036
2071
|
"proc-macro2",
|
2037
2072
|
"quote",
|
@@ -2040,9 +2075,9 @@ dependencies = [
|
|
2040
2075
|
|
2041
2076
|
[[package]]
|
2042
2077
|
name = "sysinfo"
|
2043
|
-
version = "0.
|
2078
|
+
version = "0.28.4"
|
2044
2079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
-
checksum = "
|
2080
|
+
checksum = "b4c2f3ca6693feb29a89724516f016488e9aafc7f37264f898593ee4b942f31b"
|
2046
2081
|
dependencies = [
|
2047
2082
|
"cfg-if",
|
2048
2083
|
"core-foundation-sys",
|
@@ -2052,6 +2087,12 @@ dependencies = [
|
|
2052
2087
|
"winapi",
|
2053
2088
|
]
|
2054
2089
|
|
2090
|
+
[[package]]
|
2091
|
+
name = "target-features"
|
2092
|
+
version = "0.1.3"
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2094
|
+
checksum = "24840de800c1707d75c800893dbd727a5e1501ce921944e602f0698167491e36"
|
2095
|
+
|
2055
2096
|
[[package]]
|
2056
2097
|
name = "termcolor"
|
2057
2098
|
version = "1.2.0"
|
@@ -2063,22 +2104,22 @@ dependencies = [
|
|
2063
2104
|
|
2064
2105
|
[[package]]
|
2065
2106
|
name = "thiserror"
|
2066
|
-
version = "1.0.
|
2107
|
+
version = "1.0.40"
|
2067
2108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2068
|
-
checksum = "
|
2109
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
2069
2110
|
dependencies = [
|
2070
2111
|
"thiserror-impl",
|
2071
2112
|
]
|
2072
2113
|
|
2073
2114
|
[[package]]
|
2074
2115
|
name = "thiserror-impl"
|
2075
|
-
version = "1.0.
|
2116
|
+
version = "1.0.40"
|
2076
2117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2077
|
-
checksum = "
|
2118
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
2078
2119
|
dependencies = [
|
2079
2120
|
"proc-macro2",
|
2080
2121
|
"quote",
|
2081
|
-
"syn",
|
2122
|
+
"syn 2.0.15",
|
2082
2123
|
]
|
2083
2124
|
|
2084
2125
|
[[package]]
|
@@ -2093,19 +2134,24 @@ dependencies = [
|
|
2093
2134
|
]
|
2094
2135
|
|
2095
2136
|
[[package]]
|
2096
|
-
name = "
|
2097
|
-
version = "
|
2137
|
+
name = "tokio"
|
2138
|
+
version = "1.28.0"
|
2098
2139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2099
|
-
checksum = "
|
2140
|
+
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
|
2100
2141
|
dependencies = [
|
2101
|
-
"
|
2142
|
+
"autocfg",
|
2143
|
+
"libc",
|
2144
|
+
"mio",
|
2145
|
+
"pin-project-lite",
|
2146
|
+
"socket2",
|
2147
|
+
"windows-sys 0.48.0",
|
2102
2148
|
]
|
2103
2149
|
|
2104
2150
|
[[package]]
|
2105
2151
|
name = "unicode-ident"
|
2106
|
-
version = "1.0.
|
2152
|
+
version = "1.0.8"
|
2107
2153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2108
|
-
checksum = "
|
2154
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
2109
2155
|
|
2110
2156
|
[[package]]
|
2111
2157
|
name = "unicode-width"
|
@@ -2115,9 +2161,9 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
2115
2161
|
|
2116
2162
|
[[package]]
|
2117
2163
|
name = "value-trait"
|
2118
|
-
version = "0.
|
2164
|
+
version = "0.6.0"
|
2119
2165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2120
|
-
checksum = "
|
2166
|
+
checksum = "733e1909354ceff16f7e1f7ddebc063455b8fda4968d91760a7c6115b96647a5"
|
2121
2167
|
dependencies = [
|
2122
2168
|
"float-cmp",
|
2123
2169
|
"halfbrown",
|
@@ -2164,7 +2210,7 @@ dependencies = [
|
|
2164
2210
|
"once_cell",
|
2165
2211
|
"proc-macro2",
|
2166
2212
|
"quote",
|
2167
|
-
"syn",
|
2213
|
+
"syn 1.0.109",
|
2168
2214
|
"wasm-bindgen-shared",
|
2169
2215
|
]
|
2170
2216
|
|
@@ -2198,7 +2244,7 @@ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
2198
2244
|
dependencies = [
|
2199
2245
|
"proc-macro2",
|
2200
2246
|
"quote",
|
2201
|
-
"syn",
|
2247
|
+
"syn 1.0.109",
|
2202
2248
|
"wasm-bindgen-backend",
|
2203
2249
|
"wasm-bindgen-shared",
|
2204
2250
|
]
|
@@ -2266,18 +2312,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
2312
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2267
2313
|
|
2268
2314
|
[[package]]
|
2269
|
-
name = "windows
|
2270
|
-
version = "0.
|
2315
|
+
name = "windows"
|
2316
|
+
version = "0.48.0"
|
2271
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2272
|
-
checksum = "
|
2318
|
+
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
2273
2319
|
dependencies = [
|
2274
|
-
"
|
2275
|
-
"windows_aarch64_msvc",
|
2276
|
-
"windows_i686_gnu",
|
2277
|
-
"windows_i686_msvc",
|
2278
|
-
"windows_x86_64_gnu",
|
2279
|
-
"windows_x86_64_gnullvm",
|
2280
|
-
"windows_x86_64_msvc",
|
2320
|
+
"windows-targets 0.48.0",
|
2281
2321
|
]
|
2282
2322
|
|
2283
2323
|
[[package]]
|
@@ -2286,65 +2326,131 @@ version = "0.45.0"
|
|
2286
2326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
2327
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
2288
2328
|
dependencies = [
|
2289
|
-
"windows-targets",
|
2329
|
+
"windows-targets 0.42.2",
|
2330
|
+
]
|
2331
|
+
|
2332
|
+
[[package]]
|
2333
|
+
name = "windows-sys"
|
2334
|
+
version = "0.48.0"
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2336
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2337
|
+
dependencies = [
|
2338
|
+
"windows-targets 0.48.0",
|
2339
|
+
]
|
2340
|
+
|
2341
|
+
[[package]]
|
2342
|
+
name = "windows-targets"
|
2343
|
+
version = "0.42.2"
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2345
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
2346
|
+
dependencies = [
|
2347
|
+
"windows_aarch64_gnullvm 0.42.2",
|
2348
|
+
"windows_aarch64_msvc 0.42.2",
|
2349
|
+
"windows_i686_gnu 0.42.2",
|
2350
|
+
"windows_i686_msvc 0.42.2",
|
2351
|
+
"windows_x86_64_gnu 0.42.2",
|
2352
|
+
"windows_x86_64_gnullvm 0.42.2",
|
2353
|
+
"windows_x86_64_msvc 0.42.2",
|
2290
2354
|
]
|
2291
2355
|
|
2292
2356
|
[[package]]
|
2293
2357
|
name = "windows-targets"
|
2294
|
-
version = "0.
|
2358
|
+
version = "0.48.0"
|
2295
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2296
|
-
checksum = "
|
2360
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
2297
2361
|
dependencies = [
|
2298
|
-
"windows_aarch64_gnullvm",
|
2299
|
-
"windows_aarch64_msvc",
|
2300
|
-
"windows_i686_gnu",
|
2301
|
-
"windows_i686_msvc",
|
2302
|
-
"windows_x86_64_gnu",
|
2303
|
-
"windows_x86_64_gnullvm",
|
2304
|
-
"windows_x86_64_msvc",
|
2362
|
+
"windows_aarch64_gnullvm 0.48.0",
|
2363
|
+
"windows_aarch64_msvc 0.48.0",
|
2364
|
+
"windows_i686_gnu 0.48.0",
|
2365
|
+
"windows_i686_msvc 0.48.0",
|
2366
|
+
"windows_x86_64_gnu 0.48.0",
|
2367
|
+
"windows_x86_64_gnullvm 0.48.0",
|
2368
|
+
"windows_x86_64_msvc 0.48.0",
|
2305
2369
|
]
|
2306
2370
|
|
2307
2371
|
[[package]]
|
2308
2372
|
name = "windows_aarch64_gnullvm"
|
2309
|
-
version = "0.42.
|
2373
|
+
version = "0.42.2"
|
2310
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2311
|
-
checksum = "
|
2375
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2376
|
+
|
2377
|
+
[[package]]
|
2378
|
+
name = "windows_aarch64_gnullvm"
|
2379
|
+
version = "0.48.0"
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2381
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2312
2382
|
|
2313
2383
|
[[package]]
|
2314
2384
|
name = "windows_aarch64_msvc"
|
2315
|
-
version = "0.42.
|
2385
|
+
version = "0.42.2"
|
2316
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
-
checksum = "
|
2387
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2388
|
+
|
2389
|
+
[[package]]
|
2390
|
+
name = "windows_aarch64_msvc"
|
2391
|
+
version = "0.48.0"
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2318
2394
|
|
2319
2395
|
[[package]]
|
2320
2396
|
name = "windows_i686_gnu"
|
2321
|
-
version = "0.42.
|
2397
|
+
version = "0.42.2"
|
2322
2398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2323
|
-
checksum = "
|
2399
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2400
|
+
|
2401
|
+
[[package]]
|
2402
|
+
name = "windows_i686_gnu"
|
2403
|
+
version = "0.48.0"
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2405
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2324
2406
|
|
2325
2407
|
[[package]]
|
2326
2408
|
name = "windows_i686_msvc"
|
2327
|
-
version = "0.42.
|
2409
|
+
version = "0.42.2"
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2411
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2412
|
+
|
2413
|
+
[[package]]
|
2414
|
+
name = "windows_i686_msvc"
|
2415
|
+
version = "0.48.0"
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2418
|
+
|
2419
|
+
[[package]]
|
2420
|
+
name = "windows_x86_64_gnu"
|
2421
|
+
version = "0.42.2"
|
2328
2422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2329
|
-
checksum = "
|
2423
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2330
2424
|
|
2331
2425
|
[[package]]
|
2332
2426
|
name = "windows_x86_64_gnu"
|
2333
|
-
version = "0.
|
2427
|
+
version = "0.48.0"
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2429
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2430
|
+
|
2431
|
+
[[package]]
|
2432
|
+
name = "windows_x86_64_gnullvm"
|
2433
|
+
version = "0.42.2"
|
2334
2434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2335
|
-
checksum = "
|
2435
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2336
2436
|
|
2337
2437
|
[[package]]
|
2338
2438
|
name = "windows_x86_64_gnullvm"
|
2339
|
-
version = "0.
|
2439
|
+
version = "0.48.0"
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2441
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2442
|
+
|
2443
|
+
[[package]]
|
2444
|
+
name = "windows_x86_64_msvc"
|
2445
|
+
version = "0.42.2"
|
2340
2446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2341
|
-
checksum = "
|
2447
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2342
2448
|
|
2343
2449
|
[[package]]
|
2344
2450
|
name = "windows_x86_64_msvc"
|
2345
|
-
version = "0.
|
2451
|
+
version = "0.48.0"
|
2346
2452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
-
checksum = "
|
2453
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
2348
2454
|
|
2349
2455
|
[[package]]
|
2350
2456
|
name = "xxhash-rust"
|
@@ -2354,18 +2460,18 @@ checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"
|
|
2354
2460
|
|
2355
2461
|
[[package]]
|
2356
2462
|
name = "zstd"
|
2357
|
-
version = "0.
|
2463
|
+
version = "0.12.3+zstd.1.5.2"
|
2358
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2359
|
-
checksum = "
|
2465
|
+
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
|
2360
2466
|
dependencies = [
|
2361
2467
|
"zstd-safe",
|
2362
2468
|
]
|
2363
2469
|
|
2364
2470
|
[[package]]
|
2365
2471
|
name = "zstd-safe"
|
2366
|
-
version = "
|
2472
|
+
version = "6.0.5+zstd.1.5.4"
|
2367
2473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2368
|
-
checksum = "
|
2474
|
+
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
|
2369
2475
|
dependencies = [
|
2370
2476
|
"libc",
|
2371
2477
|
"zstd-sys",
|
@@ -2373,9 +2479,9 @@ dependencies = [
|
|
2373
2479
|
|
2374
2480
|
[[package]]
|
2375
2481
|
name = "zstd-sys"
|
2376
|
-
version = "2.0.
|
2482
|
+
version = "2.0.8+zstd.1.5.5"
|
2377
2483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2378
|
-
checksum = "
|
2484
|
+
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
2379
2485
|
dependencies = [
|
2380
2486
|
"cc",
|
2381
2487
|
"libc",
|