polars-df 0.6.0-arm64-darwin → 0.8.0-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -0
- data/Cargo.lock +597 -599
- data/Cargo.toml +1 -0
- data/LICENSE-THIRD-PARTY.txt +5523 -6947
- data/README.md +8 -7
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/{3.0 → 3.3}/polars.bundle +0 -0
- data/lib/polars/config.rb +530 -0
- data/lib/polars/data_frame.rb +182 -145
- data/lib/polars/data_types.rb +4 -1
- data/lib/polars/date_time_expr.rb +23 -28
- data/lib/polars/date_time_name_space.rb +17 -37
- data/lib/polars/dynamic_group_by.rb +2 -2
- data/lib/polars/expr.rb +398 -110
- data/lib/polars/functions.rb +29 -37
- data/lib/polars/group_by.rb +38 -55
- data/lib/polars/io.rb +40 -5
- data/lib/polars/lazy_frame.rb +116 -89
- data/lib/polars/lazy_functions.rb +40 -68
- 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 +315 -43
- 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/struct_expr.rb +1 -1
- data/lib/polars/struct_name_space.rb +1 -1
- data/lib/polars/utils.rb +25 -13
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +3 -0
- metadata +8 -5
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.7"
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "
|
30
|
+
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
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.46",
|
157
129
|
]
|
158
130
|
|
159
131
|
[[package]]
|
160
132
|
name = "async-trait"
|
161
|
-
version = "0.1.
|
133
|
+
version = "0.1.77"
|
162
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
-
checksum = "
|
135
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
164
136
|
dependencies = [
|
165
137
|
"proc-macro2",
|
166
138
|
"quote",
|
167
|
-
"syn 2.0.
|
139
|
+
"syn 2.0.46",
|
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.6"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
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.46",
|
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.46",
|
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 0.48.5",
|
337
324
|
]
|
338
325
|
|
339
326
|
[[package]]
|
340
327
|
name = "chrono-tz"
|
341
|
-
version = "0.8.
|
328
|
+
version = "0.8.5"
|
342
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
-
checksum = "
|
330
|
+
checksum = "91d7b79e99bfaa0d47da0687c43aa3b7381938a62ad3a6498599039321f660b7"
|
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",
|
@@ -360,9 +347,9 @@ dependencies = [
|
|
360
347
|
|
361
348
|
[[package]]
|
362
349
|
name = "clang-sys"
|
363
|
-
version = "1.
|
350
|
+
version = "1.7.0"
|
364
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
-
checksum = "
|
352
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
366
353
|
dependencies = [
|
367
354
|
"glob",
|
368
355
|
"libc",
|
@@ -371,21 +358,21 @@ 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
|
|
384
371
|
[[package]]
|
385
372
|
name = "core-foundation-sys"
|
386
|
-
version = "0.8.
|
373
|
+
version = "0.8.6"
|
387
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
-
checksum = "
|
375
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
389
376
|
|
390
377
|
[[package]]
|
391
378
|
name = "crc"
|
@@ -413,9 +400,9 @@ dependencies = [
|
|
413
400
|
|
414
401
|
[[package]]
|
415
402
|
name = "crossbeam-channel"
|
416
|
-
version = "0.5.
|
403
|
+
version = "0.5.10"
|
417
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
|
-
checksum = "
|
405
|
+
checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
|
419
406
|
dependencies = [
|
420
407
|
"cfg-if",
|
421
408
|
"crossbeam-utils",
|
@@ -423,9 +410,9 @@ dependencies = [
|
|
423
410
|
|
424
411
|
[[package]]
|
425
412
|
name = "crossbeam-deque"
|
426
|
-
version = "0.8.
|
413
|
+
version = "0.8.4"
|
427
414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
-
checksum = "
|
415
|
+
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
|
429
416
|
dependencies = [
|
430
417
|
"cfg-if",
|
431
418
|
"crossbeam-epoch",
|
@@ -434,22 +421,20 @@ dependencies = [
|
|
434
421
|
|
435
422
|
[[package]]
|
436
423
|
name = "crossbeam-epoch"
|
437
|
-
version = "0.9.
|
424
|
+
version = "0.9.17"
|
438
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
439
|
-
checksum = "
|
426
|
+
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
|
440
427
|
dependencies = [
|
441
428
|
"autocfg",
|
442
429
|
"cfg-if",
|
443
430
|
"crossbeam-utils",
|
444
|
-
"memoffset",
|
445
|
-
"scopeguard",
|
446
431
|
]
|
447
432
|
|
448
433
|
[[package]]
|
449
434
|
name = "crossbeam-queue"
|
450
|
-
version = "0.3.
|
435
|
+
version = "0.3.10"
|
451
436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
-
checksum = "
|
437
|
+
checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
|
453
438
|
dependencies = [
|
454
439
|
"cfg-if",
|
455
440
|
"crossbeam-utils",
|
@@ -457,26 +442,23 @@ dependencies = [
|
|
457
442
|
|
458
443
|
[[package]]
|
459
444
|
name = "crossbeam-utils"
|
460
|
-
version = "0.8.
|
445
|
+
version = "0.8.18"
|
461
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
462
|
-
checksum = "
|
447
|
+
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
|
463
448
|
dependencies = [
|
464
449
|
"cfg-if",
|
465
450
|
]
|
466
451
|
|
467
452
|
[[package]]
|
468
453
|
name = "crossterm"
|
469
|
-
version = "0.
|
454
|
+
version = "0.27.0"
|
470
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
-
checksum = "
|
456
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
472
457
|
dependencies = [
|
473
|
-
"bitflags",
|
458
|
+
"bitflags 2.4.1",
|
474
459
|
"crossterm_winapi",
|
475
460
|
"libc",
|
476
|
-
"
|
477
|
-
"parking_lot 0.12.1",
|
478
|
-
"signal-hook",
|
479
|
-
"signal-hook-mio",
|
461
|
+
"parking_lot",
|
480
462
|
"winapi",
|
481
463
|
]
|
482
464
|
|
@@ -491,15 +473,15 @@ dependencies = [
|
|
491
473
|
|
492
474
|
[[package]]
|
493
475
|
name = "dyn-clone"
|
494
|
-
version = "1.0.
|
476
|
+
version = "1.0.16"
|
495
477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
496
|
-
checksum = "
|
478
|
+
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
|
497
479
|
|
498
480
|
[[package]]
|
499
481
|
name = "either"
|
500
|
-
version = "1.
|
482
|
+
version = "1.9.0"
|
501
483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
502
|
-
checksum = "
|
484
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
503
485
|
|
504
486
|
[[package]]
|
505
487
|
name = "enum_dispatch"
|
@@ -510,7 +492,7 @@ dependencies = [
|
|
510
492
|
"once_cell",
|
511
493
|
"proc-macro2",
|
512
494
|
"quote",
|
513
|
-
"syn 2.0.
|
495
|
+
"syn 2.0.46",
|
514
496
|
]
|
515
497
|
|
516
498
|
[[package]]
|
@@ -521,9 +503,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
521
503
|
|
522
504
|
[[package]]
|
523
505
|
name = "ethnum"
|
524
|
-
version = "1.
|
506
|
+
version = "1.5.0"
|
525
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
526
|
-
checksum = "
|
508
|
+
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
527
509
|
|
528
510
|
[[package]]
|
529
511
|
name = "fallible-streaming-iterator"
|
@@ -539,9 +521,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
539
521
|
|
540
522
|
[[package]]
|
541
523
|
name = "flate2"
|
542
|
-
version = "1.0.
|
524
|
+
version = "1.0.28"
|
543
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
544
|
-
checksum = "
|
526
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
545
527
|
dependencies = [
|
546
528
|
"crc32fast",
|
547
529
|
"miniz_oxide",
|
@@ -564,9 +546,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
564
546
|
|
565
547
|
[[package]]
|
566
548
|
name = "futures"
|
567
|
-
version = "0.3.
|
549
|
+
version = "0.3.30"
|
568
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
569
|
-
checksum = "
|
551
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
570
552
|
dependencies = [
|
571
553
|
"futures-channel",
|
572
554
|
"futures-core",
|
@@ -579,9 +561,9 @@ dependencies = [
|
|
579
561
|
|
580
562
|
[[package]]
|
581
563
|
name = "futures-channel"
|
582
|
-
version = "0.3.
|
564
|
+
version = "0.3.30"
|
583
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
-
checksum = "
|
566
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
585
567
|
dependencies = [
|
586
568
|
"futures-core",
|
587
569
|
"futures-sink",
|
@@ -589,15 +571,15 @@ dependencies = [
|
|
589
571
|
|
590
572
|
[[package]]
|
591
573
|
name = "futures-core"
|
592
|
-
version = "0.3.
|
574
|
+
version = "0.3.30"
|
593
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
-
checksum = "
|
576
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
595
577
|
|
596
578
|
[[package]]
|
597
579
|
name = "futures-executor"
|
598
|
-
version = "0.3.
|
580
|
+
version = "0.3.30"
|
599
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
582
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
601
583
|
dependencies = [
|
602
584
|
"futures-core",
|
603
585
|
"futures-task",
|
@@ -606,38 +588,38 @@ dependencies = [
|
|
606
588
|
|
607
589
|
[[package]]
|
608
590
|
name = "futures-io"
|
609
|
-
version = "0.3.
|
591
|
+
version = "0.3.30"
|
610
592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
611
|
-
checksum = "
|
593
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
612
594
|
|
613
595
|
[[package]]
|
614
596
|
name = "futures-macro"
|
615
|
-
version = "0.3.
|
597
|
+
version = "0.3.30"
|
616
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
-
checksum = "
|
599
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
618
600
|
dependencies = [
|
619
601
|
"proc-macro2",
|
620
602
|
"quote",
|
621
|
-
"syn 2.0.
|
603
|
+
"syn 2.0.46",
|
622
604
|
]
|
623
605
|
|
624
606
|
[[package]]
|
625
607
|
name = "futures-sink"
|
626
|
-
version = "0.3.
|
608
|
+
version = "0.3.30"
|
627
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
-
checksum = "
|
610
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
629
611
|
|
630
612
|
[[package]]
|
631
613
|
name = "futures-task"
|
632
|
-
version = "0.3.
|
614
|
+
version = "0.3.30"
|
633
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
-
checksum = "
|
616
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
635
617
|
|
636
618
|
[[package]]
|
637
619
|
name = "futures-util"
|
638
|
-
version = "0.3.
|
620
|
+
version = "0.3.30"
|
639
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
640
|
-
checksum = "
|
622
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
641
623
|
dependencies = [
|
642
624
|
"futures-channel",
|
643
625
|
"futures-core",
|
@@ -653,22 +635,22 @@ dependencies = [
|
|
653
635
|
|
654
636
|
[[package]]
|
655
637
|
name = "getrandom"
|
656
|
-
version = "0.2.
|
638
|
+
version = "0.2.11"
|
657
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
-
checksum = "
|
640
|
+
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
659
641
|
dependencies = [
|
660
642
|
"cfg-if",
|
661
643
|
"js-sys",
|
662
644
|
"libc",
|
663
|
-
"wasi
|
645
|
+
"wasi",
|
664
646
|
"wasm-bindgen",
|
665
647
|
]
|
666
648
|
|
667
649
|
[[package]]
|
668
650
|
name = "gimli"
|
669
|
-
version = "0.
|
651
|
+
version = "0.28.1"
|
670
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
671
|
-
checksum = "
|
653
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
672
654
|
|
673
655
|
[[package]]
|
674
656
|
name = "glob"
|
@@ -686,12 +668,6 @@ dependencies = [
|
|
686
668
|
"serde",
|
687
669
|
]
|
688
670
|
|
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
671
|
[[package]]
|
696
672
|
name = "hashbrown"
|
697
673
|
version = "0.13.2"
|
@@ -703,9 +679,9 @@ dependencies = [
|
|
703
679
|
|
704
680
|
[[package]]
|
705
681
|
name = "hashbrown"
|
706
|
-
version = "0.14.
|
682
|
+
version = "0.14.3"
|
707
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
708
|
-
checksum = "
|
684
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
709
685
|
dependencies = [
|
710
686
|
"ahash",
|
711
687
|
"allocator-api2",
|
@@ -720,9 +696,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
720
696
|
|
721
697
|
[[package]]
|
722
698
|
name = "hermit-abi"
|
723
|
-
version = "0.3.
|
699
|
+
version = "0.3.3"
|
724
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
701
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
726
702
|
|
727
703
|
[[package]]
|
728
704
|
name = "hex"
|
@@ -732,25 +708,25 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
732
708
|
|
733
709
|
[[package]]
|
734
710
|
name = "home"
|
735
|
-
version = "0.5.
|
711
|
+
version = "0.5.9"
|
736
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
-
checksum = "
|
713
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
738
714
|
dependencies = [
|
739
|
-
"windows-sys",
|
715
|
+
"windows-sys 0.52.0",
|
740
716
|
]
|
741
717
|
|
742
718
|
[[package]]
|
743
719
|
name = "iana-time-zone"
|
744
|
-
version = "0.1.
|
720
|
+
version = "0.1.59"
|
745
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
-
checksum = "
|
722
|
+
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
747
723
|
dependencies = [
|
748
724
|
"android_system_properties",
|
749
725
|
"core-foundation-sys",
|
750
726
|
"iana-time-zone-haiku",
|
751
727
|
"js-sys",
|
752
728
|
"wasm-bindgen",
|
753
|
-
"windows",
|
729
|
+
"windows-core",
|
754
730
|
]
|
755
731
|
|
756
732
|
[[package]]
|
@@ -764,29 +740,20 @@ dependencies = [
|
|
764
740
|
|
765
741
|
[[package]]
|
766
742
|
name = "indexmap"
|
767
|
-
version = "2.
|
743
|
+
version = "2.1.0"
|
768
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
-
checksum = "
|
745
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
770
746
|
dependencies = [
|
771
747
|
"equivalent",
|
772
|
-
"hashbrown 0.14.
|
748
|
+
"hashbrown 0.14.3",
|
773
749
|
"serde",
|
774
750
|
]
|
775
751
|
|
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
752
|
[[package]]
|
786
753
|
name = "itoa"
|
787
|
-
version = "1.0.
|
754
|
+
version = "1.0.10"
|
788
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
789
|
-
checksum = "
|
756
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
790
757
|
|
791
758
|
[[package]]
|
792
759
|
name = "itoap"
|
@@ -796,9 +763,9 @@ checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
796
763
|
|
797
764
|
[[package]]
|
798
765
|
name = "jemalloc-sys"
|
799
|
-
version = "0.5.
|
766
|
+
version = "0.5.4+5.3.0-patched"
|
800
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
801
|
-
checksum = "
|
768
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
802
769
|
dependencies = [
|
803
770
|
"cc",
|
804
771
|
"libc",
|
@@ -806,9 +773,9 @@ dependencies = [
|
|
806
773
|
|
807
774
|
[[package]]
|
808
775
|
name = "jemallocator"
|
809
|
-
version = "0.5.
|
776
|
+
version = "0.5.4"
|
810
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
778
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
812
779
|
dependencies = [
|
813
780
|
"jemalloc-sys",
|
814
781
|
"libc",
|
@@ -816,18 +783,18 @@ dependencies = [
|
|
816
783
|
|
817
784
|
[[package]]
|
818
785
|
name = "jobserver"
|
819
|
-
version = "0.1.
|
786
|
+
version = "0.1.27"
|
820
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
-
checksum = "
|
788
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
822
789
|
dependencies = [
|
823
790
|
"libc",
|
824
791
|
]
|
825
792
|
|
826
793
|
[[package]]
|
827
794
|
name = "js-sys"
|
828
|
-
version = "0.3.
|
795
|
+
version = "0.3.66"
|
829
796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
830
|
-
checksum = "
|
797
|
+
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
831
798
|
dependencies = [
|
832
799
|
"wasm-bindgen",
|
833
800
|
]
|
@@ -854,15 +821,6 @@ version = "1.3.0"
|
|
854
821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
855
822
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
856
823
|
|
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
824
|
[[package]]
|
867
825
|
name = "lexical-core"
|
868
826
|
version = "0.8.5"
|
@@ -929,9 +887,9 @@ dependencies = [
|
|
929
887
|
|
930
888
|
[[package]]
|
931
889
|
name = "libc"
|
932
|
-
version = "0.2.
|
890
|
+
version = "0.2.151"
|
933
891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
|
-
checksum = "
|
892
|
+
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
|
935
893
|
|
936
894
|
[[package]]
|
937
895
|
name = "libflate"
|
@@ -955,25 +913,25 @@ dependencies = [
|
|
955
913
|
|
956
914
|
[[package]]
|
957
915
|
name = "libloading"
|
958
|
-
version = "0.
|
916
|
+
version = "0.8.1"
|
959
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
960
|
-
checksum = "
|
918
|
+
checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
|
961
919
|
dependencies = [
|
962
920
|
"cfg-if",
|
963
|
-
"
|
921
|
+
"windows-sys 0.48.0",
|
964
922
|
]
|
965
923
|
|
966
924
|
[[package]]
|
967
925
|
name = "libm"
|
968
|
-
version = "0.2.
|
926
|
+
version = "0.2.8"
|
969
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
970
|
-
checksum = "
|
928
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
971
929
|
|
972
930
|
[[package]]
|
973
931
|
name = "libmimalloc-sys"
|
974
|
-
version = "0.1.
|
932
|
+
version = "0.1.35"
|
975
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
976
|
-
checksum = "
|
934
|
+
checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664"
|
977
935
|
dependencies = [
|
978
936
|
"cc",
|
979
937
|
"libc",
|
@@ -981,9 +939,9 @@ dependencies = [
|
|
981
939
|
|
982
940
|
[[package]]
|
983
941
|
name = "lock_api"
|
984
|
-
version = "0.4.
|
942
|
+
version = "0.4.11"
|
985
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
-
checksum = "
|
944
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
987
945
|
dependencies = [
|
988
946
|
"autocfg",
|
989
947
|
"scopeguard",
|
@@ -991,9 +949,9 @@ dependencies = [
|
|
991
949
|
|
992
950
|
[[package]]
|
993
951
|
name = "log"
|
994
|
-
version = "0.4.
|
952
|
+
version = "0.4.20"
|
995
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
-
checksum = "
|
954
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
997
955
|
|
998
956
|
[[package]]
|
999
957
|
name = "lz4"
|
@@ -1017,55 +975,47 @@ dependencies = [
|
|
1017
975
|
|
1018
976
|
[[package]]
|
1019
977
|
name = "magnus"
|
1020
|
-
version = "0.
|
978
|
+
version = "0.6.2"
|
1021
979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
-
checksum = "
|
980
|
+
checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
|
1023
981
|
dependencies = [
|
1024
982
|
"magnus-macros",
|
1025
983
|
"rb-sys",
|
1026
984
|
"rb-sys-env",
|
985
|
+
"seq-macro",
|
1027
986
|
]
|
1028
987
|
|
1029
988
|
[[package]]
|
1030
989
|
name = "magnus-macros"
|
1031
|
-
version = "0.
|
990
|
+
version = "0.6.0"
|
1032
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
-
checksum = "
|
992
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1034
993
|
dependencies = [
|
1035
994
|
"proc-macro2",
|
1036
995
|
"quote",
|
1037
|
-
"syn
|
996
|
+
"syn 2.0.46",
|
1038
997
|
]
|
1039
998
|
|
1040
999
|
[[package]]
|
1041
1000
|
name = "memchr"
|
1042
|
-
version = "2.
|
1001
|
+
version = "2.7.1"
|
1043
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1003
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
1045
1004
|
|
1046
1005
|
[[package]]
|
1047
1006
|
name = "memmap2"
|
1048
|
-
version = "0.
|
1007
|
+
version = "0.7.1"
|
1049
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1050
|
-
checksum = "
|
1009
|
+
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
|
1051
1010
|
dependencies = [
|
1052
1011
|
"libc",
|
1053
1012
|
]
|
1054
1013
|
|
1055
|
-
[[package]]
|
1056
|
-
name = "memoffset"
|
1057
|
-
version = "0.9.0"
|
1058
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1059
|
-
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1060
|
-
dependencies = [
|
1061
|
-
"autocfg",
|
1062
|
-
]
|
1063
|
-
|
1064
1014
|
[[package]]
|
1065
1015
|
name = "mimalloc"
|
1066
|
-
version = "0.1.
|
1016
|
+
version = "0.1.39"
|
1067
1017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1068
|
-
checksum = "
|
1018
|
+
checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c"
|
1069
1019
|
dependencies = [
|
1070
1020
|
"libmimalloc-sys",
|
1071
1021
|
]
|
@@ -1087,21 +1037,20 @@ dependencies = [
|
|
1087
1037
|
|
1088
1038
|
[[package]]
|
1089
1039
|
name = "mio"
|
1090
|
-
version = "0.8.
|
1040
|
+
version = "0.8.10"
|
1091
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1042
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
1093
1043
|
dependencies = [
|
1094
1044
|
"libc",
|
1095
|
-
"
|
1096
|
-
"
|
1097
|
-
"windows-sys",
|
1045
|
+
"wasi",
|
1046
|
+
"windows-sys 0.48.0",
|
1098
1047
|
]
|
1099
1048
|
|
1100
1049
|
[[package]]
|
1101
1050
|
name = "multiversion"
|
1102
|
-
version = "0.7.
|
1051
|
+
version = "0.7.3"
|
1103
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1104
|
-
checksum = "
|
1053
|
+
checksum = "b2c7b9d7fe61760ce5ea19532ead98541f6b4c495d87247aff9826445cf6872a"
|
1105
1054
|
dependencies = [
|
1106
1055
|
"multiversion-macros",
|
1107
1056
|
"target-features",
|
@@ -1109,9 +1058,9 @@ dependencies = [
|
|
1109
1058
|
|
1110
1059
|
[[package]]
|
1111
1060
|
name = "multiversion-macros"
|
1112
|
-
version = "0.7.
|
1061
|
+
version = "0.7.3"
|
1113
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
-
checksum = "
|
1063
|
+
checksum = "26a83d8500ed06d68877e9de1dde76c1dbb83885dcdbda4ef44ccbc3fbda2ac8"
|
1115
1064
|
dependencies = [
|
1116
1065
|
"proc-macro2",
|
1117
1066
|
"quote",
|
@@ -1147,21 +1096,11 @@ dependencies = [
|
|
1147
1096
|
"winapi",
|
1148
1097
|
]
|
1149
1098
|
|
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
1099
|
[[package]]
|
1161
1100
|
name = "num-traits"
|
1162
|
-
version = "0.2.
|
1101
|
+
version = "0.2.17"
|
1163
1102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
-
checksum = "
|
1103
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
1165
1104
|
dependencies = [
|
1166
1105
|
"autocfg",
|
1167
1106
|
"libm",
|
@@ -1179,29 +1118,18 @@ dependencies = [
|
|
1179
1118
|
|
1180
1119
|
[[package]]
|
1181
1120
|
name = "object"
|
1182
|
-
version = "0.
|
1121
|
+
version = "0.32.2"
|
1183
1122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
-
checksum = "
|
1123
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
1185
1124
|
dependencies = [
|
1186
1125
|
"memchr",
|
1187
1126
|
]
|
1188
1127
|
|
1189
1128
|
[[package]]
|
1190
1129
|
name = "once_cell"
|
1191
|
-
version = "1.
|
1192
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
-
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
1194
|
-
|
1195
|
-
[[package]]
|
1196
|
-
name = "parking_lot"
|
1197
|
-
version = "0.11.2"
|
1130
|
+
version = "1.19.0"
|
1198
1131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
-
checksum = "
|
1200
|
-
dependencies = [
|
1201
|
-
"instant",
|
1202
|
-
"lock_api",
|
1203
|
-
"parking_lot_core 0.8.6",
|
1204
|
-
]
|
1132
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
1205
1133
|
|
1206
1134
|
[[package]]
|
1207
1135
|
name = "parking_lot"
|
@@ -1210,34 +1138,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
1138
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1211
1139
|
dependencies = [
|
1212
1140
|
"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",
|
1141
|
+
"parking_lot_core",
|
1228
1142
|
]
|
1229
1143
|
|
1230
1144
|
[[package]]
|
1231
1145
|
name = "parking_lot_core"
|
1232
|
-
version = "0.9.
|
1146
|
+
version = "0.9.9"
|
1233
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1234
|
-
checksum = "
|
1148
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
1235
1149
|
dependencies = [
|
1236
1150
|
"cfg-if",
|
1237
1151
|
"libc",
|
1238
|
-
"redox_syscall
|
1152
|
+
"redox_syscall",
|
1239
1153
|
"smallvec",
|
1240
|
-
"windows-targets",
|
1154
|
+
"windows-targets 0.48.5",
|
1241
1155
|
]
|
1242
1156
|
|
1243
1157
|
[[package]]
|
@@ -1250,24 +1164,6 @@ dependencies = [
|
|
1250
1164
|
"futures",
|
1251
1165
|
]
|
1252
1166
|
|
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
1167
|
[[package]]
|
1272
1168
|
name = "parse-zoneinfo"
|
1273
1169
|
version = "0.3.0"
|
@@ -1283,6 +1179,12 @@ version = "0.1.2"
|
|
1283
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1284
1180
|
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1285
1181
|
|
1182
|
+
[[package]]
|
1183
|
+
name = "percent-encoding"
|
1184
|
+
version = "2.3.1"
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1186
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1187
|
+
|
1286
1188
|
[[package]]
|
1287
1189
|
name = "phf"
|
1288
1190
|
version = "0.11.2"
|
@@ -1323,9 +1225,9 @@ dependencies = [
|
|
1323
1225
|
|
1324
1226
|
[[package]]
|
1325
1227
|
name = "pin-project-lite"
|
1326
|
-
version = "0.2.
|
1228
|
+
version = "0.2.13"
|
1327
1229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1328
|
-
checksum = "
|
1230
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
1329
1231
|
|
1330
1232
|
[[package]]
|
1331
1233
|
name = "pin-utils"
|
@@ -1335,9 +1237,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1335
1237
|
|
1336
1238
|
[[package]]
|
1337
1239
|
name = "pkg-config"
|
1338
|
-
version = "0.3.
|
1240
|
+
version = "0.3.28"
|
1339
1241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1340
|
-
checksum = "
|
1242
|
+
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
|
1341
1243
|
|
1342
1244
|
[[package]]
|
1343
1245
|
name = "planus"
|
@@ -1350,24 +1252,27 @@ dependencies = [
|
|
1350
1252
|
|
1351
1253
|
[[package]]
|
1352
1254
|
name = "polars"
|
1353
|
-
version = "0.
|
1255
|
+
version = "0.8.0"
|
1354
1256
|
dependencies = [
|
1355
1257
|
"ahash",
|
1356
1258
|
"chrono",
|
1259
|
+
"either",
|
1357
1260
|
"jemallocator",
|
1358
1261
|
"magnus",
|
1359
1262
|
"mimalloc",
|
1360
|
-
"polars 0.
|
1263
|
+
"polars 0.36.2",
|
1361
1264
|
"polars-core",
|
1265
|
+
"polars-parquet",
|
1266
|
+
"polars-utils",
|
1362
1267
|
"serde_json",
|
1363
1268
|
"smartstring",
|
1364
1269
|
]
|
1365
1270
|
|
1366
1271
|
[[package]]
|
1367
1272
|
name = "polars"
|
1368
|
-
version = "0.
|
1273
|
+
version = "0.36.2"
|
1369
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1370
|
-
checksum = "
|
1275
|
+
checksum = "938048fcda6a8e2ace6eb168bee1b415a92423ce51e418b853bf08fc40349b6b"
|
1371
1276
|
dependencies = [
|
1372
1277
|
"getrandom",
|
1373
1278
|
"polars-core",
|
@@ -1381,42 +1286,74 @@ dependencies = [
|
|
1381
1286
|
|
1382
1287
|
[[package]]
|
1383
1288
|
name = "polars-arrow"
|
1384
|
-
version = "0.
|
1289
|
+
version = "0.36.2"
|
1385
1290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
-
checksum = "
|
1291
|
+
checksum = "ce68a02f698ff7787c261aea1b4c040a8fe183a8fb200e2436d7f35d95a1b86f"
|
1387
1292
|
dependencies = [
|
1388
|
-
"
|
1293
|
+
"ahash",
|
1294
|
+
"arrow-format",
|
1389
1295
|
"atoi",
|
1296
|
+
"atoi_simd",
|
1297
|
+
"avro-schema",
|
1298
|
+
"bytemuck",
|
1390
1299
|
"chrono",
|
1391
1300
|
"chrono-tz",
|
1301
|
+
"dyn-clone",
|
1302
|
+
"either",
|
1392
1303
|
"ethnum",
|
1393
|
-
"
|
1304
|
+
"fast-float",
|
1305
|
+
"foreign_vec",
|
1306
|
+
"futures",
|
1307
|
+
"getrandom",
|
1308
|
+
"hashbrown 0.14.3",
|
1309
|
+
"itoa",
|
1310
|
+
"lz4",
|
1394
1311
|
"multiversion",
|
1395
1312
|
"num-traits",
|
1396
1313
|
"polars-error",
|
1314
|
+
"polars-utils",
|
1315
|
+
"ryu",
|
1397
1316
|
"serde",
|
1398
|
-
"
|
1317
|
+
"simdutf8",
|
1318
|
+
"streaming-iterator",
|
1319
|
+
"strength_reduce",
|
1320
|
+
"version_check",
|
1321
|
+
"zstd",
|
1322
|
+
]
|
1323
|
+
|
1324
|
+
[[package]]
|
1325
|
+
name = "polars-compute"
|
1326
|
+
version = "0.36.2"
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1328
|
+
checksum = "b14fbc5f141b29b656a4cec4802632e5bff10bf801c6809c6bbfbd4078a044dd"
|
1329
|
+
dependencies = [
|
1330
|
+
"bytemuck",
|
1331
|
+
"num-traits",
|
1332
|
+
"polars-arrow",
|
1333
|
+
"polars-utils",
|
1334
|
+
"version_check",
|
1399
1335
|
]
|
1400
1336
|
|
1401
1337
|
[[package]]
|
1402
1338
|
name = "polars-core"
|
1403
|
-
version = "0.
|
1339
|
+
version = "0.36.2"
|
1404
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
|
-
checksum = "
|
1341
|
+
checksum = "d0f5efe734b6cbe5f97ea769be8360df5324fade396f1f3f5ad7fe9360ca4a23"
|
1406
1342
|
dependencies = [
|
1407
1343
|
"ahash",
|
1408
|
-
"
|
1409
|
-
"
|
1344
|
+
"bitflags 2.4.1",
|
1345
|
+
"bytemuck",
|
1410
1346
|
"chrono",
|
1411
1347
|
"chrono-tz",
|
1412
1348
|
"comfy-table",
|
1413
1349
|
"either",
|
1414
|
-
"hashbrown 0.14.
|
1350
|
+
"hashbrown 0.14.3",
|
1415
1351
|
"indexmap",
|
1416
1352
|
"itoap",
|
1417
1353
|
"num-traits",
|
1418
1354
|
"once_cell",
|
1419
1355
|
"polars-arrow",
|
1356
|
+
"polars-compute",
|
1420
1357
|
"polars-error",
|
1421
1358
|
"polars-row",
|
1422
1359
|
"polars-utils",
|
@@ -1428,83 +1365,92 @@ dependencies = [
|
|
1428
1365
|
"serde_json",
|
1429
1366
|
"smartstring",
|
1430
1367
|
"thiserror",
|
1431
|
-
"
|
1368
|
+
"version_check",
|
1432
1369
|
"xxhash-rust",
|
1433
1370
|
]
|
1434
1371
|
|
1435
1372
|
[[package]]
|
1436
1373
|
name = "polars-error"
|
1437
|
-
version = "0.
|
1374
|
+
version = "0.36.2"
|
1438
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1439
|
-
checksum = "
|
1376
|
+
checksum = "6396de788f99ebfc9968e7b6f523e23000506cde4ba6dfc62ae4ce949002a886"
|
1440
1377
|
dependencies = [
|
1441
|
-
"
|
1378
|
+
"arrow-format",
|
1379
|
+
"avro-schema",
|
1442
1380
|
"regex",
|
1381
|
+
"simdutf8",
|
1443
1382
|
"thiserror",
|
1444
1383
|
]
|
1445
1384
|
|
1446
1385
|
[[package]]
|
1447
1386
|
name = "polars-io"
|
1448
|
-
version = "0.
|
1387
|
+
version = "0.36.2"
|
1449
1388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
-
checksum = "
|
1389
|
+
checksum = "7d0458efe8946f4718fd352f230c0db5a37926bd0d2bd25af79dc24746abaaea"
|
1451
1390
|
dependencies = [
|
1452
1391
|
"ahash",
|
1453
|
-
"arrow2",
|
1454
1392
|
"async-trait",
|
1393
|
+
"atoi_simd",
|
1455
1394
|
"bytes",
|
1456
1395
|
"chrono",
|
1457
1396
|
"chrono-tz",
|
1458
1397
|
"fast-float",
|
1459
1398
|
"futures",
|
1460
1399
|
"home",
|
1461
|
-
"
|
1462
|
-
"lexical-core",
|
1400
|
+
"itoa",
|
1463
1401
|
"memchr",
|
1464
1402
|
"memmap2",
|
1465
1403
|
"num-traits",
|
1466
1404
|
"once_cell",
|
1405
|
+
"percent-encoding",
|
1467
1406
|
"polars-arrow",
|
1468
1407
|
"polars-core",
|
1469
1408
|
"polars-error",
|
1470
1409
|
"polars-json",
|
1410
|
+
"polars-parquet",
|
1471
1411
|
"polars-time",
|
1472
1412
|
"polars-utils",
|
1473
1413
|
"rayon",
|
1474
1414
|
"regex",
|
1415
|
+
"ryu",
|
1475
1416
|
"serde",
|
1476
1417
|
"serde_json",
|
1477
1418
|
"simd-json",
|
1478
1419
|
"simdutf8",
|
1420
|
+
"smartstring",
|
1479
1421
|
"tokio",
|
1422
|
+
"tokio-util",
|
1480
1423
|
]
|
1481
1424
|
|
1482
1425
|
[[package]]
|
1483
1426
|
name = "polars-json"
|
1484
|
-
version = "0.
|
1427
|
+
version = "0.36.2"
|
1485
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
-
checksum = "
|
1429
|
+
checksum = "ea47d46b7a98fa683ef235ad48b783abf61734828e754096cfbdc77404fff9b3"
|
1487
1430
|
dependencies = [
|
1488
1431
|
"ahash",
|
1489
|
-
"
|
1432
|
+
"chrono",
|
1490
1433
|
"fallible-streaming-iterator",
|
1491
|
-
"hashbrown 0.14.
|
1434
|
+
"hashbrown 0.14.3",
|
1492
1435
|
"indexmap",
|
1436
|
+
"itoa",
|
1493
1437
|
"num-traits",
|
1494
1438
|
"polars-arrow",
|
1495
1439
|
"polars-error",
|
1496
1440
|
"polars-utils",
|
1441
|
+
"ryu",
|
1497
1442
|
"simd-json",
|
1443
|
+
"streaming-iterator",
|
1498
1444
|
]
|
1499
1445
|
|
1500
1446
|
[[package]]
|
1501
1447
|
name = "polars-lazy"
|
1502
|
-
version = "0.
|
1448
|
+
version = "0.36.2"
|
1503
1449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1504
|
-
checksum = "
|
1450
|
+
checksum = "9d7105b40905bb38e8fc4a7fd736594b7491baa12fad3ac492969ca221a1b5d5"
|
1505
1451
|
dependencies = [
|
1506
1452
|
"ahash",
|
1507
|
-
"bitflags",
|
1453
|
+
"bitflags 2.4.1",
|
1508
1454
|
"glob",
|
1509
1455
|
"once_cell",
|
1510
1456
|
"polars-arrow",
|
@@ -1518,43 +1464,83 @@ dependencies = [
|
|
1518
1464
|
"polars-utils",
|
1519
1465
|
"rayon",
|
1520
1466
|
"smartstring",
|
1467
|
+
"version_check",
|
1521
1468
|
]
|
1522
1469
|
|
1523
1470
|
[[package]]
|
1524
1471
|
name = "polars-ops"
|
1525
|
-
version = "0.
|
1472
|
+
version = "0.36.2"
|
1526
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1527
|
-
checksum = "
|
1474
|
+
checksum = "2e09afc456ab11e75e5dcb43e00a01c71f3a46a2781e450054acb6bb096ca78e"
|
1528
1475
|
dependencies = [
|
1476
|
+
"ahash",
|
1529
1477
|
"argminmax",
|
1530
|
-
"arrow2",
|
1531
1478
|
"base64",
|
1479
|
+
"bytemuck",
|
1480
|
+
"chrono",
|
1481
|
+
"chrono-tz",
|
1532
1482
|
"either",
|
1483
|
+
"hashbrown 0.14.3",
|
1533
1484
|
"hex",
|
1534
1485
|
"indexmap",
|
1535
1486
|
"jsonpath_lib",
|
1536
1487
|
"memchr",
|
1488
|
+
"num-traits",
|
1537
1489
|
"polars-arrow",
|
1490
|
+
"polars-compute",
|
1538
1491
|
"polars-core",
|
1492
|
+
"polars-error",
|
1539
1493
|
"polars-json",
|
1540
1494
|
"polars-utils",
|
1495
|
+
"rand",
|
1496
|
+
"rand_distr",
|
1497
|
+
"rayon",
|
1498
|
+
"regex",
|
1541
1499
|
"serde",
|
1542
1500
|
"serde_json",
|
1543
1501
|
"smartstring",
|
1502
|
+
"version_check",
|
1503
|
+
]
|
1504
|
+
|
1505
|
+
[[package]]
|
1506
|
+
name = "polars-parquet"
|
1507
|
+
version = "0.36.2"
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1509
|
+
checksum = "7ba24d67b1f64ab85143033dd46fa090b13c0f74acdf91b0780c16aecf005e3d"
|
1510
|
+
dependencies = [
|
1511
|
+
"ahash",
|
1512
|
+
"async-stream",
|
1513
|
+
"base64",
|
1514
|
+
"brotli",
|
1515
|
+
"ethnum",
|
1516
|
+
"flate2",
|
1517
|
+
"futures",
|
1518
|
+
"lz4",
|
1519
|
+
"num-traits",
|
1520
|
+
"parquet-format-safe",
|
1521
|
+
"polars-arrow",
|
1522
|
+
"polars-error",
|
1523
|
+
"polars-utils",
|
1524
|
+
"seq-macro",
|
1525
|
+
"simdutf8",
|
1526
|
+
"snap",
|
1527
|
+
"streaming-decompression",
|
1528
|
+
"zstd",
|
1544
1529
|
]
|
1545
1530
|
|
1546
1531
|
[[package]]
|
1547
1532
|
name = "polars-pipe"
|
1548
|
-
version = "0.
|
1533
|
+
version = "0.36.2"
|
1549
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1550
|
-
checksum = "
|
1535
|
+
checksum = "d9b7ead073cc3917027d77b59861a9f071db47125de9314f8907db1a0a3e4100"
|
1551
1536
|
dependencies = [
|
1552
1537
|
"crossbeam-channel",
|
1553
1538
|
"crossbeam-queue",
|
1554
1539
|
"enum_dispatch",
|
1555
|
-
"hashbrown 0.14.
|
1540
|
+
"hashbrown 0.14.3",
|
1556
1541
|
"num-traits",
|
1557
1542
|
"polars-arrow",
|
1543
|
+
"polars-compute",
|
1558
1544
|
"polars-core",
|
1559
1545
|
"polars-io",
|
1560
1546
|
"polars-ops",
|
@@ -1563,53 +1549,60 @@ dependencies = [
|
|
1563
1549
|
"polars-utils",
|
1564
1550
|
"rayon",
|
1565
1551
|
"smartstring",
|
1552
|
+
"version_check",
|
1566
1553
|
]
|
1567
1554
|
|
1568
1555
|
[[package]]
|
1569
1556
|
name = "polars-plan"
|
1570
|
-
version = "0.
|
1557
|
+
version = "0.36.2"
|
1571
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1572
|
-
checksum = "
|
1559
|
+
checksum = "384a175624d050c31c473ee11df9d7af5d729ae626375e522158cfb3d150acd0"
|
1573
1560
|
dependencies = [
|
1574
1561
|
"ahash",
|
1575
|
-
"
|
1562
|
+
"bytemuck",
|
1576
1563
|
"chrono",
|
1577
1564
|
"chrono-tz",
|
1578
1565
|
"once_cell",
|
1566
|
+
"percent-encoding",
|
1579
1567
|
"polars-arrow",
|
1580
1568
|
"polars-core",
|
1581
1569
|
"polars-io",
|
1570
|
+
"polars-json",
|
1582
1571
|
"polars-ops",
|
1572
|
+
"polars-parquet",
|
1583
1573
|
"polars-time",
|
1584
1574
|
"polars-utils",
|
1585
1575
|
"rayon",
|
1586
1576
|
"regex",
|
1587
1577
|
"serde",
|
1588
1578
|
"smartstring",
|
1589
|
-
"strum_macros
|
1579
|
+
"strum_macros",
|
1580
|
+
"version_check",
|
1590
1581
|
]
|
1591
1582
|
|
1592
1583
|
[[package]]
|
1593
1584
|
name = "polars-row"
|
1594
|
-
version = "0.
|
1585
|
+
version = "0.36.2"
|
1595
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
|
-
checksum = "
|
1587
|
+
checksum = "32322f7acbb83db3e9c7697dc821be73d06238da89c817dcc8bc1549a5e9c72f"
|
1597
1588
|
dependencies = [
|
1598
|
-
"
|
1589
|
+
"polars-arrow",
|
1599
1590
|
"polars-error",
|
1600
1591
|
"polars-utils",
|
1601
1592
|
]
|
1602
1593
|
|
1603
1594
|
[[package]]
|
1604
1595
|
name = "polars-sql"
|
1605
|
-
version = "0.
|
1596
|
+
version = "0.36.2"
|
1606
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
-
checksum = "
|
1598
|
+
checksum = "9f0b4c6ddffdfd0453e84bc3918572c633014d661d166654399cf93752aa95b5"
|
1608
1599
|
dependencies = [
|
1609
1600
|
"polars-arrow",
|
1610
1601
|
"polars-core",
|
1602
|
+
"polars-error",
|
1611
1603
|
"polars-lazy",
|
1612
1604
|
"polars-plan",
|
1605
|
+
"rand",
|
1613
1606
|
"serde",
|
1614
1607
|
"serde_json",
|
1615
1608
|
"sqlparser",
|
@@ -1617,11 +1610,10 @@ dependencies = [
|
|
1617
1610
|
|
1618
1611
|
[[package]]
|
1619
1612
|
name = "polars-time"
|
1620
|
-
version = "0.
|
1613
|
+
version = "0.36.2"
|
1621
1614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
-
checksum = "
|
1615
|
+
checksum = "dee2649fc96bd1b6584e0e4a4b3ca7d22ed3d117a990e63ad438ecb26f7544d0"
|
1623
1616
|
dependencies = [
|
1624
|
-
"arrow2",
|
1625
1617
|
"atoi",
|
1626
1618
|
"chrono",
|
1627
1619
|
"chrono-tz",
|
@@ -1629,6 +1621,7 @@ dependencies = [
|
|
1629
1621
|
"once_cell",
|
1630
1622
|
"polars-arrow",
|
1631
1623
|
"polars-core",
|
1624
|
+
"polars-error",
|
1632
1625
|
"polars-ops",
|
1633
1626
|
"polars-utils",
|
1634
1627
|
"regex",
|
@@ -1638,17 +1631,21 @@ dependencies = [
|
|
1638
1631
|
|
1639
1632
|
[[package]]
|
1640
1633
|
name = "polars-utils"
|
1641
|
-
version = "0.
|
1634
|
+
version = "0.36.2"
|
1642
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
-
checksum = "
|
1636
|
+
checksum = "b174ca4a77ad47d7b91a0460aaae65bbf874c8bfbaaa5308675dadef3976bbda"
|
1644
1637
|
dependencies = [
|
1645
1638
|
"ahash",
|
1646
|
-
"
|
1639
|
+
"bytemuck",
|
1640
|
+
"hashbrown 0.14.3",
|
1641
|
+
"indexmap",
|
1647
1642
|
"num-traits",
|
1648
1643
|
"once_cell",
|
1644
|
+
"polars-error",
|
1649
1645
|
"rayon",
|
1650
1646
|
"smartstring",
|
1651
1647
|
"sysinfo",
|
1648
|
+
"version_check",
|
1652
1649
|
]
|
1653
1650
|
|
1654
1651
|
[[package]]
|
@@ -1659,18 +1656,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1659
1656
|
|
1660
1657
|
[[package]]
|
1661
1658
|
name = "proc-macro2"
|
1662
|
-
version = "1.0.
|
1659
|
+
version = "1.0.74"
|
1663
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
-
checksum = "
|
1661
|
+
checksum = "2de98502f212cfcea8d0bb305bd0f49d7ebdd75b64ba0a68f937d888f4e0d6db"
|
1665
1662
|
dependencies = [
|
1666
1663
|
"unicode-ident",
|
1667
1664
|
]
|
1668
1665
|
|
1669
1666
|
[[package]]
|
1670
1667
|
name = "quote"
|
1671
|
-
version = "1.0.
|
1668
|
+
version = "1.0.35"
|
1672
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1673
|
-
checksum = "
|
1670
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
1674
1671
|
dependencies = [
|
1675
1672
|
"proc-macro2",
|
1676
1673
|
]
|
@@ -1717,9 +1714,9 @@ dependencies = [
|
|
1717
1714
|
|
1718
1715
|
[[package]]
|
1719
1716
|
name = "rayon"
|
1720
|
-
version = "1.
|
1717
|
+
version = "1.8.0"
|
1721
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1722
|
-
checksum = "
|
1719
|
+
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
|
1723
1720
|
dependencies = [
|
1724
1721
|
"either",
|
1725
1722
|
"rayon-core",
|
@@ -1727,30 +1724,28 @@ dependencies = [
|
|
1727
1724
|
|
1728
1725
|
[[package]]
|
1729
1726
|
name = "rayon-core"
|
1730
|
-
version = "1.
|
1727
|
+
version = "1.12.0"
|
1731
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "
|
1729
|
+
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
|
1733
1730
|
dependencies = [
|
1734
|
-
"crossbeam-channel",
|
1735
1731
|
"crossbeam-deque",
|
1736
1732
|
"crossbeam-utils",
|
1737
|
-
"num_cpus",
|
1738
1733
|
]
|
1739
1734
|
|
1740
1735
|
[[package]]
|
1741
1736
|
name = "rb-sys"
|
1742
|
-
version = "0.9.
|
1737
|
+
version = "0.9.86"
|
1743
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1744
|
-
checksum = "
|
1739
|
+
checksum = "7285f2a7b92f58ab198e3fd59a71d2861478f9c4642f41e83582385818941697"
|
1745
1740
|
dependencies = [
|
1746
1741
|
"rb-sys-build",
|
1747
1742
|
]
|
1748
1743
|
|
1749
1744
|
[[package]]
|
1750
1745
|
name = "rb-sys-build"
|
1751
|
-
version = "0.9.
|
1746
|
+
version = "0.9.86"
|
1752
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1753
|
-
checksum = "
|
1748
|
+
checksum = "71583945f94dabb6c0dfa63f1b71e929c1901e1e288ef3739ab8bed3b7069550"
|
1754
1749
|
dependencies = [
|
1755
1750
|
"bindgen",
|
1756
1751
|
"lazy_static",
|
@@ -1758,7 +1753,7 @@ dependencies = [
|
|
1758
1753
|
"quote",
|
1759
1754
|
"regex",
|
1760
1755
|
"shell-words",
|
1761
|
-
"syn
|
1756
|
+
"syn 2.0.46",
|
1762
1757
|
]
|
1763
1758
|
|
1764
1759
|
[[package]]
|
@@ -1769,56 +1764,61 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
1769
1764
|
|
1770
1765
|
[[package]]
|
1771
1766
|
name = "redox_syscall"
|
1772
|
-
version = "0.
|
1767
|
+
version = "0.4.1"
|
1773
1768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1774
|
-
checksum = "
|
1769
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
1775
1770
|
dependencies = [
|
1776
|
-
"bitflags",
|
1771
|
+
"bitflags 1.3.2",
|
1777
1772
|
]
|
1778
1773
|
|
1779
1774
|
[[package]]
|
1780
|
-
name = "
|
1781
|
-
version = "0.
|
1775
|
+
name = "ref-cast"
|
1776
|
+
version = "1.0.22"
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1778
|
+
checksum = "c4846d4c50d1721b1a3bef8af76924eef20d5e723647333798c1b519b3a9473f"
|
1779
|
+
dependencies = [
|
1780
|
+
"ref-cast-impl",
|
1781
|
+
]
|
1782
|
+
|
1783
|
+
[[package]]
|
1784
|
+
name = "ref-cast-impl"
|
1785
|
+
version = "1.0.22"
|
1782
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1783
|
-
checksum = "
|
1787
|
+
checksum = "5fddb4f8d99b0a2ebafc65a87a69a7b9875e4b1ae1f00db265d300ef7f28bccc"
|
1784
1788
|
dependencies = [
|
1785
|
-
"
|
1789
|
+
"proc-macro2",
|
1790
|
+
"quote",
|
1791
|
+
"syn 2.0.46",
|
1786
1792
|
]
|
1787
1793
|
|
1788
1794
|
[[package]]
|
1789
1795
|
name = "regex"
|
1790
|
-
version = "1.
|
1796
|
+
version = "1.10.2"
|
1791
1797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1792
|
-
checksum = "
|
1798
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
1793
1799
|
dependencies = [
|
1794
1800
|
"aho-corasick",
|
1795
1801
|
"memchr",
|
1796
1802
|
"regex-automata",
|
1797
|
-
"regex-syntax
|
1803
|
+
"regex-syntax",
|
1798
1804
|
]
|
1799
1805
|
|
1800
1806
|
[[package]]
|
1801
1807
|
name = "regex-automata"
|
1802
|
-
version = "0.
|
1808
|
+
version = "0.4.3"
|
1803
1809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
1810
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
1805
1811
|
dependencies = [
|
1806
1812
|
"aho-corasick",
|
1807
1813
|
"memchr",
|
1808
|
-
"regex-syntax
|
1814
|
+
"regex-syntax",
|
1809
1815
|
]
|
1810
1816
|
|
1811
1817
|
[[package]]
|
1812
1818
|
name = "regex-syntax"
|
1813
|
-
version = "0.
|
1819
|
+
version = "0.8.2"
|
1814
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1815
|
-
checksum = "
|
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"
|
1821
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
1822
1822
|
|
1823
1823
|
[[package]]
|
1824
1824
|
name = "rle-decode-fast"
|
@@ -1838,70 +1838,55 @@ version = "1.1.0"
|
|
1838
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1839
1839
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1840
1840
|
|
1841
|
-
[[package]]
|
1842
|
-
name = "rustc_version"
|
1843
|
-
version = "0.4.0"
|
1844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1845
|
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
1846
|
-
dependencies = [
|
1847
|
-
"semver",
|
1848
|
-
]
|
1849
|
-
|
1850
1841
|
[[package]]
|
1851
1842
|
name = "rustversion"
|
1852
|
-
version = "1.0.
|
1843
|
+
version = "1.0.14"
|
1853
1844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
-
checksum = "
|
1845
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
1855
1846
|
|
1856
1847
|
[[package]]
|
1857
1848
|
name = "ryu"
|
1858
|
-
version = "1.0.
|
1849
|
+
version = "1.0.16"
|
1859
1850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
-
checksum = "
|
1851
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
1861
1852
|
|
1862
1853
|
[[package]]
|
1863
1854
|
name = "scopeguard"
|
1864
|
-
version = "1.
|
1865
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1866
|
-
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1867
|
-
|
1868
|
-
[[package]]
|
1869
|
-
name = "semver"
|
1870
|
-
version = "1.0.17"
|
1855
|
+
version = "1.2.0"
|
1871
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1872
|
-
checksum = "
|
1857
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1873
1858
|
|
1874
1859
|
[[package]]
|
1875
1860
|
name = "seq-macro"
|
1876
|
-
version = "0.3.
|
1861
|
+
version = "0.3.5"
|
1877
1862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1878
|
-
checksum = "
|
1863
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1879
1864
|
|
1880
1865
|
[[package]]
|
1881
1866
|
name = "serde"
|
1882
|
-
version = "1.0.
|
1867
|
+
version = "1.0.194"
|
1883
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1884
|
-
checksum = "
|
1869
|
+
checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
|
1885
1870
|
dependencies = [
|
1886
1871
|
"serde_derive",
|
1887
1872
|
]
|
1888
1873
|
|
1889
1874
|
[[package]]
|
1890
1875
|
name = "serde_derive"
|
1891
|
-
version = "1.0.
|
1876
|
+
version = "1.0.194"
|
1892
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1893
|
-
checksum = "
|
1878
|
+
checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
|
1894
1879
|
dependencies = [
|
1895
1880
|
"proc-macro2",
|
1896
1881
|
"quote",
|
1897
|
-
"syn 2.0.
|
1882
|
+
"syn 2.0.46",
|
1898
1883
|
]
|
1899
1884
|
|
1900
1885
|
[[package]]
|
1901
1886
|
name = "serde_json"
|
1902
|
-
version = "1.0.
|
1887
|
+
version = "1.0.110"
|
1903
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
-
checksum = "
|
1889
|
+
checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257"
|
1905
1890
|
dependencies = [
|
1906
1891
|
"indexmap",
|
1907
1892
|
"itoa",
|
@@ -1917,50 +1902,22 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1917
1902
|
|
1918
1903
|
[[package]]
|
1919
1904
|
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"
|
1905
|
+
version = "1.2.0"
|
1948
1906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1949
|
-
checksum = "
|
1950
|
-
dependencies = [
|
1951
|
-
"libc",
|
1952
|
-
]
|
1907
|
+
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
1953
1908
|
|
1954
1909
|
[[package]]
|
1955
1910
|
name = "simd-json"
|
1956
|
-
version = "0.
|
1911
|
+
version = "0.13.4"
|
1957
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1958
|
-
checksum = "
|
1913
|
+
checksum = "e5a3720326b20bf5b95b72dbbd133caae7e0dcf71eae8f6e6656e71a7e5c9aaa"
|
1959
1914
|
dependencies = [
|
1960
1915
|
"ahash",
|
1916
|
+
"getrandom",
|
1961
1917
|
"halfbrown",
|
1962
1918
|
"lexical-core",
|
1963
1919
|
"once_cell",
|
1920
|
+
"ref-cast",
|
1964
1921
|
"serde",
|
1965
1922
|
"serde_json",
|
1966
1923
|
"simdutf8",
|
@@ -1975,24 +1932,24 @@ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
|
1975
1932
|
|
1976
1933
|
[[package]]
|
1977
1934
|
name = "siphasher"
|
1978
|
-
version = "0.3.
|
1935
|
+
version = "0.3.11"
|
1979
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
-
checksum = "
|
1937
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
1981
1938
|
|
1982
1939
|
[[package]]
|
1983
1940
|
name = "slab"
|
1984
|
-
version = "0.4.
|
1941
|
+
version = "0.4.9"
|
1985
1942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1986
|
-
checksum = "
|
1943
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
1987
1944
|
dependencies = [
|
1988
1945
|
"autocfg",
|
1989
1946
|
]
|
1990
1947
|
|
1991
1948
|
[[package]]
|
1992
1949
|
name = "smallvec"
|
1993
|
-
version = "1.11.
|
1950
|
+
version = "1.11.2"
|
1994
1951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1995
|
-
checksum = "
|
1952
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
1996
1953
|
|
1997
1954
|
[[package]]
|
1998
1955
|
name = "smartstring"
|
@@ -2008,25 +1965,25 @@ dependencies = [
|
|
2008
1965
|
|
2009
1966
|
[[package]]
|
2010
1967
|
name = "snap"
|
2011
|
-
version = "1.1.
|
1968
|
+
version = "1.1.1"
|
2012
1969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2013
|
-
checksum = "
|
1970
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
2014
1971
|
|
2015
1972
|
[[package]]
|
2016
1973
|
name = "socket2"
|
2017
|
-
version = "0.
|
1974
|
+
version = "0.5.5"
|
2018
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "
|
1976
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
2020
1977
|
dependencies = [
|
2021
1978
|
"libc",
|
2022
|
-
"
|
1979
|
+
"windows-sys 0.48.0",
|
2023
1980
|
]
|
2024
1981
|
|
2025
1982
|
[[package]]
|
2026
1983
|
name = "sqlparser"
|
2027
|
-
version = "0.
|
1984
|
+
version = "0.39.0"
|
2028
1985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2029
|
-
checksum = "
|
1986
|
+
checksum = "743b4dc2cbde11890ccb254a8fc9d537fa41b36da00de2a1c5e9848c9bc42bd7"
|
2030
1987
|
dependencies = [
|
2031
1988
|
"log",
|
2032
1989
|
]
|
@@ -2060,34 +2017,21 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2060
2017
|
|
2061
2018
|
[[package]]
|
2062
2019
|
name = "strum"
|
2063
|
-
version = "0.
|
2020
|
+
version = "0.25.0"
|
2064
2021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2065
|
-
checksum = "
|
2022
|
+
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
2066
2023
|
|
2067
2024
|
[[package]]
|
2068
2025
|
name = "strum_macros"
|
2069
|
-
version = "0.
|
2026
|
+
version = "0.25.3"
|
2070
2027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
-
checksum = "
|
2028
|
+
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
2072
2029
|
dependencies = [
|
2073
2030
|
"heck",
|
2074
2031
|
"proc-macro2",
|
2075
2032
|
"quote",
|
2076
2033
|
"rustversion",
|
2077
|
-
"syn
|
2078
|
-
]
|
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",
|
2034
|
+
"syn 2.0.46",
|
2091
2035
|
]
|
2092
2036
|
|
2093
2037
|
[[package]]
|
@@ -2103,9 +2047,9 @@ dependencies = [
|
|
2103
2047
|
|
2104
2048
|
[[package]]
|
2105
2049
|
name = "syn"
|
2106
|
-
version = "2.0.
|
2050
|
+
version = "2.0.46"
|
2107
2051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2108
|
-
checksum = "
|
2052
|
+
checksum = "89456b690ff72fddcecf231caedbe615c59480c93358a93dfae7fc29e3ebbf0e"
|
2109
2053
|
dependencies = [
|
2110
2054
|
"proc-macro2",
|
2111
2055
|
"quote",
|
@@ -2114,87 +2058,90 @@ dependencies = [
|
|
2114
2058
|
|
2115
2059
|
[[package]]
|
2116
2060
|
name = "sysinfo"
|
2117
|
-
version = "0.
|
2061
|
+
version = "0.30.3"
|
2118
2062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2119
|
-
checksum = "
|
2063
|
+
checksum = "ba2dbd2894d23b2d78dae768d85e323b557ac3ac71a5d917a31536d8f77ebada"
|
2120
2064
|
dependencies = [
|
2121
2065
|
"cfg-if",
|
2122
2066
|
"core-foundation-sys",
|
2123
2067
|
"libc",
|
2124
2068
|
"ntapi",
|
2125
2069
|
"once_cell",
|
2126
|
-
"
|
2070
|
+
"windows",
|
2127
2071
|
]
|
2128
2072
|
|
2129
2073
|
[[package]]
|
2130
2074
|
name = "target-features"
|
2131
|
-
version = "0.1.
|
2075
|
+
version = "0.1.5"
|
2132
2076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2133
|
-
checksum = "
|
2077
|
+
checksum = "cfb5fa503293557c5158bd215fdc225695e567a77e453f5d4452a50a193969bd"
|
2134
2078
|
|
2135
2079
|
[[package]]
|
2136
2080
|
name = "thiserror"
|
2137
|
-
version = "1.0.
|
2081
|
+
version = "1.0.56"
|
2138
2082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2139
|
-
checksum = "
|
2083
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
2140
2084
|
dependencies = [
|
2141
2085
|
"thiserror-impl",
|
2142
2086
|
]
|
2143
2087
|
|
2144
2088
|
[[package]]
|
2145
2089
|
name = "thiserror-impl"
|
2146
|
-
version = "1.0.
|
2090
|
+
version = "1.0.56"
|
2147
2091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2148
|
-
checksum = "
|
2092
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
2149
2093
|
dependencies = [
|
2150
2094
|
"proc-macro2",
|
2151
2095
|
"quote",
|
2152
|
-
"syn 2.0.
|
2096
|
+
"syn 2.0.46",
|
2153
2097
|
]
|
2154
2098
|
|
2155
2099
|
[[package]]
|
2156
|
-
name = "
|
2157
|
-
version = "
|
2100
|
+
name = "tokio"
|
2101
|
+
version = "1.35.1"
|
2158
2102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2159
|
-
checksum = "
|
2103
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
2160
2104
|
dependencies = [
|
2105
|
+
"backtrace",
|
2106
|
+
"bytes",
|
2161
2107
|
"libc",
|
2162
|
-
"
|
2163
|
-
"
|
2108
|
+
"mio",
|
2109
|
+
"num_cpus",
|
2110
|
+
"pin-project-lite",
|
2111
|
+
"socket2",
|
2112
|
+
"windows-sys 0.48.0",
|
2164
2113
|
]
|
2165
2114
|
|
2166
2115
|
[[package]]
|
2167
|
-
name = "tokio"
|
2168
|
-
version = "
|
2116
|
+
name = "tokio-util"
|
2117
|
+
version = "0.7.10"
|
2169
2118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2170
|
-
checksum = "
|
2119
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
2171
2120
|
dependencies = [
|
2172
|
-
"
|
2173
|
-
"
|
2174
|
-
"
|
2175
|
-
"mio",
|
2121
|
+
"bytes",
|
2122
|
+
"futures-core",
|
2123
|
+
"futures-sink",
|
2176
2124
|
"pin-project-lite",
|
2177
|
-
"
|
2178
|
-
"windows-sys",
|
2125
|
+
"tokio",
|
2179
2126
|
]
|
2180
2127
|
|
2181
2128
|
[[package]]
|
2182
2129
|
name = "unicode-ident"
|
2183
|
-
version = "1.0.
|
2130
|
+
version = "1.0.12"
|
2184
2131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2185
|
-
checksum = "
|
2132
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2186
2133
|
|
2187
2134
|
[[package]]
|
2188
2135
|
name = "unicode-width"
|
2189
|
-
version = "0.1.
|
2136
|
+
version = "0.1.11"
|
2190
2137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2191
|
-
checksum = "
|
2138
|
+
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
2192
2139
|
|
2193
2140
|
[[package]]
|
2194
2141
|
name = "value-trait"
|
2195
|
-
version = "0.
|
2142
|
+
version = "0.8.0"
|
2196
2143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2197
|
-
checksum = "
|
2144
|
+
checksum = "ea87257cfcbedcb9444eda79c59fdfea71217e6305afee8ee33f500375c2ac97"
|
2198
2145
|
dependencies = [
|
2199
2146
|
"float-cmp",
|
2200
2147
|
"halfbrown",
|
@@ -2208,12 +2155,6 @@ version = "0.9.4"
|
|
2208
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2209
2156
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2210
2157
|
|
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
2158
|
[[package]]
|
2218
2159
|
name = "wasi"
|
2219
2160
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -2222,9 +2163,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2222
2163
|
|
2223
2164
|
[[package]]
|
2224
2165
|
name = "wasm-bindgen"
|
2225
|
-
version = "0.2.
|
2166
|
+
version = "0.2.89"
|
2226
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2227
|
-
checksum = "
|
2168
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
2228
2169
|
dependencies = [
|
2229
2170
|
"cfg-if",
|
2230
2171
|
"wasm-bindgen-macro",
|
@@ -2232,36 +2173,24 @@ dependencies = [
|
|
2232
2173
|
|
2233
2174
|
[[package]]
|
2234
2175
|
name = "wasm-bindgen-backend"
|
2235
|
-
version = "0.2.
|
2176
|
+
version = "0.2.89"
|
2236
2177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2237
|
-
checksum = "
|
2178
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
2238
2179
|
dependencies = [
|
2239
2180
|
"bumpalo",
|
2240
2181
|
"log",
|
2241
2182
|
"once_cell",
|
2242
2183
|
"proc-macro2",
|
2243
2184
|
"quote",
|
2244
|
-
"syn 2.0.
|
2185
|
+
"syn 2.0.46",
|
2245
2186
|
"wasm-bindgen-shared",
|
2246
2187
|
]
|
2247
2188
|
|
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
2189
|
[[package]]
|
2261
2190
|
name = "wasm-bindgen-macro"
|
2262
|
-
version = "0.2.
|
2191
|
+
version = "0.2.89"
|
2263
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2264
|
-
checksum = "
|
2193
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
2265
2194
|
dependencies = [
|
2266
2195
|
"quote",
|
2267
2196
|
"wasm-bindgen-macro-support",
|
@@ -2269,47 +2198,22 @@ dependencies = [
|
|
2269
2198
|
|
2270
2199
|
[[package]]
|
2271
2200
|
name = "wasm-bindgen-macro-support"
|
2272
|
-
version = "0.2.
|
2201
|
+
version = "0.2.89"
|
2273
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2274
|
-
checksum = "
|
2203
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
2275
2204
|
dependencies = [
|
2276
2205
|
"proc-macro2",
|
2277
2206
|
"quote",
|
2278
|
-
"syn 2.0.
|
2207
|
+
"syn 2.0.46",
|
2279
2208
|
"wasm-bindgen-backend",
|
2280
2209
|
"wasm-bindgen-shared",
|
2281
2210
|
]
|
2282
2211
|
|
2283
2212
|
[[package]]
|
2284
2213
|
name = "wasm-bindgen-shared"
|
2285
|
-
version = "0.2.
|
2214
|
+
version = "0.2.89"
|
2286
2215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
-
checksum = "
|
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"
|
2307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2308
|
-
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
2309
|
-
dependencies = [
|
2310
|
-
"js-sys",
|
2311
|
-
"wasm-bindgen",
|
2312
|
-
]
|
2216
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
2313
2217
|
|
2314
2218
|
[[package]]
|
2315
2219
|
name = "winapi"
|
@@ -2335,11 +2239,21 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2335
2239
|
|
2336
2240
|
[[package]]
|
2337
2241
|
name = "windows"
|
2338
|
-
version = "0.
|
2242
|
+
version = "0.52.0"
|
2339
2243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2340
|
-
checksum = "
|
2244
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
2341
2245
|
dependencies = [
|
2342
|
-
"windows-
|
2246
|
+
"windows-core",
|
2247
|
+
"windows-targets 0.52.0",
|
2248
|
+
]
|
2249
|
+
|
2250
|
+
[[package]]
|
2251
|
+
name = "windows-core"
|
2252
|
+
version = "0.52.0"
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2254
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2255
|
+
dependencies = [
|
2256
|
+
"windows-targets 0.52.0",
|
2343
2257
|
]
|
2344
2258
|
|
2345
2259
|
[[package]]
|
@@ -2348,98 +2262,182 @@ version = "0.48.0"
|
|
2348
2262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2349
2263
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2350
2264
|
dependencies = [
|
2351
|
-
"windows-targets",
|
2265
|
+
"windows-targets 0.48.5",
|
2266
|
+
]
|
2267
|
+
|
2268
|
+
[[package]]
|
2269
|
+
name = "windows-sys"
|
2270
|
+
version = "0.52.0"
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2272
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2273
|
+
dependencies = [
|
2274
|
+
"windows-targets 0.52.0",
|
2275
|
+
]
|
2276
|
+
|
2277
|
+
[[package]]
|
2278
|
+
name = "windows-targets"
|
2279
|
+
version = "0.48.5"
|
2280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2281
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2282
|
+
dependencies = [
|
2283
|
+
"windows_aarch64_gnullvm 0.48.5",
|
2284
|
+
"windows_aarch64_msvc 0.48.5",
|
2285
|
+
"windows_i686_gnu 0.48.5",
|
2286
|
+
"windows_i686_msvc 0.48.5",
|
2287
|
+
"windows_x86_64_gnu 0.48.5",
|
2288
|
+
"windows_x86_64_gnullvm 0.48.5",
|
2289
|
+
"windows_x86_64_msvc 0.48.5",
|
2352
2290
|
]
|
2353
2291
|
|
2354
2292
|
[[package]]
|
2355
2293
|
name = "windows-targets"
|
2356
|
-
version = "0.
|
2294
|
+
version = "0.52.0"
|
2357
2295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2358
|
-
checksum = "
|
2296
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
2359
2297
|
dependencies = [
|
2360
|
-
"windows_aarch64_gnullvm",
|
2361
|
-
"windows_aarch64_msvc",
|
2362
|
-
"windows_i686_gnu",
|
2363
|
-
"windows_i686_msvc",
|
2364
|
-
"windows_x86_64_gnu",
|
2365
|
-
"windows_x86_64_gnullvm",
|
2366
|
-
"windows_x86_64_msvc",
|
2298
|
+
"windows_aarch64_gnullvm 0.52.0",
|
2299
|
+
"windows_aarch64_msvc 0.52.0",
|
2300
|
+
"windows_i686_gnu 0.52.0",
|
2301
|
+
"windows_i686_msvc 0.52.0",
|
2302
|
+
"windows_x86_64_gnu 0.52.0",
|
2303
|
+
"windows_x86_64_gnullvm 0.52.0",
|
2304
|
+
"windows_x86_64_msvc 0.52.0",
|
2367
2305
|
]
|
2368
2306
|
|
2369
2307
|
[[package]]
|
2370
2308
|
name = "windows_aarch64_gnullvm"
|
2371
|
-
version = "0.48.
|
2309
|
+
version = "0.48.5"
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2311
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2312
|
+
|
2313
|
+
[[package]]
|
2314
|
+
name = "windows_aarch64_gnullvm"
|
2315
|
+
version = "0.52.0"
|
2372
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2373
|
-
checksum = "
|
2317
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
2374
2318
|
|
2375
2319
|
[[package]]
|
2376
2320
|
name = "windows_aarch64_msvc"
|
2377
|
-
version = "0.48.
|
2321
|
+
version = "0.48.5"
|
2322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2323
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2324
|
+
|
2325
|
+
[[package]]
|
2326
|
+
name = "windows_aarch64_msvc"
|
2327
|
+
version = "0.52.0"
|
2378
2328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2379
|
-
checksum = "
|
2329
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
2380
2330
|
|
2381
2331
|
[[package]]
|
2382
2332
|
name = "windows_i686_gnu"
|
2383
|
-
version = "0.48.
|
2333
|
+
version = "0.48.5"
|
2384
2334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2385
|
-
checksum = "
|
2335
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2336
|
+
|
2337
|
+
[[package]]
|
2338
|
+
name = "windows_i686_gnu"
|
2339
|
+
version = "0.52.0"
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2341
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
2386
2342
|
|
2387
2343
|
[[package]]
|
2388
2344
|
name = "windows_i686_msvc"
|
2389
|
-
version = "0.48.
|
2345
|
+
version = "0.48.5"
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2348
|
+
|
2349
|
+
[[package]]
|
2350
|
+
name = "windows_i686_msvc"
|
2351
|
+
version = "0.52.0"
|
2390
2352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2391
|
-
checksum = "
|
2353
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
2392
2354
|
|
2393
2355
|
[[package]]
|
2394
2356
|
name = "windows_x86_64_gnu"
|
2395
|
-
version = "0.48.
|
2357
|
+
version = "0.48.5"
|
2396
2358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2397
|
-
checksum = "
|
2359
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2360
|
+
|
2361
|
+
[[package]]
|
2362
|
+
name = "windows_x86_64_gnu"
|
2363
|
+
version = "0.52.0"
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
2398
2366
|
|
2399
2367
|
[[package]]
|
2400
2368
|
name = "windows_x86_64_gnullvm"
|
2401
|
-
version = "0.48.
|
2369
|
+
version = "0.48.5"
|
2402
2370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
-
checksum = "
|
2371
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2372
|
+
|
2373
|
+
[[package]]
|
2374
|
+
name = "windows_x86_64_gnullvm"
|
2375
|
+
version = "0.52.0"
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2377
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
2404
2378
|
|
2405
2379
|
[[package]]
|
2406
2380
|
name = "windows_x86_64_msvc"
|
2407
|
-
version = "0.48.
|
2381
|
+
version = "0.48.5"
|
2408
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2409
|
-
checksum = "
|
2383
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2384
|
+
|
2385
|
+
[[package]]
|
2386
|
+
name = "windows_x86_64_msvc"
|
2387
|
+
version = "0.52.0"
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2389
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
2410
2390
|
|
2411
2391
|
[[package]]
|
2412
2392
|
name = "xxhash-rust"
|
2413
|
-
version = "0.8.
|
2393
|
+
version = "0.8.8"
|
2414
2394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2415
|
-
checksum = "
|
2395
|
+
checksum = "53be06678ed9e83edb1745eb72efc0bbcd7b5c3c35711a860906aed827a13d61"
|
2396
|
+
|
2397
|
+
[[package]]
|
2398
|
+
name = "zerocopy"
|
2399
|
+
version = "0.7.32"
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2401
|
+
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
2402
|
+
dependencies = [
|
2403
|
+
"zerocopy-derive",
|
2404
|
+
]
|
2405
|
+
|
2406
|
+
[[package]]
|
2407
|
+
name = "zerocopy-derive"
|
2408
|
+
version = "0.7.32"
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2410
|
+
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
2411
|
+
dependencies = [
|
2412
|
+
"proc-macro2",
|
2413
|
+
"quote",
|
2414
|
+
"syn 2.0.46",
|
2415
|
+
]
|
2416
2416
|
|
2417
2417
|
[[package]]
|
2418
2418
|
name = "zstd"
|
2419
|
-
version = "0.
|
2419
|
+
version = "0.13.0"
|
2420
2420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2421
|
-
checksum = "
|
2421
|
+
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
|
2422
2422
|
dependencies = [
|
2423
2423
|
"zstd-safe",
|
2424
2424
|
]
|
2425
2425
|
|
2426
2426
|
[[package]]
|
2427
2427
|
name = "zstd-safe"
|
2428
|
-
version = "
|
2428
|
+
version = "7.0.0"
|
2429
2429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2430
|
-
checksum = "
|
2430
|
+
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
|
2431
2431
|
dependencies = [
|
2432
|
-
"libc",
|
2433
2432
|
"zstd-sys",
|
2434
2433
|
]
|
2435
2434
|
|
2436
2435
|
[[package]]
|
2437
2436
|
name = "zstd-sys"
|
2438
|
-
version = "2.0.
|
2437
|
+
version = "2.0.9+zstd.1.5.5"
|
2439
2438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2440
|
-
checksum = "
|
2439
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
2441
2440
|
dependencies = [
|
2442
2441
|
"cc",
|
2443
|
-
"libc",
|
2444
2442
|
"pkg-config",
|
2445
2443
|
]
|