polars-df 0.6.0-x86_64-linux → 0.7.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Cargo.lock +468 -538
- data/Cargo.toml +1 -0
- data/LICENSE-THIRD-PARTY.txt +3223 -4194
- data/README.md +8 -7
- data/lib/polars/3.0/polars.so +0 -0
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/config.rb +530 -0
- data/lib/polars/data_frame.rb +115 -82
- data/lib/polars/date_time_expr.rb +13 -18
- data/lib/polars/date_time_name_space.rb +5 -25
- data/lib/polars/dynamic_group_by.rb +2 -2
- data/lib/polars/expr.rb +177 -94
- data/lib/polars/functions.rb +29 -37
- data/lib/polars/group_by.rb +38 -55
- data/lib/polars/io.rb +37 -2
- data/lib/polars/lazy_frame.rb +93 -66
- data/lib/polars/lazy_functions.rb +36 -48
- data/lib/polars/lazy_group_by.rb +7 -8
- data/lib/polars/list_expr.rb +12 -8
- data/lib/polars/list_name_space.rb +2 -2
- data/lib/polars/name_expr.rb +198 -0
- data/lib/polars/rolling_group_by.rb +2 -2
- data/lib/polars/series.rb +26 -13
- data/lib/polars/sql_context.rb +194 -0
- data/lib/polars/string_expr.rb +114 -60
- data/lib/polars/string_name_space.rb +19 -4
- data/lib/polars/utils.rb +12 -0
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +3 -0
- metadata +5 -2
data/Cargo.lock
CHANGED
@@ -4,9 +4,9 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
7
|
-
version = "0.
|
7
|
+
version = "0.21.0"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
10
10
|
dependencies = [
|
11
11
|
"gimli",
|
12
12
|
]
|
@@ -25,21 +25,22 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
25
25
|
|
26
26
|
[[package]]
|
27
27
|
name = "ahash"
|
28
|
-
version = "0.8.
|
28
|
+
version = "0.8.6"
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "
|
30
|
+
checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
|
31
31
|
dependencies = [
|
32
32
|
"cfg-if",
|
33
33
|
"getrandom",
|
34
34
|
"once_cell",
|
35
35
|
"version_check",
|
36
|
+
"zerocopy",
|
36
37
|
]
|
37
38
|
|
38
39
|
[[package]]
|
39
40
|
name = "aho-corasick"
|
40
|
-
version = "1.
|
41
|
+
version = "1.1.2"
|
41
42
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
42
|
-
checksum = "
|
43
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
43
44
|
dependencies = [
|
44
45
|
"memchr",
|
45
46
|
]
|
@@ -65,6 +66,12 @@ version = "0.2.16"
|
|
65
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
67
|
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
67
68
|
|
69
|
+
[[package]]
|
70
|
+
name = "android-tzdata"
|
71
|
+
version = "0.1.1"
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
74
|
+
|
68
75
|
[[package]]
|
69
76
|
name = "android_system_properties"
|
70
77
|
version = "0.1.5"
|
@@ -99,41 +106,6 @@ dependencies = [
|
|
99
106
|
"serde",
|
100
107
|
]
|
101
108
|
|
102
|
-
[[package]]
|
103
|
-
name = "arrow2"
|
104
|
-
version = "0.17.3"
|
105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
-
checksum = "e44f27e89e3edd8738a07c5e2c881efaa25e69be97a816d2df051685d460670c"
|
107
|
-
dependencies = [
|
108
|
-
"ahash",
|
109
|
-
"arrow-format",
|
110
|
-
"avro-schema",
|
111
|
-
"base64",
|
112
|
-
"bytemuck",
|
113
|
-
"chrono",
|
114
|
-
"chrono-tz",
|
115
|
-
"dyn-clone",
|
116
|
-
"either",
|
117
|
-
"ethnum",
|
118
|
-
"fallible-streaming-iterator",
|
119
|
-
"foreign_vec",
|
120
|
-
"futures",
|
121
|
-
"getrandom",
|
122
|
-
"hash_hasher",
|
123
|
-
"lexical-core",
|
124
|
-
"lz4",
|
125
|
-
"multiversion",
|
126
|
-
"num-traits",
|
127
|
-
"parquet2",
|
128
|
-
"regex",
|
129
|
-
"regex-syntax 0.6.29",
|
130
|
-
"rustc_version",
|
131
|
-
"simdutf8",
|
132
|
-
"streaming-iterator",
|
133
|
-
"strength_reduce",
|
134
|
-
"zstd",
|
135
|
-
]
|
136
|
-
|
137
109
|
[[package]]
|
138
110
|
name = "async-stream"
|
139
111
|
version = "0.3.5"
|
@@ -153,18 +125,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
153
125
|
dependencies = [
|
154
126
|
"proc-macro2",
|
155
127
|
"quote",
|
156
|
-
"syn 2.0.
|
128
|
+
"syn 2.0.39",
|
157
129
|
]
|
158
130
|
|
159
131
|
[[package]]
|
160
132
|
name = "async-trait"
|
161
|
-
version = "0.1.
|
133
|
+
version = "0.1.74"
|
162
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
-
checksum = "
|
135
|
+
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
|
164
136
|
dependencies = [
|
165
137
|
"proc-macro2",
|
166
138
|
"quote",
|
167
|
-
"syn 2.0.
|
139
|
+
"syn 2.0.39",
|
168
140
|
]
|
169
141
|
|
170
142
|
[[package]]
|
@@ -176,6 +148,12 @@ dependencies = [
|
|
176
148
|
"num-traits",
|
177
149
|
]
|
178
150
|
|
151
|
+
[[package]]
|
152
|
+
name = "atoi_simd"
|
153
|
+
version = "0.15.3"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "fc41b65e01b6851bdcd2d741824e6b310d571396bf3915e31e4792034ee65126"
|
156
|
+
|
179
157
|
[[package]]
|
180
158
|
name = "autocfg"
|
181
159
|
version = "1.1.0"
|
@@ -198,9 +176,9 @@ dependencies = [
|
|
198
176
|
|
199
177
|
[[package]]
|
200
178
|
name = "backtrace"
|
201
|
-
version = "0.3.
|
179
|
+
version = "0.3.69"
|
202
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
203
|
-
checksum = "
|
181
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
204
182
|
dependencies = [
|
205
183
|
"addr2line",
|
206
184
|
"cc",
|
@@ -213,17 +191,17 @@ dependencies = [
|
|
213
191
|
|
214
192
|
[[package]]
|
215
193
|
name = "base64"
|
216
|
-
version = "0.21.
|
194
|
+
version = "0.21.5"
|
217
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
-
checksum = "
|
196
|
+
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
|
219
197
|
|
220
198
|
[[package]]
|
221
199
|
name = "bindgen"
|
222
|
-
version = "0.
|
200
|
+
version = "0.69.1"
|
223
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
224
|
-
checksum = "
|
202
|
+
checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
|
225
203
|
dependencies = [
|
226
|
-
"bitflags",
|
204
|
+
"bitflags 2.4.1",
|
227
205
|
"cexpr",
|
228
206
|
"clang-sys",
|
229
207
|
"lazy_static",
|
@@ -234,7 +212,7 @@ dependencies = [
|
|
234
212
|
"regex",
|
235
213
|
"rustc-hash",
|
236
214
|
"shlex",
|
237
|
-
"syn
|
215
|
+
"syn 2.0.39",
|
238
216
|
]
|
239
217
|
|
240
218
|
[[package]]
|
@@ -243,11 +221,20 @@ version = "1.3.2"
|
|
243
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
244
222
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
245
223
|
|
224
|
+
[[package]]
|
225
|
+
name = "bitflags"
|
226
|
+
version = "2.4.1"
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
228
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
229
|
+
dependencies = [
|
230
|
+
"serde",
|
231
|
+
]
|
232
|
+
|
246
233
|
[[package]]
|
247
234
|
name = "brotli"
|
248
|
-
version = "3.
|
235
|
+
version = "3.4.0"
|
249
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
250
|
-
checksum = "
|
237
|
+
checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
|
251
238
|
dependencies = [
|
252
239
|
"alloc-no-stdlib",
|
253
240
|
"alloc-stdlib",
|
@@ -256,9 +243,9 @@ dependencies = [
|
|
256
243
|
|
257
244
|
[[package]]
|
258
245
|
name = "brotli-decompressor"
|
259
|
-
version = "2.
|
246
|
+
version = "2.5.1"
|
260
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
261
|
-
checksum = "
|
248
|
+
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
|
262
249
|
dependencies = [
|
263
250
|
"alloc-no-stdlib",
|
264
251
|
"alloc-stdlib",
|
@@ -266,43 +253,44 @@ dependencies = [
|
|
266
253
|
|
267
254
|
[[package]]
|
268
255
|
name = "bumpalo"
|
269
|
-
version = "3.
|
256
|
+
version = "3.14.0"
|
270
257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
271
|
-
checksum = "
|
258
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
272
259
|
|
273
260
|
[[package]]
|
274
261
|
name = "bytemuck"
|
275
|
-
version = "1.
|
262
|
+
version = "1.14.0"
|
276
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
277
|
-
checksum = "
|
264
|
+
checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
|
278
265
|
dependencies = [
|
279
266
|
"bytemuck_derive",
|
280
267
|
]
|
281
268
|
|
282
269
|
[[package]]
|
283
270
|
name = "bytemuck_derive"
|
284
|
-
version = "1.
|
271
|
+
version = "1.5.0"
|
285
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
-
checksum = "
|
273
|
+
checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1"
|
287
274
|
dependencies = [
|
288
275
|
"proc-macro2",
|
289
276
|
"quote",
|
290
|
-
"syn 2.0.
|
277
|
+
"syn 2.0.39",
|
291
278
|
]
|
292
279
|
|
293
280
|
[[package]]
|
294
281
|
name = "bytes"
|
295
|
-
version = "1.
|
282
|
+
version = "1.5.0"
|
296
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
-
checksum = "
|
284
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
298
285
|
|
299
286
|
[[package]]
|
300
287
|
name = "cc"
|
301
|
-
version = "1.0.
|
288
|
+
version = "1.0.83"
|
302
289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
-
checksum = "
|
290
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
304
291
|
dependencies = [
|
305
292
|
"jobserver",
|
293
|
+
"libc",
|
306
294
|
]
|
307
295
|
|
308
296
|
[[package]]
|
@@ -322,25 +310,24 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
322
310
|
|
323
311
|
[[package]]
|
324
312
|
name = "chrono"
|
325
|
-
version = "0.4.
|
313
|
+
version = "0.4.31"
|
326
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
-
checksum = "
|
315
|
+
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
|
328
316
|
dependencies = [
|
317
|
+
"android-tzdata",
|
329
318
|
"iana-time-zone",
|
330
319
|
"js-sys",
|
331
|
-
"num-integer",
|
332
320
|
"num-traits",
|
333
321
|
"serde",
|
334
|
-
"time",
|
335
322
|
"wasm-bindgen",
|
336
|
-
"
|
323
|
+
"windows-targets",
|
337
324
|
]
|
338
325
|
|
339
326
|
[[package]]
|
340
327
|
name = "chrono-tz"
|
341
|
-
version = "0.8.
|
328
|
+
version = "0.8.4"
|
342
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
-
checksum = "
|
330
|
+
checksum = "e23185c0e21df6ed832a12e2bda87c7d1def6842881fb634a8511ced741b0d76"
|
344
331
|
dependencies = [
|
345
332
|
"chrono",
|
346
333
|
"chrono-tz-build",
|
@@ -349,9 +336,9 @@ dependencies = [
|
|
349
336
|
|
350
337
|
[[package]]
|
351
338
|
name = "chrono-tz-build"
|
352
|
-
version = "0.2.
|
339
|
+
version = "0.2.1"
|
353
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
-
checksum = "
|
341
|
+
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
|
355
342
|
dependencies = [
|
356
343
|
"parse-zoneinfo",
|
357
344
|
"phf",
|
@@ -371,13 +358,13 @@ dependencies = [
|
|
371
358
|
|
372
359
|
[[package]]
|
373
360
|
name = "comfy-table"
|
374
|
-
version = "7.0
|
361
|
+
version = "7.1.0"
|
375
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
376
|
-
checksum = "
|
363
|
+
checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"
|
377
364
|
dependencies = [
|
378
365
|
"crossterm",
|
379
366
|
"strum",
|
380
|
-
"strum_macros
|
367
|
+
"strum_macros",
|
381
368
|
"unicode-width",
|
382
369
|
]
|
383
370
|
|
@@ -466,17 +453,14 @@ dependencies = [
|
|
466
453
|
|
467
454
|
[[package]]
|
468
455
|
name = "crossterm"
|
469
|
-
version = "0.
|
456
|
+
version = "0.27.0"
|
470
457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
-
checksum = "
|
458
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
472
459
|
dependencies = [
|
473
|
-
"bitflags",
|
460
|
+
"bitflags 2.4.1",
|
474
461
|
"crossterm_winapi",
|
475
462
|
"libc",
|
476
|
-
"
|
477
|
-
"parking_lot 0.12.1",
|
478
|
-
"signal-hook",
|
479
|
-
"signal-hook-mio",
|
463
|
+
"parking_lot",
|
480
464
|
"winapi",
|
481
465
|
]
|
482
466
|
|
@@ -491,15 +475,15 @@ dependencies = [
|
|
491
475
|
|
492
476
|
[[package]]
|
493
477
|
name = "dyn-clone"
|
494
|
-
version = "1.0.
|
478
|
+
version = "1.0.16"
|
495
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
496
|
-
checksum = "
|
480
|
+
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
|
497
481
|
|
498
482
|
[[package]]
|
499
483
|
name = "either"
|
500
|
-
version = "1.
|
484
|
+
version = "1.9.0"
|
501
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
502
|
-
checksum = "
|
486
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
503
487
|
|
504
488
|
[[package]]
|
505
489
|
name = "enum_dispatch"
|
@@ -510,7 +494,7 @@ dependencies = [
|
|
510
494
|
"once_cell",
|
511
495
|
"proc-macro2",
|
512
496
|
"quote",
|
513
|
-
"syn 2.0.
|
497
|
+
"syn 2.0.39",
|
514
498
|
]
|
515
499
|
|
516
500
|
[[package]]
|
@@ -521,9 +505,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
521
505
|
|
522
506
|
[[package]]
|
523
507
|
name = "ethnum"
|
524
|
-
version = "1.
|
508
|
+
version = "1.5.0"
|
525
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
526
|
-
checksum = "
|
510
|
+
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
527
511
|
|
528
512
|
[[package]]
|
529
513
|
name = "fallible-streaming-iterator"
|
@@ -539,9 +523,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
539
523
|
|
540
524
|
[[package]]
|
541
525
|
name = "flate2"
|
542
|
-
version = "1.0.
|
526
|
+
version = "1.0.28"
|
543
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
544
|
-
checksum = "
|
528
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
545
529
|
dependencies = [
|
546
530
|
"crc32fast",
|
547
531
|
"miniz_oxide",
|
@@ -564,9 +548,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
564
548
|
|
565
549
|
[[package]]
|
566
550
|
name = "futures"
|
567
|
-
version = "0.3.
|
551
|
+
version = "0.3.29"
|
568
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
569
|
-
checksum = "
|
553
|
+
checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
|
570
554
|
dependencies = [
|
571
555
|
"futures-channel",
|
572
556
|
"futures-core",
|
@@ -579,9 +563,9 @@ dependencies = [
|
|
579
563
|
|
580
564
|
[[package]]
|
581
565
|
name = "futures-channel"
|
582
|
-
version = "0.3.
|
566
|
+
version = "0.3.29"
|
583
567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
-
checksum = "
|
568
|
+
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
|
585
569
|
dependencies = [
|
586
570
|
"futures-core",
|
587
571
|
"futures-sink",
|
@@ -589,15 +573,15 @@ dependencies = [
|
|
589
573
|
|
590
574
|
[[package]]
|
591
575
|
name = "futures-core"
|
592
|
-
version = "0.3.
|
576
|
+
version = "0.3.29"
|
593
577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
-
checksum = "
|
578
|
+
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
|
595
579
|
|
596
580
|
[[package]]
|
597
581
|
name = "futures-executor"
|
598
|
-
version = "0.3.
|
582
|
+
version = "0.3.29"
|
599
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
584
|
+
checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
|
601
585
|
dependencies = [
|
602
586
|
"futures-core",
|
603
587
|
"futures-task",
|
@@ -606,38 +590,38 @@ dependencies = [
|
|
606
590
|
|
607
591
|
[[package]]
|
608
592
|
name = "futures-io"
|
609
|
-
version = "0.3.
|
593
|
+
version = "0.3.29"
|
610
594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
611
|
-
checksum = "
|
595
|
+
checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
|
612
596
|
|
613
597
|
[[package]]
|
614
598
|
name = "futures-macro"
|
615
|
-
version = "0.3.
|
599
|
+
version = "0.3.29"
|
616
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
-
checksum = "
|
601
|
+
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
|
618
602
|
dependencies = [
|
619
603
|
"proc-macro2",
|
620
604
|
"quote",
|
621
|
-
"syn 2.0.
|
605
|
+
"syn 2.0.39",
|
622
606
|
]
|
623
607
|
|
624
608
|
[[package]]
|
625
609
|
name = "futures-sink"
|
626
|
-
version = "0.3.
|
610
|
+
version = "0.3.29"
|
627
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
-
checksum = "
|
612
|
+
checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
|
629
613
|
|
630
614
|
[[package]]
|
631
615
|
name = "futures-task"
|
632
|
-
version = "0.3.
|
616
|
+
version = "0.3.29"
|
633
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
-
checksum = "
|
618
|
+
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
|
635
619
|
|
636
620
|
[[package]]
|
637
621
|
name = "futures-util"
|
638
|
-
version = "0.3.
|
622
|
+
version = "0.3.29"
|
639
623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
640
|
-
checksum = "
|
624
|
+
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
|
641
625
|
dependencies = [
|
642
626
|
"futures-channel",
|
643
627
|
"futures-core",
|
@@ -653,22 +637,22 @@ dependencies = [
|
|
653
637
|
|
654
638
|
[[package]]
|
655
639
|
name = "getrandom"
|
656
|
-
version = "0.2.
|
640
|
+
version = "0.2.11"
|
657
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
-
checksum = "
|
642
|
+
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
659
643
|
dependencies = [
|
660
644
|
"cfg-if",
|
661
645
|
"js-sys",
|
662
646
|
"libc",
|
663
|
-
"wasi
|
647
|
+
"wasi",
|
664
648
|
"wasm-bindgen",
|
665
649
|
]
|
666
650
|
|
667
651
|
[[package]]
|
668
652
|
name = "gimli"
|
669
|
-
version = "0.
|
653
|
+
version = "0.28.0"
|
670
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
671
|
-
checksum = "
|
655
|
+
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
|
672
656
|
|
673
657
|
[[package]]
|
674
658
|
name = "glob"
|
@@ -686,12 +670,6 @@ dependencies = [
|
|
686
670
|
"serde",
|
687
671
|
]
|
688
672
|
|
689
|
-
[[package]]
|
690
|
-
name = "hash_hasher"
|
691
|
-
version = "2.0.3"
|
692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
693
|
-
checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
|
694
|
-
|
695
673
|
[[package]]
|
696
674
|
name = "hashbrown"
|
697
675
|
version = "0.13.2"
|
@@ -703,9 +681,9 @@ dependencies = [
|
|
703
681
|
|
704
682
|
[[package]]
|
705
683
|
name = "hashbrown"
|
706
|
-
version = "0.14.
|
684
|
+
version = "0.14.2"
|
707
685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
708
|
-
checksum = "
|
686
|
+
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
|
709
687
|
dependencies = [
|
710
688
|
"ahash",
|
711
689
|
"allocator-api2",
|
@@ -720,9 +698,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
720
698
|
|
721
699
|
[[package]]
|
722
700
|
name = "hermit-abi"
|
723
|
-
version = "0.3.
|
701
|
+
version = "0.3.3"
|
724
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
703
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
726
704
|
|
727
705
|
[[package]]
|
728
706
|
name = "hex"
|
@@ -741,16 +719,16 @@ dependencies = [
|
|
741
719
|
|
742
720
|
[[package]]
|
743
721
|
name = "iana-time-zone"
|
744
|
-
version = "0.1.
|
722
|
+
version = "0.1.58"
|
745
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
-
checksum = "
|
724
|
+
checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
|
747
725
|
dependencies = [
|
748
726
|
"android_system_properties",
|
749
727
|
"core-foundation-sys",
|
750
728
|
"iana-time-zone-haiku",
|
751
729
|
"js-sys",
|
752
730
|
"wasm-bindgen",
|
753
|
-
"windows",
|
731
|
+
"windows-core",
|
754
732
|
]
|
755
733
|
|
756
734
|
[[package]]
|
@@ -764,29 +742,20 @@ dependencies = [
|
|
764
742
|
|
765
743
|
[[package]]
|
766
744
|
name = "indexmap"
|
767
|
-
version = "2.
|
745
|
+
version = "2.1.0"
|
768
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
-
checksum = "
|
747
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
770
748
|
dependencies = [
|
771
749
|
"equivalent",
|
772
|
-
"hashbrown 0.14.
|
750
|
+
"hashbrown 0.14.2",
|
773
751
|
"serde",
|
774
752
|
]
|
775
753
|
|
776
|
-
[[package]]
|
777
|
-
name = "instant"
|
778
|
-
version = "0.1.12"
|
779
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
781
|
-
dependencies = [
|
782
|
-
"cfg-if",
|
783
|
-
]
|
784
|
-
|
785
754
|
[[package]]
|
786
755
|
name = "itoa"
|
787
|
-
version = "1.0.
|
756
|
+
version = "1.0.9"
|
788
757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
789
|
-
checksum = "
|
758
|
+
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
790
759
|
|
791
760
|
[[package]]
|
792
761
|
name = "itoap"
|
@@ -796,9 +765,9 @@ checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
796
765
|
|
797
766
|
[[package]]
|
798
767
|
name = "jemalloc-sys"
|
799
|
-
version = "0.5.
|
768
|
+
version = "0.5.4+5.3.0-patched"
|
800
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
801
|
-
checksum = "
|
770
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
802
771
|
dependencies = [
|
803
772
|
"cc",
|
804
773
|
"libc",
|
@@ -806,9 +775,9 @@ dependencies = [
|
|
806
775
|
|
807
776
|
[[package]]
|
808
777
|
name = "jemallocator"
|
809
|
-
version = "0.5.
|
778
|
+
version = "0.5.4"
|
810
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
780
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
812
781
|
dependencies = [
|
813
782
|
"jemalloc-sys",
|
814
783
|
"libc",
|
@@ -816,18 +785,18 @@ dependencies = [
|
|
816
785
|
|
817
786
|
[[package]]
|
818
787
|
name = "jobserver"
|
819
|
-
version = "0.1.
|
788
|
+
version = "0.1.27"
|
820
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
-
checksum = "
|
790
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
822
791
|
dependencies = [
|
823
792
|
"libc",
|
824
793
|
]
|
825
794
|
|
826
795
|
[[package]]
|
827
796
|
name = "js-sys"
|
828
|
-
version = "0.3.
|
797
|
+
version = "0.3.65"
|
829
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
830
|
-
checksum = "
|
799
|
+
checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
|
831
800
|
dependencies = [
|
832
801
|
"wasm-bindgen",
|
833
802
|
]
|
@@ -854,15 +823,6 @@ version = "1.3.0"
|
|
854
823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
855
824
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
856
825
|
|
857
|
-
[[package]]
|
858
|
-
name = "lexical"
|
859
|
-
version = "6.1.1"
|
860
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
-
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
|
862
|
-
dependencies = [
|
863
|
-
"lexical-core",
|
864
|
-
]
|
865
|
-
|
866
826
|
[[package]]
|
867
827
|
name = "lexical-core"
|
868
828
|
version = "0.8.5"
|
@@ -929,9 +889,9 @@ dependencies = [
|
|
929
889
|
|
930
890
|
[[package]]
|
931
891
|
name = "libc"
|
932
|
-
version = "0.2.
|
892
|
+
version = "0.2.150"
|
933
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
|
-
checksum = "
|
894
|
+
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
|
935
895
|
|
936
896
|
[[package]]
|
937
897
|
name = "libflate"
|
@@ -965,15 +925,15 @@ dependencies = [
|
|
965
925
|
|
966
926
|
[[package]]
|
967
927
|
name = "libm"
|
968
|
-
version = "0.2.
|
928
|
+
version = "0.2.8"
|
969
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
970
|
-
checksum = "
|
930
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
971
931
|
|
972
932
|
[[package]]
|
973
933
|
name = "libmimalloc-sys"
|
974
|
-
version = "0.1.
|
934
|
+
version = "0.1.35"
|
975
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
976
|
-
checksum = "
|
936
|
+
checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664"
|
977
937
|
dependencies = [
|
978
938
|
"cc",
|
979
939
|
"libc",
|
@@ -981,9 +941,9 @@ dependencies = [
|
|
981
941
|
|
982
942
|
[[package]]
|
983
943
|
name = "lock_api"
|
984
|
-
version = "0.4.
|
944
|
+
version = "0.4.11"
|
985
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
-
checksum = "
|
946
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
987
947
|
dependencies = [
|
988
948
|
"autocfg",
|
989
949
|
"scopeguard",
|
@@ -991,9 +951,9 @@ dependencies = [
|
|
991
951
|
|
992
952
|
[[package]]
|
993
953
|
name = "log"
|
994
|
-
version = "0.4.
|
954
|
+
version = "0.4.20"
|
995
955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
-
checksum = "
|
956
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
997
957
|
|
998
958
|
[[package]]
|
999
959
|
name = "lz4"
|
@@ -1017,37 +977,38 @@ dependencies = [
|
|
1017
977
|
|
1018
978
|
[[package]]
|
1019
979
|
name = "magnus"
|
1020
|
-
version = "0.
|
980
|
+
version = "0.6.2"
|
1021
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
-
checksum = "
|
982
|
+
checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
|
1023
983
|
dependencies = [
|
1024
984
|
"magnus-macros",
|
1025
985
|
"rb-sys",
|
1026
986
|
"rb-sys-env",
|
987
|
+
"seq-macro",
|
1027
988
|
]
|
1028
989
|
|
1029
990
|
[[package]]
|
1030
991
|
name = "magnus-macros"
|
1031
|
-
version = "0.
|
992
|
+
version = "0.6.0"
|
1032
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
-
checksum = "
|
994
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1034
995
|
dependencies = [
|
1035
996
|
"proc-macro2",
|
1036
997
|
"quote",
|
1037
|
-
"syn
|
998
|
+
"syn 2.0.39",
|
1038
999
|
]
|
1039
1000
|
|
1040
1001
|
[[package]]
|
1041
1002
|
name = "memchr"
|
1042
|
-
version = "2.
|
1003
|
+
version = "2.6.4"
|
1043
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1005
|
+
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
|
1045
1006
|
|
1046
1007
|
[[package]]
|
1047
1008
|
name = "memmap2"
|
1048
|
-
version = "0.
|
1009
|
+
version = "0.7.1"
|
1049
1010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1050
|
-
checksum = "
|
1011
|
+
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
|
1051
1012
|
dependencies = [
|
1052
1013
|
"libc",
|
1053
1014
|
]
|
@@ -1063,9 +1024,9 @@ dependencies = [
|
|
1063
1024
|
|
1064
1025
|
[[package]]
|
1065
1026
|
name = "mimalloc"
|
1066
|
-
version = "0.1.
|
1027
|
+
version = "0.1.39"
|
1067
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1068
|
-
checksum = "
|
1029
|
+
checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c"
|
1069
1030
|
dependencies = [
|
1070
1031
|
"libmimalloc-sys",
|
1071
1032
|
]
|
@@ -1087,21 +1048,20 @@ dependencies = [
|
|
1087
1048
|
|
1088
1049
|
[[package]]
|
1089
1050
|
name = "mio"
|
1090
|
-
version = "0.8.
|
1051
|
+
version = "0.8.9"
|
1091
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1053
|
+
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
|
1093
1054
|
dependencies = [
|
1094
1055
|
"libc",
|
1095
|
-
"
|
1096
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
1056
|
+
"wasi",
|
1097
1057
|
"windows-sys",
|
1098
1058
|
]
|
1099
1059
|
|
1100
1060
|
[[package]]
|
1101
1061
|
name = "multiversion"
|
1102
|
-
version = "0.7.
|
1062
|
+
version = "0.7.3"
|
1103
1063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1104
|
-
checksum = "
|
1064
|
+
checksum = "b2c7b9d7fe61760ce5ea19532ead98541f6b4c495d87247aff9826445cf6872a"
|
1105
1065
|
dependencies = [
|
1106
1066
|
"multiversion-macros",
|
1107
1067
|
"target-features",
|
@@ -1109,9 +1069,9 @@ dependencies = [
|
|
1109
1069
|
|
1110
1070
|
[[package]]
|
1111
1071
|
name = "multiversion-macros"
|
1112
|
-
version = "0.7.
|
1072
|
+
version = "0.7.3"
|
1113
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
-
checksum = "
|
1074
|
+
checksum = "26a83d8500ed06d68877e9de1dde76c1dbb83885dcdbda4ef44ccbc3fbda2ac8"
|
1115
1075
|
dependencies = [
|
1116
1076
|
"proc-macro2",
|
1117
1077
|
"quote",
|
@@ -1147,21 +1107,11 @@ dependencies = [
|
|
1147
1107
|
"winapi",
|
1148
1108
|
]
|
1149
1109
|
|
1150
|
-
[[package]]
|
1151
|
-
name = "num-integer"
|
1152
|
-
version = "0.1.45"
|
1153
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1154
|
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
1155
|
-
dependencies = [
|
1156
|
-
"autocfg",
|
1157
|
-
"num-traits",
|
1158
|
-
]
|
1159
|
-
|
1160
1110
|
[[package]]
|
1161
1111
|
name = "num-traits"
|
1162
|
-
version = "0.2.
|
1112
|
+
version = "0.2.17"
|
1163
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
-
checksum = "
|
1114
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
1165
1115
|
dependencies = [
|
1166
1116
|
"autocfg",
|
1167
1117
|
"libm",
|
@@ -1179,9 +1129,9 @@ dependencies = [
|
|
1179
1129
|
|
1180
1130
|
[[package]]
|
1181
1131
|
name = "object"
|
1182
|
-
version = "0.
|
1132
|
+
version = "0.32.1"
|
1183
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
-
checksum = "
|
1134
|
+
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
|
1185
1135
|
dependencies = [
|
1186
1136
|
"memchr",
|
1187
1137
|
]
|
@@ -1192,17 +1142,6 @@ version = "1.18.0"
|
|
1192
1142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
1143
|
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
1194
1144
|
|
1195
|
-
[[package]]
|
1196
|
-
name = "parking_lot"
|
1197
|
-
version = "0.11.2"
|
1198
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
-
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
1200
|
-
dependencies = [
|
1201
|
-
"instant",
|
1202
|
-
"lock_api",
|
1203
|
-
"parking_lot_core 0.8.6",
|
1204
|
-
]
|
1205
|
-
|
1206
1145
|
[[package]]
|
1207
1146
|
name = "parking_lot"
|
1208
1147
|
version = "0.12.1"
|
@@ -1210,32 +1149,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
1149
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1211
1150
|
dependencies = [
|
1212
1151
|
"lock_api",
|
1213
|
-
"parking_lot_core
|
1214
|
-
]
|
1215
|
-
|
1216
|
-
[[package]]
|
1217
|
-
name = "parking_lot_core"
|
1218
|
-
version = "0.8.6"
|
1219
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1220
|
-
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
1221
|
-
dependencies = [
|
1222
|
-
"cfg-if",
|
1223
|
-
"instant",
|
1224
|
-
"libc",
|
1225
|
-
"redox_syscall 0.2.16",
|
1226
|
-
"smallvec",
|
1227
|
-
"winapi",
|
1152
|
+
"parking_lot_core",
|
1228
1153
|
]
|
1229
1154
|
|
1230
1155
|
[[package]]
|
1231
1156
|
name = "parking_lot_core"
|
1232
|
-
version = "0.9.
|
1157
|
+
version = "0.9.9"
|
1233
1158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1234
|
-
checksum = "
|
1159
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
1235
1160
|
dependencies = [
|
1236
1161
|
"cfg-if",
|
1237
1162
|
"libc",
|
1238
|
-
"redox_syscall
|
1163
|
+
"redox_syscall",
|
1239
1164
|
"smallvec",
|
1240
1165
|
"windows-targets",
|
1241
1166
|
]
|
@@ -1250,24 +1175,6 @@ dependencies = [
|
|
1250
1175
|
"futures",
|
1251
1176
|
]
|
1252
1177
|
|
1253
|
-
[[package]]
|
1254
|
-
name = "parquet2"
|
1255
|
-
version = "0.17.2"
|
1256
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1257
|
-
checksum = "579fe5745f02cef3d5f236bfed216fd4693e49e4e920a13475c6132233283bce"
|
1258
|
-
dependencies = [
|
1259
|
-
"async-stream",
|
1260
|
-
"brotli",
|
1261
|
-
"flate2",
|
1262
|
-
"futures",
|
1263
|
-
"lz4",
|
1264
|
-
"parquet-format-safe",
|
1265
|
-
"seq-macro",
|
1266
|
-
"snap",
|
1267
|
-
"streaming-decompression",
|
1268
|
-
"zstd",
|
1269
|
-
]
|
1270
|
-
|
1271
1178
|
[[package]]
|
1272
1179
|
name = "parse-zoneinfo"
|
1273
1180
|
version = "0.3.0"
|
@@ -1283,6 +1190,12 @@ version = "0.1.2"
|
|
1283
1190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1284
1191
|
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1285
1192
|
|
1193
|
+
[[package]]
|
1194
|
+
name = "percent-encoding"
|
1195
|
+
version = "2.3.0"
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
1198
|
+
|
1286
1199
|
[[package]]
|
1287
1200
|
name = "phf"
|
1288
1201
|
version = "0.11.2"
|
@@ -1323,9 +1236,9 @@ dependencies = [
|
|
1323
1236
|
|
1324
1237
|
[[package]]
|
1325
1238
|
name = "pin-project-lite"
|
1326
|
-
version = "0.2.
|
1239
|
+
version = "0.2.13"
|
1327
1240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1328
|
-
checksum = "
|
1241
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
1329
1242
|
|
1330
1243
|
[[package]]
|
1331
1244
|
name = "pin-utils"
|
@@ -1350,24 +1263,26 @@ dependencies = [
|
|
1350
1263
|
|
1351
1264
|
[[package]]
|
1352
1265
|
name = "polars"
|
1353
|
-
version = "0.
|
1266
|
+
version = "0.7.0"
|
1354
1267
|
dependencies = [
|
1355
1268
|
"ahash",
|
1356
1269
|
"chrono",
|
1270
|
+
"either",
|
1357
1271
|
"jemallocator",
|
1358
1272
|
"magnus",
|
1359
1273
|
"mimalloc",
|
1360
|
-
"polars 0.
|
1274
|
+
"polars 0.35.2",
|
1361
1275
|
"polars-core",
|
1276
|
+
"polars-parquet",
|
1362
1277
|
"serde_json",
|
1363
1278
|
"smartstring",
|
1364
1279
|
]
|
1365
1280
|
|
1366
1281
|
[[package]]
|
1367
1282
|
name = "polars"
|
1368
|
-
version = "0.
|
1283
|
+
version = "0.35.2"
|
1369
1284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1370
|
-
checksum = "
|
1285
|
+
checksum = "987f70ba422ed3f6bb566d4a02f5ad35f2cabcdc7f09705f9340a5ee2ad59215"
|
1371
1286
|
dependencies = [
|
1372
1287
|
"getrandom",
|
1373
1288
|
"polars-core",
|
@@ -1381,37 +1296,55 @@ dependencies = [
|
|
1381
1296
|
|
1382
1297
|
[[package]]
|
1383
1298
|
name = "polars-arrow"
|
1384
|
-
version = "0.
|
1299
|
+
version = "0.35.2"
|
1385
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
-
checksum = "
|
1301
|
+
checksum = "682c24cbb6fc05882c0112da75ec037d0afe88241c3778c074d61211bbf063bf"
|
1387
1302
|
dependencies = [
|
1388
|
-
"
|
1303
|
+
"ahash",
|
1304
|
+
"arrow-format",
|
1389
1305
|
"atoi",
|
1306
|
+
"atoi_simd",
|
1307
|
+
"avro-schema",
|
1308
|
+
"bytemuck",
|
1390
1309
|
"chrono",
|
1391
1310
|
"chrono-tz",
|
1311
|
+
"dyn-clone",
|
1312
|
+
"either",
|
1392
1313
|
"ethnum",
|
1393
|
-
"
|
1314
|
+
"fast-float",
|
1315
|
+
"foreign_vec",
|
1316
|
+
"futures",
|
1317
|
+
"getrandom",
|
1318
|
+
"hashbrown 0.14.2",
|
1319
|
+
"itoa",
|
1320
|
+
"lz4",
|
1394
1321
|
"multiversion",
|
1395
1322
|
"num-traits",
|
1396
1323
|
"polars-error",
|
1324
|
+
"polars-utils",
|
1325
|
+
"rustc_version",
|
1326
|
+
"ryu",
|
1397
1327
|
"serde",
|
1398
|
-
"
|
1328
|
+
"simdutf8",
|
1329
|
+
"streaming-iterator",
|
1330
|
+
"strength_reduce",
|
1331
|
+
"zstd",
|
1399
1332
|
]
|
1400
1333
|
|
1401
1334
|
[[package]]
|
1402
1335
|
name = "polars-core"
|
1403
|
-
version = "0.
|
1336
|
+
version = "0.35.2"
|
1404
1337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
|
-
checksum = "
|
1338
|
+
checksum = "0fcbe0039cad625b5775c8f8e0dfdd204a71968959ae006322083b3c244475bf"
|
1406
1339
|
dependencies = [
|
1407
1340
|
"ahash",
|
1408
|
-
"
|
1409
|
-
"
|
1341
|
+
"bitflags 2.4.1",
|
1342
|
+
"bytemuck",
|
1410
1343
|
"chrono",
|
1411
1344
|
"chrono-tz",
|
1412
1345
|
"comfy-table",
|
1413
1346
|
"either",
|
1414
|
-
"hashbrown 0.14.
|
1347
|
+
"hashbrown 0.14.2",
|
1415
1348
|
"indexmap",
|
1416
1349
|
"itoap",
|
1417
1350
|
"num-traits",
|
@@ -1428,83 +1361,92 @@ dependencies = [
|
|
1428
1361
|
"serde_json",
|
1429
1362
|
"smartstring",
|
1430
1363
|
"thiserror",
|
1431
|
-
"
|
1364
|
+
"version_check",
|
1432
1365
|
"xxhash-rust",
|
1433
1366
|
]
|
1434
1367
|
|
1435
1368
|
[[package]]
|
1436
1369
|
name = "polars-error"
|
1437
|
-
version = "0.
|
1370
|
+
version = "0.35.3"
|
1438
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1439
|
-
checksum = "
|
1372
|
+
checksum = "bd5581898a3cc5d0930f40f76034a4cf9e18dc4d38e13ef769fb6f427cf63215"
|
1440
1373
|
dependencies = [
|
1441
|
-
"
|
1374
|
+
"arrow-format",
|
1375
|
+
"avro-schema",
|
1442
1376
|
"regex",
|
1377
|
+
"simdutf8",
|
1443
1378
|
"thiserror",
|
1444
1379
|
]
|
1445
1380
|
|
1446
1381
|
[[package]]
|
1447
1382
|
name = "polars-io"
|
1448
|
-
version = "0.
|
1383
|
+
version = "0.35.2"
|
1449
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
-
checksum = "
|
1385
|
+
checksum = "9080fcc2777fcdfb859cfd45029a90096089bd0da15f4f022c23f8276bf5268c"
|
1451
1386
|
dependencies = [
|
1452
1387
|
"ahash",
|
1453
|
-
"arrow2",
|
1454
1388
|
"async-trait",
|
1389
|
+
"atoi_simd",
|
1455
1390
|
"bytes",
|
1456
1391
|
"chrono",
|
1457
1392
|
"chrono-tz",
|
1458
1393
|
"fast-float",
|
1459
1394
|
"futures",
|
1460
1395
|
"home",
|
1461
|
-
"
|
1462
|
-
"lexical-core",
|
1396
|
+
"itoa",
|
1463
1397
|
"memchr",
|
1464
1398
|
"memmap2",
|
1465
1399
|
"num-traits",
|
1466
1400
|
"once_cell",
|
1401
|
+
"percent-encoding",
|
1467
1402
|
"polars-arrow",
|
1468
1403
|
"polars-core",
|
1469
1404
|
"polars-error",
|
1470
1405
|
"polars-json",
|
1406
|
+
"polars-parquet",
|
1471
1407
|
"polars-time",
|
1472
1408
|
"polars-utils",
|
1473
1409
|
"rayon",
|
1474
1410
|
"regex",
|
1411
|
+
"ryu",
|
1475
1412
|
"serde",
|
1476
1413
|
"serde_json",
|
1477
1414
|
"simd-json",
|
1478
1415
|
"simdutf8",
|
1416
|
+
"smartstring",
|
1479
1417
|
"tokio",
|
1418
|
+
"tokio-util",
|
1480
1419
|
]
|
1481
1420
|
|
1482
1421
|
[[package]]
|
1483
1422
|
name = "polars-json"
|
1484
|
-
version = "0.
|
1423
|
+
version = "0.35.2"
|
1485
1424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
-
checksum = "
|
1425
|
+
checksum = "4d90ab8b514897140841dcf337810d1ea5778ac260fd561896365445e595275c"
|
1487
1426
|
dependencies = [
|
1488
1427
|
"ahash",
|
1489
|
-
"
|
1428
|
+
"chrono",
|
1490
1429
|
"fallible-streaming-iterator",
|
1491
|
-
"hashbrown 0.14.
|
1430
|
+
"hashbrown 0.14.2",
|
1492
1431
|
"indexmap",
|
1432
|
+
"itoa",
|
1493
1433
|
"num-traits",
|
1494
1434
|
"polars-arrow",
|
1495
1435
|
"polars-error",
|
1496
1436
|
"polars-utils",
|
1437
|
+
"ryu",
|
1497
1438
|
"simd-json",
|
1439
|
+
"streaming-iterator",
|
1498
1440
|
]
|
1499
1441
|
|
1500
1442
|
[[package]]
|
1501
1443
|
name = "polars-lazy"
|
1502
|
-
version = "0.
|
1444
|
+
version = "0.35.2"
|
1503
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1504
|
-
checksum = "
|
1446
|
+
checksum = "f20c79e04461bc3fa085c552c7c18919732ab6cde4e5da9f7b52b48d269b0f11"
|
1505
1447
|
dependencies = [
|
1506
1448
|
"ahash",
|
1507
|
-
"bitflags",
|
1449
|
+
"bitflags 2.4.1",
|
1508
1450
|
"glob",
|
1509
1451
|
"once_cell",
|
1510
1452
|
"polars-arrow",
|
@@ -1518,41 +1460,79 @@ dependencies = [
|
|
1518
1460
|
"polars-utils",
|
1519
1461
|
"rayon",
|
1520
1462
|
"smartstring",
|
1463
|
+
"version_check",
|
1521
1464
|
]
|
1522
1465
|
|
1523
1466
|
[[package]]
|
1524
1467
|
name = "polars-ops"
|
1525
|
-
version = "0.
|
1468
|
+
version = "0.35.2"
|
1526
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1527
|
-
checksum = "
|
1470
|
+
checksum = "82ad422e9bb854d275f8d700e0f2bbf39cd8f71709a24aa40e54f32ac7410199"
|
1528
1471
|
dependencies = [
|
1472
|
+
"ahash",
|
1529
1473
|
"argminmax",
|
1530
|
-
"arrow2",
|
1531
1474
|
"base64",
|
1475
|
+
"bytemuck",
|
1476
|
+
"chrono",
|
1477
|
+
"chrono-tz",
|
1532
1478
|
"either",
|
1479
|
+
"hashbrown 0.14.2",
|
1533
1480
|
"hex",
|
1534
1481
|
"indexmap",
|
1535
1482
|
"jsonpath_lib",
|
1536
1483
|
"memchr",
|
1484
|
+
"num-traits",
|
1537
1485
|
"polars-arrow",
|
1538
1486
|
"polars-core",
|
1487
|
+
"polars-error",
|
1539
1488
|
"polars-json",
|
1540
1489
|
"polars-utils",
|
1490
|
+
"rand",
|
1491
|
+
"rand_distr",
|
1492
|
+
"rayon",
|
1493
|
+
"regex",
|
1541
1494
|
"serde",
|
1542
1495
|
"serde_json",
|
1543
1496
|
"smartstring",
|
1497
|
+
"version_check",
|
1498
|
+
]
|
1499
|
+
|
1500
|
+
[[package]]
|
1501
|
+
name = "polars-parquet"
|
1502
|
+
version = "0.35.2"
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1504
|
+
checksum = "e9d73479f136c036d1ba87d7ea2e9ac89c86ee2c16ab0020a6e15edbb3581135"
|
1505
|
+
dependencies = [
|
1506
|
+
"ahash",
|
1507
|
+
"async-stream",
|
1508
|
+
"base64",
|
1509
|
+
"brotli",
|
1510
|
+
"ethnum",
|
1511
|
+
"flate2",
|
1512
|
+
"futures",
|
1513
|
+
"lz4",
|
1514
|
+
"num-traits",
|
1515
|
+
"parquet-format-safe",
|
1516
|
+
"polars-arrow",
|
1517
|
+
"polars-error",
|
1518
|
+
"polars-utils",
|
1519
|
+
"seq-macro",
|
1520
|
+
"simdutf8",
|
1521
|
+
"snap",
|
1522
|
+
"streaming-decompression",
|
1523
|
+
"zstd",
|
1544
1524
|
]
|
1545
1525
|
|
1546
1526
|
[[package]]
|
1547
1527
|
name = "polars-pipe"
|
1548
|
-
version = "0.
|
1528
|
+
version = "0.35.2"
|
1549
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1550
|
-
checksum = "
|
1530
|
+
checksum = "869f372f023554f8a66fc06060709993b92004f2157188d467741c8fcdb226ff"
|
1551
1531
|
dependencies = [
|
1552
1532
|
"crossbeam-channel",
|
1553
1533
|
"crossbeam-queue",
|
1554
1534
|
"enum_dispatch",
|
1555
|
-
"hashbrown 0.14.
|
1535
|
+
"hashbrown 0.14.2",
|
1556
1536
|
"num-traits",
|
1557
1537
|
"polars-arrow",
|
1558
1538
|
"polars-core",
|
@@ -1563,53 +1543,59 @@ dependencies = [
|
|
1563
1543
|
"polars-utils",
|
1564
1544
|
"rayon",
|
1565
1545
|
"smartstring",
|
1546
|
+
"version_check",
|
1566
1547
|
]
|
1567
1548
|
|
1568
1549
|
[[package]]
|
1569
1550
|
name = "polars-plan"
|
1570
|
-
version = "0.
|
1551
|
+
version = "0.35.2"
|
1571
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1572
|
-
checksum = "
|
1553
|
+
checksum = "af139995be30bb6469fdff78669be5da6aad9ae7ec1ec3e538f34ebeaa8b0fb4"
|
1573
1554
|
dependencies = [
|
1574
1555
|
"ahash",
|
1575
|
-
"
|
1556
|
+
"bytemuck",
|
1576
1557
|
"chrono",
|
1577
1558
|
"chrono-tz",
|
1578
1559
|
"once_cell",
|
1560
|
+
"percent-encoding",
|
1579
1561
|
"polars-arrow",
|
1580
1562
|
"polars-core",
|
1581
1563
|
"polars-io",
|
1582
1564
|
"polars-ops",
|
1565
|
+
"polars-parquet",
|
1583
1566
|
"polars-time",
|
1584
1567
|
"polars-utils",
|
1585
1568
|
"rayon",
|
1586
1569
|
"regex",
|
1587
1570
|
"serde",
|
1588
1571
|
"smartstring",
|
1589
|
-
"strum_macros
|
1572
|
+
"strum_macros",
|
1573
|
+
"version_check",
|
1590
1574
|
]
|
1591
1575
|
|
1592
1576
|
[[package]]
|
1593
1577
|
name = "polars-row"
|
1594
|
-
version = "0.
|
1578
|
+
version = "0.35.2"
|
1595
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
|
-
checksum = "
|
1580
|
+
checksum = "7ae5284d603c3111c217d2451e1b62578eebf2f30d49c32e03790dd4f9cc21ad"
|
1597
1581
|
dependencies = [
|
1598
|
-
"
|
1582
|
+
"polars-arrow",
|
1599
1583
|
"polars-error",
|
1600
1584
|
"polars-utils",
|
1601
1585
|
]
|
1602
1586
|
|
1603
1587
|
[[package]]
|
1604
1588
|
name = "polars-sql"
|
1605
|
-
version = "0.
|
1589
|
+
version = "0.35.2"
|
1606
1590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
-
checksum = "
|
1591
|
+
checksum = "9357cc60db55c2a407230b42e3ca67ef8495513460ade6f368f48fdd4d2a2505"
|
1608
1592
|
dependencies = [
|
1609
1593
|
"polars-arrow",
|
1610
1594
|
"polars-core",
|
1595
|
+
"polars-error",
|
1611
1596
|
"polars-lazy",
|
1612
1597
|
"polars-plan",
|
1598
|
+
"rand",
|
1613
1599
|
"serde",
|
1614
1600
|
"serde_json",
|
1615
1601
|
"sqlparser",
|
@@ -1617,11 +1603,10 @@ dependencies = [
|
|
1617
1603
|
|
1618
1604
|
[[package]]
|
1619
1605
|
name = "polars-time"
|
1620
|
-
version = "0.
|
1606
|
+
version = "0.35.2"
|
1621
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
-
checksum = "
|
1608
|
+
checksum = "cdbd4ad82122f9fa8bebfc40dc41183e311b0a8ce2e58f2a48800b5e1136d41e"
|
1623
1609
|
dependencies = [
|
1624
|
-
"arrow2",
|
1625
1610
|
"atoi",
|
1626
1611
|
"chrono",
|
1627
1612
|
"chrono-tz",
|
@@ -1629,6 +1614,7 @@ dependencies = [
|
|
1629
1614
|
"once_cell",
|
1630
1615
|
"polars-arrow",
|
1631
1616
|
"polars-core",
|
1617
|
+
"polars-error",
|
1632
1618
|
"polars-ops",
|
1633
1619
|
"polars-utils",
|
1634
1620
|
"regex",
|
@@ -1638,17 +1624,21 @@ dependencies = [
|
|
1638
1624
|
|
1639
1625
|
[[package]]
|
1640
1626
|
name = "polars-utils"
|
1641
|
-
version = "0.
|
1627
|
+
version = "0.35.3"
|
1642
1628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
-
checksum = "
|
1629
|
+
checksum = "c18e77b1bddfe72ff522bfedf5b1bf1e9d9651b1e6a22f86c50022d1aab2b651"
|
1644
1630
|
dependencies = [
|
1645
1631
|
"ahash",
|
1646
|
-
"
|
1632
|
+
"bytemuck",
|
1633
|
+
"hashbrown 0.14.2",
|
1634
|
+
"indexmap",
|
1647
1635
|
"num-traits",
|
1648
1636
|
"once_cell",
|
1637
|
+
"polars-error",
|
1649
1638
|
"rayon",
|
1650
1639
|
"smartstring",
|
1651
1640
|
"sysinfo",
|
1641
|
+
"version_check",
|
1652
1642
|
]
|
1653
1643
|
|
1654
1644
|
[[package]]
|
@@ -1659,18 +1649,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1659
1649
|
|
1660
1650
|
[[package]]
|
1661
1651
|
name = "proc-macro2"
|
1662
|
-
version = "1.0.
|
1652
|
+
version = "1.0.69"
|
1663
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
-
checksum = "
|
1654
|
+
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
|
1665
1655
|
dependencies = [
|
1666
1656
|
"unicode-ident",
|
1667
1657
|
]
|
1668
1658
|
|
1669
1659
|
[[package]]
|
1670
1660
|
name = "quote"
|
1671
|
-
version = "1.0.
|
1661
|
+
version = "1.0.33"
|
1672
1662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1673
|
-
checksum = "
|
1663
|
+
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
1674
1664
|
dependencies = [
|
1675
1665
|
"proc-macro2",
|
1676
1666
|
]
|
@@ -1717,9 +1707,9 @@ dependencies = [
|
|
1717
1707
|
|
1718
1708
|
[[package]]
|
1719
1709
|
name = "rayon"
|
1720
|
-
version = "1.
|
1710
|
+
version = "1.8.0"
|
1721
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1722
|
-
checksum = "
|
1712
|
+
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
|
1723
1713
|
dependencies = [
|
1724
1714
|
"either",
|
1725
1715
|
"rayon-core",
|
@@ -1727,30 +1717,28 @@ dependencies = [
|
|
1727
1717
|
|
1728
1718
|
[[package]]
|
1729
1719
|
name = "rayon-core"
|
1730
|
-
version = "1.
|
1720
|
+
version = "1.12.0"
|
1731
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "
|
1722
|
+
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
|
1733
1723
|
dependencies = [
|
1734
|
-
"crossbeam-channel",
|
1735
1724
|
"crossbeam-deque",
|
1736
1725
|
"crossbeam-utils",
|
1737
|
-
"num_cpus",
|
1738
1726
|
]
|
1739
1727
|
|
1740
1728
|
[[package]]
|
1741
1729
|
name = "rb-sys"
|
1742
|
-
version = "0.9.
|
1730
|
+
version = "0.9.83"
|
1743
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1744
|
-
checksum = "
|
1732
|
+
checksum = "7e5b8d560b60790a3e60e56e73a8c7be88ac14e6af39fc82b5eca72c71753840"
|
1745
1733
|
dependencies = [
|
1746
1734
|
"rb-sys-build",
|
1747
1735
|
]
|
1748
1736
|
|
1749
1737
|
[[package]]
|
1750
1738
|
name = "rb-sys-build"
|
1751
|
-
version = "0.9.
|
1739
|
+
version = "0.9.83"
|
1752
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1753
|
-
checksum = "
|
1741
|
+
checksum = "c2d2bfd00002007d7e9ad93d0397437933040caf452d260c26dbef5fd95ae1a6"
|
1754
1742
|
dependencies = [
|
1755
1743
|
"bindgen",
|
1756
1744
|
"lazy_static",
|
@@ -1758,7 +1746,7 @@ dependencies = [
|
|
1758
1746
|
"quote",
|
1759
1747
|
"regex",
|
1760
1748
|
"shell-words",
|
1761
|
-
"syn
|
1749
|
+
"syn 2.0.39",
|
1762
1750
|
]
|
1763
1751
|
|
1764
1752
|
[[package]]
|
@@ -1769,56 +1757,61 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
1769
1757
|
|
1770
1758
|
[[package]]
|
1771
1759
|
name = "redox_syscall"
|
1772
|
-
version = "0.
|
1760
|
+
version = "0.4.1"
|
1773
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1774
|
-
checksum = "
|
1762
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
1775
1763
|
dependencies = [
|
1776
|
-
"bitflags",
|
1764
|
+
"bitflags 1.3.2",
|
1777
1765
|
]
|
1778
1766
|
|
1779
1767
|
[[package]]
|
1780
|
-
name = "
|
1781
|
-
version = "0.
|
1768
|
+
name = "ref-cast"
|
1769
|
+
version = "1.0.20"
|
1782
1770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1783
|
-
checksum = "
|
1771
|
+
checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280"
|
1784
1772
|
dependencies = [
|
1785
|
-
"
|
1773
|
+
"ref-cast-impl",
|
1774
|
+
]
|
1775
|
+
|
1776
|
+
[[package]]
|
1777
|
+
name = "ref-cast-impl"
|
1778
|
+
version = "1.0.20"
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
+
checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925"
|
1781
|
+
dependencies = [
|
1782
|
+
"proc-macro2",
|
1783
|
+
"quote",
|
1784
|
+
"syn 2.0.39",
|
1786
1785
|
]
|
1787
1786
|
|
1788
1787
|
[[package]]
|
1789
1788
|
name = "regex"
|
1790
|
-
version = "1.
|
1789
|
+
version = "1.10.2"
|
1791
1790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1792
|
-
checksum = "
|
1791
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
1793
1792
|
dependencies = [
|
1794
1793
|
"aho-corasick",
|
1795
1794
|
"memchr",
|
1796
1795
|
"regex-automata",
|
1797
|
-
"regex-syntax
|
1796
|
+
"regex-syntax",
|
1798
1797
|
]
|
1799
1798
|
|
1800
1799
|
[[package]]
|
1801
1800
|
name = "regex-automata"
|
1802
|
-
version = "0.
|
1801
|
+
version = "0.4.3"
|
1803
1802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
1803
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
1805
1804
|
dependencies = [
|
1806
1805
|
"aho-corasick",
|
1807
1806
|
"memchr",
|
1808
|
-
"regex-syntax
|
1807
|
+
"regex-syntax",
|
1809
1808
|
]
|
1810
1809
|
|
1811
1810
|
[[package]]
|
1812
1811
|
name = "regex-syntax"
|
1813
|
-
version = "0.
|
1814
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1815
|
-
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
1816
|
-
|
1817
|
-
[[package]]
|
1818
|
-
name = "regex-syntax"
|
1819
|
-
version = "0.7.4"
|
1812
|
+
version = "0.8.2"
|
1820
1813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1821
|
-
checksum = "
|
1814
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
1822
1815
|
|
1823
1816
|
[[package]]
|
1824
1817
|
name = "rle-decode-fast"
|
@@ -1849,59 +1842,59 @@ dependencies = [
|
|
1849
1842
|
|
1850
1843
|
[[package]]
|
1851
1844
|
name = "rustversion"
|
1852
|
-
version = "1.0.
|
1845
|
+
version = "1.0.14"
|
1853
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
-
checksum = "
|
1847
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
1855
1848
|
|
1856
1849
|
[[package]]
|
1857
1850
|
name = "ryu"
|
1858
|
-
version = "1.0.
|
1851
|
+
version = "1.0.15"
|
1859
1852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
-
checksum = "
|
1853
|
+
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
|
1861
1854
|
|
1862
1855
|
[[package]]
|
1863
1856
|
name = "scopeguard"
|
1864
|
-
version = "1.
|
1857
|
+
version = "1.2.0"
|
1865
1858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1866
|
-
checksum = "
|
1859
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1867
1860
|
|
1868
1861
|
[[package]]
|
1869
1862
|
name = "semver"
|
1870
|
-
version = "1.0.
|
1863
|
+
version = "1.0.20"
|
1871
1864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1872
|
-
checksum = "
|
1865
|
+
checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
|
1873
1866
|
|
1874
1867
|
[[package]]
|
1875
1868
|
name = "seq-macro"
|
1876
|
-
version = "0.3.
|
1869
|
+
version = "0.3.5"
|
1877
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1878
|
-
checksum = "
|
1871
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1879
1872
|
|
1880
1873
|
[[package]]
|
1881
1874
|
name = "serde"
|
1882
|
-
version = "1.0.
|
1875
|
+
version = "1.0.192"
|
1883
1876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1884
|
-
checksum = "
|
1877
|
+
checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
|
1885
1878
|
dependencies = [
|
1886
1879
|
"serde_derive",
|
1887
1880
|
]
|
1888
1881
|
|
1889
1882
|
[[package]]
|
1890
1883
|
name = "serde_derive"
|
1891
|
-
version = "1.0.
|
1884
|
+
version = "1.0.192"
|
1892
1885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1893
|
-
checksum = "
|
1886
|
+
checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
|
1894
1887
|
dependencies = [
|
1895
1888
|
"proc-macro2",
|
1896
1889
|
"quote",
|
1897
|
-
"syn 2.0.
|
1890
|
+
"syn 2.0.39",
|
1898
1891
|
]
|
1899
1892
|
|
1900
1893
|
[[package]]
|
1901
1894
|
name = "serde_json"
|
1902
|
-
version = "1.0.
|
1895
|
+
version = "1.0.108"
|
1903
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
-
checksum = "
|
1897
|
+
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
|
1905
1898
|
dependencies = [
|
1906
1899
|
"indexmap",
|
1907
1900
|
"itoa",
|
@@ -1917,50 +1910,22 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1917
1910
|
|
1918
1911
|
[[package]]
|
1919
1912
|
name = "shlex"
|
1920
|
-
version = "1.
|
1921
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1922
|
-
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
1923
|
-
|
1924
|
-
[[package]]
|
1925
|
-
name = "signal-hook"
|
1926
|
-
version = "0.3.16"
|
1927
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1928
|
-
checksum = "b824b6e687aff278cdbf3b36f07aa52d4bd4099699324d5da86a2ebce3aa00b3"
|
1929
|
-
dependencies = [
|
1930
|
-
"libc",
|
1931
|
-
"signal-hook-registry",
|
1932
|
-
]
|
1933
|
-
|
1934
|
-
[[package]]
|
1935
|
-
name = "signal-hook-mio"
|
1936
|
-
version = "0.2.3"
|
1937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1938
|
-
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
|
1939
|
-
dependencies = [
|
1940
|
-
"libc",
|
1941
|
-
"mio",
|
1942
|
-
"signal-hook",
|
1943
|
-
]
|
1944
|
-
|
1945
|
-
[[package]]
|
1946
|
-
name = "signal-hook-registry"
|
1947
|
-
version = "1.4.1"
|
1913
|
+
version = "1.2.0"
|
1948
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1949
|
-
checksum = "
|
1950
|
-
dependencies = [
|
1951
|
-
"libc",
|
1952
|
-
]
|
1915
|
+
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
1953
1916
|
|
1954
1917
|
[[package]]
|
1955
1918
|
name = "simd-json"
|
1956
|
-
version = "0.
|
1919
|
+
version = "0.13.4"
|
1957
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1958
|
-
checksum = "
|
1921
|
+
checksum = "e5a3720326b20bf5b95b72dbbd133caae7e0dcf71eae8f6e6656e71a7e5c9aaa"
|
1959
1922
|
dependencies = [
|
1960
1923
|
"ahash",
|
1924
|
+
"getrandom",
|
1961
1925
|
"halfbrown",
|
1962
1926
|
"lexical-core",
|
1963
1927
|
"once_cell",
|
1928
|
+
"ref-cast",
|
1964
1929
|
"serde",
|
1965
1930
|
"serde_json",
|
1966
1931
|
"simdutf8",
|
@@ -1975,24 +1940,24 @@ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
|
1975
1940
|
|
1976
1941
|
[[package]]
|
1977
1942
|
name = "siphasher"
|
1978
|
-
version = "0.3.
|
1943
|
+
version = "0.3.11"
|
1979
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
-
checksum = "
|
1945
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
1981
1946
|
|
1982
1947
|
[[package]]
|
1983
1948
|
name = "slab"
|
1984
|
-
version = "0.4.
|
1949
|
+
version = "0.4.9"
|
1985
1950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1986
|
-
checksum = "
|
1951
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
1987
1952
|
dependencies = [
|
1988
1953
|
"autocfg",
|
1989
1954
|
]
|
1990
1955
|
|
1991
1956
|
[[package]]
|
1992
1957
|
name = "smallvec"
|
1993
|
-
version = "1.11.
|
1958
|
+
version = "1.11.2"
|
1994
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1995
|
-
checksum = "
|
1960
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
1996
1961
|
|
1997
1962
|
[[package]]
|
1998
1963
|
name = "smartstring"
|
@@ -2014,19 +1979,19 @@ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
|
|
2014
1979
|
|
2015
1980
|
[[package]]
|
2016
1981
|
name = "socket2"
|
2017
|
-
version = "0.
|
1982
|
+
version = "0.5.5"
|
2018
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "
|
1984
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
2020
1985
|
dependencies = [
|
2021
1986
|
"libc",
|
2022
|
-
"
|
1987
|
+
"windows-sys",
|
2023
1988
|
]
|
2024
1989
|
|
2025
1990
|
[[package]]
|
2026
1991
|
name = "sqlparser"
|
2027
|
-
version = "0.
|
1992
|
+
version = "0.39.0"
|
2028
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2029
|
-
checksum = "
|
1994
|
+
checksum = "743b4dc2cbde11890ccb254a8fc9d537fa41b36da00de2a1c5e9848c9bc42bd7"
|
2030
1995
|
dependencies = [
|
2031
1996
|
"log",
|
2032
1997
|
]
|
@@ -2060,34 +2025,21 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2060
2025
|
|
2061
2026
|
[[package]]
|
2062
2027
|
name = "strum"
|
2063
|
-
version = "0.
|
2064
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2065
|
-
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
|
2066
|
-
|
2067
|
-
[[package]]
|
2068
|
-
name = "strum_macros"
|
2069
|
-
version = "0.24.3"
|
2028
|
+
version = "0.25.0"
|
2070
2029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
-
checksum = "
|
2072
|
-
dependencies = [
|
2073
|
-
"heck",
|
2074
|
-
"proc-macro2",
|
2075
|
-
"quote",
|
2076
|
-
"rustversion",
|
2077
|
-
"syn 1.0.109",
|
2078
|
-
]
|
2030
|
+
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
2079
2031
|
|
2080
2032
|
[[package]]
|
2081
2033
|
name = "strum_macros"
|
2082
|
-
version = "0.25.
|
2034
|
+
version = "0.25.3"
|
2083
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2084
|
-
checksum = "
|
2036
|
+
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
2085
2037
|
dependencies = [
|
2086
2038
|
"heck",
|
2087
2039
|
"proc-macro2",
|
2088
2040
|
"quote",
|
2089
2041
|
"rustversion",
|
2090
|
-
"syn 2.0.
|
2042
|
+
"syn 2.0.39",
|
2091
2043
|
]
|
2092
2044
|
|
2093
2045
|
[[package]]
|
@@ -2103,9 +2055,9 @@ dependencies = [
|
|
2103
2055
|
|
2104
2056
|
[[package]]
|
2105
2057
|
name = "syn"
|
2106
|
-
version = "2.0.
|
2058
|
+
version = "2.0.39"
|
2107
2059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2108
|
-
checksum = "
|
2060
|
+
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
|
2109
2061
|
dependencies = [
|
2110
2062
|
"proc-macro2",
|
2111
2063
|
"quote",
|
@@ -2114,9 +2066,9 @@ dependencies = [
|
|
2114
2066
|
|
2115
2067
|
[[package]]
|
2116
2068
|
name = "sysinfo"
|
2117
|
-
version = "0.29.
|
2069
|
+
version = "0.29.10"
|
2118
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2119
|
-
checksum = "
|
2071
|
+
checksum = "0a18d114d420ada3a891e6bc8e96a2023402203296a47cdd65083377dad18ba5"
|
2120
2072
|
dependencies = [
|
2121
2073
|
"cfg-if",
|
2122
2074
|
"core-foundation-sys",
|
@@ -2128,73 +2080,76 @@ dependencies = [
|
|
2128
2080
|
|
2129
2081
|
[[package]]
|
2130
2082
|
name = "target-features"
|
2131
|
-
version = "0.1.
|
2083
|
+
version = "0.1.5"
|
2132
2084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2133
|
-
checksum = "
|
2085
|
+
checksum = "cfb5fa503293557c5158bd215fdc225695e567a77e453f5d4452a50a193969bd"
|
2134
2086
|
|
2135
2087
|
[[package]]
|
2136
2088
|
name = "thiserror"
|
2137
|
-
version = "1.0.
|
2089
|
+
version = "1.0.50"
|
2138
2090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2139
|
-
checksum = "
|
2091
|
+
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
|
2140
2092
|
dependencies = [
|
2141
2093
|
"thiserror-impl",
|
2142
2094
|
]
|
2143
2095
|
|
2144
2096
|
[[package]]
|
2145
2097
|
name = "thiserror-impl"
|
2146
|
-
version = "1.0.
|
2098
|
+
version = "1.0.50"
|
2147
2099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2148
|
-
checksum = "
|
2100
|
+
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
|
2149
2101
|
dependencies = [
|
2150
2102
|
"proc-macro2",
|
2151
2103
|
"quote",
|
2152
|
-
"syn 2.0.
|
2153
|
-
]
|
2154
|
-
|
2155
|
-
[[package]]
|
2156
|
-
name = "time"
|
2157
|
-
version = "0.1.45"
|
2158
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2159
|
-
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
|
2160
|
-
dependencies = [
|
2161
|
-
"libc",
|
2162
|
-
"wasi 0.10.0+wasi-snapshot-preview1",
|
2163
|
-
"winapi",
|
2104
|
+
"syn 2.0.39",
|
2164
2105
|
]
|
2165
2106
|
|
2166
2107
|
[[package]]
|
2167
2108
|
name = "tokio"
|
2168
|
-
version = "1.
|
2109
|
+
version = "1.34.0"
|
2169
2110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2170
|
-
checksum = "
|
2111
|
+
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
|
2171
2112
|
dependencies = [
|
2172
|
-
"autocfg",
|
2173
2113
|
"backtrace",
|
2114
|
+
"bytes",
|
2174
2115
|
"libc",
|
2175
2116
|
"mio",
|
2117
|
+
"num_cpus",
|
2176
2118
|
"pin-project-lite",
|
2177
2119
|
"socket2",
|
2178
2120
|
"windows-sys",
|
2179
2121
|
]
|
2180
2122
|
|
2123
|
+
[[package]]
|
2124
|
+
name = "tokio-util"
|
2125
|
+
version = "0.7.10"
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2127
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
2128
|
+
dependencies = [
|
2129
|
+
"bytes",
|
2130
|
+
"futures-core",
|
2131
|
+
"futures-sink",
|
2132
|
+
"pin-project-lite",
|
2133
|
+
"tokio",
|
2134
|
+
]
|
2135
|
+
|
2181
2136
|
[[package]]
|
2182
2137
|
name = "unicode-ident"
|
2183
|
-
version = "1.0.
|
2138
|
+
version = "1.0.12"
|
2184
2139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2185
|
-
checksum = "
|
2140
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2186
2141
|
|
2187
2142
|
[[package]]
|
2188
2143
|
name = "unicode-width"
|
2189
|
-
version = "0.1.
|
2144
|
+
version = "0.1.11"
|
2190
2145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2191
|
-
checksum = "
|
2146
|
+
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
2192
2147
|
|
2193
2148
|
[[package]]
|
2194
2149
|
name = "value-trait"
|
2195
|
-
version = "0.
|
2150
|
+
version = "0.8.0"
|
2196
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2197
|
-
checksum = "
|
2152
|
+
checksum = "ea87257cfcbedcb9444eda79c59fdfea71217e6305afee8ee33f500375c2ac97"
|
2198
2153
|
dependencies = [
|
2199
2154
|
"float-cmp",
|
2200
2155
|
"halfbrown",
|
@@ -2208,12 +2163,6 @@ version = "0.9.4"
|
|
2208
2163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2209
2164
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2210
2165
|
|
2211
|
-
[[package]]
|
2212
|
-
name = "wasi"
|
2213
|
-
version = "0.10.0+wasi-snapshot-preview1"
|
2214
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2215
|
-
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
2216
|
-
|
2217
2166
|
[[package]]
|
2218
2167
|
name = "wasi"
|
2219
2168
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -2222,9 +2171,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2222
2171
|
|
2223
2172
|
[[package]]
|
2224
2173
|
name = "wasm-bindgen"
|
2225
|
-
version = "0.2.
|
2174
|
+
version = "0.2.88"
|
2226
2175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2227
|
-
checksum = "
|
2176
|
+
checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
|
2228
2177
|
dependencies = [
|
2229
2178
|
"cfg-if",
|
2230
2179
|
"wasm-bindgen-macro",
|
@@ -2232,36 +2181,24 @@ dependencies = [
|
|
2232
2181
|
|
2233
2182
|
[[package]]
|
2234
2183
|
name = "wasm-bindgen-backend"
|
2235
|
-
version = "0.2.
|
2184
|
+
version = "0.2.88"
|
2236
2185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2237
|
-
checksum = "
|
2186
|
+
checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
|
2238
2187
|
dependencies = [
|
2239
2188
|
"bumpalo",
|
2240
2189
|
"log",
|
2241
2190
|
"once_cell",
|
2242
2191
|
"proc-macro2",
|
2243
2192
|
"quote",
|
2244
|
-
"syn 2.0.
|
2193
|
+
"syn 2.0.39",
|
2245
2194
|
"wasm-bindgen-shared",
|
2246
2195
|
]
|
2247
2196
|
|
2248
|
-
[[package]]
|
2249
|
-
name = "wasm-bindgen-futures"
|
2250
|
-
version = "0.4.37"
|
2251
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2252
|
-
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
2253
|
-
dependencies = [
|
2254
|
-
"cfg-if",
|
2255
|
-
"js-sys",
|
2256
|
-
"wasm-bindgen",
|
2257
|
-
"web-sys",
|
2258
|
-
]
|
2259
|
-
|
2260
2197
|
[[package]]
|
2261
2198
|
name = "wasm-bindgen-macro"
|
2262
|
-
version = "0.2.
|
2199
|
+
version = "0.2.88"
|
2263
2200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2264
|
-
checksum = "
|
2201
|
+
checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
|
2265
2202
|
dependencies = [
|
2266
2203
|
"quote",
|
2267
2204
|
"wasm-bindgen-macro-support",
|
@@ -2269,47 +2206,22 @@ dependencies = [
|
|
2269
2206
|
|
2270
2207
|
[[package]]
|
2271
2208
|
name = "wasm-bindgen-macro-support"
|
2272
|
-
version = "0.2.
|
2209
|
+
version = "0.2.88"
|
2273
2210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2274
|
-
checksum = "
|
2211
|
+
checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
|
2275
2212
|
dependencies = [
|
2276
2213
|
"proc-macro2",
|
2277
2214
|
"quote",
|
2278
|
-
"syn 2.0.
|
2215
|
+
"syn 2.0.39",
|
2279
2216
|
"wasm-bindgen-backend",
|
2280
2217
|
"wasm-bindgen-shared",
|
2281
2218
|
]
|
2282
2219
|
|
2283
2220
|
[[package]]
|
2284
2221
|
name = "wasm-bindgen-shared"
|
2285
|
-
version = "0.2.
|
2286
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
-
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
2288
|
-
|
2289
|
-
[[package]]
|
2290
|
-
name = "wasm-timer"
|
2291
|
-
version = "0.2.5"
|
2292
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2293
|
-
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
|
2294
|
-
dependencies = [
|
2295
|
-
"futures",
|
2296
|
-
"js-sys",
|
2297
|
-
"parking_lot 0.11.2",
|
2298
|
-
"pin-utils",
|
2299
|
-
"wasm-bindgen",
|
2300
|
-
"wasm-bindgen-futures",
|
2301
|
-
"web-sys",
|
2302
|
-
]
|
2303
|
-
|
2304
|
-
[[package]]
|
2305
|
-
name = "web-sys"
|
2306
|
-
version = "0.3.64"
|
2222
|
+
version = "0.2.88"
|
2307
2223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2308
|
-
checksum = "
|
2309
|
-
dependencies = [
|
2310
|
-
"js-sys",
|
2311
|
-
"wasm-bindgen",
|
2312
|
-
]
|
2224
|
+
checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
|
2313
2225
|
|
2314
2226
|
[[package]]
|
2315
2227
|
name = "winapi"
|
@@ -2334,10 +2246,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
2246
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2335
2247
|
|
2336
2248
|
[[package]]
|
2337
|
-
name = "windows"
|
2338
|
-
version = "0.
|
2249
|
+
name = "windows-core"
|
2250
|
+
version = "0.51.1"
|
2339
2251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2340
|
-
checksum = "
|
2252
|
+
checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
|
2341
2253
|
dependencies = [
|
2342
2254
|
"windows-targets",
|
2343
2255
|
]
|
@@ -2353,9 +2265,9 @@ dependencies = [
|
|
2353
2265
|
|
2354
2266
|
[[package]]
|
2355
2267
|
name = "windows-targets"
|
2356
|
-
version = "0.48.
|
2268
|
+
version = "0.48.5"
|
2357
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2358
|
-
checksum = "
|
2270
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2359
2271
|
dependencies = [
|
2360
2272
|
"windows_aarch64_gnullvm",
|
2361
2273
|
"windows_aarch64_msvc",
|
@@ -2368,78 +2280,96 @@ dependencies = [
|
|
2368
2280
|
|
2369
2281
|
[[package]]
|
2370
2282
|
name = "windows_aarch64_gnullvm"
|
2371
|
-
version = "0.48.
|
2283
|
+
version = "0.48.5"
|
2372
2284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2373
|
-
checksum = "
|
2285
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2374
2286
|
|
2375
2287
|
[[package]]
|
2376
2288
|
name = "windows_aarch64_msvc"
|
2377
|
-
version = "0.48.
|
2289
|
+
version = "0.48.5"
|
2378
2290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2379
|
-
checksum = "
|
2291
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2380
2292
|
|
2381
2293
|
[[package]]
|
2382
2294
|
name = "windows_i686_gnu"
|
2383
|
-
version = "0.48.
|
2295
|
+
version = "0.48.5"
|
2384
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2385
|
-
checksum = "
|
2297
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2386
2298
|
|
2387
2299
|
[[package]]
|
2388
2300
|
name = "windows_i686_msvc"
|
2389
|
-
version = "0.48.
|
2301
|
+
version = "0.48.5"
|
2390
2302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2391
|
-
checksum = "
|
2303
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2392
2304
|
|
2393
2305
|
[[package]]
|
2394
2306
|
name = "windows_x86_64_gnu"
|
2395
|
-
version = "0.48.
|
2307
|
+
version = "0.48.5"
|
2396
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2397
|
-
checksum = "
|
2309
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2398
2310
|
|
2399
2311
|
[[package]]
|
2400
2312
|
name = "windows_x86_64_gnullvm"
|
2401
|
-
version = "0.48.
|
2313
|
+
version = "0.48.5"
|
2402
2314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
-
checksum = "
|
2315
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2404
2316
|
|
2405
2317
|
[[package]]
|
2406
2318
|
name = "windows_x86_64_msvc"
|
2407
|
-
version = "0.48.
|
2319
|
+
version = "0.48.5"
|
2408
2320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2409
|
-
checksum = "
|
2321
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2410
2322
|
|
2411
2323
|
[[package]]
|
2412
2324
|
name = "xxhash-rust"
|
2413
|
-
version = "0.8.
|
2325
|
+
version = "0.8.7"
|
2414
2326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2415
|
-
checksum = "
|
2327
|
+
checksum = "9828b178da53440fa9c766a3d2f73f7cf5d0ac1fe3980c1e5018d899fd19e07b"
|
2328
|
+
|
2329
|
+
[[package]]
|
2330
|
+
name = "zerocopy"
|
2331
|
+
version = "0.7.26"
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2333
|
+
checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0"
|
2334
|
+
dependencies = [
|
2335
|
+
"zerocopy-derive",
|
2336
|
+
]
|
2337
|
+
|
2338
|
+
[[package]]
|
2339
|
+
name = "zerocopy-derive"
|
2340
|
+
version = "0.7.26"
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2342
|
+
checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f"
|
2343
|
+
dependencies = [
|
2344
|
+
"proc-macro2",
|
2345
|
+
"quote",
|
2346
|
+
"syn 2.0.39",
|
2347
|
+
]
|
2416
2348
|
|
2417
2349
|
[[package]]
|
2418
2350
|
name = "zstd"
|
2419
|
-
version = "0.
|
2351
|
+
version = "0.13.0"
|
2420
2352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2421
|
-
checksum = "
|
2353
|
+
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
|
2422
2354
|
dependencies = [
|
2423
2355
|
"zstd-safe",
|
2424
2356
|
]
|
2425
2357
|
|
2426
2358
|
[[package]]
|
2427
2359
|
name = "zstd-safe"
|
2428
|
-
version = "
|
2360
|
+
version = "7.0.0"
|
2429
2361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2430
|
-
checksum = "
|
2362
|
+
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
|
2431
2363
|
dependencies = [
|
2432
|
-
"libc",
|
2433
2364
|
"zstd-sys",
|
2434
2365
|
]
|
2435
2366
|
|
2436
2367
|
[[package]]
|
2437
2368
|
name = "zstd-sys"
|
2438
|
-
version = "2.0.
|
2369
|
+
version = "2.0.9+zstd.1.5.5"
|
2439
2370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2440
|
-
checksum = "
|
2371
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
2441
2372
|
dependencies = [
|
2442
2373
|
"cc",
|
2443
|
-
"libc",
|
2444
2374
|
"pkg-config",
|
2445
2375
|
]
|