polars-df 0.11.0-x86_64-linux → 0.13.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 +22 -0
- data/Cargo.lock +428 -450
- data/LICENSE-THIRD-PARTY.txt +2502 -2242
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/array_expr.rb +4 -4
- data/lib/polars/batched_csv_reader.rb +2 -2
- data/lib/polars/cat_expr.rb +0 -36
- data/lib/polars/cat_name_space.rb +0 -37
- data/lib/polars/data_frame.rb +93 -101
- data/lib/polars/data_types.rb +1 -1
- data/lib/polars/date_time_expr.rb +525 -573
- data/lib/polars/date_time_name_space.rb +263 -464
- data/lib/polars/dynamic_group_by.rb +3 -3
- data/lib/polars/exceptions.rb +3 -0
- data/lib/polars/expr.rb +367 -330
- data/lib/polars/expr_dispatch.rb +1 -1
- data/lib/polars/functions/aggregation/horizontal.rb +8 -8
- data/lib/polars/functions/as_datatype.rb +63 -40
- data/lib/polars/functions/lazy.rb +63 -14
- data/lib/polars/functions/lit.rb +1 -1
- data/lib/polars/functions/range/date_range.rb +18 -77
- data/lib/polars/functions/range/datetime_range.rb +4 -4
- data/lib/polars/functions/range/int_range.rb +2 -2
- data/lib/polars/functions/range/time_range.rb +4 -4
- data/lib/polars/functions/repeat.rb +1 -1
- data/lib/polars/functions/whenthen.rb +1 -1
- data/lib/polars/io/csv.rb +8 -8
- data/lib/polars/io/ipc.rb +35 -7
- data/lib/polars/io/json.rb +13 -2
- data/lib/polars/io/ndjson.rb +15 -4
- data/lib/polars/io/parquet.rb +15 -8
- data/lib/polars/lazy_frame.rb +123 -105
- data/lib/polars/lazy_group_by.rb +1 -1
- data/lib/polars/list_expr.rb +11 -11
- data/lib/polars/list_name_space.rb +5 -1
- data/lib/polars/rolling_group_by.rb +5 -7
- data/lib/polars/series.rb +108 -191
- data/lib/polars/string_expr.rb +51 -76
- data/lib/polars/string_name_space.rb +5 -4
- data/lib/polars/testing.rb +2 -2
- data/lib/polars/utils/constants.rb +9 -0
- data/lib/polars/utils/convert.rb +97 -0
- data/lib/polars/utils/parse.rb +89 -0
- data/lib/polars/utils/various.rb +76 -0
- data/lib/polars/utils/wrap.rb +19 -0
- data/lib/polars/utils.rb +4 -330
- data/lib/polars/version.rb +1 -1
- data/lib/polars/whenthen.rb +6 -6
- data/lib/polars.rb +11 -0
- metadata +7 -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.22.0"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
10
10
|
dependencies = [
|
11
11
|
"gimli",
|
12
12
|
]
|
@@ -25,9 +25,9 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
25
25
|
|
26
26
|
[[package]]
|
27
27
|
name = "ahash"
|
28
|
-
version = "0.8.
|
28
|
+
version = "0.8.11"
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "
|
30
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
31
31
|
dependencies = [
|
32
32
|
"cfg-if",
|
33
33
|
"getrandom",
|
@@ -38,9 +38,9 @@ dependencies = [
|
|
38
38
|
|
39
39
|
[[package]]
|
40
40
|
name = "aho-corasick"
|
41
|
-
version = "1.1.
|
41
|
+
version = "1.1.3"
|
42
42
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
43
|
-
checksum = "
|
43
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
44
44
|
dependencies = [
|
45
45
|
"memchr",
|
46
46
|
]
|
@@ -62,9 +62,9 @@ dependencies = [
|
|
62
62
|
|
63
63
|
[[package]]
|
64
64
|
name = "allocator-api2"
|
65
|
-
version = "0.2.
|
65
|
+
version = "0.2.18"
|
66
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
-
checksum = "
|
67
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
68
68
|
|
69
69
|
[[package]]
|
70
70
|
name = "android-tzdata"
|
@@ -115,18 +115,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
115
115
|
dependencies = [
|
116
116
|
"proc-macro2",
|
117
117
|
"quote",
|
118
|
-
"syn 2.0.
|
118
|
+
"syn 2.0.74",
|
119
119
|
]
|
120
120
|
|
121
121
|
[[package]]
|
122
122
|
name = "async-trait"
|
123
|
-
version = "0.1.
|
123
|
+
version = "0.1.81"
|
124
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
-
checksum = "
|
125
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
126
126
|
dependencies = [
|
127
127
|
"proc-macro2",
|
128
128
|
"quote",
|
129
|
-
"syn 2.0.
|
129
|
+
"syn 2.0.74",
|
130
130
|
]
|
131
131
|
|
132
132
|
[[package]]
|
@@ -146,9 +146,9 @@ checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
|
146
146
|
|
147
147
|
[[package]]
|
148
148
|
name = "autocfg"
|
149
|
-
version = "1.
|
149
|
+
version = "1.3.0"
|
150
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
-
checksum = "
|
151
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
152
152
|
|
153
153
|
[[package]]
|
154
154
|
name = "avro-schema"
|
@@ -166,9 +166,9 @@ dependencies = [
|
|
166
166
|
|
167
167
|
[[package]]
|
168
168
|
name = "backtrace"
|
169
|
-
version = "0.3.
|
169
|
+
version = "0.3.73"
|
170
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
-
checksum = "
|
171
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
172
172
|
dependencies = [
|
173
173
|
"addr2line",
|
174
174
|
"cc",
|
@@ -187,44 +187,38 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
187
187
|
|
188
188
|
[[package]]
|
189
189
|
name = "bindgen"
|
190
|
-
version = "0.69.
|
190
|
+
version = "0.69.4"
|
191
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
-
checksum = "
|
192
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
193
193
|
dependencies = [
|
194
|
-
"bitflags
|
194
|
+
"bitflags",
|
195
195
|
"cexpr",
|
196
196
|
"clang-sys",
|
197
|
+
"itertools",
|
197
198
|
"lazy_static",
|
198
199
|
"lazycell",
|
199
|
-
"peeking_take_while",
|
200
200
|
"proc-macro2",
|
201
201
|
"quote",
|
202
202
|
"regex",
|
203
203
|
"rustc-hash",
|
204
204
|
"shlex",
|
205
|
-
"syn 2.0.
|
205
|
+
"syn 2.0.74",
|
206
206
|
]
|
207
207
|
|
208
208
|
[[package]]
|
209
209
|
name = "bitflags"
|
210
|
-
version = "
|
211
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
213
|
-
|
214
|
-
[[package]]
|
215
|
-
name = "bitflags"
|
216
|
-
version = "2.4.1"
|
210
|
+
version = "2.6.0"
|
217
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
-
checksum = "
|
212
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
219
213
|
dependencies = [
|
220
214
|
"serde",
|
221
215
|
]
|
222
216
|
|
223
217
|
[[package]]
|
224
218
|
name = "brotli"
|
225
|
-
version = "
|
219
|
+
version = "6.0.0"
|
226
220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
227
|
-
checksum = "
|
221
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
228
222
|
dependencies = [
|
229
223
|
"alloc-no-stdlib",
|
230
224
|
"alloc-stdlib",
|
@@ -233,9 +227,9 @@ dependencies = [
|
|
233
227
|
|
234
228
|
[[package]]
|
235
229
|
name = "brotli-decompressor"
|
236
|
-
version = "4.0.
|
230
|
+
version = "4.0.1"
|
237
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
-
checksum = "
|
232
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
239
233
|
dependencies = [
|
240
234
|
"alloc-no-stdlib",
|
241
235
|
"alloc-stdlib",
|
@@ -243,44 +237,51 @@ dependencies = [
|
|
243
237
|
|
244
238
|
[[package]]
|
245
239
|
name = "bumpalo"
|
246
|
-
version = "3.
|
240
|
+
version = "3.16.0"
|
247
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
-
checksum = "
|
242
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
249
243
|
|
250
244
|
[[package]]
|
251
245
|
name = "bytemuck"
|
252
|
-
version = "1.
|
246
|
+
version = "1.16.3"
|
253
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
254
|
-
checksum = "
|
248
|
+
checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83"
|
255
249
|
dependencies = [
|
256
250
|
"bytemuck_derive",
|
257
251
|
]
|
258
252
|
|
259
253
|
[[package]]
|
260
254
|
name = "bytemuck_derive"
|
261
|
-
version = "1.
|
255
|
+
version = "1.7.0"
|
262
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
263
|
-
checksum = "
|
257
|
+
checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
|
264
258
|
dependencies = [
|
265
259
|
"proc-macro2",
|
266
260
|
"quote",
|
267
|
-
"syn 2.0.
|
261
|
+
"syn 2.0.74",
|
268
262
|
]
|
269
263
|
|
270
264
|
[[package]]
|
271
|
-
name = "
|
265
|
+
name = "byteorder"
|
272
266
|
version = "1.5.0"
|
273
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "
|
268
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
269
|
+
|
270
|
+
[[package]]
|
271
|
+
name = "bytes"
|
272
|
+
version = "1.7.1"
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
275
275
|
|
276
276
|
[[package]]
|
277
277
|
name = "cc"
|
278
|
-
version = "1.
|
278
|
+
version = "1.1.11"
|
279
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
280
|
-
checksum = "
|
280
|
+
checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189"
|
281
281
|
dependencies = [
|
282
282
|
"jobserver",
|
283
283
|
"libc",
|
284
|
+
"shlex",
|
284
285
|
]
|
285
286
|
|
286
287
|
[[package]]
|
@@ -300,9 +301,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
300
301
|
|
301
302
|
[[package]]
|
302
303
|
name = "chrono"
|
303
|
-
version = "0.4.
|
304
|
+
version = "0.4.38"
|
304
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
-
checksum = "
|
306
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
306
307
|
dependencies = [
|
307
308
|
"android-tzdata",
|
308
309
|
"iana-time-zone",
|
@@ -310,14 +311,14 @@ dependencies = [
|
|
310
311
|
"num-traits",
|
311
312
|
"serde",
|
312
313
|
"wasm-bindgen",
|
313
|
-
"windows-targets
|
314
|
+
"windows-targets",
|
314
315
|
]
|
315
316
|
|
316
317
|
[[package]]
|
317
318
|
name = "chrono-tz"
|
318
|
-
version = "0.8.
|
319
|
+
version = "0.8.6"
|
319
320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
320
|
-
checksum = "
|
321
|
+
checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e"
|
321
322
|
dependencies = [
|
322
323
|
"chrono",
|
323
324
|
"chrono-tz-build",
|
@@ -337,9 +338,9 @@ dependencies = [
|
|
337
338
|
|
338
339
|
[[package]]
|
339
340
|
name = "clang-sys"
|
340
|
-
version = "1.
|
341
|
+
version = "1.8.1"
|
341
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
-
checksum = "
|
343
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
343
344
|
dependencies = [
|
344
345
|
"glob",
|
345
346
|
"libc",
|
@@ -348,21 +349,21 @@ dependencies = [
|
|
348
349
|
|
349
350
|
[[package]]
|
350
351
|
name = "comfy-table"
|
351
|
-
version = "7.1.
|
352
|
+
version = "7.1.1"
|
352
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
353
|
-
checksum = "
|
354
|
+
checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
|
354
355
|
dependencies = [
|
355
356
|
"crossterm",
|
356
357
|
"strum",
|
357
|
-
"strum_macros
|
358
|
+
"strum_macros",
|
358
359
|
"unicode-width",
|
359
360
|
]
|
360
361
|
|
361
362
|
[[package]]
|
362
363
|
name = "core-foundation-sys"
|
363
|
-
version = "0.8.
|
364
|
+
version = "0.8.7"
|
364
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
-
checksum = "
|
366
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
366
367
|
|
367
368
|
[[package]]
|
368
369
|
name = "crc"
|
@@ -381,63 +382,55 @@ checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
|
|
381
382
|
|
382
383
|
[[package]]
|
383
384
|
name = "crc32fast"
|
384
|
-
version = "1.
|
385
|
+
version = "1.4.2"
|
385
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
386
|
-
checksum = "
|
387
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
387
388
|
dependencies = [
|
388
389
|
"cfg-if",
|
389
390
|
]
|
390
391
|
|
391
392
|
[[package]]
|
392
393
|
name = "crossbeam-channel"
|
393
|
-
version = "0.5.
|
394
|
+
version = "0.5.13"
|
394
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
-
checksum = "
|
396
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
396
397
|
dependencies = [
|
397
|
-
"cfg-if",
|
398
398
|
"crossbeam-utils",
|
399
399
|
]
|
400
400
|
|
401
401
|
[[package]]
|
402
402
|
name = "crossbeam-deque"
|
403
|
-
version = "0.8.
|
403
|
+
version = "0.8.5"
|
404
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
-
checksum = "
|
405
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
406
406
|
dependencies = [
|
407
|
-
"cfg-if",
|
408
407
|
"crossbeam-epoch",
|
409
408
|
"crossbeam-utils",
|
410
409
|
]
|
411
410
|
|
412
411
|
[[package]]
|
413
412
|
name = "crossbeam-epoch"
|
414
|
-
version = "0.9.
|
413
|
+
version = "0.9.18"
|
415
414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
-
checksum = "
|
415
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
417
416
|
dependencies = [
|
418
|
-
"autocfg",
|
419
|
-
"cfg-if",
|
420
417
|
"crossbeam-utils",
|
421
418
|
]
|
422
419
|
|
423
420
|
[[package]]
|
424
421
|
name = "crossbeam-queue"
|
425
|
-
version = "0.3.
|
422
|
+
version = "0.3.11"
|
426
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
427
|
-
checksum = "
|
424
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
428
425
|
dependencies = [
|
429
|
-
"cfg-if",
|
430
426
|
"crossbeam-utils",
|
431
427
|
]
|
432
428
|
|
433
429
|
[[package]]
|
434
430
|
name = "crossbeam-utils"
|
435
|
-
version = "0.8.
|
431
|
+
version = "0.8.20"
|
436
432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
-
checksum = "
|
438
|
-
dependencies = [
|
439
|
-
"cfg-if",
|
440
|
-
]
|
433
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
441
434
|
|
442
435
|
[[package]]
|
443
436
|
name = "crossterm"
|
@@ -445,7 +438,7 @@ version = "0.27.0"
|
|
445
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
439
|
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
447
440
|
dependencies = [
|
448
|
-
"bitflags
|
441
|
+
"bitflags",
|
449
442
|
"crossterm_winapi",
|
450
443
|
"libc",
|
451
444
|
"parking_lot",
|
@@ -463,29 +456,29 @@ dependencies = [
|
|
463
456
|
|
464
457
|
[[package]]
|
465
458
|
name = "dyn-clone"
|
466
|
-
version = "1.0.
|
459
|
+
version = "1.0.17"
|
467
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
|
-
checksum = "
|
461
|
+
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
469
462
|
|
470
463
|
[[package]]
|
471
464
|
name = "either"
|
472
|
-
version = "1.
|
465
|
+
version = "1.13.0"
|
473
466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
-
checksum = "
|
467
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
475
468
|
dependencies = [
|
476
469
|
"serde",
|
477
470
|
]
|
478
471
|
|
479
472
|
[[package]]
|
480
473
|
name = "enum_dispatch"
|
481
|
-
version = "0.3.
|
474
|
+
version = "0.3.13"
|
482
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
-
checksum = "
|
476
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
484
477
|
dependencies = [
|
485
478
|
"once_cell",
|
486
479
|
"proc-macro2",
|
487
480
|
"quote",
|
488
|
-
"syn 2.0.
|
481
|
+
"syn 2.0.74",
|
489
482
|
]
|
490
483
|
|
491
484
|
[[package]]
|
@@ -514,9 +507,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
514
507
|
|
515
508
|
[[package]]
|
516
509
|
name = "flate2"
|
517
|
-
version = "1.0.
|
510
|
+
version = "1.0.31"
|
518
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
519
|
-
checksum = "
|
512
|
+
checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920"
|
520
513
|
dependencies = [
|
521
514
|
"crc32fast",
|
522
515
|
"miniz_oxide",
|
@@ -531,12 +524,6 @@ dependencies = [
|
|
531
524
|
"num-traits",
|
532
525
|
]
|
533
526
|
|
534
|
-
[[package]]
|
535
|
-
name = "foreign_vec"
|
536
|
-
version = "0.1.0"
|
537
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
538
|
-
checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
539
|
-
|
540
527
|
[[package]]
|
541
528
|
name = "futures"
|
542
529
|
version = "0.3.30"
|
@@ -593,7 +580,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
593
580
|
dependencies = [
|
594
581
|
"proc-macro2",
|
595
582
|
"quote",
|
596
|
-
"syn 2.0.
|
583
|
+
"syn 2.0.74",
|
597
584
|
]
|
598
585
|
|
599
586
|
[[package]]
|
@@ -628,9 +615,9 @@ dependencies = [
|
|
628
615
|
|
629
616
|
[[package]]
|
630
617
|
name = "getrandom"
|
631
|
-
version = "0.2.
|
618
|
+
version = "0.2.15"
|
632
619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
-
checksum = "
|
620
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
634
621
|
dependencies = [
|
635
622
|
"cfg-if",
|
636
623
|
"js-sys",
|
@@ -641,9 +628,9 @@ dependencies = [
|
|
641
628
|
|
642
629
|
[[package]]
|
643
630
|
name = "gimli"
|
644
|
-
version = "0.
|
631
|
+
version = "0.29.0"
|
645
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
-
checksum = "
|
633
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
647
634
|
|
648
635
|
[[package]]
|
649
636
|
name = "glob"
|
@@ -653,28 +640,19 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
653
640
|
|
654
641
|
[[package]]
|
655
642
|
name = "halfbrown"
|
656
|
-
version = "0.2.
|
643
|
+
version = "0.2.5"
|
657
644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
-
checksum = "
|
645
|
+
checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
|
659
646
|
dependencies = [
|
660
|
-
"hashbrown
|
647
|
+
"hashbrown",
|
661
648
|
"serde",
|
662
649
|
]
|
663
650
|
|
664
651
|
[[package]]
|
665
652
|
name = "hashbrown"
|
666
|
-
version = "0.
|
667
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
668
|
-
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
669
|
-
dependencies = [
|
670
|
-
"ahash",
|
671
|
-
]
|
672
|
-
|
673
|
-
[[package]]
|
674
|
-
name = "hashbrown"
|
675
|
-
version = "0.14.3"
|
653
|
+
version = "0.14.5"
|
676
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
677
|
-
checksum = "
|
655
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
678
656
|
dependencies = [
|
679
657
|
"ahash",
|
680
658
|
"allocator-api2",
|
@@ -684,15 +662,15 @@ dependencies = [
|
|
684
662
|
|
685
663
|
[[package]]
|
686
664
|
name = "heck"
|
687
|
-
version = "0.
|
665
|
+
version = "0.5.0"
|
688
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
689
|
-
checksum = "
|
667
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
690
668
|
|
691
669
|
[[package]]
|
692
670
|
name = "hermit-abi"
|
693
|
-
version = "0.3.
|
671
|
+
version = "0.3.9"
|
694
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
695
|
-
checksum = "
|
673
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
696
674
|
|
697
675
|
[[package]]
|
698
676
|
name = "hex"
|
@@ -706,21 +684,21 @@ version = "0.5.9"
|
|
706
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
707
685
|
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
708
686
|
dependencies = [
|
709
|
-
"windows-sys
|
687
|
+
"windows-sys",
|
710
688
|
]
|
711
689
|
|
712
690
|
[[package]]
|
713
691
|
name = "iana-time-zone"
|
714
|
-
version = "0.1.
|
692
|
+
version = "0.1.60"
|
715
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
-
checksum = "
|
694
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
717
695
|
dependencies = [
|
718
696
|
"android_system_properties",
|
719
697
|
"core-foundation-sys",
|
720
698
|
"iana-time-zone-haiku",
|
721
699
|
"js-sys",
|
722
700
|
"wasm-bindgen",
|
723
|
-
"windows-core",
|
701
|
+
"windows-core 0.52.0",
|
724
702
|
]
|
725
703
|
|
726
704
|
[[package]]
|
@@ -734,20 +712,29 @@ dependencies = [
|
|
734
712
|
|
735
713
|
[[package]]
|
736
714
|
name = "indexmap"
|
737
|
-
version = "2.
|
715
|
+
version = "2.4.0"
|
738
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
739
|
-
checksum = "
|
717
|
+
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
|
740
718
|
dependencies = [
|
741
719
|
"equivalent",
|
742
|
-
"hashbrown
|
720
|
+
"hashbrown",
|
743
721
|
"serde",
|
744
722
|
]
|
745
723
|
|
724
|
+
[[package]]
|
725
|
+
name = "itertools"
|
726
|
+
version = "0.12.1"
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
728
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
729
|
+
dependencies = [
|
730
|
+
"either",
|
731
|
+
]
|
732
|
+
|
746
733
|
[[package]]
|
747
734
|
name = "itoa"
|
748
|
-
version = "1.0.
|
735
|
+
version = "1.0.11"
|
749
736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
750
|
-
checksum = "
|
737
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
751
738
|
|
752
739
|
[[package]]
|
753
740
|
name = "itoap"
|
@@ -777,18 +764,18 @@ dependencies = [
|
|
777
764
|
|
778
765
|
[[package]]
|
779
766
|
name = "jobserver"
|
780
|
-
version = "0.1.
|
767
|
+
version = "0.1.32"
|
781
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
782
|
-
checksum = "
|
769
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
783
770
|
dependencies = [
|
784
771
|
"libc",
|
785
772
|
]
|
786
773
|
|
787
774
|
[[package]]
|
788
775
|
name = "js-sys"
|
789
|
-
version = "0.3.
|
776
|
+
version = "0.3.70"
|
790
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
-
checksum = "
|
778
|
+
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
792
779
|
dependencies = [
|
793
780
|
"wasm-bindgen",
|
794
781
|
]
|
@@ -806,9 +793,9 @@ dependencies = [
|
|
806
793
|
|
807
794
|
[[package]]
|
808
795
|
name = "lazy_static"
|
809
|
-
version = "1.
|
796
|
+
version = "1.5.0"
|
810
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
798
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
812
799
|
|
813
800
|
[[package]]
|
814
801
|
name = "lazycell"
|
@@ -882,9 +869,9 @@ dependencies = [
|
|
882
869
|
|
883
870
|
[[package]]
|
884
871
|
name = "libc"
|
885
|
-
version = "0.2.
|
872
|
+
version = "0.2.155"
|
886
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
887
|
-
checksum = "
|
874
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
888
875
|
|
889
876
|
[[package]]
|
890
877
|
name = "libflate"
|
@@ -908,12 +895,12 @@ dependencies = [
|
|
908
895
|
|
909
896
|
[[package]]
|
910
897
|
name = "libloading"
|
911
|
-
version = "0.8.
|
898
|
+
version = "0.8.5"
|
912
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
-
checksum = "
|
900
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
914
901
|
dependencies = [
|
915
902
|
"cfg-if",
|
916
|
-
"windows-
|
903
|
+
"windows-targets",
|
917
904
|
]
|
918
905
|
|
919
906
|
[[package]]
|
@@ -924,9 +911,9 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
924
911
|
|
925
912
|
[[package]]
|
926
913
|
name = "libmimalloc-sys"
|
927
|
-
version = "0.1.
|
914
|
+
version = "0.1.39"
|
928
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
929
|
-
checksum = "
|
916
|
+
checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
|
930
917
|
dependencies = [
|
931
918
|
"cc",
|
932
919
|
"libc",
|
@@ -934,9 +921,9 @@ dependencies = [
|
|
934
921
|
|
935
922
|
[[package]]
|
936
923
|
name = "lock_api"
|
937
|
-
version = "0.4.
|
924
|
+
version = "0.4.12"
|
938
925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
-
checksum = "
|
926
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
940
927
|
dependencies = [
|
941
928
|
"autocfg",
|
942
929
|
"scopeguard",
|
@@ -944,15 +931,15 @@ dependencies = [
|
|
944
931
|
|
945
932
|
[[package]]
|
946
933
|
name = "log"
|
947
|
-
version = "0.4.
|
934
|
+
version = "0.4.22"
|
948
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
-
checksum = "
|
936
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
950
937
|
|
951
938
|
[[package]]
|
952
939
|
name = "lz4"
|
953
|
-
version = "1.
|
940
|
+
version = "1.26.0"
|
954
941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
955
|
-
checksum = "
|
942
|
+
checksum = "958b4caa893816eea05507c20cfe47574a43d9a697138a7872990bba8a0ece68"
|
956
943
|
dependencies = [
|
957
944
|
"libc",
|
958
945
|
"lz4-sys",
|
@@ -960,9 +947,9 @@ dependencies = [
|
|
960
947
|
|
961
948
|
[[package]]
|
962
949
|
name = "lz4-sys"
|
963
|
-
version = "1.
|
950
|
+
version = "1.10.0"
|
964
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
-
checksum = "
|
952
|
+
checksum = "109de74d5d2353660401699a4174a4ff23fcc649caf553df71933c7fb45ad868"
|
966
953
|
dependencies = [
|
967
954
|
"cc",
|
968
955
|
"libc",
|
@@ -970,9 +957,9 @@ dependencies = [
|
|
970
957
|
|
971
958
|
[[package]]
|
972
959
|
name = "magnus"
|
973
|
-
version = "0.
|
960
|
+
version = "0.7.1"
|
974
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
-
checksum = "
|
962
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
976
963
|
dependencies = [
|
977
964
|
"magnus-macros",
|
978
965
|
"rb-sys",
|
@@ -988,14 +975,14 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
988
975
|
dependencies = [
|
989
976
|
"proc-macro2",
|
990
977
|
"quote",
|
991
|
-
"syn 2.0.
|
978
|
+
"syn 2.0.74",
|
992
979
|
]
|
993
980
|
|
994
981
|
[[package]]
|
995
982
|
name = "memchr"
|
996
|
-
version = "2.7.
|
983
|
+
version = "2.7.4"
|
997
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
-
checksum = "
|
985
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
999
986
|
|
1000
987
|
[[package]]
|
1001
988
|
name = "memmap2"
|
@@ -1008,9 +995,9 @@ dependencies = [
|
|
1008
995
|
|
1009
996
|
[[package]]
|
1010
997
|
name = "mimalloc"
|
1011
|
-
version = "0.1.
|
998
|
+
version = "0.1.43"
|
1012
999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
-
checksum = "
|
1000
|
+
checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
|
1014
1001
|
dependencies = [
|
1015
1002
|
"libmimalloc-sys",
|
1016
1003
|
]
|
@@ -1023,29 +1010,30 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1023
1010
|
|
1024
1011
|
[[package]]
|
1025
1012
|
name = "miniz_oxide"
|
1026
|
-
version = "0.7.
|
1013
|
+
version = "0.7.4"
|
1027
1014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028
|
-
checksum = "
|
1015
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
1029
1016
|
dependencies = [
|
1030
1017
|
"adler",
|
1031
1018
|
]
|
1032
1019
|
|
1033
1020
|
[[package]]
|
1034
1021
|
name = "mio"
|
1035
|
-
version = "0.
|
1022
|
+
version = "1.0.2"
|
1036
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
-
checksum = "
|
1024
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
1038
1025
|
dependencies = [
|
1026
|
+
"hermit-abi",
|
1039
1027
|
"libc",
|
1040
1028
|
"wasi",
|
1041
|
-
"windows-sys
|
1029
|
+
"windows-sys",
|
1042
1030
|
]
|
1043
1031
|
|
1044
1032
|
[[package]]
|
1045
1033
|
name = "multiversion"
|
1046
|
-
version = "0.7.
|
1034
|
+
version = "0.7.4"
|
1047
1035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1048
|
-
checksum = "
|
1036
|
+
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
1049
1037
|
dependencies = [
|
1050
1038
|
"multiversion-macros",
|
1051
1039
|
"target-features",
|
@@ -1053,9 +1041,9 @@ dependencies = [
|
|
1053
1041
|
|
1054
1042
|
[[package]]
|
1055
1043
|
name = "multiversion-macros"
|
1056
|
-
version = "0.7.
|
1044
|
+
version = "0.7.4"
|
1057
1045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
-
checksum = "
|
1046
|
+
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
1059
1047
|
dependencies = [
|
1060
1048
|
"proc-macro2",
|
1061
1049
|
"quote",
|
@@ -1101,21 +1089,11 @@ dependencies = [
|
|
1101
1089
|
"libm",
|
1102
1090
|
]
|
1103
1091
|
|
1104
|
-
[[package]]
|
1105
|
-
name = "num_cpus"
|
1106
|
-
version = "1.16.0"
|
1107
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
-
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1109
|
-
dependencies = [
|
1110
|
-
"hermit-abi",
|
1111
|
-
"libc",
|
1112
|
-
]
|
1113
|
-
|
1114
1092
|
[[package]]
|
1115
1093
|
name = "object"
|
1116
|
-
version = "0.
|
1094
|
+
version = "0.36.3"
|
1117
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1118
|
-
checksum = "
|
1096
|
+
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
|
1119
1097
|
dependencies = [
|
1120
1098
|
"memchr",
|
1121
1099
|
]
|
@@ -1128,9 +1106,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1128
1106
|
|
1129
1107
|
[[package]]
|
1130
1108
|
name = "parking_lot"
|
1131
|
-
version = "0.12.
|
1109
|
+
version = "0.12.3"
|
1132
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1133
|
-
checksum = "
|
1111
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1134
1112
|
dependencies = [
|
1135
1113
|
"lock_api",
|
1136
1114
|
"parking_lot_core",
|
@@ -1138,15 +1116,15 @@ dependencies = [
|
|
1138
1116
|
|
1139
1117
|
[[package]]
|
1140
1118
|
name = "parking_lot_core"
|
1141
|
-
version = "0.9.
|
1119
|
+
version = "0.9.10"
|
1142
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
-
checksum = "
|
1121
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
1144
1122
|
dependencies = [
|
1145
1123
|
"cfg-if",
|
1146
1124
|
"libc",
|
1147
1125
|
"redox_syscall",
|
1148
1126
|
"smallvec",
|
1149
|
-
"windows-targets
|
1127
|
+
"windows-targets",
|
1150
1128
|
]
|
1151
1129
|
|
1152
1130
|
[[package]]
|
@@ -1161,19 +1139,13 @@ dependencies = [
|
|
1161
1139
|
|
1162
1140
|
[[package]]
|
1163
1141
|
name = "parse-zoneinfo"
|
1164
|
-
version = "0.3.
|
1142
|
+
version = "0.3.1"
|
1165
1143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1166
|
-
checksum = "
|
1144
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
1167
1145
|
dependencies = [
|
1168
1146
|
"regex",
|
1169
1147
|
]
|
1170
1148
|
|
1171
|
-
[[package]]
|
1172
|
-
name = "peeking_take_while"
|
1173
|
-
version = "0.1.2"
|
1174
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1175
|
-
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1176
|
-
|
1177
1149
|
[[package]]
|
1178
1150
|
name = "percent-encoding"
|
1179
1151
|
version = "2.3.1"
|
@@ -1220,9 +1192,9 @@ dependencies = [
|
|
1220
1192
|
|
1221
1193
|
[[package]]
|
1222
1194
|
name = "pin-project-lite"
|
1223
|
-
version = "0.2.
|
1195
|
+
version = "0.2.14"
|
1224
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1225
|
-
checksum = "
|
1197
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
1226
1198
|
|
1227
1199
|
[[package]]
|
1228
1200
|
name = "pin-utils"
|
@@ -1232,9 +1204,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1232
1204
|
|
1233
1205
|
[[package]]
|
1234
1206
|
name = "pkg-config"
|
1235
|
-
version = "0.3.
|
1207
|
+
version = "0.3.30"
|
1236
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1237
|
-
checksum = "
|
1209
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
1238
1210
|
|
1239
1211
|
[[package]]
|
1240
1212
|
name = "planus"
|
@@ -1247,7 +1219,7 @@ dependencies = [
|
|
1247
1219
|
|
1248
1220
|
[[package]]
|
1249
1221
|
name = "polars"
|
1250
|
-
version = "0.
|
1222
|
+
version = "0.13.0"
|
1251
1223
|
dependencies = [
|
1252
1224
|
"ahash",
|
1253
1225
|
"chrono",
|
@@ -1255,7 +1227,7 @@ dependencies = [
|
|
1255
1227
|
"jemallocator",
|
1256
1228
|
"magnus",
|
1257
1229
|
"mimalloc",
|
1258
|
-
"polars 0.
|
1230
|
+
"polars 0.42.0",
|
1259
1231
|
"polars-core",
|
1260
1232
|
"polars-parquet",
|
1261
1233
|
"polars-utils",
|
@@ -1265,9 +1237,9 @@ dependencies = [
|
|
1265
1237
|
|
1266
1238
|
[[package]]
|
1267
1239
|
name = "polars"
|
1268
|
-
version = "0.
|
1240
|
+
version = "0.42.0"
|
1269
1241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1270
|
-
checksum = "
|
1242
|
+
checksum = "ad002eb9c541b4f7e0c7c759cefe884a0350e15d241231ac4be31c5568c15070"
|
1271
1243
|
dependencies = [
|
1272
1244
|
"getrandom",
|
1273
1245
|
"polars-arrow",
|
@@ -1286,9 +1258,9 @@ dependencies = [
|
|
1286
1258
|
|
1287
1259
|
[[package]]
|
1288
1260
|
name = "polars-arrow"
|
1289
|
-
version = "0.
|
1261
|
+
version = "0.42.0"
|
1290
1262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1291
|
-
checksum = "
|
1263
|
+
checksum = "32d19c6db79cb6a3c55af3b5a3976276edaab64cbf7f69b392617c2af30d7742"
|
1292
1264
|
dependencies = [
|
1293
1265
|
"ahash",
|
1294
1266
|
"atoi",
|
@@ -1301,15 +1273,15 @@ dependencies = [
|
|
1301
1273
|
"either",
|
1302
1274
|
"ethnum",
|
1303
1275
|
"fast-float",
|
1304
|
-
"foreign_vec",
|
1305
1276
|
"futures",
|
1306
1277
|
"getrandom",
|
1307
|
-
"hashbrown
|
1278
|
+
"hashbrown",
|
1308
1279
|
"itoa",
|
1309
1280
|
"itoap",
|
1310
1281
|
"lz4",
|
1311
1282
|
"multiversion",
|
1312
1283
|
"num-traits",
|
1284
|
+
"parking_lot",
|
1313
1285
|
"polars-arrow-format",
|
1314
1286
|
"polars-error",
|
1315
1287
|
"polars-utils",
|
@@ -1334,9 +1306,9 @@ dependencies = [
|
|
1334
1306
|
|
1335
1307
|
[[package]]
|
1336
1308
|
name = "polars-compute"
|
1337
|
-
version = "0.
|
1309
|
+
version = "0.42.0"
|
1338
1310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1339
|
-
checksum = "
|
1311
|
+
checksum = "30194a5ff325f61d6fcb62dc215c9210f308fc4fc85a493ef777dbcd938cba24"
|
1340
1312
|
dependencies = [
|
1341
1313
|
"bytemuck",
|
1342
1314
|
"either",
|
@@ -1350,18 +1322,18 @@ dependencies = [
|
|
1350
1322
|
|
1351
1323
|
[[package]]
|
1352
1324
|
name = "polars-core"
|
1353
|
-
version = "0.
|
1325
|
+
version = "0.42.0"
|
1354
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1355
|
-
checksum = "
|
1327
|
+
checksum = "2ba2a3b736d55b92a12889672d0197dc25ad321ab23eba4168a3b6316a6b6349"
|
1356
1328
|
dependencies = [
|
1357
1329
|
"ahash",
|
1358
|
-
"bitflags
|
1330
|
+
"bitflags",
|
1359
1331
|
"bytemuck",
|
1360
1332
|
"chrono",
|
1361
1333
|
"chrono-tz",
|
1362
1334
|
"comfy-table",
|
1363
1335
|
"either",
|
1364
|
-
"hashbrown
|
1336
|
+
"hashbrown",
|
1365
1337
|
"indexmap",
|
1366
1338
|
"num-traits",
|
1367
1339
|
"once_cell",
|
@@ -1384,9 +1356,9 @@ dependencies = [
|
|
1384
1356
|
|
1385
1357
|
[[package]]
|
1386
1358
|
name = "polars-error"
|
1387
|
-
version = "0.
|
1359
|
+
version = "0.42.0"
|
1388
1360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1389
|
-
checksum = "
|
1361
|
+
checksum = "07101d1803ca2046cdb3a8adb1523ddcc879229860f0ac56a853034269dec1e1"
|
1390
1362
|
dependencies = [
|
1391
1363
|
"avro-schema",
|
1392
1364
|
"polars-arrow-format",
|
@@ -1397,12 +1369,12 @@ dependencies = [
|
|
1397
1369
|
|
1398
1370
|
[[package]]
|
1399
1371
|
name = "polars-expr"
|
1400
|
-
version = "0.
|
1372
|
+
version = "0.42.0"
|
1401
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1402
|
-
checksum = "
|
1374
|
+
checksum = "dd5c69634ddbb0f44186cd1c42d166963fc756f9cc994438e941bc2703ddbbab"
|
1403
1375
|
dependencies = [
|
1404
1376
|
"ahash",
|
1405
|
-
"bitflags
|
1377
|
+
"bitflags",
|
1406
1378
|
"once_cell",
|
1407
1379
|
"polars-arrow",
|
1408
1380
|
"polars-core",
|
@@ -1417,9 +1389,9 @@ dependencies = [
|
|
1417
1389
|
|
1418
1390
|
[[package]]
|
1419
1391
|
name = "polars-io"
|
1420
|
-
version = "0.
|
1392
|
+
version = "0.42.0"
|
1421
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1422
|
-
checksum = "
|
1394
|
+
checksum = "a48ddf416ae185336c3d7880d2e05b7e55686e3e0da1014e5e7325eff9c7d722"
|
1423
1395
|
dependencies = [
|
1424
1396
|
"ahash",
|
1425
1397
|
"async-trait",
|
@@ -1429,6 +1401,7 @@ dependencies = [
|
|
1429
1401
|
"chrono-tz",
|
1430
1402
|
"fast-float",
|
1431
1403
|
"futures",
|
1404
|
+
"glob",
|
1432
1405
|
"home",
|
1433
1406
|
"itoa",
|
1434
1407
|
"memchr",
|
@@ -1457,14 +1430,15 @@ dependencies = [
|
|
1457
1430
|
|
1458
1431
|
[[package]]
|
1459
1432
|
name = "polars-json"
|
1460
|
-
version = "0.
|
1433
|
+
version = "0.42.0"
|
1461
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1462
|
-
checksum = "
|
1435
|
+
checksum = "f0a43388585a922524e8bbaa1ed1391c9c4b0768a644585609afa9a2fd5fc702"
|
1463
1436
|
dependencies = [
|
1464
1437
|
"ahash",
|
1465
1438
|
"chrono",
|
1439
|
+
"chrono-tz",
|
1466
1440
|
"fallible-streaming-iterator",
|
1467
|
-
"hashbrown
|
1441
|
+
"hashbrown",
|
1468
1442
|
"indexmap",
|
1469
1443
|
"itoa",
|
1470
1444
|
"num-traits",
|
@@ -1478,19 +1452,20 @@ dependencies = [
|
|
1478
1452
|
|
1479
1453
|
[[package]]
|
1480
1454
|
name = "polars-lazy"
|
1481
|
-
version = "0.
|
1455
|
+
version = "0.42.0"
|
1482
1456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1483
|
-
checksum = "
|
1457
|
+
checksum = "a514a85df9e7d501c71c96f094861d0608b05a3f533447b1c0ea9cf714162fcb"
|
1484
1458
|
dependencies = [
|
1485
1459
|
"ahash",
|
1486
|
-
"bitflags
|
1487
|
-
"
|
1460
|
+
"bitflags",
|
1461
|
+
"memchr",
|
1488
1462
|
"once_cell",
|
1489
1463
|
"polars-arrow",
|
1490
1464
|
"polars-core",
|
1491
1465
|
"polars-expr",
|
1492
1466
|
"polars-io",
|
1493
1467
|
"polars-json",
|
1468
|
+
"polars-mem-engine",
|
1494
1469
|
"polars-ops",
|
1495
1470
|
"polars-pipe",
|
1496
1471
|
"polars-plan",
|
@@ -1501,11 +1476,31 @@ dependencies = [
|
|
1501
1476
|
"version_check",
|
1502
1477
|
]
|
1503
1478
|
|
1479
|
+
[[package]]
|
1480
|
+
name = "polars-mem-engine"
|
1481
|
+
version = "0.42.0"
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1483
|
+
checksum = "2d057df81b17b4f0ea0e4424ee34f755e6b9ccfba432ecb2fe57dc4da6da2713"
|
1484
|
+
dependencies = [
|
1485
|
+
"memmap2",
|
1486
|
+
"polars-arrow",
|
1487
|
+
"polars-core",
|
1488
|
+
"polars-error",
|
1489
|
+
"polars-expr",
|
1490
|
+
"polars-io",
|
1491
|
+
"polars-json",
|
1492
|
+
"polars-ops",
|
1493
|
+
"polars-plan",
|
1494
|
+
"polars-time",
|
1495
|
+
"polars-utils",
|
1496
|
+
"rayon",
|
1497
|
+
]
|
1498
|
+
|
1504
1499
|
[[package]]
|
1505
1500
|
name = "polars-ops"
|
1506
|
-
version = "0.
|
1501
|
+
version = "0.42.0"
|
1507
1502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
-
checksum = "
|
1503
|
+
checksum = "01ba44233249b7937491b5d2bdbf14e4ad534c0a65d06548c3bc418fc3e60791"
|
1509
1504
|
dependencies = [
|
1510
1505
|
"ahash",
|
1511
1506
|
"aho-corasick",
|
@@ -1515,7 +1510,7 @@ dependencies = [
|
|
1515
1510
|
"chrono",
|
1516
1511
|
"chrono-tz",
|
1517
1512
|
"either",
|
1518
|
-
"hashbrown
|
1513
|
+
"hashbrown",
|
1519
1514
|
"hex",
|
1520
1515
|
"indexmap",
|
1521
1516
|
"jsonpath_lib_polars_vendor",
|
@@ -1540,14 +1535,15 @@ dependencies = [
|
|
1540
1535
|
|
1541
1536
|
[[package]]
|
1542
1537
|
name = "polars-parquet"
|
1543
|
-
version = "0.
|
1538
|
+
version = "0.42.0"
|
1544
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1545
|
-
checksum = "
|
1540
|
+
checksum = "bb2993265079ffa07dd16277189444424f8d787b00b01c6f6e001f58bab543ce"
|
1546
1541
|
dependencies = [
|
1547
1542
|
"ahash",
|
1548
1543
|
"async-stream",
|
1549
1544
|
"base64",
|
1550
1545
|
"brotli",
|
1546
|
+
"bytemuck",
|
1551
1547
|
"ethnum",
|
1552
1548
|
"flate2",
|
1553
1549
|
"futures",
|
@@ -1555,9 +1551,10 @@ dependencies = [
|
|
1555
1551
|
"num-traits",
|
1556
1552
|
"parquet-format-safe",
|
1557
1553
|
"polars-arrow",
|
1554
|
+
"polars-compute",
|
1558
1555
|
"polars-error",
|
1559
1556
|
"polars-utils",
|
1560
|
-
"
|
1557
|
+
"serde",
|
1561
1558
|
"simdutf8",
|
1562
1559
|
"snap",
|
1563
1560
|
"streaming-decompression",
|
@@ -1566,14 +1563,14 @@ dependencies = [
|
|
1566
1563
|
|
1567
1564
|
[[package]]
|
1568
1565
|
name = "polars-pipe"
|
1569
|
-
version = "0.
|
1566
|
+
version = "0.42.0"
|
1570
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1571
|
-
checksum = "
|
1568
|
+
checksum = "0ccba94c4fa9fded0f41730f7649574c72d6d938a840731c7e4eea4e7ed5cecf"
|
1572
1569
|
dependencies = [
|
1573
1570
|
"crossbeam-channel",
|
1574
1571
|
"crossbeam-queue",
|
1575
1572
|
"enum_dispatch",
|
1576
|
-
"hashbrown
|
1573
|
+
"hashbrown",
|
1577
1574
|
"num-traits",
|
1578
1575
|
"polars-arrow",
|
1579
1576
|
"polars-compute",
|
@@ -1592,16 +1589,18 @@ dependencies = [
|
|
1592
1589
|
|
1593
1590
|
[[package]]
|
1594
1591
|
name = "polars-plan"
|
1595
|
-
version = "0.
|
1592
|
+
version = "0.42.0"
|
1596
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1597
|
-
checksum = "
|
1594
|
+
checksum = "5d6b29cc53d6c086c09b11050b01c25c28f6a91339036ba1fb1250fcf0d89e74"
|
1598
1595
|
dependencies = [
|
1599
1596
|
"ahash",
|
1597
|
+
"bitflags",
|
1600
1598
|
"bytemuck",
|
1601
1599
|
"chrono",
|
1602
1600
|
"chrono-tz",
|
1603
1601
|
"either",
|
1604
|
-
"hashbrown
|
1602
|
+
"hashbrown",
|
1603
|
+
"memmap2",
|
1605
1604
|
"once_cell",
|
1606
1605
|
"percent-encoding",
|
1607
1606
|
"polars-arrow",
|
@@ -1617,15 +1616,15 @@ dependencies = [
|
|
1617
1616
|
"regex",
|
1618
1617
|
"serde",
|
1619
1618
|
"smartstring",
|
1620
|
-
"strum_macros
|
1619
|
+
"strum_macros",
|
1621
1620
|
"version_check",
|
1622
1621
|
]
|
1623
1622
|
|
1624
1623
|
[[package]]
|
1625
1624
|
name = "polars-row"
|
1626
|
-
version = "0.
|
1625
|
+
version = "0.42.0"
|
1627
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1628
|
-
checksum = "
|
1627
|
+
checksum = "6e11f43f48466c4b1caa6dc61c381dc10c2d67b87fcb74bc996e21c4f7b0a311"
|
1629
1628
|
dependencies = [
|
1630
1629
|
"bytemuck",
|
1631
1630
|
"polars-arrow",
|
@@ -1635,9 +1634,9 @@ dependencies = [
|
|
1635
1634
|
|
1636
1635
|
[[package]]
|
1637
1636
|
name = "polars-sql"
|
1638
|
-
version = "0.
|
1637
|
+
version = "0.42.0"
|
1639
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640
|
-
checksum = "
|
1639
|
+
checksum = "6e9338806e7254618eb819cc632c34b75b71d462222a913f9c1035ed81911ddc"
|
1641
1640
|
dependencies = [
|
1642
1641
|
"hex",
|
1643
1642
|
"once_cell",
|
@@ -1645,7 +1644,9 @@ dependencies = [
|
|
1645
1644
|
"polars-core",
|
1646
1645
|
"polars-error",
|
1647
1646
|
"polars-lazy",
|
1647
|
+
"polars-ops",
|
1648
1648
|
"polars-plan",
|
1649
|
+
"polars-time",
|
1649
1650
|
"rand",
|
1650
1651
|
"serde",
|
1651
1652
|
"serde_json",
|
@@ -1654,9 +1655,9 @@ dependencies = [
|
|
1654
1655
|
|
1655
1656
|
[[package]]
|
1656
1657
|
name = "polars-time"
|
1657
|
-
version = "0.
|
1658
|
+
version = "0.42.0"
|
1658
1659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1659
|
-
checksum = "
|
1660
|
+
checksum = "30a601ab9a62e733b8b560b37642321cb1933faa194864739f6a59d6dfc4d686"
|
1660
1661
|
dependencies = [
|
1661
1662
|
"atoi",
|
1662
1663
|
"bytemuck",
|
@@ -1676,14 +1677,16 @@ dependencies = [
|
|
1676
1677
|
|
1677
1678
|
[[package]]
|
1678
1679
|
name = "polars-utils"
|
1679
|
-
version = "0.
|
1680
|
+
version = "0.42.0"
|
1680
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1681
|
-
checksum = "
|
1682
|
+
checksum = "19dd73207bd15efb0ae5c9c3ece3227927ed6a16ad63578acec342378e6bdcb4"
|
1682
1683
|
dependencies = [
|
1683
1684
|
"ahash",
|
1684
1685
|
"bytemuck",
|
1685
|
-
"
|
1686
|
+
"bytes",
|
1687
|
+
"hashbrown",
|
1686
1688
|
"indexmap",
|
1689
|
+
"memmap2",
|
1687
1690
|
"num-traits",
|
1688
1691
|
"once_cell",
|
1689
1692
|
"polars-error",
|
@@ -1697,15 +1700,18 @@ dependencies = [
|
|
1697
1700
|
|
1698
1701
|
[[package]]
|
1699
1702
|
name = "ppv-lite86"
|
1700
|
-
version = "0.2.
|
1703
|
+
version = "0.2.20"
|
1701
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1702
|
-
checksum = "
|
1705
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
1706
|
+
dependencies = [
|
1707
|
+
"zerocopy",
|
1708
|
+
]
|
1703
1709
|
|
1704
1710
|
[[package]]
|
1705
1711
|
name = "proc-macro2"
|
1706
|
-
version = "1.0.
|
1712
|
+
version = "1.0.86"
|
1707
1713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1708
|
-
checksum = "
|
1714
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
1709
1715
|
dependencies = [
|
1710
1716
|
"unicode-ident",
|
1711
1717
|
]
|
@@ -1721,9 +1727,9 @@ dependencies = [
|
|
1721
1727
|
|
1722
1728
|
[[package]]
|
1723
1729
|
name = "quote"
|
1724
|
-
version = "1.0.
|
1730
|
+
version = "1.0.36"
|
1725
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1726
|
-
checksum = "
|
1732
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
1727
1733
|
dependencies = [
|
1728
1734
|
"proc-macro2",
|
1729
1735
|
]
|
@@ -1770,18 +1776,18 @@ dependencies = [
|
|
1770
1776
|
|
1771
1777
|
[[package]]
|
1772
1778
|
name = "raw-cpuid"
|
1773
|
-
version = "11.0
|
1779
|
+
version = "11.1.0"
|
1774
1780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1775
|
-
checksum = "
|
1781
|
+
checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d"
|
1776
1782
|
dependencies = [
|
1777
|
-
"bitflags
|
1783
|
+
"bitflags",
|
1778
1784
|
]
|
1779
1785
|
|
1780
1786
|
[[package]]
|
1781
1787
|
name = "rayon"
|
1782
|
-
version = "1.
|
1788
|
+
version = "1.10.0"
|
1783
1789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1784
|
-
checksum = "
|
1790
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
1785
1791
|
dependencies = [
|
1786
1792
|
"either",
|
1787
1793
|
"rayon-core",
|
@@ -1799,18 +1805,18 @@ dependencies = [
|
|
1799
1805
|
|
1800
1806
|
[[package]]
|
1801
1807
|
name = "rb-sys"
|
1802
|
-
version = "0.9.
|
1808
|
+
version = "0.9.101"
|
1803
1809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
1810
|
+
checksum = "1ba2704ccfa7875c91792c57a9aa7c3caac524d3036c122e36eeddad6f6e7c6f"
|
1805
1811
|
dependencies = [
|
1806
1812
|
"rb-sys-build",
|
1807
1813
|
]
|
1808
1814
|
|
1809
1815
|
[[package]]
|
1810
1816
|
name = "rb-sys-build"
|
1811
|
-
version = "0.9.
|
1817
|
+
version = "0.9.101"
|
1812
1818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1813
|
-
checksum = "
|
1819
|
+
checksum = "c73585ec80c217b7a81257ca9bb89b191b5e452ec4b9106dc4c2e4e96a822242"
|
1814
1820
|
dependencies = [
|
1815
1821
|
"bindgen",
|
1816
1822
|
"lazy_static",
|
@@ -1818,7 +1824,7 @@ dependencies = [
|
|
1818
1824
|
"quote",
|
1819
1825
|
"regex",
|
1820
1826
|
"shell-words",
|
1821
|
-
"syn 2.0.
|
1827
|
+
"syn 2.0.74",
|
1822
1828
|
]
|
1823
1829
|
|
1824
1830
|
[[package]]
|
@@ -1844,43 +1850,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
1850
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1845
1851
|
dependencies = [
|
1846
1852
|
"quote",
|
1847
|
-
"syn 2.0.
|
1853
|
+
"syn 2.0.74",
|
1848
1854
|
]
|
1849
1855
|
|
1850
1856
|
[[package]]
|
1851
1857
|
name = "redox_syscall"
|
1852
|
-
version = "0.
|
1858
|
+
version = "0.5.3"
|
1853
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
-
checksum = "
|
1860
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
1855
1861
|
dependencies = [
|
1856
|
-
"bitflags
|
1862
|
+
"bitflags",
|
1857
1863
|
]
|
1858
1864
|
|
1859
1865
|
[[package]]
|
1860
1866
|
name = "ref-cast"
|
1861
|
-
version = "1.0.
|
1867
|
+
version = "1.0.23"
|
1862
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1863
|
-
checksum = "
|
1869
|
+
checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
|
1864
1870
|
dependencies = [
|
1865
1871
|
"ref-cast-impl",
|
1866
1872
|
]
|
1867
1873
|
|
1868
1874
|
[[package]]
|
1869
1875
|
name = "ref-cast-impl"
|
1870
|
-
version = "1.0.
|
1876
|
+
version = "1.0.23"
|
1871
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1872
|
-
checksum = "
|
1878
|
+
checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
1873
1879
|
dependencies = [
|
1874
1880
|
"proc-macro2",
|
1875
1881
|
"quote",
|
1876
|
-
"syn 2.0.
|
1882
|
+
"syn 2.0.74",
|
1877
1883
|
]
|
1878
1884
|
|
1879
1885
|
[[package]]
|
1880
1886
|
name = "regex"
|
1881
|
-
version = "1.10.
|
1887
|
+
version = "1.10.6"
|
1882
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1883
|
-
checksum = "
|
1889
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
1884
1890
|
dependencies = [
|
1885
1891
|
"aho-corasick",
|
1886
1892
|
"memchr",
|
@@ -1890,9 +1896,9 @@ dependencies = [
|
|
1890
1896
|
|
1891
1897
|
[[package]]
|
1892
1898
|
name = "regex-automata"
|
1893
|
-
version = "0.4.
|
1899
|
+
version = "0.4.7"
|
1894
1900
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1895
|
-
checksum = "
|
1901
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
1896
1902
|
dependencies = [
|
1897
1903
|
"aho-corasick",
|
1898
1904
|
"memchr",
|
@@ -1901,9 +1907,9 @@ dependencies = [
|
|
1901
1907
|
|
1902
1908
|
[[package]]
|
1903
1909
|
name = "regex-syntax"
|
1904
|
-
version = "0.8.
|
1910
|
+
version = "0.8.4"
|
1905
1911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1906
|
-
checksum = "
|
1912
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
1907
1913
|
|
1908
1914
|
[[package]]
|
1909
1915
|
name = "rle-decode-fast"
|
@@ -1913,9 +1919,9 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
1913
1919
|
|
1914
1920
|
[[package]]
|
1915
1921
|
name = "rustc-demangle"
|
1916
|
-
version = "0.1.
|
1922
|
+
version = "0.1.24"
|
1917
1923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1918
|
-
checksum = "
|
1924
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1919
1925
|
|
1920
1926
|
[[package]]
|
1921
1927
|
name = "rustc-hash"
|
@@ -1925,15 +1931,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1925
1931
|
|
1926
1932
|
[[package]]
|
1927
1933
|
name = "rustversion"
|
1928
|
-
version = "1.0.
|
1934
|
+
version = "1.0.17"
|
1929
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1930
|
-
checksum = "
|
1936
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
1931
1937
|
|
1932
1938
|
[[package]]
|
1933
1939
|
name = "ryu"
|
1934
|
-
version = "1.0.
|
1940
|
+
version = "1.0.18"
|
1935
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1936
|
-
checksum = "
|
1942
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1937
1943
|
|
1938
1944
|
[[package]]
|
1939
1945
|
name = "scopeguard"
|
@@ -1949,32 +1955,33 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1949
1955
|
|
1950
1956
|
[[package]]
|
1951
1957
|
name = "serde"
|
1952
|
-
version = "1.0.
|
1958
|
+
version = "1.0.207"
|
1953
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1954
|
-
checksum = "
|
1960
|
+
checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2"
|
1955
1961
|
dependencies = [
|
1956
1962
|
"serde_derive",
|
1957
1963
|
]
|
1958
1964
|
|
1959
1965
|
[[package]]
|
1960
1966
|
name = "serde_derive"
|
1961
|
-
version = "1.0.
|
1967
|
+
version = "1.0.207"
|
1962
1968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1963
|
-
checksum = "
|
1969
|
+
checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e"
|
1964
1970
|
dependencies = [
|
1965
1971
|
"proc-macro2",
|
1966
1972
|
"quote",
|
1967
|
-
"syn 2.0.
|
1973
|
+
"syn 2.0.74",
|
1968
1974
|
]
|
1969
1975
|
|
1970
1976
|
[[package]]
|
1971
1977
|
name = "serde_json"
|
1972
|
-
version = "1.0.
|
1978
|
+
version = "1.0.124"
|
1973
1979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1974
|
-
checksum = "
|
1980
|
+
checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d"
|
1975
1981
|
dependencies = [
|
1976
1982
|
"indexmap",
|
1977
1983
|
"itoa",
|
1984
|
+
"memchr",
|
1978
1985
|
"ryu",
|
1979
1986
|
"serde",
|
1980
1987
|
]
|
@@ -1987,15 +1994,15 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1987
1994
|
|
1988
1995
|
[[package]]
|
1989
1996
|
name = "shlex"
|
1990
|
-
version = "1.
|
1997
|
+
version = "1.3.0"
|
1991
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1992
|
-
checksum = "
|
1999
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1993
2000
|
|
1994
2001
|
[[package]]
|
1995
2002
|
name = "simd-json"
|
1996
|
-
version = "0.13.
|
2003
|
+
version = "0.13.10"
|
1997
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1998
|
-
checksum = "
|
2005
|
+
checksum = "570c430b3d902ea083097e853263ae782dfe40857d93db019a12356c8e8143fa"
|
1999
2006
|
dependencies = [
|
2000
2007
|
"ahash",
|
2001
2008
|
"getrandom",
|
@@ -2032,9 +2039,9 @@ dependencies = [
|
|
2032
2039
|
|
2033
2040
|
[[package]]
|
2034
2041
|
name = "smallvec"
|
2035
|
-
version = "1.
|
2042
|
+
version = "1.13.2"
|
2036
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2037
|
-
checksum = "
|
2044
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2038
2045
|
|
2039
2046
|
[[package]]
|
2040
2047
|
name = "smartstring"
|
@@ -2056,19 +2063,19 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2056
2063
|
|
2057
2064
|
[[package]]
|
2058
2065
|
name = "socket2"
|
2059
|
-
version = "0.5.
|
2066
|
+
version = "0.5.7"
|
2060
2067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2061
|
-
checksum = "
|
2068
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
2062
2069
|
dependencies = [
|
2063
2070
|
"libc",
|
2064
|
-
"windows-sys
|
2071
|
+
"windows-sys",
|
2065
2072
|
]
|
2066
2073
|
|
2067
2074
|
[[package]]
|
2068
2075
|
name = "sqlparser"
|
2069
|
-
version = "0.
|
2076
|
+
version = "0.49.0"
|
2070
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
-
checksum = "
|
2078
|
+
checksum = "a4a404d0e14905361b918cb8afdb73605e25c1d5029312bd9785142dcb3aa49e"
|
2072
2079
|
dependencies = [
|
2073
2080
|
"log",
|
2074
2081
|
]
|
@@ -2115,34 +2122,21 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2115
2122
|
|
2116
2123
|
[[package]]
|
2117
2124
|
name = "strum"
|
2118
|
-
version = "0.
|
2119
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2120
|
-
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
2121
|
-
|
2122
|
-
[[package]]
|
2123
|
-
name = "strum_macros"
|
2124
|
-
version = "0.25.3"
|
2125
|
+
version = "0.26.3"
|
2125
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2126
|
-
checksum = "
|
2127
|
-
dependencies = [
|
2128
|
-
"heck",
|
2129
|
-
"proc-macro2",
|
2130
|
-
"quote",
|
2131
|
-
"rustversion",
|
2132
|
-
"syn 2.0.46",
|
2133
|
-
]
|
2127
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
2134
2128
|
|
2135
2129
|
[[package]]
|
2136
2130
|
name = "strum_macros"
|
2137
|
-
version = "0.26.
|
2131
|
+
version = "0.26.4"
|
2138
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2139
|
-
checksum = "
|
2133
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2140
2134
|
dependencies = [
|
2141
2135
|
"heck",
|
2142
2136
|
"proc-macro2",
|
2143
2137
|
"quote",
|
2144
2138
|
"rustversion",
|
2145
|
-
"syn 2.0.
|
2139
|
+
"syn 2.0.74",
|
2146
2140
|
]
|
2147
2141
|
|
2148
2142
|
[[package]]
|
@@ -2158,9 +2152,9 @@ dependencies = [
|
|
2158
2152
|
|
2159
2153
|
[[package]]
|
2160
2154
|
name = "syn"
|
2161
|
-
version = "2.0.
|
2155
|
+
version = "2.0.74"
|
2162
2156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2163
|
-
checksum = "
|
2157
|
+
checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
|
2164
2158
|
dependencies = [
|
2165
2159
|
"proc-macro2",
|
2166
2160
|
"quote",
|
@@ -2169,65 +2163,63 @@ dependencies = [
|
|
2169
2163
|
|
2170
2164
|
[[package]]
|
2171
2165
|
name = "sysinfo"
|
2172
|
-
version = "0.
|
2166
|
+
version = "0.31.2"
|
2173
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2174
|
-
checksum = "
|
2168
|
+
checksum = "d4115055da5f572fff541dd0c4e61b0262977f453cc9fe04be83aba25a89bdab"
|
2175
2169
|
dependencies = [
|
2176
|
-
"cfg-if",
|
2177
2170
|
"core-foundation-sys",
|
2178
2171
|
"libc",
|
2172
|
+
"memchr",
|
2179
2173
|
"ntapi",
|
2180
|
-
"once_cell",
|
2181
2174
|
"windows",
|
2182
2175
|
]
|
2183
2176
|
|
2184
2177
|
[[package]]
|
2185
2178
|
name = "target-features"
|
2186
|
-
version = "0.1.
|
2179
|
+
version = "0.1.6"
|
2187
2180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2188
|
-
checksum = "
|
2181
|
+
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
2189
2182
|
|
2190
2183
|
[[package]]
|
2191
2184
|
name = "thiserror"
|
2192
|
-
version = "1.0.
|
2185
|
+
version = "1.0.63"
|
2193
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2194
|
-
checksum = "
|
2187
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
2195
2188
|
dependencies = [
|
2196
2189
|
"thiserror-impl",
|
2197
2190
|
]
|
2198
2191
|
|
2199
2192
|
[[package]]
|
2200
2193
|
name = "thiserror-impl"
|
2201
|
-
version = "1.0.
|
2194
|
+
version = "1.0.63"
|
2202
2195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2203
|
-
checksum = "
|
2196
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
2204
2197
|
dependencies = [
|
2205
2198
|
"proc-macro2",
|
2206
2199
|
"quote",
|
2207
|
-
"syn 2.0.
|
2200
|
+
"syn 2.0.74",
|
2208
2201
|
]
|
2209
2202
|
|
2210
2203
|
[[package]]
|
2211
2204
|
name = "tokio"
|
2212
|
-
version = "1.
|
2205
|
+
version = "1.39.2"
|
2213
2206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
|
-
checksum = "
|
2207
|
+
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
|
2215
2208
|
dependencies = [
|
2216
2209
|
"backtrace",
|
2217
2210
|
"bytes",
|
2218
2211
|
"libc",
|
2219
2212
|
"mio",
|
2220
|
-
"num_cpus",
|
2221
2213
|
"pin-project-lite",
|
2222
2214
|
"socket2",
|
2223
|
-
"windows-sys
|
2215
|
+
"windows-sys",
|
2224
2216
|
]
|
2225
2217
|
|
2226
2218
|
[[package]]
|
2227
2219
|
name = "tokio-util"
|
2228
|
-
version = "0.7.
|
2220
|
+
version = "0.7.11"
|
2229
2221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2230
|
-
checksum = "
|
2222
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
2231
2223
|
dependencies = [
|
2232
2224
|
"bytes",
|
2233
2225
|
"futures-core",
|
@@ -2244,39 +2236,39 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
2244
2236
|
|
2245
2237
|
[[package]]
|
2246
2238
|
name = "unicode-reverse"
|
2247
|
-
version = "1.0.
|
2239
|
+
version = "1.0.9"
|
2248
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2249
|
-
checksum = "
|
2241
|
+
checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
|
2250
2242
|
dependencies = [
|
2251
2243
|
"unicode-segmentation",
|
2252
2244
|
]
|
2253
2245
|
|
2254
2246
|
[[package]]
|
2255
2247
|
name = "unicode-segmentation"
|
2256
|
-
version = "1.
|
2248
|
+
version = "1.11.0"
|
2257
2249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2258
|
-
checksum = "
|
2250
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
2259
2251
|
|
2260
2252
|
[[package]]
|
2261
2253
|
name = "unicode-width"
|
2262
|
-
version = "0.1.
|
2254
|
+
version = "0.1.13"
|
2263
2255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2264
|
-
checksum = "
|
2256
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
2265
2257
|
|
2266
2258
|
[[package]]
|
2267
2259
|
name = "uuid"
|
2268
|
-
version = "1.
|
2260
|
+
version = "1.10.0"
|
2269
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2270
|
-
checksum = "
|
2262
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
2271
2263
|
dependencies = [
|
2272
2264
|
"getrandom",
|
2273
2265
|
]
|
2274
2266
|
|
2275
2267
|
[[package]]
|
2276
2268
|
name = "value-trait"
|
2277
|
-
version = "0.8.
|
2269
|
+
version = "0.8.1"
|
2278
2270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2279
|
-
checksum = "
|
2271
|
+
checksum = "dad8db98c1e677797df21ba03fca7d3bf9bec3ca38db930954e4fe6e1ea27eb4"
|
2280
2272
|
dependencies = [
|
2281
2273
|
"float-cmp",
|
2282
2274
|
"halfbrown",
|
@@ -2286,9 +2278,9 @@ dependencies = [
|
|
2286
2278
|
|
2287
2279
|
[[package]]
|
2288
2280
|
name = "version_check"
|
2289
|
-
version = "0.9.
|
2281
|
+
version = "0.9.5"
|
2290
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2291
|
-
checksum = "
|
2283
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2292
2284
|
|
2293
2285
|
[[package]]
|
2294
2286
|
name = "wasi"
|
@@ -2298,34 +2290,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2298
2290
|
|
2299
2291
|
[[package]]
|
2300
2292
|
name = "wasm-bindgen"
|
2301
|
-
version = "0.2.
|
2293
|
+
version = "0.2.93"
|
2302
2294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2303
|
-
checksum = "
|
2295
|
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
2304
2296
|
dependencies = [
|
2305
2297
|
"cfg-if",
|
2298
|
+
"once_cell",
|
2306
2299
|
"wasm-bindgen-macro",
|
2307
2300
|
]
|
2308
2301
|
|
2309
2302
|
[[package]]
|
2310
2303
|
name = "wasm-bindgen-backend"
|
2311
|
-
version = "0.2.
|
2304
|
+
version = "0.2.93"
|
2312
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2313
|
-
checksum = "
|
2306
|
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
2314
2307
|
dependencies = [
|
2315
2308
|
"bumpalo",
|
2316
2309
|
"log",
|
2317
2310
|
"once_cell",
|
2318
2311
|
"proc-macro2",
|
2319
2312
|
"quote",
|
2320
|
-
"syn 2.0.
|
2313
|
+
"syn 2.0.74",
|
2321
2314
|
"wasm-bindgen-shared",
|
2322
2315
|
]
|
2323
2316
|
|
2324
2317
|
[[package]]
|
2325
2318
|
name = "wasm-bindgen-macro"
|
2326
|
-
version = "0.2.
|
2319
|
+
version = "0.2.93"
|
2327
2320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2328
|
-
checksum = "
|
2321
|
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
2329
2322
|
dependencies = [
|
2330
2323
|
"quote",
|
2331
2324
|
"wasm-bindgen-macro-support",
|
@@ -2333,22 +2326,22 @@ dependencies = [
|
|
2333
2326
|
|
2334
2327
|
[[package]]
|
2335
2328
|
name = "wasm-bindgen-macro-support"
|
2336
|
-
version = "0.2.
|
2329
|
+
version = "0.2.93"
|
2337
2330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2338
|
-
checksum = "
|
2331
|
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
2339
2332
|
dependencies = [
|
2340
2333
|
"proc-macro2",
|
2341
2334
|
"quote",
|
2342
|
-
"syn 2.0.
|
2335
|
+
"syn 2.0.74",
|
2343
2336
|
"wasm-bindgen-backend",
|
2344
2337
|
"wasm-bindgen-shared",
|
2345
2338
|
]
|
2346
2339
|
|
2347
2340
|
[[package]]
|
2348
2341
|
name = "wasm-bindgen-shared"
|
2349
|
-
version = "0.2.
|
2342
|
+
version = "0.2.93"
|
2350
2343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2351
|
-
checksum = "
|
2344
|
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
2352
2345
|
|
2353
2346
|
[[package]]
|
2354
2347
|
name = "winapi"
|
@@ -2374,12 +2367,12 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2374
2367
|
|
2375
2368
|
[[package]]
|
2376
2369
|
name = "windows"
|
2377
|
-
version = "0.
|
2370
|
+
version = "0.57.0"
|
2378
2371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2379
|
-
checksum = "
|
2372
|
+
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
2380
2373
|
dependencies = [
|
2381
|
-
"windows-core",
|
2382
|
-
"windows-targets
|
2374
|
+
"windows-core 0.57.0",
|
2375
|
+
"windows-targets",
|
2383
2376
|
]
|
2384
2377
|
|
2385
2378
|
[[package]]
|
@@ -2388,190 +2381,175 @@ version = "0.52.0"
|
|
2388
2381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2389
2382
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2390
2383
|
dependencies = [
|
2391
|
-
"windows-targets
|
2384
|
+
"windows-targets",
|
2392
2385
|
]
|
2393
2386
|
|
2394
2387
|
[[package]]
|
2395
|
-
name = "windows-
|
2396
|
-
version = "0.
|
2388
|
+
name = "windows-core"
|
2389
|
+
version = "0.57.0"
|
2397
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2398
|
-
checksum = "
|
2391
|
+
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
2399
2392
|
dependencies = [
|
2400
|
-
"windows-
|
2393
|
+
"windows-implement",
|
2394
|
+
"windows-interface",
|
2395
|
+
"windows-result",
|
2396
|
+
"windows-targets",
|
2401
2397
|
]
|
2402
2398
|
|
2403
2399
|
[[package]]
|
2404
|
-
name = "windows-
|
2405
|
-
version = "0.
|
2400
|
+
name = "windows-implement"
|
2401
|
+
version = "0.57.0"
|
2406
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2407
|
-
checksum = "
|
2403
|
+
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
2408
2404
|
dependencies = [
|
2409
|
-
"
|
2405
|
+
"proc-macro2",
|
2406
|
+
"quote",
|
2407
|
+
"syn 2.0.74",
|
2410
2408
|
]
|
2411
2409
|
|
2412
2410
|
[[package]]
|
2413
|
-
name = "windows-
|
2414
|
-
version = "0.
|
2411
|
+
name = "windows-interface"
|
2412
|
+
version = "0.57.0"
|
2415
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2416
|
-
checksum = "
|
2414
|
+
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
2417
2415
|
dependencies = [
|
2418
|
-
"
|
2419
|
-
"
|
2420
|
-
"
|
2421
|
-
"windows_i686_msvc 0.48.5",
|
2422
|
-
"windows_x86_64_gnu 0.48.5",
|
2423
|
-
"windows_x86_64_gnullvm 0.48.5",
|
2424
|
-
"windows_x86_64_msvc 0.48.5",
|
2416
|
+
"proc-macro2",
|
2417
|
+
"quote",
|
2418
|
+
"syn 2.0.74",
|
2425
2419
|
]
|
2426
2420
|
|
2427
2421
|
[[package]]
|
2428
|
-
name = "windows-
|
2429
|
-
version = "0.
|
2422
|
+
name = "windows-result"
|
2423
|
+
version = "0.1.2"
|
2430
2424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2431
|
-
checksum = "
|
2425
|
+
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
2432
2426
|
dependencies = [
|
2433
|
-
"
|
2434
|
-
"windows_aarch64_msvc 0.52.0",
|
2435
|
-
"windows_i686_gnu 0.52.0",
|
2436
|
-
"windows_i686_msvc 0.52.0",
|
2437
|
-
"windows_x86_64_gnu 0.52.0",
|
2438
|
-
"windows_x86_64_gnullvm 0.52.0",
|
2439
|
-
"windows_x86_64_msvc 0.52.0",
|
2427
|
+
"windows-targets",
|
2440
2428
|
]
|
2441
2429
|
|
2442
2430
|
[[package]]
|
2443
|
-
name = "
|
2444
|
-
version = "0.48.5"
|
2445
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2446
|
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2447
|
-
|
2448
|
-
[[package]]
|
2449
|
-
name = "windows_aarch64_gnullvm"
|
2431
|
+
name = "windows-sys"
|
2450
2432
|
version = "0.52.0"
|
2451
2433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2452
|
-
checksum = "
|
2434
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2435
|
+
dependencies = [
|
2436
|
+
"windows-targets",
|
2437
|
+
]
|
2453
2438
|
|
2454
2439
|
[[package]]
|
2455
|
-
name = "
|
2456
|
-
version = "0.
|
2440
|
+
name = "windows-targets"
|
2441
|
+
version = "0.52.6"
|
2457
2442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2458
|
-
checksum = "
|
2443
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2444
|
+
dependencies = [
|
2445
|
+
"windows_aarch64_gnullvm",
|
2446
|
+
"windows_aarch64_msvc",
|
2447
|
+
"windows_i686_gnu",
|
2448
|
+
"windows_i686_gnullvm",
|
2449
|
+
"windows_i686_msvc",
|
2450
|
+
"windows_x86_64_gnu",
|
2451
|
+
"windows_x86_64_gnullvm",
|
2452
|
+
"windows_x86_64_msvc",
|
2453
|
+
]
|
2459
2454
|
|
2460
2455
|
[[package]]
|
2461
|
-
name = "
|
2462
|
-
version = "0.52.
|
2456
|
+
name = "windows_aarch64_gnullvm"
|
2457
|
+
version = "0.52.6"
|
2463
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2464
|
-
checksum = "
|
2459
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2465
2460
|
|
2466
2461
|
[[package]]
|
2467
|
-
name = "
|
2468
|
-
version = "0.
|
2462
|
+
name = "windows_aarch64_msvc"
|
2463
|
+
version = "0.52.6"
|
2469
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2470
|
-
checksum = "
|
2465
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2471
2466
|
|
2472
2467
|
[[package]]
|
2473
2468
|
name = "windows_i686_gnu"
|
2474
|
-
version = "0.52.
|
2469
|
+
version = "0.52.6"
|
2475
2470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2476
|
-
checksum = "
|
2471
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2477
2472
|
|
2478
2473
|
[[package]]
|
2479
|
-
name = "
|
2480
|
-
version = "0.
|
2474
|
+
name = "windows_i686_gnullvm"
|
2475
|
+
version = "0.52.6"
|
2481
2476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2482
|
-
checksum = "
|
2477
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2483
2478
|
|
2484
2479
|
[[package]]
|
2485
2480
|
name = "windows_i686_msvc"
|
2486
|
-
version = "0.52.
|
2481
|
+
version = "0.52.6"
|
2487
2482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2488
|
-
checksum = "
|
2483
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2489
2484
|
|
2490
2485
|
[[package]]
|
2491
2486
|
name = "windows_x86_64_gnu"
|
2492
|
-
version = "0.
|
2487
|
+
version = "0.52.6"
|
2493
2488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2494
|
-
checksum = "
|
2495
|
-
|
2496
|
-
[[package]]
|
2497
|
-
name = "windows_x86_64_gnu"
|
2498
|
-
version = "0.52.0"
|
2499
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2500
|
-
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
2489
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2501
2490
|
|
2502
2491
|
[[package]]
|
2503
2492
|
name = "windows_x86_64_gnullvm"
|
2504
|
-
version = "0.
|
2493
|
+
version = "0.52.6"
|
2505
2494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2506
|
-
checksum = "
|
2507
|
-
|
2508
|
-
[[package]]
|
2509
|
-
name = "windows_x86_64_gnullvm"
|
2510
|
-
version = "0.52.0"
|
2511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2512
|
-
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
2495
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2513
2496
|
|
2514
2497
|
[[package]]
|
2515
2498
|
name = "windows_x86_64_msvc"
|
2516
|
-
version = "0.
|
2499
|
+
version = "0.52.6"
|
2517
2500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2518
|
-
checksum = "
|
2519
|
-
|
2520
|
-
[[package]]
|
2521
|
-
name = "windows_x86_64_msvc"
|
2522
|
-
version = "0.52.0"
|
2523
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2524
|
-
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
2501
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2525
2502
|
|
2526
2503
|
[[package]]
|
2527
2504
|
name = "xxhash-rust"
|
2528
|
-
version = "0.8.
|
2505
|
+
version = "0.8.12"
|
2529
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2530
|
-
checksum = "
|
2507
|
+
checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
|
2531
2508
|
|
2532
2509
|
[[package]]
|
2533
2510
|
name = "zerocopy"
|
2534
|
-
version = "0.7.
|
2511
|
+
version = "0.7.35"
|
2535
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2536
|
-
checksum = "
|
2513
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2537
2514
|
dependencies = [
|
2515
|
+
"byteorder",
|
2538
2516
|
"zerocopy-derive",
|
2539
2517
|
]
|
2540
2518
|
|
2541
2519
|
[[package]]
|
2542
2520
|
name = "zerocopy-derive"
|
2543
|
-
version = "0.7.
|
2521
|
+
version = "0.7.35"
|
2544
2522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2545
|
-
checksum = "
|
2523
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
2546
2524
|
dependencies = [
|
2547
2525
|
"proc-macro2",
|
2548
2526
|
"quote",
|
2549
|
-
"syn 2.0.
|
2527
|
+
"syn 2.0.74",
|
2550
2528
|
]
|
2551
2529
|
|
2552
2530
|
[[package]]
|
2553
2531
|
name = "zstd"
|
2554
|
-
version = "0.13.
|
2532
|
+
version = "0.13.2"
|
2555
2533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2556
|
-
checksum = "
|
2534
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
2557
2535
|
dependencies = [
|
2558
2536
|
"zstd-safe",
|
2559
2537
|
]
|
2560
2538
|
|
2561
2539
|
[[package]]
|
2562
2540
|
name = "zstd-safe"
|
2563
|
-
version = "7.
|
2541
|
+
version = "7.2.1"
|
2564
2542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2565
|
-
checksum = "
|
2543
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
2566
2544
|
dependencies = [
|
2567
2545
|
"zstd-sys",
|
2568
2546
|
]
|
2569
2547
|
|
2570
2548
|
[[package]]
|
2571
2549
|
name = "zstd-sys"
|
2572
|
-
version = "2.0.
|
2550
|
+
version = "2.0.13+zstd.1.5.6"
|
2573
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2574
|
-
checksum = "
|
2552
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
2575
2553
|
dependencies = [
|
2576
2554
|
"cc",
|
2577
2555
|
"pkg-config",
|