polars-df 0.4.0-x86_64-darwin → 0.6.0-x86_64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/Cargo.lock +447 -410
- data/Cargo.toml +0 -1
- data/LICENSE-THIRD-PARTY.txt +2142 -972
- data/README.md +6 -5
- 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/array_expr.rb +84 -0
- data/lib/polars/array_name_space.rb +77 -0
- data/lib/polars/batched_csv_reader.rb +1 -1
- data/lib/polars/convert.rb +2 -2
- data/lib/polars/data_frame.rb +289 -96
- data/lib/polars/data_types.rb +169 -33
- data/lib/polars/date_time_expr.rb +142 -2
- data/lib/polars/date_time_name_space.rb +17 -3
- data/lib/polars/expr.rb +145 -78
- data/lib/polars/functions.rb +0 -1
- data/lib/polars/group_by.rb +1 -22
- data/lib/polars/lazy_frame.rb +84 -31
- data/lib/polars/lazy_functions.rb +71 -32
- data/lib/polars/list_expr.rb +94 -45
- data/lib/polars/list_name_space.rb +13 -13
- data/lib/polars/rolling_group_by.rb +4 -2
- data/lib/polars/series.rb +249 -87
- data/lib/polars/string_expr.rb +277 -45
- data/lib/polars/string_name_space.rb +137 -22
- data/lib/polars/struct_name_space.rb +32 -0
- data/lib/polars/utils.rb +138 -54
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +5 -2
- metadata +4 -2
data/Cargo.lock
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 3
|
4
4
|
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.20.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
5
14
|
[[package]]
|
6
15
|
name = "adler"
|
7
16
|
version = "1.0.2"
|
@@ -28,9 +37,9 @@ dependencies = [
|
|
28
37
|
|
29
38
|
[[package]]
|
30
39
|
name = "aho-corasick"
|
31
|
-
version = "0.
|
40
|
+
version = "1.0.2"
|
32
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "
|
42
|
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
34
43
|
dependencies = [
|
35
44
|
"memchr",
|
36
45
|
]
|
@@ -50,6 +59,12 @@ dependencies = [
|
|
50
59
|
"alloc-no-stdlib",
|
51
60
|
]
|
52
61
|
|
62
|
+
[[package]]
|
63
|
+
name = "allocator-api2"
|
64
|
+
version = "0.2.16"
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
+
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
67
|
+
|
53
68
|
[[package]]
|
54
69
|
name = "android_system_properties"
|
55
70
|
version = "0.1.5"
|
@@ -59,6 +74,15 @@ dependencies = [
|
|
59
74
|
"libc",
|
60
75
|
]
|
61
76
|
|
77
|
+
[[package]]
|
78
|
+
name = "argminmax"
|
79
|
+
version = "0.6.1"
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
81
|
+
checksum = "202108b46429b765ef483f8a24d5c46f48c14acfdacc086dd4ab6dddf6bcdbd2"
|
82
|
+
dependencies = [
|
83
|
+
"num-traits",
|
84
|
+
]
|
85
|
+
|
62
86
|
[[package]]
|
63
87
|
name = "array-init-cursor"
|
64
88
|
version = "0.2.0"
|
@@ -77,9 +101,9 @@ dependencies = [
|
|
77
101
|
|
78
102
|
[[package]]
|
79
103
|
name = "arrow2"
|
80
|
-
version = "0.17.
|
104
|
+
version = "0.17.3"
|
81
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
-
checksum = "
|
106
|
+
checksum = "e44f27e89e3edd8738a07c5e2c881efaa25e69be97a816d2df051685d460670c"
|
83
107
|
dependencies = [
|
84
108
|
"ahash",
|
85
109
|
"arrow-format",
|
@@ -96,25 +120,25 @@ dependencies = [
|
|
96
120
|
"futures",
|
97
121
|
"getrandom",
|
98
122
|
"hash_hasher",
|
99
|
-
"indexmap",
|
100
|
-
"json-deserializer",
|
101
123
|
"lexical-core",
|
102
124
|
"lz4",
|
103
125
|
"multiversion",
|
104
126
|
"num-traits",
|
105
127
|
"parquet2",
|
128
|
+
"regex",
|
129
|
+
"regex-syntax 0.6.29",
|
106
130
|
"rustc_version",
|
107
131
|
"simdutf8",
|
108
132
|
"streaming-iterator",
|
109
133
|
"strength_reduce",
|
110
|
-
"zstd
|
134
|
+
"zstd",
|
111
135
|
]
|
112
136
|
|
113
137
|
[[package]]
|
114
138
|
name = "async-stream"
|
115
|
-
version = "0.3.
|
139
|
+
version = "0.3.5"
|
116
140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
-
checksum = "
|
141
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
118
142
|
dependencies = [
|
119
143
|
"async-stream-impl",
|
120
144
|
"futures-core",
|
@@ -123,24 +147,24 @@ dependencies = [
|
|
123
147
|
|
124
148
|
[[package]]
|
125
149
|
name = "async-stream-impl"
|
126
|
-
version = "0.3.
|
150
|
+
version = "0.3.5"
|
127
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
-
checksum = "
|
152
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
129
153
|
dependencies = [
|
130
154
|
"proc-macro2",
|
131
155
|
"quote",
|
132
|
-
"syn
|
156
|
+
"syn 2.0.26",
|
133
157
|
]
|
134
158
|
|
135
159
|
[[package]]
|
136
160
|
name = "async-trait"
|
137
|
-
version = "0.1.
|
161
|
+
version = "0.1.71"
|
138
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
139
|
-
checksum = "
|
163
|
+
checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf"
|
140
164
|
dependencies = [
|
141
165
|
"proc-macro2",
|
142
166
|
"quote",
|
143
|
-
"syn 2.0.
|
167
|
+
"syn 2.0.26",
|
144
168
|
]
|
145
169
|
|
146
170
|
[[package]]
|
@@ -172,17 +196,32 @@ dependencies = [
|
|
172
196
|
"snap",
|
173
197
|
]
|
174
198
|
|
199
|
+
[[package]]
|
200
|
+
name = "backtrace"
|
201
|
+
version = "0.3.68"
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
203
|
+
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
|
204
|
+
dependencies = [
|
205
|
+
"addr2line",
|
206
|
+
"cc",
|
207
|
+
"cfg-if",
|
208
|
+
"libc",
|
209
|
+
"miniz_oxide",
|
210
|
+
"object",
|
211
|
+
"rustc-demangle",
|
212
|
+
]
|
213
|
+
|
175
214
|
[[package]]
|
176
215
|
name = "base64"
|
177
|
-
version = "0.21.
|
216
|
+
version = "0.21.2"
|
178
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
179
|
-
checksum = "
|
218
|
+
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
|
180
219
|
|
181
220
|
[[package]]
|
182
221
|
name = "bindgen"
|
183
|
-
version = "0.
|
222
|
+
version = "0.62.0"
|
184
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
-
checksum = "
|
224
|
+
checksum = "c6720a8b7b2d39dd533285ed438d458f65b31b5c257e6ac7bb3d7e82844dd722"
|
186
225
|
dependencies = [
|
187
226
|
"bitflags",
|
188
227
|
"cexpr",
|
@@ -195,6 +234,7 @@ dependencies = [
|
|
195
234
|
"regex",
|
196
235
|
"rustc-hash",
|
197
236
|
"shlex",
|
237
|
+
"syn 1.0.109",
|
198
238
|
]
|
199
239
|
|
200
240
|
[[package]]
|
@@ -226,9 +266,9 @@ dependencies = [
|
|
226
266
|
|
227
267
|
[[package]]
|
228
268
|
name = "bumpalo"
|
229
|
-
version = "3.
|
269
|
+
version = "3.13.0"
|
230
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
-
checksum = "
|
271
|
+
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
|
232
272
|
|
233
273
|
[[package]]
|
234
274
|
name = "bytemuck"
|
@@ -247,7 +287,7 @@ checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192"
|
|
247
287
|
dependencies = [
|
248
288
|
"proc-macro2",
|
249
289
|
"quote",
|
250
|
-
"syn 2.0.
|
290
|
+
"syn 2.0.26",
|
251
291
|
]
|
252
292
|
|
253
293
|
[[package]]
|
@@ -298,9 +338,9 @@ dependencies = [
|
|
298
338
|
|
299
339
|
[[package]]
|
300
340
|
name = "chrono-tz"
|
301
|
-
version = "0.8.
|
341
|
+
version = "0.8.3"
|
302
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
-
checksum = "
|
343
|
+
checksum = "f1369bc6b9e9a7dfdae2055f6ec151fe9c554a9d23d357c0237cee2e25eaabb7"
|
304
344
|
dependencies = [
|
305
345
|
"chrono",
|
306
346
|
"chrono-tz-build",
|
@@ -309,9 +349,9 @@ dependencies = [
|
|
309
349
|
|
310
350
|
[[package]]
|
311
351
|
name = "chrono-tz-build"
|
312
|
-
version = "0.
|
352
|
+
version = "0.2.0"
|
313
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
-
checksum = "
|
354
|
+
checksum = "e2f5ebdc942f57ed96d560a6d1a459bae5851102a25d5bf89dc04ae453e31ecf"
|
315
355
|
dependencies = [
|
316
356
|
"parse-zoneinfo",
|
317
357
|
"phf",
|
@@ -320,42 +360,32 @@ dependencies = [
|
|
320
360
|
|
321
361
|
[[package]]
|
322
362
|
name = "clang-sys"
|
323
|
-
version = "1.6.
|
363
|
+
version = "1.6.1"
|
324
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
-
checksum = "
|
365
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
326
366
|
dependencies = [
|
327
367
|
"glob",
|
328
368
|
"libc",
|
329
369
|
"libloading",
|
330
370
|
]
|
331
371
|
|
332
|
-
[[package]]
|
333
|
-
name = "codespan-reporting"
|
334
|
-
version = "0.11.1"
|
335
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
-
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
337
|
-
dependencies = [
|
338
|
-
"termcolor",
|
339
|
-
"unicode-width",
|
340
|
-
]
|
341
|
-
|
342
372
|
[[package]]
|
343
373
|
name = "comfy-table"
|
344
|
-
version = "
|
374
|
+
version = "7.0.1"
|
345
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
346
|
-
checksum = "
|
376
|
+
checksum = "9ab77dbd8adecaf3f0db40581631b995f312a8a5ae3aa9993188bb8f23d83a5b"
|
347
377
|
dependencies = [
|
348
378
|
"crossterm",
|
349
379
|
"strum",
|
350
|
-
"strum_macros",
|
380
|
+
"strum_macros 0.24.3",
|
351
381
|
"unicode-width",
|
352
382
|
]
|
353
383
|
|
354
384
|
[[package]]
|
355
385
|
name = "core-foundation-sys"
|
356
|
-
version = "0.8.
|
386
|
+
version = "0.8.4"
|
357
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
|
-
checksum = "
|
388
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
359
389
|
|
360
390
|
[[package]]
|
361
391
|
name = "crc"
|
@@ -383,9 +413,9 @@ dependencies = [
|
|
383
413
|
|
384
414
|
[[package]]
|
385
415
|
name = "crossbeam-channel"
|
386
|
-
version = "0.5.
|
416
|
+
version = "0.5.8"
|
387
417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
-
checksum = "
|
418
|
+
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
389
419
|
dependencies = [
|
390
420
|
"cfg-if",
|
391
421
|
"crossbeam-utils",
|
@@ -404,9 +434,9 @@ dependencies = [
|
|
404
434
|
|
405
435
|
[[package]]
|
406
436
|
name = "crossbeam-epoch"
|
407
|
-
version = "0.9.
|
437
|
+
version = "0.9.15"
|
408
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
-
checksum = "
|
439
|
+
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
|
410
440
|
dependencies = [
|
411
441
|
"autocfg",
|
412
442
|
"cfg-if",
|
@@ -415,20 +445,30 @@ dependencies = [
|
|
415
445
|
"scopeguard",
|
416
446
|
]
|
417
447
|
|
448
|
+
[[package]]
|
449
|
+
name = "crossbeam-queue"
|
450
|
+
version = "0.3.8"
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
+
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
|
453
|
+
dependencies = [
|
454
|
+
"cfg-if",
|
455
|
+
"crossbeam-utils",
|
456
|
+
]
|
457
|
+
|
418
458
|
[[package]]
|
419
459
|
name = "crossbeam-utils"
|
420
|
-
version = "0.8.
|
460
|
+
version = "0.8.16"
|
421
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
422
|
-
checksum = "
|
462
|
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
423
463
|
dependencies = [
|
424
464
|
"cfg-if",
|
425
465
|
]
|
426
466
|
|
427
467
|
[[package]]
|
428
468
|
name = "crossterm"
|
429
|
-
version = "0.
|
469
|
+
version = "0.26.1"
|
430
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
431
|
-
checksum = "
|
471
|
+
checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13"
|
432
472
|
dependencies = [
|
433
473
|
"bitflags",
|
434
474
|
"crossterm_winapi",
|
@@ -442,74 +482,10 @@ dependencies = [
|
|
442
482
|
|
443
483
|
[[package]]
|
444
484
|
name = "crossterm_winapi"
|
445
|
-
version = "0.9.
|
446
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
447
|
-
checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
|
448
|
-
dependencies = [
|
449
|
-
"winapi",
|
450
|
-
]
|
451
|
-
|
452
|
-
[[package]]
|
453
|
-
name = "cxx"
|
454
|
-
version = "1.0.94"
|
455
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
456
|
-
checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
|
457
|
-
dependencies = [
|
458
|
-
"cc",
|
459
|
-
"cxxbridge-flags",
|
460
|
-
"cxxbridge-macro",
|
461
|
-
"link-cplusplus",
|
462
|
-
]
|
463
|
-
|
464
|
-
[[package]]
|
465
|
-
name = "cxx-build"
|
466
|
-
version = "1.0.94"
|
467
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
|
-
checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
|
469
|
-
dependencies = [
|
470
|
-
"cc",
|
471
|
-
"codespan-reporting",
|
472
|
-
"once_cell",
|
473
|
-
"proc-macro2",
|
474
|
-
"quote",
|
475
|
-
"scratch",
|
476
|
-
"syn 2.0.11",
|
477
|
-
]
|
478
|
-
|
479
|
-
[[package]]
|
480
|
-
name = "cxxbridge-flags"
|
481
|
-
version = "1.0.94"
|
482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
-
checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
|
484
|
-
|
485
|
-
[[package]]
|
486
|
-
name = "cxxbridge-macro"
|
487
|
-
version = "1.0.94"
|
488
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
490
|
-
dependencies = [
|
491
|
-
"proc-macro2",
|
492
|
-
"quote",
|
493
|
-
"syn 2.0.11",
|
494
|
-
]
|
495
|
-
|
496
|
-
[[package]]
|
497
|
-
name = "dirs"
|
498
|
-
version = "4.0.0"
|
485
|
+
version = "0.9.1"
|
499
486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
-
checksum = "
|
487
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
501
488
|
dependencies = [
|
502
|
-
"dirs-sys",
|
503
|
-
]
|
504
|
-
|
505
|
-
[[package]]
|
506
|
-
name = "dirs-sys"
|
507
|
-
version = "0.3.7"
|
508
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
-
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
510
|
-
dependencies = [
|
511
|
-
"libc",
|
512
|
-
"redox_users",
|
513
489
|
"winapi",
|
514
490
|
]
|
515
491
|
|
@@ -527,16 +503,22 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
|
527
503
|
|
528
504
|
[[package]]
|
529
505
|
name = "enum_dispatch"
|
530
|
-
version = "0.3.
|
506
|
+
version = "0.3.12"
|
531
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
-
checksum = "
|
508
|
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
|
533
509
|
dependencies = [
|
534
510
|
"once_cell",
|
535
511
|
"proc-macro2",
|
536
512
|
"quote",
|
537
|
-
"syn
|
513
|
+
"syn 2.0.26",
|
538
514
|
]
|
539
515
|
|
516
|
+
[[package]]
|
517
|
+
name = "equivalent"
|
518
|
+
version = "1.0.1"
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
521
|
+
|
540
522
|
[[package]]
|
541
523
|
name = "ethnum"
|
542
524
|
version = "1.3.2"
|
@@ -557,9 +539,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
557
539
|
|
558
540
|
[[package]]
|
559
541
|
name = "flate2"
|
560
|
-
version = "1.0.
|
542
|
+
version = "1.0.26"
|
561
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
-
checksum = "
|
544
|
+
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
|
563
545
|
dependencies = [
|
564
546
|
"crc32fast",
|
565
547
|
"miniz_oxide",
|
@@ -582,9 +564,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
582
564
|
|
583
565
|
[[package]]
|
584
566
|
name = "futures"
|
585
|
-
version = "0.3.
|
567
|
+
version = "0.3.28"
|
586
568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
587
|
-
checksum = "
|
569
|
+
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
588
570
|
dependencies = [
|
589
571
|
"futures-channel",
|
590
572
|
"futures-core",
|
@@ -597,9 +579,9 @@ dependencies = [
|
|
597
579
|
|
598
580
|
[[package]]
|
599
581
|
name = "futures-channel"
|
600
|
-
version = "0.3.
|
582
|
+
version = "0.3.28"
|
601
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
-
checksum = "
|
584
|
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
603
585
|
dependencies = [
|
604
586
|
"futures-core",
|
605
587
|
"futures-sink",
|
@@ -607,15 +589,15 @@ dependencies = [
|
|
607
589
|
|
608
590
|
[[package]]
|
609
591
|
name = "futures-core"
|
610
|
-
version = "0.3.
|
592
|
+
version = "0.3.28"
|
611
593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
-
checksum = "
|
594
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
613
595
|
|
614
596
|
[[package]]
|
615
597
|
name = "futures-executor"
|
616
|
-
version = "0.3.
|
598
|
+
version = "0.3.28"
|
617
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
-
checksum = "
|
600
|
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
619
601
|
dependencies = [
|
620
602
|
"futures-core",
|
621
603
|
"futures-task",
|
@@ -624,38 +606,38 @@ dependencies = [
|
|
624
606
|
|
625
607
|
[[package]]
|
626
608
|
name = "futures-io"
|
627
|
-
version = "0.3.
|
609
|
+
version = "0.3.28"
|
628
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
-
checksum = "
|
611
|
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
630
612
|
|
631
613
|
[[package]]
|
632
614
|
name = "futures-macro"
|
633
|
-
version = "0.3.
|
615
|
+
version = "0.3.28"
|
634
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
-
checksum = "
|
617
|
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
636
618
|
dependencies = [
|
637
619
|
"proc-macro2",
|
638
620
|
"quote",
|
639
|
-
"syn
|
621
|
+
"syn 2.0.26",
|
640
622
|
]
|
641
623
|
|
642
624
|
[[package]]
|
643
625
|
name = "futures-sink"
|
644
|
-
version = "0.3.
|
626
|
+
version = "0.3.28"
|
645
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
-
checksum = "
|
628
|
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
647
629
|
|
648
630
|
[[package]]
|
649
631
|
name = "futures-task"
|
650
|
-
version = "0.3.
|
632
|
+
version = "0.3.28"
|
651
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
652
|
-
checksum = "
|
634
|
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
653
635
|
|
654
636
|
[[package]]
|
655
637
|
name = "futures-util"
|
656
|
-
version = "0.3.
|
638
|
+
version = "0.3.28"
|
657
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
-
checksum = "
|
640
|
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
659
641
|
dependencies = [
|
660
642
|
"futures-channel",
|
661
643
|
"futures-core",
|
@@ -671,9 +653,9 @@ dependencies = [
|
|
671
653
|
|
672
654
|
[[package]]
|
673
655
|
name = "getrandom"
|
674
|
-
version = "0.2.
|
656
|
+
version = "0.2.10"
|
675
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
676
|
-
checksum = "
|
658
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
677
659
|
dependencies = [
|
678
660
|
"cfg-if",
|
679
661
|
"js-sys",
|
@@ -682,6 +664,12 @@ dependencies = [
|
|
682
664
|
"wasm-bindgen",
|
683
665
|
]
|
684
666
|
|
667
|
+
[[package]]
|
668
|
+
name = "gimli"
|
669
|
+
version = "0.27.3"
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
671
|
+
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
|
672
|
+
|
685
673
|
[[package]]
|
686
674
|
name = "glob"
|
687
675
|
version = "0.3.1"
|
@@ -690,11 +678,11 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
690
678
|
|
691
679
|
[[package]]
|
692
680
|
name = "halfbrown"
|
693
|
-
version = "0.
|
694
|
-
source = "
|
681
|
+
version = "0.2.4"
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
683
|
+
checksum = "5681137554ddff44396e5f149892c769d45301dd9aa19c51602a89ee214cb0ec"
|
695
684
|
dependencies = [
|
696
685
|
"hashbrown 0.13.2",
|
697
|
-
"rustc-hash",
|
698
686
|
"serde",
|
699
687
|
]
|
700
688
|
|
@@ -706,17 +694,21 @@ checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
|
|
706
694
|
|
707
695
|
[[package]]
|
708
696
|
name = "hashbrown"
|
709
|
-
version = "0.
|
697
|
+
version = "0.13.2"
|
710
698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
711
|
-
checksum = "
|
699
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
700
|
+
dependencies = [
|
701
|
+
"ahash",
|
702
|
+
]
|
712
703
|
|
713
704
|
[[package]]
|
714
705
|
name = "hashbrown"
|
715
|
-
version = "0.
|
706
|
+
version = "0.14.0"
|
716
707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
-
checksum = "
|
708
|
+
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
718
709
|
dependencies = [
|
719
710
|
"ahash",
|
711
|
+
"allocator-api2",
|
720
712
|
"rayon",
|
721
713
|
]
|
722
714
|
|
@@ -728,12 +720,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
728
720
|
|
729
721
|
[[package]]
|
730
722
|
name = "hermit-abi"
|
731
|
-
version = "0.2
|
723
|
+
version = "0.3.2"
|
732
724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
733
|
-
checksum = "
|
734
|
-
dependencies = [
|
735
|
-
"libc",
|
736
|
-
]
|
725
|
+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
737
726
|
|
738
727
|
[[package]]
|
739
728
|
name = "hex"
|
@@ -741,11 +730,20 @@ version = "0.4.3"
|
|
741
730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
731
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
743
732
|
|
733
|
+
[[package]]
|
734
|
+
name = "home"
|
735
|
+
version = "0.5.5"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
738
|
+
dependencies = [
|
739
|
+
"windows-sys",
|
740
|
+
]
|
741
|
+
|
744
742
|
[[package]]
|
745
743
|
name = "iana-time-zone"
|
746
|
-
version = "0.1.
|
744
|
+
version = "0.1.57"
|
747
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
748
|
-
checksum = "
|
746
|
+
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
|
749
747
|
dependencies = [
|
750
748
|
"android_system_properties",
|
751
749
|
"core-foundation-sys",
|
@@ -757,22 +755,21 @@ dependencies = [
|
|
757
755
|
|
758
756
|
[[package]]
|
759
757
|
name = "iana-time-zone-haiku"
|
760
|
-
version = "0.1.
|
758
|
+
version = "0.1.2"
|
761
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
762
|
-
checksum = "
|
760
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
763
761
|
dependencies = [
|
764
|
-
"
|
765
|
-
"cxx-build",
|
762
|
+
"cc",
|
766
763
|
]
|
767
764
|
|
768
765
|
[[package]]
|
769
766
|
name = "indexmap"
|
770
|
-
version = "
|
767
|
+
version = "2.0.0"
|
771
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
772
|
-
checksum = "
|
769
|
+
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
|
773
770
|
dependencies = [
|
774
|
-
"
|
775
|
-
"hashbrown 0.
|
771
|
+
"equivalent",
|
772
|
+
"hashbrown 0.14.0",
|
776
773
|
"serde",
|
777
774
|
]
|
778
775
|
|
@@ -787,9 +784,9 @@ dependencies = [
|
|
787
784
|
|
788
785
|
[[package]]
|
789
786
|
name = "itoa"
|
790
|
-
version = "1.0.
|
787
|
+
version = "1.0.8"
|
791
788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
-
checksum = "
|
789
|
+
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
|
793
790
|
|
794
791
|
[[package]]
|
795
792
|
name = "itoap"
|
@@ -828,22 +825,13 @@ dependencies = [
|
|
828
825
|
|
829
826
|
[[package]]
|
830
827
|
name = "js-sys"
|
831
|
-
version = "0.3.
|
828
|
+
version = "0.3.64"
|
832
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
833
|
-
checksum = "
|
830
|
+
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
834
831
|
dependencies = [
|
835
832
|
"wasm-bindgen",
|
836
833
|
]
|
837
834
|
|
838
|
-
[[package]]
|
839
|
-
name = "json-deserializer"
|
840
|
-
version = "0.4.4"
|
841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
-
checksum = "5f63b421e16eb4100beb677af56f0b4f3a4f08bab74ef2af079ce5bb92c2683f"
|
843
|
-
dependencies = [
|
844
|
-
"indexmap",
|
845
|
-
]
|
846
|
-
|
847
835
|
[[package]]
|
848
836
|
name = "jsonpath_lib"
|
849
837
|
version = "0.3.0"
|
@@ -941,15 +929,15 @@ dependencies = [
|
|
941
929
|
|
942
930
|
[[package]]
|
943
931
|
name = "libc"
|
944
|
-
version = "0.2.
|
932
|
+
version = "0.2.147"
|
945
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
946
|
-
checksum = "
|
934
|
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
947
935
|
|
948
936
|
[[package]]
|
949
937
|
name = "libflate"
|
950
|
-
version = "1.
|
938
|
+
version = "1.4.0"
|
951
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
-
checksum = "
|
940
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
953
941
|
dependencies = [
|
954
942
|
"adler32",
|
955
943
|
"crc32fast",
|
@@ -977,34 +965,25 @@ dependencies = [
|
|
977
965
|
|
978
966
|
[[package]]
|
979
967
|
name = "libm"
|
980
|
-
version = "0.2.
|
968
|
+
version = "0.2.7"
|
981
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
982
|
-
checksum = "
|
970
|
+
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
|
983
971
|
|
984
972
|
[[package]]
|
985
973
|
name = "libmimalloc-sys"
|
986
|
-
version = "0.1.
|
974
|
+
version = "0.1.33"
|
987
975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
988
|
-
checksum = "
|
976
|
+
checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e"
|
989
977
|
dependencies = [
|
990
978
|
"cc",
|
991
979
|
"libc",
|
992
980
|
]
|
993
981
|
|
994
|
-
[[package]]
|
995
|
-
name = "link-cplusplus"
|
996
|
-
version = "1.0.8"
|
997
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
-
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
|
999
|
-
dependencies = [
|
1000
|
-
"cc",
|
1001
|
-
]
|
1002
|
-
|
1003
982
|
[[package]]
|
1004
983
|
name = "lock_api"
|
1005
|
-
version = "0.4.
|
984
|
+
version = "0.4.10"
|
1006
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1007
|
-
checksum = "
|
986
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
1008
987
|
dependencies = [
|
1009
988
|
"autocfg",
|
1010
989
|
"scopeguard",
|
@@ -1012,12 +991,9 @@ dependencies = [
|
|
1012
991
|
|
1013
992
|
[[package]]
|
1014
993
|
name = "log"
|
1015
|
-
version = "0.4.
|
994
|
+
version = "0.4.19"
|
1016
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1017
|
-
checksum = "
|
1018
|
-
dependencies = [
|
1019
|
-
"cfg-if",
|
1020
|
-
]
|
996
|
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
1021
997
|
|
1022
998
|
[[package]]
|
1023
999
|
name = "lz4"
|
@@ -1041,9 +1017,9 @@ dependencies = [
|
|
1041
1017
|
|
1042
1018
|
[[package]]
|
1043
1019
|
name = "magnus"
|
1044
|
-
version = "0.5.
|
1020
|
+
version = "0.5.4"
|
1045
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
-
checksum = "
|
1022
|
+
checksum = "b560c3c0284c9ec7c30b7ba823896387423225add3f107213a794b73853c7505"
|
1047
1023
|
dependencies = [
|
1048
1024
|
"magnus-macros",
|
1049
1025
|
"rb-sys",
|
@@ -1078,18 +1054,18 @@ dependencies = [
|
|
1078
1054
|
|
1079
1055
|
[[package]]
|
1080
1056
|
name = "memoffset"
|
1081
|
-
version = "0.
|
1057
|
+
version = "0.9.0"
|
1082
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
-
checksum = "
|
1059
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1084
1060
|
dependencies = [
|
1085
1061
|
"autocfg",
|
1086
1062
|
]
|
1087
1063
|
|
1088
1064
|
[[package]]
|
1089
1065
|
name = "mimalloc"
|
1090
|
-
version = "0.1.
|
1066
|
+
version = "0.1.37"
|
1091
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1068
|
+
checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98"
|
1093
1069
|
dependencies = [
|
1094
1070
|
"libmimalloc-sys",
|
1095
1071
|
]
|
@@ -1102,18 +1078,18 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1102
1078
|
|
1103
1079
|
[[package]]
|
1104
1080
|
name = "miniz_oxide"
|
1105
|
-
version = "0.
|
1081
|
+
version = "0.7.1"
|
1106
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1107
|
-
checksum = "
|
1083
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1108
1084
|
dependencies = [
|
1109
1085
|
"adler",
|
1110
1086
|
]
|
1111
1087
|
|
1112
1088
|
[[package]]
|
1113
1089
|
name = "mio"
|
1114
|
-
version = "0.8.
|
1090
|
+
version = "0.8.8"
|
1115
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1116
|
-
checksum = "
|
1092
|
+
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
1117
1093
|
dependencies = [
|
1118
1094
|
"libc",
|
1119
1095
|
"log",
|
@@ -1123,9 +1099,9 @@ dependencies = [
|
|
1123
1099
|
|
1124
1100
|
[[package]]
|
1125
1101
|
name = "multiversion"
|
1126
|
-
version = "0.7.
|
1102
|
+
version = "0.7.2"
|
1127
1103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "
|
1104
|
+
checksum = "8cda45dade5144c2c929bf2ed6c24bebbba784e9198df049ec87d722b9462bd1"
|
1129
1105
|
dependencies = [
|
1130
1106
|
"multiversion-macros",
|
1131
1107
|
"target-features",
|
@@ -1133,9 +1109,9 @@ dependencies = [
|
|
1133
1109
|
|
1134
1110
|
[[package]]
|
1135
1111
|
name = "multiversion-macros"
|
1136
|
-
version = "0.7.
|
1112
|
+
version = "0.7.2"
|
1137
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1138
|
-
checksum = "
|
1114
|
+
checksum = "04bffdccbd4798b61dce08c97ce8c66a68976f95541aaf284a6e90c1d1c306e1"
|
1139
1115
|
dependencies = [
|
1140
1116
|
"proc-macro2",
|
1141
1117
|
"quote",
|
@@ -1164,9 +1140,9 @@ dependencies = [
|
|
1164
1140
|
|
1165
1141
|
[[package]]
|
1166
1142
|
name = "ntapi"
|
1167
|
-
version = "0.4.
|
1143
|
+
version = "0.4.1"
|
1168
1144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1169
|
-
checksum = "
|
1145
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
1170
1146
|
dependencies = [
|
1171
1147
|
"winapi",
|
1172
1148
|
]
|
@@ -1193,19 +1169,28 @@ dependencies = [
|
|
1193
1169
|
|
1194
1170
|
[[package]]
|
1195
1171
|
name = "num_cpus"
|
1196
|
-
version = "1.
|
1172
|
+
version = "1.16.0"
|
1197
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1198
|
-
checksum = "
|
1174
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1199
1175
|
dependencies = [
|
1200
1176
|
"hermit-abi",
|
1201
1177
|
"libc",
|
1202
1178
|
]
|
1203
1179
|
|
1180
|
+
[[package]]
|
1181
|
+
name = "object"
|
1182
|
+
version = "0.31.1"
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
|
1185
|
+
dependencies = [
|
1186
|
+
"memchr",
|
1187
|
+
]
|
1188
|
+
|
1204
1189
|
[[package]]
|
1205
1190
|
name = "once_cell"
|
1206
|
-
version = "1.
|
1191
|
+
version = "1.18.0"
|
1207
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1208
|
-
checksum = "
|
1193
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
1209
1194
|
|
1210
1195
|
[[package]]
|
1211
1196
|
name = "parking_lot"
|
@@ -1225,7 +1210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
1210
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1226
1211
|
dependencies = [
|
1227
1212
|
"lock_api",
|
1228
|
-
"parking_lot_core 0.9.
|
1213
|
+
"parking_lot_core 0.9.8",
|
1229
1214
|
]
|
1230
1215
|
|
1231
1216
|
[[package]]
|
@@ -1237,22 +1222,22 @@ dependencies = [
|
|
1237
1222
|
"cfg-if",
|
1238
1223
|
"instant",
|
1239
1224
|
"libc",
|
1240
|
-
"redox_syscall",
|
1225
|
+
"redox_syscall 0.2.16",
|
1241
1226
|
"smallvec",
|
1242
1227
|
"winapi",
|
1243
1228
|
]
|
1244
1229
|
|
1245
1230
|
[[package]]
|
1246
1231
|
name = "parking_lot_core"
|
1247
|
-
version = "0.9.
|
1232
|
+
version = "0.9.8"
|
1248
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1249
|
-
checksum = "
|
1234
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
1250
1235
|
dependencies = [
|
1251
1236
|
"cfg-if",
|
1252
1237
|
"libc",
|
1253
|
-
"redox_syscall",
|
1238
|
+
"redox_syscall 0.3.5",
|
1254
1239
|
"smallvec",
|
1255
|
-
"windows-
|
1240
|
+
"windows-targets",
|
1256
1241
|
]
|
1257
1242
|
|
1258
1243
|
[[package]]
|
@@ -1267,9 +1252,9 @@ dependencies = [
|
|
1267
1252
|
|
1268
1253
|
[[package]]
|
1269
1254
|
name = "parquet2"
|
1270
|
-
version = "0.17.
|
1255
|
+
version = "0.17.2"
|
1271
1256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "
|
1257
|
+
checksum = "579fe5745f02cef3d5f236bfed216fd4693e49e4e920a13475c6132233283bce"
|
1273
1258
|
dependencies = [
|
1274
1259
|
"async-stream",
|
1275
1260
|
"brotli",
|
@@ -1280,7 +1265,7 @@ dependencies = [
|
|
1280
1265
|
"seq-macro",
|
1281
1266
|
"snap",
|
1282
1267
|
"streaming-decompression",
|
1283
|
-
"zstd
|
1268
|
+
"zstd",
|
1284
1269
|
]
|
1285
1270
|
|
1286
1271
|
[[package]]
|
@@ -1300,18 +1285,18 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
1300
1285
|
|
1301
1286
|
[[package]]
|
1302
1287
|
name = "phf"
|
1303
|
-
version = "0.11.
|
1288
|
+
version = "0.11.2"
|
1304
1289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1305
|
-
checksum = "
|
1290
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
1306
1291
|
dependencies = [
|
1307
1292
|
"phf_shared",
|
1308
1293
|
]
|
1309
1294
|
|
1310
1295
|
[[package]]
|
1311
1296
|
name = "phf_codegen"
|
1312
|
-
version = "0.11.
|
1297
|
+
version = "0.11.2"
|
1313
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1314
|
-
checksum = "
|
1299
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1315
1300
|
dependencies = [
|
1316
1301
|
"phf_generator",
|
1317
1302
|
"phf_shared",
|
@@ -1319,9 +1304,9 @@ dependencies = [
|
|
1319
1304
|
|
1320
1305
|
[[package]]
|
1321
1306
|
name = "phf_generator"
|
1322
|
-
version = "0.11.
|
1307
|
+
version = "0.11.2"
|
1323
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1324
|
-
checksum = "
|
1309
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
1325
1310
|
dependencies = [
|
1326
1311
|
"phf_shared",
|
1327
1312
|
"rand",
|
@@ -1329,18 +1314,18 @@ dependencies = [
|
|
1329
1314
|
|
1330
1315
|
[[package]]
|
1331
1316
|
name = "phf_shared"
|
1332
|
-
version = "0.11.
|
1317
|
+
version = "0.11.2"
|
1333
1318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1334
|
-
checksum = "
|
1319
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
1335
1320
|
dependencies = [
|
1336
1321
|
"siphasher",
|
1337
1322
|
]
|
1338
1323
|
|
1339
1324
|
[[package]]
|
1340
1325
|
name = "pin-project-lite"
|
1341
|
-
version = "0.2.
|
1326
|
+
version = "0.2.10"
|
1342
1327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1343
|
-
checksum = "
|
1328
|
+
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
|
1344
1329
|
|
1345
1330
|
[[package]]
|
1346
1331
|
name = "pin-utils"
|
@@ -1350,9 +1335,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1350
1335
|
|
1351
1336
|
[[package]]
|
1352
1337
|
name = "pkg-config"
|
1353
|
-
version = "0.3.
|
1338
|
+
version = "0.3.27"
|
1354
1339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1355
|
-
checksum = "
|
1340
|
+
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
1356
1341
|
|
1357
1342
|
[[package]]
|
1358
1343
|
name = "planus"
|
@@ -1365,13 +1350,14 @@ dependencies = [
|
|
1365
1350
|
|
1366
1351
|
[[package]]
|
1367
1352
|
name = "polars"
|
1368
|
-
version = "0.
|
1353
|
+
version = "0.6.0"
|
1369
1354
|
dependencies = [
|
1370
1355
|
"ahash",
|
1356
|
+
"chrono",
|
1371
1357
|
"jemallocator",
|
1372
1358
|
"magnus",
|
1373
1359
|
"mimalloc",
|
1374
|
-
"polars 0.
|
1360
|
+
"polars 0.31.1",
|
1375
1361
|
"polars-core",
|
1376
1362
|
"serde_json",
|
1377
1363
|
"smartstring",
|
@@ -1379,29 +1365,32 @@ dependencies = [
|
|
1379
1365
|
|
1380
1366
|
[[package]]
|
1381
1367
|
name = "polars"
|
1382
|
-
version = "0.
|
1368
|
+
version = "0.31.1"
|
1383
1369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1384
|
-
checksum = "
|
1370
|
+
checksum = "7e072ca6b1c26e686b18d86b607a17b1f8baa5fb0a713a1fefe033f0aa527bfd"
|
1385
1371
|
dependencies = [
|
1386
1372
|
"getrandom",
|
1387
1373
|
"polars-core",
|
1388
1374
|
"polars-io",
|
1389
1375
|
"polars-lazy",
|
1390
1376
|
"polars-ops",
|
1377
|
+
"polars-sql",
|
1391
1378
|
"polars-time",
|
1392
1379
|
"version_check",
|
1393
1380
|
]
|
1394
1381
|
|
1395
1382
|
[[package]]
|
1396
1383
|
name = "polars-arrow"
|
1397
|
-
version = "0.
|
1384
|
+
version = "0.31.1"
|
1398
1385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
-
checksum = "
|
1386
|
+
checksum = "d52f7b885c589dd7184c881be3dfb149feb1f405083fdd2fd9194e8f96104b76"
|
1400
1387
|
dependencies = [
|
1401
1388
|
"arrow2",
|
1389
|
+
"atoi",
|
1402
1390
|
"chrono",
|
1403
1391
|
"chrono-tz",
|
1404
|
-
"
|
1392
|
+
"ethnum",
|
1393
|
+
"hashbrown 0.14.0",
|
1405
1394
|
"multiversion",
|
1406
1395
|
"num-traits",
|
1407
1396
|
"polars-error",
|
@@ -1411,9 +1400,9 @@ dependencies = [
|
|
1411
1400
|
|
1412
1401
|
[[package]]
|
1413
1402
|
name = "polars-core"
|
1414
|
-
version = "0.
|
1403
|
+
version = "0.31.1"
|
1415
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1416
|
-
checksum = "
|
1405
|
+
checksum = "9f98d6b1ef5362f76063b4984634d371de72f4834f50892944d48fd7b7d5ae45"
|
1417
1406
|
dependencies = [
|
1418
1407
|
"ahash",
|
1419
1408
|
"arrow2",
|
@@ -1422,7 +1411,7 @@ dependencies = [
|
|
1422
1411
|
"chrono-tz",
|
1423
1412
|
"comfy-table",
|
1424
1413
|
"either",
|
1425
|
-
"hashbrown 0.
|
1414
|
+
"hashbrown 0.14.0",
|
1426
1415
|
"indexmap",
|
1427
1416
|
"itoap",
|
1428
1417
|
"num-traits",
|
@@ -1445,9 +1434,9 @@ dependencies = [
|
|
1445
1434
|
|
1446
1435
|
[[package]]
|
1447
1436
|
name = "polars-error"
|
1448
|
-
version = "0.
|
1437
|
+
version = "0.31.1"
|
1449
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
-
checksum = "
|
1439
|
+
checksum = "b1557cd24b1865194bac6979765cfec5e97ecd8af5dcb7858a17b31d1e7fbf70"
|
1451
1440
|
dependencies = [
|
1452
1441
|
"arrow2",
|
1453
1442
|
"regex",
|
@@ -1456,9 +1445,9 @@ dependencies = [
|
|
1456
1445
|
|
1457
1446
|
[[package]]
|
1458
1447
|
name = "polars-io"
|
1459
|
-
version = "0.
|
1448
|
+
version = "0.31.1"
|
1460
1449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1461
|
-
checksum = "
|
1450
|
+
checksum = "c44b1c6d7b2c04e459effb93bac050f90762687cb752c534967476c452478a65"
|
1462
1451
|
dependencies = [
|
1463
1452
|
"ahash",
|
1464
1453
|
"arrow2",
|
@@ -1466,9 +1455,9 @@ dependencies = [
|
|
1466
1455
|
"bytes",
|
1467
1456
|
"chrono",
|
1468
1457
|
"chrono-tz",
|
1469
|
-
"dirs",
|
1470
1458
|
"fast-float",
|
1471
1459
|
"futures",
|
1460
|
+
"home",
|
1472
1461
|
"lexical",
|
1473
1462
|
"lexical-core",
|
1474
1463
|
"memchr",
|
@@ -1478,6 +1467,7 @@ dependencies = [
|
|
1478
1467
|
"polars-arrow",
|
1479
1468
|
"polars-core",
|
1480
1469
|
"polars-error",
|
1470
|
+
"polars-json",
|
1481
1471
|
"polars-time",
|
1482
1472
|
"polars-utils",
|
1483
1473
|
"rayon",
|
@@ -1489,18 +1479,38 @@ dependencies = [
|
|
1489
1479
|
"tokio",
|
1490
1480
|
]
|
1491
1481
|
|
1482
|
+
[[package]]
|
1483
|
+
name = "polars-json"
|
1484
|
+
version = "0.31.1"
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
+
checksum = "7eef6b83136b3884ce356ed74b58eeedc81d81b981e901fbd15f16c96a5ff315"
|
1487
|
+
dependencies = [
|
1488
|
+
"ahash",
|
1489
|
+
"arrow2",
|
1490
|
+
"fallible-streaming-iterator",
|
1491
|
+
"hashbrown 0.14.0",
|
1492
|
+
"indexmap",
|
1493
|
+
"num-traits",
|
1494
|
+
"polars-arrow",
|
1495
|
+
"polars-error",
|
1496
|
+
"polars-utils",
|
1497
|
+
"simd-json",
|
1498
|
+
]
|
1499
|
+
|
1492
1500
|
[[package]]
|
1493
1501
|
name = "polars-lazy"
|
1494
|
-
version = "0.
|
1502
|
+
version = "0.31.1"
|
1495
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1496
|
-
checksum = "
|
1504
|
+
checksum = "494f1e75a035978339b06bdcc4d60523ec347243ac65f11794a7eeaba0507d4e"
|
1497
1505
|
dependencies = [
|
1498
1506
|
"ahash",
|
1499
1507
|
"bitflags",
|
1500
1508
|
"glob",
|
1509
|
+
"once_cell",
|
1501
1510
|
"polars-arrow",
|
1502
1511
|
"polars-core",
|
1503
1512
|
"polars-io",
|
1513
|
+
"polars-json",
|
1504
1514
|
"polars-ops",
|
1505
1515
|
"polars-pipe",
|
1506
1516
|
"polars-plan",
|
@@ -1512,18 +1522,21 @@ dependencies = [
|
|
1512
1522
|
|
1513
1523
|
[[package]]
|
1514
1524
|
name = "polars-ops"
|
1515
|
-
version = "0.
|
1525
|
+
version = "0.31.1"
|
1516
1526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1517
|
-
checksum = "
|
1527
|
+
checksum = "06dd95bc84a7bf17886670420097c5fb8b88906ebb16653153ce5f0cf71ffd6e"
|
1518
1528
|
dependencies = [
|
1529
|
+
"argminmax",
|
1519
1530
|
"arrow2",
|
1520
1531
|
"base64",
|
1521
1532
|
"either",
|
1522
1533
|
"hex",
|
1534
|
+
"indexmap",
|
1523
1535
|
"jsonpath_lib",
|
1524
1536
|
"memchr",
|
1525
1537
|
"polars-arrow",
|
1526
1538
|
"polars-core",
|
1539
|
+
"polars-json",
|
1527
1540
|
"polars-utils",
|
1528
1541
|
"serde",
|
1529
1542
|
"serde_json",
|
@@ -1532,13 +1545,14 @@ dependencies = [
|
|
1532
1545
|
|
1533
1546
|
[[package]]
|
1534
1547
|
name = "polars-pipe"
|
1535
|
-
version = "0.
|
1548
|
+
version = "0.31.1"
|
1536
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1537
|
-
checksum = "
|
1550
|
+
checksum = "ff34c8f09c064ab26bc9283c13b6a1571083c30c4c3812301cd84cdd3982a2e0"
|
1538
1551
|
dependencies = [
|
1539
1552
|
"crossbeam-channel",
|
1553
|
+
"crossbeam-queue",
|
1540
1554
|
"enum_dispatch",
|
1541
|
-
"hashbrown 0.
|
1555
|
+
"hashbrown 0.14.0",
|
1542
1556
|
"num-traits",
|
1543
1557
|
"polars-arrow",
|
1544
1558
|
"polars-core",
|
@@ -1553,9 +1567,9 @@ dependencies = [
|
|
1553
1567
|
|
1554
1568
|
[[package]]
|
1555
1569
|
name = "polars-plan"
|
1556
|
-
version = "0.
|
1570
|
+
version = "0.31.1"
|
1557
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1558
|
-
checksum = "
|
1572
|
+
checksum = "58f0837dac2b7064e04a2a37a2bff20f75a455d23b29f2dd82f0345de62d3bfb"
|
1559
1573
|
dependencies = [
|
1560
1574
|
"ahash",
|
1561
1575
|
"arrow2",
|
@@ -1572,24 +1586,40 @@ dependencies = [
|
|
1572
1586
|
"regex",
|
1573
1587
|
"serde",
|
1574
1588
|
"smartstring",
|
1589
|
+
"strum_macros 0.25.1",
|
1575
1590
|
]
|
1576
1591
|
|
1577
1592
|
[[package]]
|
1578
1593
|
name = "polars-row"
|
1579
|
-
version = "0.
|
1594
|
+
version = "0.31.1"
|
1580
1595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1581
|
-
checksum = "
|
1596
|
+
checksum = "46235f6f67005fff3fd8095b994e86f846b5affd6fc6f36f41099a4dbc27d714"
|
1582
1597
|
dependencies = [
|
1583
1598
|
"arrow2",
|
1584
1599
|
"polars-error",
|
1585
1600
|
"polars-utils",
|
1586
1601
|
]
|
1587
1602
|
|
1603
|
+
[[package]]
|
1604
|
+
name = "polars-sql"
|
1605
|
+
version = "0.31.1"
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
+
checksum = "f7f716671c8e8ed1db6ebdbfcc7ca0c98a599e92c340747c24072b86e8839bed"
|
1608
|
+
dependencies = [
|
1609
|
+
"polars-arrow",
|
1610
|
+
"polars-core",
|
1611
|
+
"polars-lazy",
|
1612
|
+
"polars-plan",
|
1613
|
+
"serde",
|
1614
|
+
"serde_json",
|
1615
|
+
"sqlparser",
|
1616
|
+
]
|
1617
|
+
|
1588
1618
|
[[package]]
|
1589
1619
|
name = "polars-time"
|
1590
|
-
version = "0.
|
1620
|
+
version = "0.31.1"
|
1591
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1592
|
-
checksum = "
|
1622
|
+
checksum = "02488938edfbff6efed56a4f90ebd6574ea16a7d32b6dc678134624031f7f3e9"
|
1593
1623
|
dependencies = [
|
1594
1624
|
"arrow2",
|
1595
1625
|
"atoi",
|
@@ -1608,10 +1638,13 @@ dependencies = [
|
|
1608
1638
|
|
1609
1639
|
[[package]]
|
1610
1640
|
name = "polars-utils"
|
1611
|
-
version = "0.
|
1641
|
+
version = "0.31.1"
|
1612
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1613
|
-
checksum = "
|
1643
|
+
checksum = "69f04f6c127b8d20292b4d49b5fb0e47c652875b316274f74f52e77d50f6a459"
|
1614
1644
|
dependencies = [
|
1645
|
+
"ahash",
|
1646
|
+
"hashbrown 0.14.0",
|
1647
|
+
"num-traits",
|
1615
1648
|
"once_cell",
|
1616
1649
|
"rayon",
|
1617
1650
|
"smartstring",
|
@@ -1626,18 +1659,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1626
1659
|
|
1627
1660
|
[[package]]
|
1628
1661
|
name = "proc-macro2"
|
1629
|
-
version = "1.0.
|
1662
|
+
version = "1.0.64"
|
1630
1663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
-
checksum = "
|
1664
|
+
checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
|
1632
1665
|
dependencies = [
|
1633
1666
|
"unicode-ident",
|
1634
1667
|
]
|
1635
1668
|
|
1636
1669
|
[[package]]
|
1637
1670
|
name = "quote"
|
1638
|
-
version = "1.0.
|
1671
|
+
version = "1.0.29"
|
1639
1672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640
|
-
checksum = "
|
1673
|
+
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
|
1641
1674
|
dependencies = [
|
1642
1675
|
"proc-macro2",
|
1643
1676
|
]
|
@@ -1706,18 +1739,18 @@ dependencies = [
|
|
1706
1739
|
|
1707
1740
|
[[package]]
|
1708
1741
|
name = "rb-sys"
|
1709
|
-
version = "0.9.
|
1742
|
+
version = "0.9.79"
|
1710
1743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1711
|
-
checksum = "
|
1744
|
+
checksum = "939fb78db3e4f26665c1d4c7b91ca66d3578335a19aba552d4a6445811d07072"
|
1712
1745
|
dependencies = [
|
1713
1746
|
"rb-sys-build",
|
1714
1747
|
]
|
1715
1748
|
|
1716
1749
|
[[package]]
|
1717
1750
|
name = "rb-sys-build"
|
1718
|
-
version = "0.9.
|
1751
|
+
version = "0.9.79"
|
1719
1752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1720
|
-
checksum = "
|
1753
|
+
checksum = "335a95eb0420d52fa94ef12019df3c2c250c6b19cbb3c60bd05cb7e9c362072c"
|
1721
1754
|
dependencies = [
|
1722
1755
|
"bindgen",
|
1723
1756
|
"lazy_static",
|
@@ -1744,25 +1777,35 @@ dependencies = [
|
|
1744
1777
|
]
|
1745
1778
|
|
1746
1779
|
[[package]]
|
1747
|
-
name = "
|
1748
|
-
version = "0.
|
1780
|
+
name = "redox_syscall"
|
1781
|
+
version = "0.3.5"
|
1749
1782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1750
|
-
checksum = "
|
1783
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
1751
1784
|
dependencies = [
|
1752
|
-
"
|
1753
|
-
"redox_syscall",
|
1754
|
-
"thiserror",
|
1785
|
+
"bitflags",
|
1755
1786
|
]
|
1756
1787
|
|
1757
1788
|
[[package]]
|
1758
1789
|
name = "regex"
|
1759
|
-
version = "1.
|
1790
|
+
version = "1.9.1"
|
1760
1791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1761
|
-
checksum = "
|
1792
|
+
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
1762
1793
|
dependencies = [
|
1763
1794
|
"aho-corasick",
|
1764
1795
|
"memchr",
|
1765
|
-
"regex-
|
1796
|
+
"regex-automata",
|
1797
|
+
"regex-syntax 0.7.4",
|
1798
|
+
]
|
1799
|
+
|
1800
|
+
[[package]]
|
1801
|
+
name = "regex-automata"
|
1802
|
+
version = "0.3.3"
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
+
checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
|
1805
|
+
dependencies = [
|
1806
|
+
"aho-corasick",
|
1807
|
+
"memchr",
|
1808
|
+
"regex-syntax 0.7.4",
|
1766
1809
|
]
|
1767
1810
|
|
1768
1811
|
[[package]]
|
@@ -1771,12 +1814,24 @@ version = "0.6.29"
|
|
1771
1814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1772
1815
|
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
1773
1816
|
|
1817
|
+
[[package]]
|
1818
|
+
name = "regex-syntax"
|
1819
|
+
version = "0.7.4"
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1821
|
+
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
|
1822
|
+
|
1774
1823
|
[[package]]
|
1775
1824
|
name = "rle-decode-fast"
|
1776
1825
|
version = "1.0.3"
|
1777
1826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1778
1827
|
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
1779
1828
|
|
1829
|
+
[[package]]
|
1830
|
+
name = "rustc-demangle"
|
1831
|
+
version = "0.1.23"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
1834
|
+
|
1780
1835
|
[[package]]
|
1781
1836
|
name = "rustc-hash"
|
1782
1837
|
version = "1.1.0"
|
@@ -1794,15 +1849,15 @@ dependencies = [
|
|
1794
1849
|
|
1795
1850
|
[[package]]
|
1796
1851
|
name = "rustversion"
|
1797
|
-
version = "1.0.
|
1852
|
+
version = "1.0.13"
|
1798
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1799
|
-
checksum = "
|
1854
|
+
checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
|
1800
1855
|
|
1801
1856
|
[[package]]
|
1802
1857
|
name = "ryu"
|
1803
|
-
version = "1.0.
|
1858
|
+
version = "1.0.14"
|
1804
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1805
|
-
checksum = "
|
1860
|
+
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
|
1806
1861
|
|
1807
1862
|
[[package]]
|
1808
1863
|
name = "scopeguard"
|
@@ -1810,12 +1865,6 @@ version = "1.1.0"
|
|
1810
1865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1811
1866
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1812
1867
|
|
1813
|
-
[[package]]
|
1814
|
-
name = "scratch"
|
1815
|
-
version = "1.0.5"
|
1816
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1817
|
-
checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
|
1818
|
-
|
1819
1868
|
[[package]]
|
1820
1869
|
name = "semver"
|
1821
1870
|
version = "1.0.17"
|
@@ -1824,35 +1873,35 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1824
1873
|
|
1825
1874
|
[[package]]
|
1826
1875
|
name = "seq-macro"
|
1827
|
-
version = "0.3.
|
1876
|
+
version = "0.3.4"
|
1828
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1829
|
-
checksum = "
|
1878
|
+
checksum = "63134939175b3131fe4d2c131b103fd42f25ccca89423d43b5e4f267920ccf03"
|
1830
1879
|
|
1831
1880
|
[[package]]
|
1832
1881
|
name = "serde"
|
1833
|
-
version = "1.0.
|
1882
|
+
version = "1.0.171"
|
1834
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1835
|
-
checksum = "
|
1884
|
+
checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
|
1836
1885
|
dependencies = [
|
1837
1886
|
"serde_derive",
|
1838
1887
|
]
|
1839
1888
|
|
1840
1889
|
[[package]]
|
1841
1890
|
name = "serde_derive"
|
1842
|
-
version = "1.0.
|
1891
|
+
version = "1.0.171"
|
1843
1892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
-
checksum = "
|
1893
|
+
checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
|
1845
1894
|
dependencies = [
|
1846
1895
|
"proc-macro2",
|
1847
1896
|
"quote",
|
1848
|
-
"syn 2.0.
|
1897
|
+
"syn 2.0.26",
|
1849
1898
|
]
|
1850
1899
|
|
1851
1900
|
[[package]]
|
1852
1901
|
name = "serde_json"
|
1853
|
-
version = "1.0.
|
1902
|
+
version = "1.0.102"
|
1854
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1855
|
-
checksum = "
|
1904
|
+
checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed"
|
1856
1905
|
dependencies = [
|
1857
1906
|
"indexmap",
|
1858
1907
|
"itoa",
|
@@ -1874,9 +1923,9 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
|
1874
1923
|
|
1875
1924
|
[[package]]
|
1876
1925
|
name = "signal-hook"
|
1877
|
-
version = "0.3.
|
1926
|
+
version = "0.3.16"
|
1878
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1879
|
-
checksum = "
|
1928
|
+
checksum = "b824b6e687aff278cdbf3b36f07aa52d4bd4099699324d5da86a2ebce3aa00b3"
|
1880
1929
|
dependencies = [
|
1881
1930
|
"libc",
|
1882
1931
|
"signal-hook-registry",
|
@@ -1904,12 +1953,14 @@ dependencies = [
|
|
1904
1953
|
|
1905
1954
|
[[package]]
|
1906
1955
|
name = "simd-json"
|
1907
|
-
version = "0.
|
1956
|
+
version = "0.10.3"
|
1908
1957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1909
|
-
checksum = "
|
1958
|
+
checksum = "a3d0815e7ff0f1f05e09d4b029f86d8a330f0ab15b35b28736f3758325f59e14"
|
1910
1959
|
dependencies = [
|
1960
|
+
"ahash",
|
1911
1961
|
"halfbrown",
|
1912
1962
|
"lexical-core",
|
1963
|
+
"once_cell",
|
1913
1964
|
"serde",
|
1914
1965
|
"serde_json",
|
1915
1966
|
"simdutf8",
|
@@ -1939,9 +1990,9 @@ dependencies = [
|
|
1939
1990
|
|
1940
1991
|
[[package]]
|
1941
1992
|
name = "smallvec"
|
1942
|
-
version = "1.
|
1993
|
+
version = "1.11.0"
|
1943
1994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1944
|
-
checksum = "
|
1995
|
+
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
1945
1996
|
|
1946
1997
|
[[package]]
|
1947
1998
|
name = "smartstring"
|
@@ -1971,6 +2022,15 @@ dependencies = [
|
|
1971
2022
|
"winapi",
|
1972
2023
|
]
|
1973
2024
|
|
2025
|
+
[[package]]
|
2026
|
+
name = "sqlparser"
|
2027
|
+
version = "0.34.0"
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2029
|
+
checksum = "37d3706eefb17039056234df6b566b0014f303f867f2656108334a55b8096f59"
|
2030
|
+
dependencies = [
|
2031
|
+
"log",
|
2032
|
+
]
|
2033
|
+
|
1974
2034
|
[[package]]
|
1975
2035
|
name = "static_assertions"
|
1976
2036
|
version = "1.1.0"
|
@@ -2017,6 +2077,19 @@ dependencies = [
|
|
2017
2077
|
"syn 1.0.109",
|
2018
2078
|
]
|
2019
2079
|
|
2080
|
+
[[package]]
|
2081
|
+
name = "strum_macros"
|
2082
|
+
version = "0.25.1"
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2084
|
+
checksum = "6069ca09d878a33f883cc06aaa9718ede171841d3832450354410b718b097232"
|
2085
|
+
dependencies = [
|
2086
|
+
"heck",
|
2087
|
+
"proc-macro2",
|
2088
|
+
"quote",
|
2089
|
+
"rustversion",
|
2090
|
+
"syn 2.0.26",
|
2091
|
+
]
|
2092
|
+
|
2020
2093
|
[[package]]
|
2021
2094
|
name = "syn"
|
2022
2095
|
version = "1.0.109"
|
@@ -2030,9 +2103,9 @@ dependencies = [
|
|
2030
2103
|
|
2031
2104
|
[[package]]
|
2032
2105
|
name = "syn"
|
2033
|
-
version = "2.0.
|
2106
|
+
version = "2.0.26"
|
2034
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2035
|
-
checksum = "
|
2108
|
+
checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970"
|
2036
2109
|
dependencies = [
|
2037
2110
|
"proc-macro2",
|
2038
2111
|
"quote",
|
@@ -2041,9 +2114,9 @@ dependencies = [
|
|
2041
2114
|
|
2042
2115
|
[[package]]
|
2043
2116
|
name = "sysinfo"
|
2044
|
-
version = "0.
|
2117
|
+
version = "0.29.4"
|
2045
2118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2046
|
-
checksum = "
|
2119
|
+
checksum = "751e810399bba86e9326f5762b7f32ac5a085542df78da6a78d94e07d14d7c11"
|
2047
2120
|
dependencies = [
|
2048
2121
|
"cfg-if",
|
2049
2122
|
"core-foundation-sys",
|
@@ -2055,37 +2128,28 @@ dependencies = [
|
|
2055
2128
|
|
2056
2129
|
[[package]]
|
2057
2130
|
name = "target-features"
|
2058
|
-
version = "0.1.
|
2059
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2060
|
-
checksum = "24840de800c1707d75c800893dbd727a5e1501ce921944e602f0698167491e36"
|
2061
|
-
|
2062
|
-
[[package]]
|
2063
|
-
name = "termcolor"
|
2064
|
-
version = "1.2.0"
|
2131
|
+
version = "0.1.4"
|
2065
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2066
|
-
checksum = "
|
2067
|
-
dependencies = [
|
2068
|
-
"winapi-util",
|
2069
|
-
]
|
2133
|
+
checksum = "06f6b473c37f9add4cf1df5b4d66a8ef58ab6c895f1a3b3f949cf3e21230140e"
|
2070
2134
|
|
2071
2135
|
[[package]]
|
2072
2136
|
name = "thiserror"
|
2073
|
-
version = "1.0.
|
2137
|
+
version = "1.0.43"
|
2074
2138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2075
|
-
checksum = "
|
2139
|
+
checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
|
2076
2140
|
dependencies = [
|
2077
2141
|
"thiserror-impl",
|
2078
2142
|
]
|
2079
2143
|
|
2080
2144
|
[[package]]
|
2081
2145
|
name = "thiserror-impl"
|
2082
|
-
version = "1.0.
|
2146
|
+
version = "1.0.43"
|
2083
2147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2084
|
-
checksum = "
|
2148
|
+
checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
|
2085
2149
|
dependencies = [
|
2086
2150
|
"proc-macro2",
|
2087
2151
|
"quote",
|
2088
|
-
"syn 2.0.
|
2152
|
+
"syn 2.0.26",
|
2089
2153
|
]
|
2090
2154
|
|
2091
2155
|
[[package]]
|
@@ -2101,11 +2165,12 @@ dependencies = [
|
|
2101
2165
|
|
2102
2166
|
[[package]]
|
2103
2167
|
name = "tokio"
|
2104
|
-
version = "1.
|
2168
|
+
version = "1.29.1"
|
2105
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2106
|
-
checksum = "
|
2170
|
+
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
|
2107
2171
|
dependencies = [
|
2108
2172
|
"autocfg",
|
2173
|
+
"backtrace",
|
2109
2174
|
"libc",
|
2110
2175
|
"mio",
|
2111
2176
|
"pin-project-lite",
|
@@ -2115,9 +2180,9 @@ dependencies = [
|
|
2115
2180
|
|
2116
2181
|
[[package]]
|
2117
2182
|
name = "unicode-ident"
|
2118
|
-
version = "1.0.
|
2183
|
+
version = "1.0.11"
|
2119
2184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2120
|
-
checksum = "
|
2185
|
+
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
|
2121
2186
|
|
2122
2187
|
[[package]]
|
2123
2188
|
name = "unicode-width"
|
@@ -2127,9 +2192,9 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
2127
2192
|
|
2128
2193
|
[[package]]
|
2129
2194
|
name = "value-trait"
|
2130
|
-
version = "0.
|
2195
|
+
version = "0.6.1"
|
2131
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2132
|
-
checksum = "
|
2197
|
+
checksum = "09a5b6c8ceb01263b969cac48d4a6705134d490ded13d889e52c0cfc80c6945e"
|
2133
2198
|
dependencies = [
|
2134
2199
|
"float-cmp",
|
2135
2200
|
"halfbrown",
|
@@ -2157,9 +2222,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2157
2222
|
|
2158
2223
|
[[package]]
|
2159
2224
|
name = "wasm-bindgen"
|
2160
|
-
version = "0.2.
|
2225
|
+
version = "0.2.87"
|
2161
2226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2162
|
-
checksum = "
|
2227
|
+
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
2163
2228
|
dependencies = [
|
2164
2229
|
"cfg-if",
|
2165
2230
|
"wasm-bindgen-macro",
|
@@ -2167,24 +2232,24 @@ dependencies = [
|
|
2167
2232
|
|
2168
2233
|
[[package]]
|
2169
2234
|
name = "wasm-bindgen-backend"
|
2170
|
-
version = "0.2.
|
2235
|
+
version = "0.2.87"
|
2171
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2172
|
-
checksum = "
|
2237
|
+
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
2173
2238
|
dependencies = [
|
2174
2239
|
"bumpalo",
|
2175
2240
|
"log",
|
2176
2241
|
"once_cell",
|
2177
2242
|
"proc-macro2",
|
2178
2243
|
"quote",
|
2179
|
-
"syn
|
2244
|
+
"syn 2.0.26",
|
2180
2245
|
"wasm-bindgen-shared",
|
2181
2246
|
]
|
2182
2247
|
|
2183
2248
|
[[package]]
|
2184
2249
|
name = "wasm-bindgen-futures"
|
2185
|
-
version = "0.4.
|
2250
|
+
version = "0.4.37"
|
2186
2251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
-
checksum = "
|
2252
|
+
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
2188
2253
|
dependencies = [
|
2189
2254
|
"cfg-if",
|
2190
2255
|
"js-sys",
|
@@ -2194,9 +2259,9 @@ dependencies = [
|
|
2194
2259
|
|
2195
2260
|
[[package]]
|
2196
2261
|
name = "wasm-bindgen-macro"
|
2197
|
-
version = "0.2.
|
2262
|
+
version = "0.2.87"
|
2198
2263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2199
|
-
checksum = "
|
2264
|
+
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
2200
2265
|
dependencies = [
|
2201
2266
|
"quote",
|
2202
2267
|
"wasm-bindgen-macro-support",
|
@@ -2204,22 +2269,22 @@ dependencies = [
|
|
2204
2269
|
|
2205
2270
|
[[package]]
|
2206
2271
|
name = "wasm-bindgen-macro-support"
|
2207
|
-
version = "0.2.
|
2272
|
+
version = "0.2.87"
|
2208
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2209
|
-
checksum = "
|
2274
|
+
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
2210
2275
|
dependencies = [
|
2211
2276
|
"proc-macro2",
|
2212
2277
|
"quote",
|
2213
|
-
"syn
|
2278
|
+
"syn 2.0.26",
|
2214
2279
|
"wasm-bindgen-backend",
|
2215
2280
|
"wasm-bindgen-shared",
|
2216
2281
|
]
|
2217
2282
|
|
2218
2283
|
[[package]]
|
2219
2284
|
name = "wasm-bindgen-shared"
|
2220
|
-
version = "0.2.
|
2285
|
+
version = "0.2.87"
|
2221
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2222
|
-
checksum = "
|
2287
|
+
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
2223
2288
|
|
2224
2289
|
[[package]]
|
2225
2290
|
name = "wasm-timer"
|
@@ -2238,9 +2303,9 @@ dependencies = [
|
|
2238
2303
|
|
2239
2304
|
[[package]]
|
2240
2305
|
name = "web-sys"
|
2241
|
-
version = "0.3.
|
2306
|
+
version = "0.3.64"
|
2242
2307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2243
|
-
checksum = "
|
2308
|
+
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
2244
2309
|
dependencies = [
|
2245
2310
|
"js-sys",
|
2246
2311
|
"wasm-bindgen",
|
@@ -2262,15 +2327,6 @@ version = "0.4.0"
|
|
2262
2327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2263
2328
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2264
2329
|
|
2265
|
-
[[package]]
|
2266
|
-
name = "winapi-util"
|
2267
|
-
version = "0.1.5"
|
2268
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2269
|
-
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2270
|
-
dependencies = [
|
2271
|
-
"winapi",
|
2272
|
-
]
|
2273
|
-
|
2274
2330
|
[[package]]
|
2275
2331
|
name = "winapi-x86_64-pc-windows-gnu"
|
2276
2332
|
version = "0.4.0"
|
@@ -2279,27 +2335,27 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2279
2335
|
|
2280
2336
|
[[package]]
|
2281
2337
|
name = "windows"
|
2282
|
-
version = "0.
|
2338
|
+
version = "0.48.0"
|
2283
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2284
|
-
checksum = "
|
2340
|
+
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
2285
2341
|
dependencies = [
|
2286
2342
|
"windows-targets",
|
2287
2343
|
]
|
2288
2344
|
|
2289
2345
|
[[package]]
|
2290
2346
|
name = "windows-sys"
|
2291
|
-
version = "0.
|
2347
|
+
version = "0.48.0"
|
2292
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2293
|
-
checksum = "
|
2349
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2294
2350
|
dependencies = [
|
2295
2351
|
"windows-targets",
|
2296
2352
|
]
|
2297
2353
|
|
2298
2354
|
[[package]]
|
2299
2355
|
name = "windows-targets"
|
2300
|
-
version = "0.
|
2356
|
+
version = "0.48.1"
|
2301
2357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2302
|
-
checksum = "
|
2358
|
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
2303
2359
|
dependencies = [
|
2304
2360
|
"windows_aarch64_gnullvm",
|
2305
2361
|
"windows_aarch64_msvc",
|
@@ -2312,45 +2368,45 @@ dependencies = [
|
|
2312
2368
|
|
2313
2369
|
[[package]]
|
2314
2370
|
name = "windows_aarch64_gnullvm"
|
2315
|
-
version = "0.
|
2371
|
+
version = "0.48.0"
|
2316
2372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
-
checksum = "
|
2373
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2318
2374
|
|
2319
2375
|
[[package]]
|
2320
2376
|
name = "windows_aarch64_msvc"
|
2321
|
-
version = "0.
|
2377
|
+
version = "0.48.0"
|
2322
2378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2323
|
-
checksum = "
|
2379
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2324
2380
|
|
2325
2381
|
[[package]]
|
2326
2382
|
name = "windows_i686_gnu"
|
2327
|
-
version = "0.
|
2383
|
+
version = "0.48.0"
|
2328
2384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2329
|
-
checksum = "
|
2385
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2330
2386
|
|
2331
2387
|
[[package]]
|
2332
2388
|
name = "windows_i686_msvc"
|
2333
|
-
version = "0.
|
2389
|
+
version = "0.48.0"
|
2334
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2335
|
-
checksum = "
|
2391
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2336
2392
|
|
2337
2393
|
[[package]]
|
2338
2394
|
name = "windows_x86_64_gnu"
|
2339
|
-
version = "0.
|
2395
|
+
version = "0.48.0"
|
2340
2396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2341
|
-
checksum = "
|
2397
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2342
2398
|
|
2343
2399
|
[[package]]
|
2344
2400
|
name = "windows_x86_64_gnullvm"
|
2345
|
-
version = "0.
|
2401
|
+
version = "0.48.0"
|
2346
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
-
checksum = "
|
2403
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2348
2404
|
|
2349
2405
|
[[package]]
|
2350
2406
|
name = "windows_x86_64_msvc"
|
2351
|
-
version = "0.
|
2407
|
+
version = "0.48.0"
|
2352
2408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2353
|
-
checksum = "
|
2409
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
2354
2410
|
|
2355
2411
|
[[package]]
|
2356
2412
|
name = "xxhash-rust"
|
@@ -2358,39 +2414,20 @@ version = "0.8.6"
|
|
2358
2414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2359
2415
|
checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"
|
2360
2416
|
|
2361
|
-
[[package]]
|
2362
|
-
name = "zstd"
|
2363
|
-
version = "0.11.2+zstd.1.5.2"
|
2364
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
|
-
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
2366
|
-
dependencies = [
|
2367
|
-
"zstd-safe 5.0.2+zstd.1.5.2",
|
2368
|
-
]
|
2369
|
-
|
2370
2417
|
[[package]]
|
2371
2418
|
name = "zstd"
|
2372
2419
|
version = "0.12.3+zstd.1.5.2"
|
2373
2420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2374
2421
|
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
|
2375
2422
|
dependencies = [
|
2376
|
-
"zstd-safe
|
2377
|
-
]
|
2378
|
-
|
2379
|
-
[[package]]
|
2380
|
-
name = "zstd-safe"
|
2381
|
-
version = "5.0.2+zstd.1.5.2"
|
2382
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2383
|
-
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
2384
|
-
dependencies = [
|
2385
|
-
"libc",
|
2386
|
-
"zstd-sys",
|
2423
|
+
"zstd-safe",
|
2387
2424
|
]
|
2388
2425
|
|
2389
2426
|
[[package]]
|
2390
2427
|
name = "zstd-safe"
|
2391
|
-
version = "6.0.
|
2428
|
+
version = "6.0.5+zstd.1.5.4"
|
2392
2429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
-
checksum = "
|
2430
|
+
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
|
2394
2431
|
dependencies = [
|
2395
2432
|
"libc",
|
2396
2433
|
"zstd-sys",
|
@@ -2398,9 +2435,9 @@ dependencies = [
|
|
2398
2435
|
|
2399
2436
|
[[package]]
|
2400
2437
|
name = "zstd-sys"
|
2401
|
-
version = "2.0.
|
2438
|
+
version = "2.0.8+zstd.1.5.5"
|
2402
2439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
-
checksum = "
|
2440
|
+
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
2404
2441
|
dependencies = [
|
2405
2442
|
"cc",
|
2406
2443
|
"libc",
|