deltalake-rb 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Cargo.lock +1087 -804
- data/ext/deltalake/Cargo.toml +6 -6
- data/ext/deltalake/src/error.rs +13 -0
- data/ext/deltalake/src/lib.rs +23 -16
- data/ext/deltalake/src/merge.rs +1 -0
- data/lib/deltalake/table.rb +7 -1
- data/lib/deltalake/version.rb +1 -1
- metadata +3 -3
data/Cargo.lock
CHANGED
@@ -25,10 +25,10 @@ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
25
25
|
dependencies = [
|
26
26
|
"cfg-if",
|
27
27
|
"const-random",
|
28
|
-
"getrandom",
|
28
|
+
"getrandom 0.2.16",
|
29
29
|
"once_cell",
|
30
30
|
"version_check",
|
31
|
-
"zerocopy",
|
31
|
+
"zerocopy 0.7.35",
|
32
32
|
]
|
33
33
|
|
34
34
|
[[package]]
|
@@ -78,9 +78,9 @@ dependencies = [
|
|
78
78
|
|
79
79
|
[[package]]
|
80
80
|
name = "anyhow"
|
81
|
-
version = "1.0.
|
81
|
+
version = "1.0.98"
|
82
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
-
checksum = "
|
83
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
84
84
|
|
85
85
|
[[package]]
|
86
86
|
name = "arrayref"
|
@@ -96,9 +96,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
96
96
|
|
97
97
|
[[package]]
|
98
98
|
name = "arrow"
|
99
|
-
version = "
|
99
|
+
version = "55.0.0"
|
100
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
101
|
-
checksum = "
|
101
|
+
checksum = "3095aaf545942ff5abd46654534f15b03a90fba78299d661e045e5d587222f0d"
|
102
102
|
dependencies = [
|
103
103
|
"arrow-arith",
|
104
104
|
"arrow-array",
|
@@ -117,24 +117,23 @@ dependencies = [
|
|
117
117
|
|
118
118
|
[[package]]
|
119
119
|
name = "arrow-arith"
|
120
|
-
version = "
|
120
|
+
version = "55.0.0"
|
121
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
-
checksum = "
|
122
|
+
checksum = "00752064ff47cee746e816ddb8450520c3a52cbad1e256f6fa861a35f86c45e7"
|
123
123
|
dependencies = [
|
124
124
|
"arrow-array",
|
125
125
|
"arrow-buffer",
|
126
126
|
"arrow-data",
|
127
127
|
"arrow-schema",
|
128
128
|
"chrono",
|
129
|
-
"half",
|
130
129
|
"num",
|
131
130
|
]
|
132
131
|
|
133
132
|
[[package]]
|
134
133
|
name = "arrow-array"
|
135
|
-
version = "
|
134
|
+
version = "55.0.0"
|
136
135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
-
checksum = "
|
136
|
+
checksum = "cebfe926794fbc1f49ddd0cdaf898956ca9f6e79541efce62dabccfd81380472"
|
138
137
|
dependencies = [
|
139
138
|
"ahash",
|
140
139
|
"arrow-buffer",
|
@@ -143,15 +142,15 @@ dependencies = [
|
|
143
142
|
"chrono",
|
144
143
|
"chrono-tz",
|
145
144
|
"half",
|
146
|
-
"hashbrown 0.15.
|
145
|
+
"hashbrown 0.15.3",
|
147
146
|
"num",
|
148
147
|
]
|
149
148
|
|
150
149
|
[[package]]
|
151
150
|
name = "arrow-buffer"
|
152
|
-
version = "
|
151
|
+
version = "55.0.0"
|
153
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
154
|
-
checksum = "
|
153
|
+
checksum = "0303c7ec4cf1a2c60310fc4d6bbc3350cd051a17bf9e9c0a8e47b4db79277824"
|
155
154
|
dependencies = [
|
156
155
|
"bytes",
|
157
156
|
"half",
|
@@ -160,9 +159,9 @@ dependencies = [
|
|
160
159
|
|
161
160
|
[[package]]
|
162
161
|
name = "arrow-cast"
|
163
|
-
version = "
|
162
|
+
version = "55.0.0"
|
164
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
-
checksum = "
|
164
|
+
checksum = "335f769c5a218ea823d3760a743feba1ef7857cba114c01399a891c2fff34285"
|
166
165
|
dependencies = [
|
167
166
|
"arrow-array",
|
168
167
|
"arrow-buffer",
|
@@ -181,28 +180,25 @@ dependencies = [
|
|
181
180
|
|
182
181
|
[[package]]
|
183
182
|
name = "arrow-csv"
|
184
|
-
version = "
|
183
|
+
version = "55.0.0"
|
185
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
186
|
-
checksum = "
|
185
|
+
checksum = "510db7dfbb4d5761826516cc611d97b3a68835d0ece95b034a052601109c0b1b"
|
187
186
|
dependencies = [
|
188
187
|
"arrow-array",
|
189
|
-
"arrow-buffer",
|
190
188
|
"arrow-cast",
|
191
|
-
"arrow-data",
|
192
189
|
"arrow-schema",
|
193
190
|
"chrono",
|
194
191
|
"csv",
|
195
192
|
"csv-core",
|
196
193
|
"lazy_static",
|
197
|
-
"lexical-core",
|
198
194
|
"regex",
|
199
195
|
]
|
200
196
|
|
201
197
|
[[package]]
|
202
198
|
name = "arrow-data"
|
203
|
-
version = "
|
199
|
+
version = "55.0.0"
|
204
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
205
|
-
checksum = "
|
201
|
+
checksum = "e8affacf3351a24039ea24adab06f316ded523b6f8c3dbe28fbac5f18743451b"
|
206
202
|
dependencies = [
|
207
203
|
"arrow-buffer",
|
208
204
|
"arrow-schema",
|
@@ -212,13 +208,12 @@ dependencies = [
|
|
212
208
|
|
213
209
|
[[package]]
|
214
210
|
name = "arrow-ipc"
|
215
|
-
version = "
|
211
|
+
version = "55.0.0"
|
216
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
217
|
-
checksum = "
|
213
|
+
checksum = "69880a9e6934d9cba2b8630dd08a3463a91db8693b16b499d54026b6137af284"
|
218
214
|
dependencies = [
|
219
215
|
"arrow-array",
|
220
216
|
"arrow-buffer",
|
221
|
-
"arrow-cast",
|
222
217
|
"arrow-data",
|
223
218
|
"arrow-schema",
|
224
219
|
"flatbuffers",
|
@@ -227,9 +222,9 @@ dependencies = [
|
|
227
222
|
|
228
223
|
[[package]]
|
229
224
|
name = "arrow-json"
|
230
|
-
version = "
|
225
|
+
version = "55.0.0"
|
231
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
-
checksum = "
|
227
|
+
checksum = "d8dafd17a05449e31e0114d740530e0ada7379d7cb9c338fd65b09a8130960b0"
|
233
228
|
dependencies = [
|
234
229
|
"arrow-array",
|
235
230
|
"arrow-buffer",
|
@@ -240,33 +235,32 @@ dependencies = [
|
|
240
235
|
"half",
|
241
236
|
"indexmap",
|
242
237
|
"lexical-core",
|
238
|
+
"memchr",
|
243
239
|
"num",
|
244
240
|
"serde",
|
245
241
|
"serde_json",
|
242
|
+
"simdutf8",
|
246
243
|
]
|
247
244
|
|
248
245
|
[[package]]
|
249
246
|
name = "arrow-ord"
|
250
|
-
version = "
|
247
|
+
version = "55.0.0"
|
251
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
-
checksum = "
|
249
|
+
checksum = "895644523af4e17502d42c3cb6b27cb820f0cb77954c22d75c23a85247c849e1"
|
253
250
|
dependencies = [
|
254
251
|
"arrow-array",
|
255
252
|
"arrow-buffer",
|
256
253
|
"arrow-data",
|
257
254
|
"arrow-schema",
|
258
255
|
"arrow-select",
|
259
|
-
"half",
|
260
|
-
"num",
|
261
256
|
]
|
262
257
|
|
263
258
|
[[package]]
|
264
259
|
name = "arrow-row"
|
265
|
-
version = "
|
260
|
+
version = "55.0.0"
|
266
261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
267
|
-
checksum = "
|
262
|
+
checksum = "9be8a2a4e5e7d9c822b2b8095ecd77010576d824f654d347817640acfc97d229"
|
268
263
|
dependencies = [
|
269
|
-
"ahash",
|
270
264
|
"arrow-array",
|
271
265
|
"arrow-buffer",
|
272
266
|
"arrow-data",
|
@@ -276,19 +270,19 @@ dependencies = [
|
|
276
270
|
|
277
271
|
[[package]]
|
278
272
|
name = "arrow-schema"
|
279
|
-
version = "
|
273
|
+
version = "55.0.0"
|
280
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "
|
275
|
+
checksum = "7450c76ab7c5a6805be3440dc2e2096010da58f7cab301fdc996a4ee3ee74e49"
|
282
276
|
dependencies = [
|
283
|
-
"bitflags
|
277
|
+
"bitflags",
|
284
278
|
"serde",
|
285
279
|
]
|
286
280
|
|
287
281
|
[[package]]
|
288
282
|
name = "arrow-select"
|
289
|
-
version = "
|
283
|
+
version = "55.0.0"
|
290
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
291
|
-
checksum = "
|
285
|
+
checksum = "aa5f5a93c75f46ef48e4001535e7b6c922eeb0aa20b73cf58d09e13d057490d8"
|
292
286
|
dependencies = [
|
293
287
|
"ahash",
|
294
288
|
"arrow-array",
|
@@ -300,9 +294,9 @@ dependencies = [
|
|
300
294
|
|
301
295
|
[[package]]
|
302
296
|
name = "arrow-string"
|
303
|
-
version = "
|
297
|
+
version = "55.0.0"
|
304
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
-
checksum = "
|
299
|
+
checksum = "6e7005d858d84b56428ba2a98a107fe88c0132c61793cf6b8232a1f9bfc0452b"
|
306
300
|
dependencies = [
|
307
301
|
"arrow-array",
|
308
302
|
"arrow-buffer",
|
@@ -317,11 +311,11 @@ dependencies = [
|
|
317
311
|
|
318
312
|
[[package]]
|
319
313
|
name = "async-compression"
|
320
|
-
version = "0.4.
|
314
|
+
version = "0.4.19"
|
321
315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
322
|
-
checksum = "
|
316
|
+
checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c"
|
323
317
|
dependencies = [
|
324
|
-
"bzip2
|
318
|
+
"bzip2",
|
325
319
|
"flate2",
|
326
320
|
"futures-core",
|
327
321
|
"memchr",
|
@@ -334,13 +328,13 @@ dependencies = [
|
|
334
328
|
|
335
329
|
[[package]]
|
336
330
|
name = "async-trait"
|
337
|
-
version = "0.1.
|
331
|
+
version = "0.1.88"
|
338
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
339
|
-
checksum = "
|
333
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
340
334
|
dependencies = [
|
341
335
|
"proc-macro2",
|
342
336
|
"quote",
|
343
|
-
"syn
|
337
|
+
"syn",
|
344
338
|
]
|
345
339
|
|
346
340
|
[[package]]
|
@@ -366,9 +360,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
366
360
|
|
367
361
|
[[package]]
|
368
362
|
name = "aws-config"
|
369
|
-
version = "1.
|
363
|
+
version = "1.6.2"
|
370
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
|
-
checksum = "
|
365
|
+
checksum = "b6fcc63c9860579e4cb396239570e979376e70aab79e496621748a09913f8b36"
|
372
366
|
dependencies = [
|
373
367
|
"aws-credential-types",
|
374
368
|
"aws-runtime",
|
@@ -385,7 +379,7 @@ dependencies = [
|
|
385
379
|
"bytes",
|
386
380
|
"fastrand",
|
387
381
|
"hex",
|
388
|
-
"http
|
382
|
+
"http 1.3.1",
|
389
383
|
"ring",
|
390
384
|
"time",
|
391
385
|
"tokio",
|
@@ -396,9 +390,9 @@ dependencies = [
|
|
396
390
|
|
397
391
|
[[package]]
|
398
392
|
name = "aws-credential-types"
|
399
|
-
version = "1.2.
|
393
|
+
version = "1.2.3"
|
400
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
-
checksum = "
|
395
|
+
checksum = "687bc16bc431a8533fe0097c7f0182874767f920989d7260950172ae8e3c4465"
|
402
396
|
dependencies = [
|
403
397
|
"aws-smithy-async",
|
404
398
|
"aws-smithy-runtime-api",
|
@@ -406,11 +400,34 @@ dependencies = [
|
|
406
400
|
"zeroize",
|
407
401
|
]
|
408
402
|
|
403
|
+
[[package]]
|
404
|
+
name = "aws-lc-rs"
|
405
|
+
version = "1.13.0"
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
+
checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
|
408
|
+
dependencies = [
|
409
|
+
"aws-lc-sys",
|
410
|
+
"zeroize",
|
411
|
+
]
|
412
|
+
|
413
|
+
[[package]]
|
414
|
+
name = "aws-lc-sys"
|
415
|
+
version = "0.28.2"
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
+
checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
|
418
|
+
dependencies = [
|
419
|
+
"bindgen",
|
420
|
+
"cc",
|
421
|
+
"cmake",
|
422
|
+
"dunce",
|
423
|
+
"fs_extra",
|
424
|
+
]
|
425
|
+
|
409
426
|
[[package]]
|
410
427
|
name = "aws-runtime"
|
411
|
-
version = "1.5.
|
428
|
+
version = "1.5.7"
|
412
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
413
|
-
checksum = "
|
430
|
+
checksum = "6c4063282c69991e57faab9e5cb21ae557e59f5b0fb285c196335243df8dc25c"
|
414
431
|
dependencies = [
|
415
432
|
"aws-credential-types",
|
416
433
|
"aws-sigv4",
|
@@ -424,7 +441,6 @@ dependencies = [
|
|
424
441
|
"fastrand",
|
425
442
|
"http 0.2.12",
|
426
443
|
"http-body 0.4.6",
|
427
|
-
"once_cell",
|
428
444
|
"percent-encoding",
|
429
445
|
"pin-project-lite",
|
430
446
|
"tracing",
|
@@ -433,9 +449,9 @@ dependencies = [
|
|
433
449
|
|
434
450
|
[[package]]
|
435
451
|
name = "aws-sdk-dynamodb"
|
436
|
-
version = "1.
|
452
|
+
version = "1.72.1"
|
437
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
-
checksum = "
|
454
|
+
checksum = "b14d5b5d6849d1caa7b404ea57cbe25ed8ba25c3c7d47f45bcbd5b51e098ceac"
|
439
455
|
dependencies = [
|
440
456
|
"aws-credential-types",
|
441
457
|
"aws-runtime",
|
@@ -456,9 +472,9 @@ dependencies = [
|
|
456
472
|
|
457
473
|
[[package]]
|
458
474
|
name = "aws-sdk-sso"
|
459
|
-
version = "1.
|
475
|
+
version = "1.65.0"
|
460
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
-
checksum = "
|
477
|
+
checksum = "8efec445fb78df585327094fcef4cad895b154b58711e504db7a93c41aa27151"
|
462
478
|
dependencies = [
|
463
479
|
"aws-credential-types",
|
464
480
|
"aws-runtime",
|
@@ -470,6 +486,7 @@ dependencies = [
|
|
470
486
|
"aws-smithy-types",
|
471
487
|
"aws-types",
|
472
488
|
"bytes",
|
489
|
+
"fastrand",
|
473
490
|
"http 0.2.12",
|
474
491
|
"once_cell",
|
475
492
|
"regex-lite",
|
@@ -478,9 +495,9 @@ dependencies = [
|
|
478
495
|
|
479
496
|
[[package]]
|
480
497
|
name = "aws-sdk-ssooidc"
|
481
|
-
version = "1.
|
498
|
+
version = "1.66.0"
|
482
499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
-
checksum = "
|
500
|
+
checksum = "5e49cca619c10e7b002dc8e66928ceed66ab7f56c1a3be86c5437bf2d8d89bba"
|
484
501
|
dependencies = [
|
485
502
|
"aws-credential-types",
|
486
503
|
"aws-runtime",
|
@@ -492,6 +509,7 @@ dependencies = [
|
|
492
509
|
"aws-smithy-types",
|
493
510
|
"aws-types",
|
494
511
|
"bytes",
|
512
|
+
"fastrand",
|
495
513
|
"http 0.2.12",
|
496
514
|
"once_cell",
|
497
515
|
"regex-lite",
|
@@ -500,9 +518,9 @@ dependencies = [
|
|
500
518
|
|
501
519
|
[[package]]
|
502
520
|
name = "aws-sdk-sts"
|
503
|
-
version = "1.
|
521
|
+
version = "1.66.0"
|
504
522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
505
|
-
checksum = "
|
523
|
+
checksum = "7420479eac0a53f776cc8f0d493841ffe58ad9d9783f3947be7265784471b47a"
|
506
524
|
dependencies = [
|
507
525
|
"aws-credential-types",
|
508
526
|
"aws-runtime",
|
@@ -515,6 +533,7 @@ dependencies = [
|
|
515
533
|
"aws-smithy-types",
|
516
534
|
"aws-smithy-xml",
|
517
535
|
"aws-types",
|
536
|
+
"fastrand",
|
518
537
|
"http 0.2.12",
|
519
538
|
"once_cell",
|
520
539
|
"regex-lite",
|
@@ -523,9 +542,9 @@ dependencies = [
|
|
523
542
|
|
524
543
|
[[package]]
|
525
544
|
name = "aws-sigv4"
|
526
|
-
version = "1.
|
545
|
+
version = "1.3.1"
|
527
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
528
|
-
checksum = "
|
547
|
+
checksum = "3503af839bd8751d0bdc5a46b9cac93a003a353e635b0c12cf2376b5b53e41ea"
|
529
548
|
dependencies = [
|
530
549
|
"aws-credential-types",
|
531
550
|
"aws-smithy-http",
|
@@ -536,8 +555,7 @@ dependencies = [
|
|
536
555
|
"hex",
|
537
556
|
"hmac",
|
538
557
|
"http 0.2.12",
|
539
|
-
"http 1.
|
540
|
-
"once_cell",
|
558
|
+
"http 1.3.1",
|
541
559
|
"percent-encoding",
|
542
560
|
"sha2",
|
543
561
|
"time",
|
@@ -546,9 +564,9 @@ dependencies = [
|
|
546
564
|
|
547
565
|
[[package]]
|
548
566
|
name = "aws-smithy-async"
|
549
|
-
version = "1.2.
|
567
|
+
version = "1.2.5"
|
550
568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
551
|
-
checksum = "
|
569
|
+
checksum = "1e190749ea56f8c42bf15dd76c65e14f8f765233e6df9b0506d9d934ebef867c"
|
552
570
|
dependencies = [
|
553
571
|
"futures-util",
|
554
572
|
"pin-project-lite",
|
@@ -557,9 +575,9 @@ dependencies = [
|
|
557
575
|
|
558
576
|
[[package]]
|
559
577
|
name = "aws-smithy-http"
|
560
|
-
version = "0.
|
578
|
+
version = "0.62.1"
|
561
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
-
checksum = "
|
580
|
+
checksum = "99335bec6cdc50a346fda1437f9fefe33abf8c99060739a546a16457f2862ca9"
|
563
581
|
dependencies = [
|
564
582
|
"aws-smithy-runtime-api",
|
565
583
|
"aws-smithy-types",
|
@@ -567,23 +585,60 @@ dependencies = [
|
|
567
585
|
"bytes-utils",
|
568
586
|
"futures-core",
|
569
587
|
"http 0.2.12",
|
588
|
+
"http 1.3.1",
|
570
589
|
"http-body 0.4.6",
|
571
|
-
"once_cell",
|
572
590
|
"percent-encoding",
|
573
591
|
"pin-project-lite",
|
574
592
|
"pin-utils",
|
575
593
|
"tracing",
|
576
594
|
]
|
577
595
|
|
596
|
+
[[package]]
|
597
|
+
name = "aws-smithy-http-client"
|
598
|
+
version = "1.0.1"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "8aff1159006441d02e57204bf57a1b890ba68bedb6904ffd2873c1c4c11c546b"
|
601
|
+
dependencies = [
|
602
|
+
"aws-smithy-async",
|
603
|
+
"aws-smithy-runtime-api",
|
604
|
+
"aws-smithy-types",
|
605
|
+
"h2 0.4.9",
|
606
|
+
"http 0.2.12",
|
607
|
+
"http 1.3.1",
|
608
|
+
"http-body 0.4.6",
|
609
|
+
"hyper 0.14.32",
|
610
|
+
"hyper 1.6.0",
|
611
|
+
"hyper-rustls 0.24.2",
|
612
|
+
"hyper-rustls 0.27.5",
|
613
|
+
"hyper-util",
|
614
|
+
"pin-project-lite",
|
615
|
+
"rustls 0.21.12",
|
616
|
+
"rustls 0.23.26",
|
617
|
+
"rustls-native-certs 0.8.1",
|
618
|
+
"rustls-pki-types",
|
619
|
+
"tokio",
|
620
|
+
"tower",
|
621
|
+
"tracing",
|
622
|
+
]
|
623
|
+
|
578
624
|
[[package]]
|
579
625
|
name = "aws-smithy-json"
|
580
|
-
version = "0.61.
|
626
|
+
version = "0.61.3"
|
581
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
|
-
checksum = "
|
628
|
+
checksum = "92144e45819cae7dc62af23eac5a038a58aa544432d2102609654376a900bd07"
|
583
629
|
dependencies = [
|
584
630
|
"aws-smithy-types",
|
585
631
|
]
|
586
632
|
|
633
|
+
[[package]]
|
634
|
+
name = "aws-smithy-observability"
|
635
|
+
version = "0.1.3"
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
+
checksum = "9364d5989ac4dd918e5cc4c4bdcc61c9be17dcd2586ea7f69e348fc7c6cab393"
|
638
|
+
dependencies = [
|
639
|
+
"aws-smithy-runtime-api",
|
640
|
+
]
|
641
|
+
|
587
642
|
[[package]]
|
588
643
|
name = "aws-smithy-query"
|
589
644
|
version = "0.60.7"
|
@@ -596,42 +651,39 @@ dependencies = [
|
|
596
651
|
|
597
652
|
[[package]]
|
598
653
|
name = "aws-smithy-runtime"
|
599
|
-
version = "1.
|
654
|
+
version = "1.8.3"
|
600
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
601
|
-
checksum = "
|
656
|
+
checksum = "14302f06d1d5b7d333fd819943075b13d27c7700b414f574c3c35859bfb55d5e"
|
602
657
|
dependencies = [
|
603
658
|
"aws-smithy-async",
|
604
659
|
"aws-smithy-http",
|
660
|
+
"aws-smithy-http-client",
|
661
|
+
"aws-smithy-observability",
|
605
662
|
"aws-smithy-runtime-api",
|
606
663
|
"aws-smithy-types",
|
607
664
|
"bytes",
|
608
665
|
"fastrand",
|
609
|
-
"h2 0.3.26",
|
610
666
|
"http 0.2.12",
|
667
|
+
"http 1.3.1",
|
611
668
|
"http-body 0.4.6",
|
612
669
|
"http-body 1.0.1",
|
613
|
-
"httparse",
|
614
|
-
"hyper 0.14.32",
|
615
|
-
"hyper-rustls 0.24.2",
|
616
|
-
"once_cell",
|
617
670
|
"pin-project-lite",
|
618
671
|
"pin-utils",
|
619
|
-
"rustls 0.21.12",
|
620
672
|
"tokio",
|
621
673
|
"tracing",
|
622
674
|
]
|
623
675
|
|
624
676
|
[[package]]
|
625
677
|
name = "aws-smithy-runtime-api"
|
626
|
-
version = "1.
|
678
|
+
version = "1.8.0"
|
627
679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
-
checksum = "
|
680
|
+
checksum = "a1e5d9e3a80a18afa109391fb5ad09c3daf887b516c6fd805a157c6ea7994a57"
|
629
681
|
dependencies = [
|
630
682
|
"aws-smithy-async",
|
631
683
|
"aws-smithy-types",
|
632
684
|
"bytes",
|
633
685
|
"http 0.2.12",
|
634
|
-
"http 1.
|
686
|
+
"http 1.3.1",
|
635
687
|
"pin-project-lite",
|
636
688
|
"tokio",
|
637
689
|
"tracing",
|
@@ -640,16 +692,16 @@ dependencies = [
|
|
640
692
|
|
641
693
|
[[package]]
|
642
694
|
name = "aws-smithy-types"
|
643
|
-
version = "1.
|
695
|
+
version = "1.3.1"
|
644
696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
-
checksum = "
|
697
|
+
checksum = "40076bd09fadbc12d5e026ae080d0930defa606856186e31d83ccc6a255eeaf3"
|
646
698
|
dependencies = [
|
647
699
|
"base64-simd",
|
648
700
|
"bytes",
|
649
701
|
"bytes-utils",
|
650
702
|
"futures-core",
|
651
703
|
"http 0.2.12",
|
652
|
-
"http 1.
|
704
|
+
"http 1.3.1",
|
653
705
|
"http-body 0.4.6",
|
654
706
|
"http-body 1.0.1",
|
655
707
|
"http-body-util",
|
@@ -675,9 +727,9 @@ dependencies = [
|
|
675
727
|
|
676
728
|
[[package]]
|
677
729
|
name = "aws-types"
|
678
|
-
version = "1.3.
|
730
|
+
version = "1.3.7"
|
679
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
680
|
-
checksum = "
|
732
|
+
checksum = "8a322fec39e4df22777ed3ad8ea868ac2f94cd15e1a55f6ee8d8d6305057689a"
|
681
733
|
dependencies = [
|
682
734
|
"aws-credential-types",
|
683
735
|
"aws-smithy-async",
|
@@ -689,9 +741,9 @@ dependencies = [
|
|
689
741
|
|
690
742
|
[[package]]
|
691
743
|
name = "backon"
|
692
|
-
version = "1.
|
744
|
+
version = "1.5.0"
|
693
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
-
checksum = "
|
746
|
+
checksum = "fd0b50b1b78dbadd44ab18b3c794e496f3a139abb9fbc27d9c94c4eebbb96496"
|
695
747
|
dependencies = [
|
696
748
|
"fastrand",
|
697
749
|
"tokio",
|
@@ -709,7 +761,7 @@ dependencies = [
|
|
709
761
|
"miniz_oxide",
|
710
762
|
"object",
|
711
763
|
"rustc-demangle",
|
712
|
-
"windows-targets",
|
764
|
+
"windows-targets 0.52.6",
|
713
765
|
]
|
714
766
|
|
715
767
|
[[package]]
|
@@ -736,9 +788,9 @@ dependencies = [
|
|
736
788
|
|
737
789
|
[[package]]
|
738
790
|
name = "bigdecimal"
|
739
|
-
version = "0.4.
|
791
|
+
version = "0.4.8"
|
740
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
741
|
-
checksum = "
|
793
|
+
checksum = "1a22f228ab7a1b23027ccc6c350b72868017af7ea8356fbdf19f8d991c690013"
|
742
794
|
dependencies = [
|
743
795
|
"autocfg",
|
744
796
|
"libm",
|
@@ -753,31 +805,28 @@ version = "0.69.5"
|
|
753
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
754
806
|
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
755
807
|
dependencies = [
|
756
|
-
"bitflags
|
808
|
+
"bitflags",
|
757
809
|
"cexpr",
|
758
810
|
"clang-sys",
|
759
811
|
"itertools 0.12.1",
|
760
812
|
"lazy_static",
|
761
813
|
"lazycell",
|
814
|
+
"log",
|
815
|
+
"prettyplease",
|
762
816
|
"proc-macro2",
|
763
817
|
"quote",
|
764
818
|
"regex",
|
765
819
|
"rustc-hash 1.1.0",
|
766
820
|
"shlex",
|
767
|
-
"syn
|
821
|
+
"syn",
|
822
|
+
"which",
|
768
823
|
]
|
769
824
|
|
770
825
|
[[package]]
|
771
826
|
name = "bitflags"
|
772
|
-
version = "
|
773
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
774
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
775
|
-
|
776
|
-
[[package]]
|
777
|
-
name = "bitflags"
|
778
|
-
version = "2.8.0"
|
827
|
+
version = "2.9.0"
|
779
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
-
checksum = "
|
829
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
781
830
|
|
782
831
|
[[package]]
|
783
832
|
name = "blake2"
|
@@ -790,9 +839,9 @@ dependencies = [
|
|
790
839
|
|
791
840
|
[[package]]
|
792
841
|
name = "blake3"
|
793
|
-
version = "1.
|
842
|
+
version = "1.8.2"
|
794
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
795
|
-
checksum = "
|
844
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
796
845
|
dependencies = [
|
797
846
|
"arrayref",
|
798
847
|
"arrayvec",
|
@@ -823,9 +872,9 @@ dependencies = [
|
|
823
872
|
|
824
873
|
[[package]]
|
825
874
|
name = "brotli-decompressor"
|
826
|
-
version = "4.0.
|
875
|
+
version = "4.0.3"
|
827
876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
828
|
-
checksum = "
|
877
|
+
checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
|
829
878
|
dependencies = [
|
830
879
|
"alloc-no-stdlib",
|
831
880
|
"alloc-stdlib",
|
@@ -833,15 +882,15 @@ dependencies = [
|
|
833
882
|
|
834
883
|
[[package]]
|
835
884
|
name = "bumpalo"
|
836
|
-
version = "3.
|
885
|
+
version = "3.17.0"
|
837
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
838
|
-
checksum = "
|
887
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
839
888
|
|
840
889
|
[[package]]
|
841
890
|
name = "bytemuck"
|
842
|
-
version = "1.
|
891
|
+
version = "1.23.0"
|
843
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "
|
893
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
845
894
|
|
846
895
|
[[package]]
|
847
896
|
name = "byteorder"
|
@@ -851,9 +900,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
851
900
|
|
852
901
|
[[package]]
|
853
902
|
name = "bytes"
|
854
|
-
version = "1.
|
903
|
+
version = "1.10.1"
|
855
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
-
checksum = "
|
905
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
857
906
|
|
858
907
|
[[package]]
|
859
908
|
name = "bytes-utils"
|
@@ -867,40 +916,28 @@ dependencies = [
|
|
867
916
|
|
868
917
|
[[package]]
|
869
918
|
name = "bzip2"
|
870
|
-
version = "0.
|
871
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
872
|
-
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
873
|
-
dependencies = [
|
874
|
-
"bzip2-sys",
|
875
|
-
"libc",
|
876
|
-
]
|
877
|
-
|
878
|
-
[[package]]
|
879
|
-
name = "bzip2"
|
880
|
-
version = "0.5.0"
|
919
|
+
version = "0.5.2"
|
881
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
-
checksum = "
|
921
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
883
922
|
dependencies = [
|
884
923
|
"bzip2-sys",
|
885
|
-
"libc",
|
886
924
|
]
|
887
925
|
|
888
926
|
[[package]]
|
889
927
|
name = "bzip2-sys"
|
890
|
-
version = "0.1.
|
928
|
+
version = "0.1.13+1.0.8"
|
891
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
-
checksum = "
|
930
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
893
931
|
dependencies = [
|
894
932
|
"cc",
|
895
|
-
"libc",
|
896
933
|
"pkg-config",
|
897
934
|
]
|
898
935
|
|
899
936
|
[[package]]
|
900
937
|
name = "cc"
|
901
|
-
version = "1.2.
|
938
|
+
version = "1.2.21"
|
902
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
-
checksum = "
|
940
|
+
checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
|
904
941
|
dependencies = [
|
905
942
|
"jobserver",
|
906
943
|
"libc",
|
@@ -930,9 +967,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
930
967
|
|
931
968
|
[[package]]
|
932
969
|
name = "chrono"
|
933
|
-
version = "0.4.
|
970
|
+
version = "0.4.41"
|
934
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
935
|
-
checksum = "
|
972
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
936
973
|
dependencies = [
|
937
974
|
"android-tzdata",
|
938
975
|
"iana-time-zone",
|
@@ -940,14 +977,14 @@ dependencies = [
|
|
940
977
|
"num-traits",
|
941
978
|
"serde",
|
942
979
|
"wasm-bindgen",
|
943
|
-
"windows-
|
980
|
+
"windows-link",
|
944
981
|
]
|
945
982
|
|
946
983
|
[[package]]
|
947
984
|
name = "chrono-tz"
|
948
|
-
version = "0.10.
|
985
|
+
version = "0.10.3"
|
949
986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
950
|
-
checksum = "
|
987
|
+
checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
|
951
988
|
dependencies = [
|
952
989
|
"chrono",
|
953
990
|
"chrono-tz-build",
|
@@ -956,9 +993,9 @@ dependencies = [
|
|
956
993
|
|
957
994
|
[[package]]
|
958
995
|
name = "chrono-tz-build"
|
959
|
-
version = "0.4.
|
996
|
+
version = "0.4.1"
|
960
997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
-
checksum = "
|
998
|
+
checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
|
962
999
|
dependencies = [
|
963
1000
|
"parse-zoneinfo",
|
964
1001
|
"phf_codegen",
|
@@ -975,14 +1012,22 @@ dependencies = [
|
|
975
1012
|
"libloading",
|
976
1013
|
]
|
977
1014
|
|
1015
|
+
[[package]]
|
1016
|
+
name = "cmake"
|
1017
|
+
version = "0.1.54"
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
+
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
|
1020
|
+
dependencies = [
|
1021
|
+
"cc",
|
1022
|
+
]
|
1023
|
+
|
978
1024
|
[[package]]
|
979
1025
|
name = "comfy-table"
|
980
|
-
version = "7.1.
|
1026
|
+
version = "7.1.4"
|
981
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
982
|
-
checksum = "
|
1028
|
+
checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
|
983
1029
|
dependencies = [
|
984
|
-
"
|
985
|
-
"strum_macros",
|
1030
|
+
"unicode-segmentation",
|
986
1031
|
"unicode-width",
|
987
1032
|
]
|
988
1033
|
|
@@ -1001,7 +1046,7 @@ version = "0.1.16"
|
|
1001
1046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1002
1047
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
1003
1048
|
dependencies = [
|
1004
|
-
"getrandom",
|
1049
|
+
"getrandom 0.2.16",
|
1005
1050
|
"once_cell",
|
1006
1051
|
"tiny-keccak",
|
1007
1052
|
]
|
@@ -1012,6 +1057,15 @@ version = "0.3.1"
|
|
1012
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
1058
|
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
1014
1059
|
|
1060
|
+
[[package]]
|
1061
|
+
name = "convert_case"
|
1062
|
+
version = "0.8.0"
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
+
checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
|
1065
|
+
dependencies = [
|
1066
|
+
"unicode-segmentation",
|
1067
|
+
]
|
1068
|
+
|
1015
1069
|
[[package]]
|
1016
1070
|
name = "core-foundation"
|
1017
1071
|
version = "0.9.4"
|
@@ -1092,9 +1146,9 @@ dependencies = [
|
|
1092
1146
|
|
1093
1147
|
[[package]]
|
1094
1148
|
name = "csv-core"
|
1095
|
-
version = "0.1.
|
1149
|
+
version = "0.1.12"
|
1096
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1097
|
-
checksum = "
|
1151
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
1098
1152
|
dependencies = [
|
1099
1153
|
"memchr",
|
1100
1154
|
]
|
@@ -1115,50 +1169,53 @@ dependencies = [
|
|
1115
1169
|
|
1116
1170
|
[[package]]
|
1117
1171
|
name = "datafusion"
|
1118
|
-
version = "
|
1172
|
+
version = "47.0.0"
|
1119
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
-
checksum = "
|
1174
|
+
checksum = "ffe060b978f74ab446be722adb8a274e052e005bf6dfd171caadc3abaad10080"
|
1121
1175
|
dependencies = [
|
1122
1176
|
"arrow",
|
1123
|
-
"arrow-array",
|
1124
1177
|
"arrow-ipc",
|
1125
1178
|
"arrow-schema",
|
1126
|
-
"async-compression",
|
1127
1179
|
"async-trait",
|
1128
1180
|
"bytes",
|
1129
|
-
"bzip2
|
1181
|
+
"bzip2",
|
1130
1182
|
"chrono",
|
1131
|
-
"dashmap",
|
1132
1183
|
"datafusion-catalog",
|
1184
|
+
"datafusion-catalog-listing",
|
1133
1185
|
"datafusion-common",
|
1134
1186
|
"datafusion-common-runtime",
|
1187
|
+
"datafusion-datasource",
|
1188
|
+
"datafusion-datasource-csv",
|
1189
|
+
"datafusion-datasource-json",
|
1190
|
+
"datafusion-datasource-parquet",
|
1135
1191
|
"datafusion-execution",
|
1136
1192
|
"datafusion-expr",
|
1193
|
+
"datafusion-expr-common",
|
1137
1194
|
"datafusion-functions",
|
1138
1195
|
"datafusion-functions-aggregate",
|
1139
1196
|
"datafusion-functions-nested",
|
1140
1197
|
"datafusion-functions-table",
|
1141
1198
|
"datafusion-functions-window",
|
1199
|
+
"datafusion-macros",
|
1142
1200
|
"datafusion-optimizer",
|
1143
1201
|
"datafusion-physical-expr",
|
1144
1202
|
"datafusion-physical-expr-common",
|
1145
1203
|
"datafusion-physical-optimizer",
|
1146
1204
|
"datafusion-physical-plan",
|
1205
|
+
"datafusion-session",
|
1147
1206
|
"datafusion-sql",
|
1148
1207
|
"flate2",
|
1149
1208
|
"futures",
|
1150
|
-
"
|
1151
|
-
"itertools 0.13.0",
|
1209
|
+
"itertools 0.14.0",
|
1152
1210
|
"log",
|
1153
1211
|
"object_store",
|
1154
1212
|
"parking_lot",
|
1155
1213
|
"parquet",
|
1156
|
-
"rand",
|
1214
|
+
"rand 0.8.5",
|
1157
1215
|
"regex",
|
1158
|
-
"sqlparser",
|
1216
|
+
"sqlparser 0.55.0",
|
1159
1217
|
"tempfile",
|
1160
1218
|
"tokio",
|
1161
|
-
"tokio-util",
|
1162
1219
|
"url",
|
1163
1220
|
"uuid",
|
1164
1221
|
"xz2",
|
@@ -1167,30 +1224,63 @@ dependencies = [
|
|
1167
1224
|
|
1168
1225
|
[[package]]
|
1169
1226
|
name = "datafusion-catalog"
|
1170
|
-
version = "
|
1227
|
+
version = "47.0.0"
|
1171
1228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1172
|
-
checksum = "
|
1229
|
+
checksum = "61fe34f401bd03724a1f96d12108144f8cd495a3cdda2bf5e091822fb80b7e66"
|
1173
1230
|
dependencies = [
|
1174
|
-
"arrow
|
1231
|
+
"arrow",
|
1175
1232
|
"async-trait",
|
1233
|
+
"dashmap",
|
1176
1234
|
"datafusion-common",
|
1235
|
+
"datafusion-common-runtime",
|
1236
|
+
"datafusion-datasource",
|
1177
1237
|
"datafusion-execution",
|
1178
1238
|
"datafusion-expr",
|
1239
|
+
"datafusion-physical-expr",
|
1179
1240
|
"datafusion-physical-plan",
|
1241
|
+
"datafusion-session",
|
1242
|
+
"datafusion-sql",
|
1243
|
+
"futures",
|
1244
|
+
"itertools 0.14.0",
|
1245
|
+
"log",
|
1246
|
+
"object_store",
|
1180
1247
|
"parking_lot",
|
1248
|
+
"tokio",
|
1249
|
+
]
|
1250
|
+
|
1251
|
+
[[package]]
|
1252
|
+
name = "datafusion-catalog-listing"
|
1253
|
+
version = "47.0.0"
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
|
+
checksum = "a4411b8e3bce5e0fc7521e44f201def2e2d5d1b5f176fb56e8cdc9942c890f00"
|
1256
|
+
dependencies = [
|
1257
|
+
"arrow",
|
1258
|
+
"async-trait",
|
1259
|
+
"datafusion-catalog",
|
1260
|
+
"datafusion-common",
|
1261
|
+
"datafusion-datasource",
|
1262
|
+
"datafusion-execution",
|
1263
|
+
"datafusion-expr",
|
1264
|
+
"datafusion-physical-expr",
|
1265
|
+
"datafusion-physical-expr-common",
|
1266
|
+
"datafusion-physical-plan",
|
1267
|
+
"datafusion-session",
|
1268
|
+
"futures",
|
1269
|
+
"log",
|
1270
|
+
"object_store",
|
1271
|
+
"tokio",
|
1181
1272
|
]
|
1182
1273
|
|
1183
1274
|
[[package]]
|
1184
1275
|
name = "datafusion-common"
|
1185
|
-
version = "
|
1276
|
+
version = "47.0.0"
|
1186
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
-
checksum = "
|
1278
|
+
checksum = "0734015d81c8375eb5d4869b7f7ecccc2ee8d6cb81948ef737cd0e7b743bd69c"
|
1188
1279
|
dependencies = [
|
1189
1280
|
"ahash",
|
1190
1281
|
"arrow",
|
1191
|
-
"arrow-
|
1192
|
-
"
|
1193
|
-
"arrow-schema",
|
1282
|
+
"arrow-ipc",
|
1283
|
+
"base64 0.22.1",
|
1194
1284
|
"half",
|
1195
1285
|
"hashbrown 0.14.5",
|
1196
1286
|
"indexmap",
|
@@ -1200,32 +1290,150 @@ dependencies = [
|
|
1200
1290
|
"parquet",
|
1201
1291
|
"paste",
|
1202
1292
|
"recursive",
|
1203
|
-
"sqlparser",
|
1293
|
+
"sqlparser 0.55.0",
|
1204
1294
|
"tokio",
|
1205
1295
|
"web-time",
|
1206
1296
|
]
|
1207
1297
|
|
1208
1298
|
[[package]]
|
1209
1299
|
name = "datafusion-common-runtime"
|
1210
|
-
version = "
|
1300
|
+
version = "47.0.0"
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1302
|
+
checksum = "5167bb1d2ccbb87c6bc36c295274d7a0519b14afcfdaf401d53cbcaa4ef4968b"
|
1303
|
+
dependencies = [
|
1304
|
+
"futures",
|
1305
|
+
"log",
|
1306
|
+
"tokio",
|
1307
|
+
]
|
1308
|
+
|
1309
|
+
[[package]]
|
1310
|
+
name = "datafusion-datasource"
|
1311
|
+
version = "47.0.0"
|
1211
1312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1212
|
-
checksum = "
|
1313
|
+
checksum = "04e602dcdf2f50c2abf297cc2203c73531e6f48b29516af7695d338cf2a778b1"
|
1213
1314
|
dependencies = [
|
1315
|
+
"arrow",
|
1316
|
+
"async-compression",
|
1317
|
+
"async-trait",
|
1318
|
+
"bytes",
|
1319
|
+
"bzip2",
|
1320
|
+
"chrono",
|
1321
|
+
"datafusion-common",
|
1322
|
+
"datafusion-common-runtime",
|
1323
|
+
"datafusion-execution",
|
1324
|
+
"datafusion-expr",
|
1325
|
+
"datafusion-physical-expr",
|
1326
|
+
"datafusion-physical-expr-common",
|
1327
|
+
"datafusion-physical-plan",
|
1328
|
+
"datafusion-session",
|
1329
|
+
"flate2",
|
1330
|
+
"futures",
|
1331
|
+
"glob",
|
1332
|
+
"itertools 0.14.0",
|
1214
1333
|
"log",
|
1334
|
+
"object_store",
|
1335
|
+
"parquet",
|
1336
|
+
"rand 0.8.5",
|
1337
|
+
"tempfile",
|
1338
|
+
"tokio",
|
1339
|
+
"tokio-util",
|
1340
|
+
"url",
|
1341
|
+
"xz2",
|
1342
|
+
"zstd",
|
1343
|
+
]
|
1344
|
+
|
1345
|
+
[[package]]
|
1346
|
+
name = "datafusion-datasource-csv"
|
1347
|
+
version = "47.0.0"
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1349
|
+
checksum = "e3bb2253952dc32296ed5b84077cb2e0257fea4be6373e1c376426e17ead4ef6"
|
1350
|
+
dependencies = [
|
1351
|
+
"arrow",
|
1352
|
+
"async-trait",
|
1353
|
+
"bytes",
|
1354
|
+
"datafusion-catalog",
|
1355
|
+
"datafusion-common",
|
1356
|
+
"datafusion-common-runtime",
|
1357
|
+
"datafusion-datasource",
|
1358
|
+
"datafusion-execution",
|
1359
|
+
"datafusion-expr",
|
1360
|
+
"datafusion-physical-expr",
|
1361
|
+
"datafusion-physical-expr-common",
|
1362
|
+
"datafusion-physical-plan",
|
1363
|
+
"datafusion-session",
|
1364
|
+
"futures",
|
1365
|
+
"object_store",
|
1366
|
+
"regex",
|
1367
|
+
"tokio",
|
1368
|
+
]
|
1369
|
+
|
1370
|
+
[[package]]
|
1371
|
+
name = "datafusion-datasource-json"
|
1372
|
+
version = "47.0.0"
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
+
checksum = "5b8c7f47a5d2fe03bfa521ec9bafdb8a5c82de8377f60967c3663f00c8790352"
|
1375
|
+
dependencies = [
|
1376
|
+
"arrow",
|
1377
|
+
"async-trait",
|
1378
|
+
"bytes",
|
1379
|
+
"datafusion-catalog",
|
1380
|
+
"datafusion-common",
|
1381
|
+
"datafusion-common-runtime",
|
1382
|
+
"datafusion-datasource",
|
1383
|
+
"datafusion-execution",
|
1384
|
+
"datafusion-expr",
|
1385
|
+
"datafusion-physical-expr",
|
1386
|
+
"datafusion-physical-expr-common",
|
1387
|
+
"datafusion-physical-plan",
|
1388
|
+
"datafusion-session",
|
1389
|
+
"futures",
|
1390
|
+
"object_store",
|
1391
|
+
"serde_json",
|
1392
|
+
"tokio",
|
1393
|
+
]
|
1394
|
+
|
1395
|
+
[[package]]
|
1396
|
+
name = "datafusion-datasource-parquet"
|
1397
|
+
version = "47.0.0"
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
+
checksum = "27d15868ea39ed2dc266728b554f6304acd473de2142281ecfa1294bb7415923"
|
1400
|
+
dependencies = [
|
1401
|
+
"arrow",
|
1402
|
+
"async-trait",
|
1403
|
+
"bytes",
|
1404
|
+
"datafusion-catalog",
|
1405
|
+
"datafusion-common",
|
1406
|
+
"datafusion-common-runtime",
|
1407
|
+
"datafusion-datasource",
|
1408
|
+
"datafusion-execution",
|
1409
|
+
"datafusion-expr",
|
1410
|
+
"datafusion-functions-aggregate",
|
1411
|
+
"datafusion-physical-expr",
|
1412
|
+
"datafusion-physical-expr-common",
|
1413
|
+
"datafusion-physical-optimizer",
|
1414
|
+
"datafusion-physical-plan",
|
1415
|
+
"datafusion-session",
|
1416
|
+
"futures",
|
1417
|
+
"itertools 0.14.0",
|
1418
|
+
"log",
|
1419
|
+
"object_store",
|
1420
|
+
"parking_lot",
|
1421
|
+
"parquet",
|
1422
|
+
"rand 0.8.5",
|
1215
1423
|
"tokio",
|
1216
1424
|
]
|
1217
1425
|
|
1218
1426
|
[[package]]
|
1219
1427
|
name = "datafusion-doc"
|
1220
|
-
version = "
|
1428
|
+
version = "47.0.0"
|
1221
1429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1222
|
-
checksum = "
|
1430
|
+
checksum = "a91f8c2c5788ef32f48ff56c68e5b545527b744822a284373ac79bba1ba47292"
|
1223
1431
|
|
1224
1432
|
[[package]]
|
1225
1433
|
name = "datafusion-execution"
|
1226
|
-
version = "
|
1434
|
+
version = "47.0.0"
|
1227
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1228
|
-
checksum = "
|
1436
|
+
checksum = "06f004d100f49a3658c9da6fb0c3a9b760062d96cd4ad82ccc3b7b69a9fb2f84"
|
1229
1437
|
dependencies = [
|
1230
1438
|
"arrow",
|
1231
1439
|
"dashmap",
|
@@ -1235,16 +1443,16 @@ dependencies = [
|
|
1235
1443
|
"log",
|
1236
1444
|
"object_store",
|
1237
1445
|
"parking_lot",
|
1238
|
-
"rand",
|
1446
|
+
"rand 0.8.5",
|
1239
1447
|
"tempfile",
|
1240
1448
|
"url",
|
1241
1449
|
]
|
1242
1450
|
|
1243
1451
|
[[package]]
|
1244
1452
|
name = "datafusion-expr"
|
1245
|
-
version = "
|
1453
|
+
version = "47.0.0"
|
1246
1454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1247
|
-
checksum = "
|
1455
|
+
checksum = "7a4e4ce3802609be38eeb607ee72f6fe86c3091460de9dbfae9e18db423b3964"
|
1248
1456
|
dependencies = [
|
1249
1457
|
"arrow",
|
1250
1458
|
"chrono",
|
@@ -1258,25 +1466,27 @@ dependencies = [
|
|
1258
1466
|
"paste",
|
1259
1467
|
"recursive",
|
1260
1468
|
"serde_json",
|
1261
|
-
"sqlparser",
|
1469
|
+
"sqlparser 0.55.0",
|
1262
1470
|
]
|
1263
1471
|
|
1264
1472
|
[[package]]
|
1265
1473
|
name = "datafusion-expr-common"
|
1266
|
-
version = "
|
1474
|
+
version = "47.0.0"
|
1267
1475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1268
|
-
checksum = "
|
1476
|
+
checksum = "422ac9cf3b22bbbae8cdf8ceb33039107fde1b5492693168f13bd566b1bcc839"
|
1269
1477
|
dependencies = [
|
1270
1478
|
"arrow",
|
1271
1479
|
"datafusion-common",
|
1272
|
-
"
|
1480
|
+
"indexmap",
|
1481
|
+
"itertools 0.14.0",
|
1482
|
+
"paste",
|
1273
1483
|
]
|
1274
1484
|
|
1275
1485
|
[[package]]
|
1276
1486
|
name = "datafusion-functions"
|
1277
|
-
version = "
|
1487
|
+
version = "47.0.0"
|
1278
1488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
-
checksum = "
|
1489
|
+
checksum = "2ddf0a0a2db5d2918349c978d42d80926c6aa2459cd8a3c533a84ec4bb63479e"
|
1280
1490
|
dependencies = [
|
1281
1491
|
"arrow",
|
1282
1492
|
"arrow-buffer",
|
@@ -1290,12 +1500,11 @@ dependencies = [
|
|
1290
1500
|
"datafusion-expr",
|
1291
1501
|
"datafusion-expr-common",
|
1292
1502
|
"datafusion-macros",
|
1293
|
-
"hashbrown 0.14.5",
|
1294
1503
|
"hex",
|
1295
|
-
"itertools 0.
|
1504
|
+
"itertools 0.14.0",
|
1296
1505
|
"log",
|
1297
1506
|
"md-5",
|
1298
|
-
"rand",
|
1507
|
+
"rand 0.8.5",
|
1299
1508
|
"regex",
|
1300
1509
|
"sha2",
|
1301
1510
|
"unicode-segmentation",
|
@@ -1304,13 +1513,12 @@ dependencies = [
|
|
1304
1513
|
|
1305
1514
|
[[package]]
|
1306
1515
|
name = "datafusion-functions-aggregate"
|
1307
|
-
version = "
|
1516
|
+
version = "47.0.0"
|
1308
1517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1309
|
-
checksum = "
|
1518
|
+
checksum = "408a05dafdc70d05a38a29005b8b15e21b0238734dab1e98483fcb58038c5aba"
|
1310
1519
|
dependencies = [
|
1311
1520
|
"ahash",
|
1312
1521
|
"arrow",
|
1313
|
-
"arrow-schema",
|
1314
1522
|
"datafusion-common",
|
1315
1523
|
"datafusion-doc",
|
1316
1524
|
"datafusion-execution",
|
@@ -1326,9 +1534,9 @@ dependencies = [
|
|
1326
1534
|
|
1327
1535
|
[[package]]
|
1328
1536
|
name = "datafusion-functions-aggregate-common"
|
1329
|
-
version = "
|
1537
|
+
version = "47.0.0"
|
1330
1538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1331
|
-
checksum = "
|
1539
|
+
checksum = "756d21da2dd6c9bef97af1504970ff56cbf35d03fbd4ffd62827f02f4d2279d4"
|
1332
1540
|
dependencies = [
|
1333
1541
|
"ahash",
|
1334
1542
|
"arrow",
|
@@ -1339,31 +1547,30 @@ dependencies = [
|
|
1339
1547
|
|
1340
1548
|
[[package]]
|
1341
1549
|
name = "datafusion-functions-nested"
|
1342
|
-
version = "
|
1550
|
+
version = "47.0.0"
|
1343
1551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1344
|
-
checksum = "
|
1552
|
+
checksum = "8d8d50f6334b378930d992d801a10ac5b3e93b846b39e4a05085742572844537"
|
1345
1553
|
dependencies = [
|
1346
1554
|
"arrow",
|
1347
|
-
"arrow-array",
|
1348
|
-
"arrow-buffer",
|
1349
1555
|
"arrow-ord",
|
1350
|
-
"arrow-schema",
|
1351
1556
|
"datafusion-common",
|
1557
|
+
"datafusion-doc",
|
1352
1558
|
"datafusion-execution",
|
1353
1559
|
"datafusion-expr",
|
1354
1560
|
"datafusion-functions",
|
1355
1561
|
"datafusion-functions-aggregate",
|
1562
|
+
"datafusion-macros",
|
1356
1563
|
"datafusion-physical-expr-common",
|
1357
|
-
"itertools 0.
|
1564
|
+
"itertools 0.14.0",
|
1358
1565
|
"log",
|
1359
1566
|
"paste",
|
1360
1567
|
]
|
1361
1568
|
|
1362
1569
|
[[package]]
|
1363
1570
|
name = "datafusion-functions-table"
|
1364
|
-
version = "
|
1571
|
+
version = "47.0.0"
|
1365
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1366
|
-
checksum = "
|
1573
|
+
checksum = "cc9a97220736c8fff1446e936be90d57216c06f28969f9ffd3b72ac93c958c8a"
|
1367
1574
|
dependencies = [
|
1368
1575
|
"arrow",
|
1369
1576
|
"async-trait",
|
@@ -1377,9 +1584,9 @@ dependencies = [
|
|
1377
1584
|
|
1378
1585
|
[[package]]
|
1379
1586
|
name = "datafusion-functions-window"
|
1380
|
-
version = "
|
1587
|
+
version = "47.0.0"
|
1381
1588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1382
|
-
checksum = "
|
1589
|
+
checksum = "cefc2d77646e1aadd1d6a9c40088937aedec04e68c5f0465939912e1291f8193"
|
1383
1590
|
dependencies = [
|
1384
1591
|
"datafusion-common",
|
1385
1592
|
"datafusion-doc",
|
@@ -1394,9 +1601,9 @@ dependencies = [
|
|
1394
1601
|
|
1395
1602
|
[[package]]
|
1396
1603
|
name = "datafusion-functions-window-common"
|
1397
|
-
version = "
|
1604
|
+
version = "47.0.0"
|
1398
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
-
checksum = "
|
1606
|
+
checksum = "dd4aff082c42fa6da99ce0698c85addd5252928c908eb087ca3cfa64ff16b313"
|
1400
1607
|
dependencies = [
|
1401
1608
|
"datafusion-common",
|
1402
1609
|
"datafusion-physical-expr-common",
|
@@ -1404,19 +1611,20 @@ dependencies = [
|
|
1404
1611
|
|
1405
1612
|
[[package]]
|
1406
1613
|
name = "datafusion-macros"
|
1407
|
-
version = "
|
1614
|
+
version = "47.0.0"
|
1408
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1409
|
-
checksum = "
|
1616
|
+
checksum = "df6f88d7ee27daf8b108ba910f9015176b36fbc72902b1ca5c2a5f1d1717e1a1"
|
1410
1617
|
dependencies = [
|
1618
|
+
"datafusion-expr",
|
1411
1619
|
"quote",
|
1412
|
-
"syn
|
1620
|
+
"syn",
|
1413
1621
|
]
|
1414
1622
|
|
1415
1623
|
[[package]]
|
1416
1624
|
name = "datafusion-optimizer"
|
1417
|
-
version = "
|
1625
|
+
version = "47.0.0"
|
1418
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1419
|
-
checksum = "
|
1627
|
+
checksum = "084d9f979c4b155346d3c34b18f4256e6904ded508e9554d90fed416415c3515"
|
1420
1628
|
dependencies = [
|
1421
1629
|
"arrow",
|
1422
1630
|
"chrono",
|
@@ -1424,7 +1632,7 @@ dependencies = [
|
|
1424
1632
|
"datafusion-expr",
|
1425
1633
|
"datafusion-physical-expr",
|
1426
1634
|
"indexmap",
|
1427
|
-
"itertools 0.
|
1635
|
+
"itertools 0.14.0",
|
1428
1636
|
"log",
|
1429
1637
|
"recursive",
|
1430
1638
|
"regex",
|
@@ -1433,15 +1641,12 @@ dependencies = [
|
|
1433
1641
|
|
1434
1642
|
[[package]]
|
1435
1643
|
name = "datafusion-physical-expr"
|
1436
|
-
version = "
|
1644
|
+
version = "47.0.0"
|
1437
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1438
|
-
checksum = "
|
1646
|
+
checksum = "64c536062b0076f4e30084065d805f389f9fe38af0ca75bcbac86bc5e9fbab65"
|
1439
1647
|
dependencies = [
|
1440
1648
|
"ahash",
|
1441
1649
|
"arrow",
|
1442
|
-
"arrow-array",
|
1443
|
-
"arrow-buffer",
|
1444
|
-
"arrow-schema",
|
1445
1650
|
"datafusion-common",
|
1446
1651
|
"datafusion-expr",
|
1447
1652
|
"datafusion-expr-common",
|
@@ -1450,7 +1655,7 @@ dependencies = [
|
|
1450
1655
|
"half",
|
1451
1656
|
"hashbrown 0.14.5",
|
1452
1657
|
"indexmap",
|
1453
|
-
"itertools 0.
|
1658
|
+
"itertools 0.14.0",
|
1454
1659
|
"log",
|
1455
1660
|
"paste",
|
1456
1661
|
"petgraph",
|
@@ -1458,45 +1663,45 @@ dependencies = [
|
|
1458
1663
|
|
1459
1664
|
[[package]]
|
1460
1665
|
name = "datafusion-physical-expr-common"
|
1461
|
-
version = "
|
1666
|
+
version = "47.0.0"
|
1462
1667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1463
|
-
checksum = "
|
1668
|
+
checksum = "f8a92b53b3193fac1916a1c5b8e3f4347c526f6822e56b71faa5fb372327a863"
|
1464
1669
|
dependencies = [
|
1465
1670
|
"ahash",
|
1466
1671
|
"arrow",
|
1467
1672
|
"datafusion-common",
|
1468
1673
|
"datafusion-expr-common",
|
1469
1674
|
"hashbrown 0.14.5",
|
1470
|
-
"itertools 0.
|
1675
|
+
"itertools 0.14.0",
|
1471
1676
|
]
|
1472
1677
|
|
1473
1678
|
[[package]]
|
1474
1679
|
name = "datafusion-physical-optimizer"
|
1475
|
-
version = "
|
1680
|
+
version = "47.0.0"
|
1476
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1477
|
-
checksum = "
|
1682
|
+
checksum = "6fa0a5ac94c7cf3da97bedabd69d6bbca12aef84b9b37e6e9e8c25286511b5e2"
|
1478
1683
|
dependencies = [
|
1479
1684
|
"arrow",
|
1480
1685
|
"datafusion-common",
|
1481
1686
|
"datafusion-execution",
|
1687
|
+
"datafusion-expr",
|
1482
1688
|
"datafusion-expr-common",
|
1483
1689
|
"datafusion-physical-expr",
|
1690
|
+
"datafusion-physical-expr-common",
|
1484
1691
|
"datafusion-physical-plan",
|
1485
|
-
"itertools 0.
|
1692
|
+
"itertools 0.14.0",
|
1486
1693
|
"log",
|
1487
1694
|
"recursive",
|
1488
1695
|
]
|
1489
1696
|
|
1490
1697
|
[[package]]
|
1491
1698
|
name = "datafusion-physical-plan"
|
1492
|
-
version = "
|
1699
|
+
version = "47.0.0"
|
1493
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1494
|
-
checksum = "
|
1701
|
+
checksum = "690c615db468c2e5fe5085b232d8b1c088299a6c63d87fd960a354a71f7acb55"
|
1495
1702
|
dependencies = [
|
1496
1703
|
"ahash",
|
1497
1704
|
"arrow",
|
1498
|
-
"arrow-array",
|
1499
|
-
"arrow-buffer",
|
1500
1705
|
"arrow-ord",
|
1501
1706
|
"arrow-schema",
|
1502
1707
|
"async-trait",
|
@@ -1512,7 +1717,7 @@ dependencies = [
|
|
1512
1717
|
"half",
|
1513
1718
|
"hashbrown 0.14.5",
|
1514
1719
|
"indexmap",
|
1515
|
-
"itertools 0.
|
1720
|
+
"itertools 0.14.0",
|
1516
1721
|
"log",
|
1517
1722
|
"parking_lot",
|
1518
1723
|
"pin-project-lite",
|
@@ -1521,9 +1726,9 @@ dependencies = [
|
|
1521
1726
|
|
1522
1727
|
[[package]]
|
1523
1728
|
name = "datafusion-proto"
|
1524
|
-
version = "
|
1729
|
+
version = "47.0.0"
|
1525
1730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1526
|
-
checksum = "
|
1731
|
+
checksum = "a4a1afb2bdb05de7ff65be6883ebfd4ec027bd9f1f21c46aa3afd01927160a83"
|
1527
1732
|
dependencies = [
|
1528
1733
|
"arrow",
|
1529
1734
|
"chrono",
|
@@ -1537,24 +1742,46 @@ dependencies = [
|
|
1537
1742
|
|
1538
1743
|
[[package]]
|
1539
1744
|
name = "datafusion-proto-common"
|
1540
|
-
version = "
|
1745
|
+
version = "47.0.0"
|
1541
1746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1542
|
-
checksum = "
|
1747
|
+
checksum = "35b7a5876ebd6b564fb9a1fd2c3a2a9686b787071a256b47e4708f0916f9e46f"
|
1543
1748
|
dependencies = [
|
1544
1749
|
"arrow",
|
1545
1750
|
"datafusion-common",
|
1546
1751
|
"prost",
|
1547
1752
|
]
|
1548
1753
|
|
1754
|
+
[[package]]
|
1755
|
+
name = "datafusion-session"
|
1756
|
+
version = "47.0.0"
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1758
|
+
checksum = "ad229a134c7406c057ece00c8743c0c34b97f4e72f78b475fe17b66c5e14fa4f"
|
1759
|
+
dependencies = [
|
1760
|
+
"arrow",
|
1761
|
+
"async-trait",
|
1762
|
+
"dashmap",
|
1763
|
+
"datafusion-common",
|
1764
|
+
"datafusion-common-runtime",
|
1765
|
+
"datafusion-execution",
|
1766
|
+
"datafusion-expr",
|
1767
|
+
"datafusion-physical-expr",
|
1768
|
+
"datafusion-physical-plan",
|
1769
|
+
"datafusion-sql",
|
1770
|
+
"futures",
|
1771
|
+
"itertools 0.14.0",
|
1772
|
+
"log",
|
1773
|
+
"object_store",
|
1774
|
+
"parking_lot",
|
1775
|
+
"tokio",
|
1776
|
+
]
|
1777
|
+
|
1549
1778
|
[[package]]
|
1550
1779
|
name = "datafusion-sql"
|
1551
|
-
version = "
|
1780
|
+
version = "47.0.0"
|
1552
1781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1553
|
-
checksum = "
|
1782
|
+
checksum = "64f6ab28b72b664c21a27b22a2ff815fd390ed224c26e89a93b5a8154a4e8607"
|
1554
1783
|
dependencies = [
|
1555
1784
|
"arrow",
|
1556
|
-
"arrow-array",
|
1557
|
-
"arrow-schema",
|
1558
1785
|
"bigdecimal",
|
1559
1786
|
"datafusion-common",
|
1560
1787
|
"datafusion-expr",
|
@@ -1562,30 +1789,22 @@ dependencies = [
|
|
1562
1789
|
"log",
|
1563
1790
|
"recursive",
|
1564
1791
|
"regex",
|
1565
|
-
"sqlparser",
|
1792
|
+
"sqlparser 0.55.0",
|
1566
1793
|
]
|
1567
1794
|
|
1568
1795
|
[[package]]
|
1569
1796
|
name = "delta_kernel"
|
1570
|
-
version = "0.
|
1797
|
+
version = "0.10.0"
|
1571
1798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1572
|
-
checksum = "
|
1799
|
+
checksum = "c96f51383ba327a1403e6e3458f8fc979d09d7200af56fa32681619f6c760dee"
|
1573
1800
|
dependencies = [
|
1574
|
-
"arrow
|
1575
|
-
"arrow-array",
|
1576
|
-
"arrow-buffer",
|
1577
|
-
"arrow-cast",
|
1578
|
-
"arrow-json",
|
1579
|
-
"arrow-ord",
|
1580
|
-
"arrow-schema",
|
1581
|
-
"arrow-select",
|
1801
|
+
"arrow",
|
1582
1802
|
"bytes",
|
1583
1803
|
"chrono",
|
1584
1804
|
"delta_kernel_derive",
|
1585
|
-
"fix-hidden-lifetime-bug",
|
1586
1805
|
"futures",
|
1587
1806
|
"indexmap",
|
1588
|
-
"itertools 0.
|
1807
|
+
"itertools 0.14.0",
|
1589
1808
|
"object_store",
|
1590
1809
|
"parquet",
|
1591
1810
|
"reqwest",
|
@@ -1594,35 +1813,34 @@ dependencies = [
|
|
1594
1813
|
"serde",
|
1595
1814
|
"serde_json",
|
1596
1815
|
"strum",
|
1597
|
-
"thiserror
|
1816
|
+
"thiserror",
|
1598
1817
|
"tokio",
|
1599
1818
|
"tracing",
|
1600
1819
|
"url",
|
1601
1820
|
"uuid",
|
1602
|
-
"visibility",
|
1603
1821
|
"z85",
|
1604
1822
|
]
|
1605
1823
|
|
1606
1824
|
[[package]]
|
1607
1825
|
name = "delta_kernel_derive"
|
1608
|
-
version = "0.
|
1826
|
+
version = "0.10.0"
|
1609
1827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1610
|
-
checksum = "
|
1828
|
+
checksum = "f7b49a2e67ebafbe644e36f251ee985f237bfb39e4ef1e312eb5876535bc449e"
|
1611
1829
|
dependencies = [
|
1612
1830
|
"proc-macro2",
|
1613
1831
|
"quote",
|
1614
|
-
"syn
|
1832
|
+
"syn",
|
1615
1833
|
]
|
1616
1834
|
|
1617
1835
|
[[package]]
|
1618
1836
|
name = "deltalake"
|
1619
|
-
version = "0.1.
|
1837
|
+
version = "0.1.7"
|
1620
1838
|
dependencies = [
|
1621
1839
|
"arrow",
|
1622
1840
|
"arrow-schema",
|
1623
1841
|
"chrono",
|
1624
1842
|
"delta_kernel",
|
1625
|
-
"deltalake 0.
|
1843
|
+
"deltalake 0.26.0",
|
1626
1844
|
"futures",
|
1627
1845
|
"magnus",
|
1628
1846
|
"num_cpus",
|
@@ -1633,9 +1851,9 @@ dependencies = [
|
|
1633
1851
|
|
1634
1852
|
[[package]]
|
1635
1853
|
name = "deltalake"
|
1636
|
-
version = "0.
|
1854
|
+
version = "0.26.0"
|
1637
1855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1638
|
-
checksum = "
|
1856
|
+
checksum = "0b8446cdd15b2ba4b14785cb481ef39058f2b9709bb4ea2a5c6d9d4954c87cc8"
|
1639
1857
|
dependencies = [
|
1640
1858
|
"deltalake-aws",
|
1641
1859
|
"deltalake-azure",
|
@@ -1645,9 +1863,9 @@ dependencies = [
|
|
1645
1863
|
|
1646
1864
|
[[package]]
|
1647
1865
|
name = "deltalake-aws"
|
1648
|
-
version = "0.
|
1866
|
+
version = "0.9.0"
|
1649
1867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1650
|
-
checksum = "
|
1868
|
+
checksum = "3bc624a565514bfda7aedbc6aa0ce85505f207782669a046a6a4ce2f441d3aed"
|
1651
1869
|
dependencies = [
|
1652
1870
|
"async-trait",
|
1653
1871
|
"aws-config",
|
@@ -1663,7 +1881,7 @@ dependencies = [
|
|
1663
1881
|
"maplit",
|
1664
1882
|
"object_store",
|
1665
1883
|
"regex",
|
1666
|
-
"thiserror
|
1884
|
+
"thiserror",
|
1667
1885
|
"tokio",
|
1668
1886
|
"tracing",
|
1669
1887
|
"url",
|
@@ -1672,9 +1890,9 @@ dependencies = [
|
|
1672
1890
|
|
1673
1891
|
[[package]]
|
1674
1892
|
name = "deltalake-azure"
|
1675
|
-
version = "0.
|
1893
|
+
version = "0.9.0"
|
1676
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1677
|
-
checksum = "
|
1895
|
+
checksum = "cdbf912990d8c12a674b36198cbda77efcbf08ad510410f8206a966c101bccf0"
|
1678
1896
|
dependencies = [
|
1679
1897
|
"async-trait",
|
1680
1898
|
"bytes",
|
@@ -1682,7 +1900,7 @@ dependencies = [
|
|
1682
1900
|
"futures",
|
1683
1901
|
"object_store",
|
1684
1902
|
"regex",
|
1685
|
-
"thiserror
|
1903
|
+
"thiserror",
|
1686
1904
|
"tokio",
|
1687
1905
|
"tracing",
|
1688
1906
|
"url",
|
@@ -1690,9 +1908,9 @@ dependencies = [
|
|
1690
1908
|
|
1691
1909
|
[[package]]
|
1692
1910
|
name = "deltalake-core"
|
1693
|
-
version = "0.
|
1911
|
+
version = "0.26.0"
|
1694
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1695
|
-
checksum = "
|
1913
|
+
checksum = "6ed04cebb62011bdfdf4f3cccdda348cc092600d973ec005a80cb98c869f269a"
|
1696
1914
|
dependencies = [
|
1697
1915
|
"arrow",
|
1698
1916
|
"arrow-arith",
|
@@ -1720,15 +1938,12 @@ dependencies = [
|
|
1720
1938
|
"datafusion-proto",
|
1721
1939
|
"datafusion-sql",
|
1722
1940
|
"delta_kernel",
|
1941
|
+
"deltalake-derive",
|
1723
1942
|
"either",
|
1724
|
-
"errno",
|
1725
|
-
"fix-hidden-lifetime-bug",
|
1726
1943
|
"futures",
|
1727
|
-
"hashbrown 0.15.2",
|
1728
1944
|
"humantime",
|
1729
1945
|
"indexmap",
|
1730
1946
|
"itertools 0.14.0",
|
1731
|
-
"libc",
|
1732
1947
|
"maplit",
|
1733
1948
|
"num-bigint",
|
1734
1949
|
"num-traits",
|
@@ -1738,14 +1953,14 @@ dependencies = [
|
|
1738
1953
|
"parquet",
|
1739
1954
|
"percent-encoding",
|
1740
1955
|
"pin-project-lite",
|
1741
|
-
"rand",
|
1956
|
+
"rand 0.8.5",
|
1742
1957
|
"regex",
|
1743
1958
|
"roaring",
|
1744
1959
|
"serde",
|
1745
1960
|
"serde_json",
|
1746
|
-
"sqlparser",
|
1961
|
+
"sqlparser 0.53.0",
|
1747
1962
|
"strum",
|
1748
|
-
"thiserror
|
1963
|
+
"thiserror",
|
1749
1964
|
"tokio",
|
1750
1965
|
"tracing",
|
1751
1966
|
"url",
|
@@ -1754,11 +1969,24 @@ dependencies = [
|
|
1754
1969
|
"z85",
|
1755
1970
|
]
|
1756
1971
|
|
1972
|
+
[[package]]
|
1973
|
+
name = "deltalake-derive"
|
1974
|
+
version = "0.26.0"
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1976
|
+
checksum = "6bdd39efa077173455fa69c17437141d14ec6273a371d7d3d25ea7f30f61d4c9"
|
1977
|
+
dependencies = [
|
1978
|
+
"convert_case",
|
1979
|
+
"itertools 0.14.0",
|
1980
|
+
"proc-macro2",
|
1981
|
+
"quote",
|
1982
|
+
"syn",
|
1983
|
+
]
|
1984
|
+
|
1757
1985
|
[[package]]
|
1758
1986
|
name = "deltalake-gcp"
|
1759
|
-
version = "0.
|
1987
|
+
version = "0.10.0"
|
1760
1988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1761
|
-
checksum = "
|
1989
|
+
checksum = "d93ae26b5b578e19bf188a54676180dd8aee2f4c2b964f287702175004d98e11"
|
1762
1990
|
dependencies = [
|
1763
1991
|
"async-trait",
|
1764
1992
|
"bytes",
|
@@ -1766,7 +1994,7 @@ dependencies = [
|
|
1766
1994
|
"futures",
|
1767
1995
|
"object_store",
|
1768
1996
|
"regex",
|
1769
|
-
"thiserror
|
1997
|
+
"thiserror",
|
1770
1998
|
"tokio",
|
1771
1999
|
"tracing",
|
1772
2000
|
"url",
|
@@ -1774,9 +2002,9 @@ dependencies = [
|
|
1774
2002
|
|
1775
2003
|
[[package]]
|
1776
2004
|
name = "deranged"
|
1777
|
-
version = "0.
|
2005
|
+
version = "0.4.0"
|
1778
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1779
|
-
checksum = "
|
2007
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
1780
2008
|
dependencies = [
|
1781
2009
|
"powerfmt",
|
1782
2010
|
]
|
@@ -1800,35 +2028,32 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1800
2028
|
dependencies = [
|
1801
2029
|
"proc-macro2",
|
1802
2030
|
"quote",
|
1803
|
-
"syn
|
2031
|
+
"syn",
|
1804
2032
|
]
|
1805
2033
|
|
1806
2034
|
[[package]]
|
1807
|
-
name = "
|
1808
|
-
version = "1.
|
2035
|
+
name = "dunce"
|
2036
|
+
version = "1.0.5"
|
1809
2037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1810
|
-
checksum = "
|
2038
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
1811
2039
|
|
1812
2040
|
[[package]]
|
1813
|
-
name = "
|
1814
|
-
version = "
|
2041
|
+
name = "either"
|
2042
|
+
version = "1.15.0"
|
1815
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1816
|
-
checksum = "
|
1817
|
-
dependencies = [
|
1818
|
-
"cfg-if",
|
1819
|
-
]
|
2044
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
1820
2045
|
|
1821
2046
|
[[package]]
|
1822
2047
|
name = "equivalent"
|
1823
|
-
version = "1.0.
|
2048
|
+
version = "1.0.2"
|
1824
2049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1825
|
-
checksum = "
|
2050
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
1826
2051
|
|
1827
2052
|
[[package]]
|
1828
2053
|
name = "errno"
|
1829
|
-
version = "0.3.
|
2054
|
+
version = "0.3.11"
|
1830
2055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1831
|
-
checksum = "
|
2056
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
1832
2057
|
dependencies = [
|
1833
2058
|
"libc",
|
1834
2059
|
"windows-sys 0.59.0",
|
@@ -1840,49 +2065,30 @@ version = "2.3.0"
|
|
1840
2065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1841
2066
|
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
1842
2067
|
|
1843
|
-
[[package]]
|
1844
|
-
name = "fix-hidden-lifetime-bug"
|
1845
|
-
version = "0.2.7"
|
1846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1847
|
-
checksum = "ab7b4994e93dd63050356bdde7d417591d1b348523638dc1c1f539f16e338d55"
|
1848
|
-
dependencies = [
|
1849
|
-
"fix-hidden-lifetime-bug-proc_macros",
|
1850
|
-
]
|
1851
|
-
|
1852
|
-
[[package]]
|
1853
|
-
name = "fix-hidden-lifetime-bug-proc_macros"
|
1854
|
-
version = "0.2.7"
|
1855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "e8f0de9daf465d763422866d0538f07be1596e05623e120b37b4f715f5585200"
|
1857
|
-
dependencies = [
|
1858
|
-
"proc-macro2",
|
1859
|
-
"quote",
|
1860
|
-
"syn 1.0.109",
|
1861
|
-
]
|
1862
|
-
|
1863
2068
|
[[package]]
|
1864
2069
|
name = "fixedbitset"
|
1865
|
-
version = "0.
|
2070
|
+
version = "0.5.7"
|
1866
2071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1867
|
-
checksum = "
|
2072
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
1868
2073
|
|
1869
2074
|
[[package]]
|
1870
2075
|
name = "flatbuffers"
|
1871
|
-
version = "
|
2076
|
+
version = "25.2.10"
|
1872
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1873
|
-
checksum = "
|
2078
|
+
checksum = "1045398c1bfd89168b5fd3f1fc11f6e70b34f6f66300c87d44d3de849463abf1"
|
1874
2079
|
dependencies = [
|
1875
|
-
"bitflags
|
2080
|
+
"bitflags",
|
1876
2081
|
"rustc_version",
|
1877
2082
|
]
|
1878
2083
|
|
1879
2084
|
[[package]]
|
1880
2085
|
name = "flate2"
|
1881
|
-
version = "1.
|
2086
|
+
version = "1.1.1"
|
1882
2087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1883
|
-
checksum = "
|
2088
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
1884
2089
|
dependencies = [
|
1885
2090
|
"crc32fast",
|
2091
|
+
"libz-rs-sys",
|
1886
2092
|
"miniz_oxide",
|
1887
2093
|
]
|
1888
2094
|
|
@@ -1892,27 +2098,6 @@ version = "1.0.7"
|
|
1892
2098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1893
2099
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
1894
2100
|
|
1895
|
-
[[package]]
|
1896
|
-
name = "foldhash"
|
1897
|
-
version = "0.1.4"
|
1898
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1899
|
-
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
1900
|
-
|
1901
|
-
[[package]]
|
1902
|
-
name = "foreign-types"
|
1903
|
-
version = "0.3.2"
|
1904
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1905
|
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
1906
|
-
dependencies = [
|
1907
|
-
"foreign-types-shared",
|
1908
|
-
]
|
1909
|
-
|
1910
|
-
[[package]]
|
1911
|
-
name = "foreign-types-shared"
|
1912
|
-
version = "0.1.1"
|
1913
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1914
|
-
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
1915
|
-
|
1916
2101
|
[[package]]
|
1917
2102
|
name = "form_urlencoded"
|
1918
2103
|
version = "1.2.1"
|
@@ -1922,6 +2107,12 @@ dependencies = [
|
|
1922
2107
|
"percent-encoding",
|
1923
2108
|
]
|
1924
2109
|
|
2110
|
+
[[package]]
|
2111
|
+
name = "fs_extra"
|
2112
|
+
version = "1.3.0"
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2114
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
2115
|
+
|
1925
2116
|
[[package]]
|
1926
2117
|
name = "futures"
|
1927
2118
|
version = "0.3.31"
|
@@ -1978,7 +2169,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1978
2169
|
dependencies = [
|
1979
2170
|
"proc-macro2",
|
1980
2171
|
"quote",
|
1981
|
-
"syn
|
2172
|
+
"syn",
|
1982
2173
|
]
|
1983
2174
|
|
1984
2175
|
[[package]]
|
@@ -2023,14 +2214,28 @@ dependencies = [
|
|
2023
2214
|
|
2024
2215
|
[[package]]
|
2025
2216
|
name = "getrandom"
|
2026
|
-
version = "0.2.
|
2217
|
+
version = "0.2.16"
|
2027
2218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2028
|
-
checksum = "
|
2219
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
2029
2220
|
dependencies = [
|
2030
2221
|
"cfg-if",
|
2031
2222
|
"js-sys",
|
2032
2223
|
"libc",
|
2033
|
-
"wasi",
|
2224
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
2225
|
+
"wasm-bindgen",
|
2226
|
+
]
|
2227
|
+
|
2228
|
+
[[package]]
|
2229
|
+
name = "getrandom"
|
2230
|
+
version = "0.3.2"
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2232
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
2233
|
+
dependencies = [
|
2234
|
+
"cfg-if",
|
2235
|
+
"js-sys",
|
2236
|
+
"libc",
|
2237
|
+
"r-efi",
|
2238
|
+
"wasi 0.14.2+wasi-0.2.4",
|
2034
2239
|
"wasm-bindgen",
|
2035
2240
|
]
|
2036
2241
|
|
@@ -2067,16 +2272,16 @@ dependencies = [
|
|
2067
2272
|
|
2068
2273
|
[[package]]
|
2069
2274
|
name = "h2"
|
2070
|
-
version = "0.4.
|
2275
|
+
version = "0.4.9"
|
2071
2276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2072
|
-
checksum = "
|
2277
|
+
checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
|
2073
2278
|
dependencies = [
|
2074
2279
|
"atomic-waker",
|
2075
2280
|
"bytes",
|
2076
2281
|
"fnv",
|
2077
2282
|
"futures-core",
|
2078
2283
|
"futures-sink",
|
2079
|
-
"http 1.
|
2284
|
+
"http 1.3.1",
|
2080
2285
|
"indexmap",
|
2081
2286
|
"slab",
|
2082
2287
|
"tokio",
|
@@ -2086,9 +2291,9 @@ dependencies = [
|
|
2086
2291
|
|
2087
2292
|
[[package]]
|
2088
2293
|
name = "half"
|
2089
|
-
version = "2.
|
2294
|
+
version = "2.6.0"
|
2090
2295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2091
|
-
checksum = "
|
2296
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
2092
2297
|
dependencies = [
|
2093
2298
|
"cfg-if",
|
2094
2299
|
"crunchy",
|
@@ -2107,14 +2312,9 @@ dependencies = [
|
|
2107
2312
|
|
2108
2313
|
[[package]]
|
2109
2314
|
name = "hashbrown"
|
2110
|
-
version = "0.15.
|
2315
|
+
version = "0.15.3"
|
2111
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2112
|
-
checksum = "
|
2113
|
-
dependencies = [
|
2114
|
-
"allocator-api2",
|
2115
|
-
"equivalent",
|
2116
|
-
"foldhash",
|
2117
|
-
]
|
2317
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
2118
2318
|
|
2119
2319
|
[[package]]
|
2120
2320
|
name = "heck"
|
@@ -2143,6 +2343,15 @@ dependencies = [
|
|
2143
2343
|
"digest",
|
2144
2344
|
]
|
2145
2345
|
|
2346
|
+
[[package]]
|
2347
|
+
name = "home"
|
2348
|
+
version = "0.5.11"
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2350
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
2351
|
+
dependencies = [
|
2352
|
+
"windows-sys 0.59.0",
|
2353
|
+
]
|
2354
|
+
|
2146
2355
|
[[package]]
|
2147
2356
|
name = "http"
|
2148
2357
|
version = "0.2.12"
|
@@ -2156,9 +2365,9 @@ dependencies = [
|
|
2156
2365
|
|
2157
2366
|
[[package]]
|
2158
2367
|
name = "http"
|
2159
|
-
version = "1.
|
2368
|
+
version = "1.3.1"
|
2160
2369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2161
|
-
checksum = "
|
2370
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
2162
2371
|
dependencies = [
|
2163
2372
|
"bytes",
|
2164
2373
|
"fnv",
|
@@ -2183,27 +2392,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
2392
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
2184
2393
|
dependencies = [
|
2185
2394
|
"bytes",
|
2186
|
-
"http 1.
|
2395
|
+
"http 1.3.1",
|
2187
2396
|
]
|
2188
2397
|
|
2189
2398
|
[[package]]
|
2190
2399
|
name = "http-body-util"
|
2191
|
-
version = "0.1.
|
2400
|
+
version = "0.1.3"
|
2192
2401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2193
|
-
checksum = "
|
2402
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
2194
2403
|
dependencies = [
|
2195
2404
|
"bytes",
|
2196
|
-
"futures-
|
2197
|
-
"http 1.
|
2405
|
+
"futures-core",
|
2406
|
+
"http 1.3.1",
|
2198
2407
|
"http-body 1.0.1",
|
2199
2408
|
"pin-project-lite",
|
2200
2409
|
]
|
2201
2410
|
|
2202
2411
|
[[package]]
|
2203
2412
|
name = "httparse"
|
2204
|
-
version = "1.
|
2413
|
+
version = "1.10.1"
|
2205
2414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2206
|
-
checksum = "
|
2415
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
2207
2416
|
|
2208
2417
|
[[package]]
|
2209
2418
|
name = "httpdate"
|
@@ -2213,9 +2422,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2213
2422
|
|
2214
2423
|
[[package]]
|
2215
2424
|
name = "humantime"
|
2216
|
-
version = "2.
|
2425
|
+
version = "2.2.0"
|
2217
2426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2218
|
-
checksum = "
|
2427
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
2219
2428
|
|
2220
2429
|
[[package]]
|
2221
2430
|
name = "hyper"
|
@@ -2243,15 +2452,15 @@ dependencies = [
|
|
2243
2452
|
|
2244
2453
|
[[package]]
|
2245
2454
|
name = "hyper"
|
2246
|
-
version = "1.
|
2455
|
+
version = "1.6.0"
|
2247
2456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2248
|
-
checksum = "
|
2457
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
2249
2458
|
dependencies = [
|
2250
2459
|
"bytes",
|
2251
2460
|
"futures-channel",
|
2252
2461
|
"futures-util",
|
2253
|
-
"h2 0.4.
|
2254
|
-
"http 1.
|
2462
|
+
"h2 0.4.9",
|
2463
|
+
"http 1.3.1",
|
2255
2464
|
"http-body 1.0.1",
|
2256
2465
|
"httparse",
|
2257
2466
|
"itoa",
|
@@ -2284,45 +2493,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
2493
|
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
2285
2494
|
dependencies = [
|
2286
2495
|
"futures-util",
|
2287
|
-
"http 1.
|
2288
|
-
"hyper 1.
|
2496
|
+
"http 1.3.1",
|
2497
|
+
"hyper 1.6.0",
|
2289
2498
|
"hyper-util",
|
2290
|
-
"rustls 0.23.
|
2499
|
+
"rustls 0.23.26",
|
2291
2500
|
"rustls-native-certs 0.8.1",
|
2292
2501
|
"rustls-pki-types",
|
2293
2502
|
"tokio",
|
2294
|
-
"tokio-rustls 0.26.
|
2295
|
-
"tower-service",
|
2296
|
-
]
|
2297
|
-
|
2298
|
-
[[package]]
|
2299
|
-
name = "hyper-tls"
|
2300
|
-
version = "0.6.0"
|
2301
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2302
|
-
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
2303
|
-
dependencies = [
|
2304
|
-
"bytes",
|
2305
|
-
"http-body-util",
|
2306
|
-
"hyper 1.5.2",
|
2307
|
-
"hyper-util",
|
2308
|
-
"native-tls",
|
2309
|
-
"tokio",
|
2310
|
-
"tokio-native-tls",
|
2503
|
+
"tokio-rustls 0.26.2",
|
2311
2504
|
"tower-service",
|
2312
2505
|
]
|
2313
2506
|
|
2314
2507
|
[[package]]
|
2315
2508
|
name = "hyper-util"
|
2316
|
-
version = "0.1.
|
2509
|
+
version = "0.1.11"
|
2317
2510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2318
|
-
checksum = "
|
2511
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
2319
2512
|
dependencies = [
|
2320
2513
|
"bytes",
|
2321
2514
|
"futures-channel",
|
2322
2515
|
"futures-util",
|
2323
|
-
"http 1.
|
2516
|
+
"http 1.3.1",
|
2324
2517
|
"http-body 1.0.1",
|
2325
|
-
"hyper 1.
|
2518
|
+
"hyper 1.6.0",
|
2519
|
+
"libc",
|
2326
2520
|
"pin-project-lite",
|
2327
2521
|
"socket2",
|
2328
2522
|
"tokio",
|
@@ -2332,14 +2526,15 @@ dependencies = [
|
|
2332
2526
|
|
2333
2527
|
[[package]]
|
2334
2528
|
name = "iana-time-zone"
|
2335
|
-
version = "0.1.
|
2529
|
+
version = "0.1.63"
|
2336
2530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2337
|
-
checksum = "
|
2531
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
2338
2532
|
dependencies = [
|
2339
2533
|
"android_system_properties",
|
2340
2534
|
"core-foundation-sys",
|
2341
2535
|
"iana-time-zone-haiku",
|
2342
2536
|
"js-sys",
|
2537
|
+
"log",
|
2343
2538
|
"wasm-bindgen",
|
2344
2539
|
"windows-core",
|
2345
2540
|
]
|
@@ -2394,9 +2589,9 @@ dependencies = [
|
|
2394
2589
|
|
2395
2590
|
[[package]]
|
2396
2591
|
name = "icu_locid_transform_data"
|
2397
|
-
version = "1.5.
|
2592
|
+
version = "1.5.1"
|
2398
2593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2399
|
-
checksum = "
|
2594
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
2400
2595
|
|
2401
2596
|
[[package]]
|
2402
2597
|
name = "icu_normalizer"
|
@@ -2418,9 +2613,9 @@ dependencies = [
|
|
2418
2613
|
|
2419
2614
|
[[package]]
|
2420
2615
|
name = "icu_normalizer_data"
|
2421
|
-
version = "1.5.
|
2616
|
+
version = "1.5.1"
|
2422
2617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2423
|
-
checksum = "
|
2618
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
2424
2619
|
|
2425
2620
|
[[package]]
|
2426
2621
|
name = "icu_properties"
|
@@ -2439,9 +2634,9 @@ dependencies = [
|
|
2439
2634
|
|
2440
2635
|
[[package]]
|
2441
2636
|
name = "icu_properties_data"
|
2442
|
-
version = "1.5.
|
2637
|
+
version = "1.5.1"
|
2443
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2444
|
-
checksum = "
|
2639
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
2445
2640
|
|
2446
2641
|
[[package]]
|
2447
2642
|
name = "icu_provider"
|
@@ -2468,7 +2663,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
2468
2663
|
dependencies = [
|
2469
2664
|
"proc-macro2",
|
2470
2665
|
"quote",
|
2471
|
-
"syn
|
2666
|
+
"syn",
|
2472
2667
|
]
|
2473
2668
|
|
2474
2669
|
[[package]]
|
@@ -2494,12 +2689,12 @@ dependencies = [
|
|
2494
2689
|
|
2495
2690
|
[[package]]
|
2496
2691
|
name = "indexmap"
|
2497
|
-
version = "2.
|
2692
|
+
version = "2.9.0"
|
2498
2693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2499
|
-
checksum = "
|
2694
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
2500
2695
|
dependencies = [
|
2501
2696
|
"equivalent",
|
2502
|
-
"hashbrown 0.15.
|
2697
|
+
"hashbrown 0.15.3",
|
2503
2698
|
]
|
2504
2699
|
|
2505
2700
|
[[package]]
|
@@ -2523,15 +2718,6 @@ dependencies = [
|
|
2523
2718
|
"either",
|
2524
2719
|
]
|
2525
2720
|
|
2526
|
-
[[package]]
|
2527
|
-
name = "itertools"
|
2528
|
-
version = "0.13.0"
|
2529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2530
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
2531
|
-
dependencies = [
|
2532
|
-
"either",
|
2533
|
-
]
|
2534
|
-
|
2535
2721
|
[[package]]
|
2536
2722
|
name = "itertools"
|
2537
2723
|
version = "0.14.0"
|
@@ -2543,16 +2729,17 @@ dependencies = [
|
|
2543
2729
|
|
2544
2730
|
[[package]]
|
2545
2731
|
name = "itoa"
|
2546
|
-
version = "1.0.
|
2732
|
+
version = "1.0.15"
|
2547
2733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2548
|
-
checksum = "
|
2734
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
2549
2735
|
|
2550
2736
|
[[package]]
|
2551
2737
|
name = "jobserver"
|
2552
|
-
version = "0.1.
|
2738
|
+
version = "0.1.33"
|
2553
2739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2554
|
-
checksum = "
|
2740
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
2555
2741
|
dependencies = [
|
2742
|
+
"getrandom 0.3.2",
|
2556
2743
|
"libc",
|
2557
2744
|
]
|
2558
2745
|
|
@@ -2644,9 +2831,9 @@ dependencies = [
|
|
2644
2831
|
|
2645
2832
|
[[package]]
|
2646
2833
|
name = "libc"
|
2647
|
-
version = "0.2.
|
2834
|
+
version = "0.2.172"
|
2648
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2649
|
-
checksum = "
|
2836
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
2650
2837
|
|
2651
2838
|
[[package]]
|
2652
2839
|
name = "libloading"
|
@@ -2655,14 +2842,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
2842
|
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
2656
2843
|
dependencies = [
|
2657
2844
|
"cfg-if",
|
2658
|
-
"windows-targets",
|
2845
|
+
"windows-targets 0.52.6",
|
2659
2846
|
]
|
2660
2847
|
|
2661
2848
|
[[package]]
|
2662
2849
|
name = "libm"
|
2663
|
-
version = "0.2.
|
2850
|
+
version = "0.2.13"
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2852
|
+
checksum = "c9627da5196e5d8ed0b0495e61e518847578da83483c37288316d9b2e03a7f72"
|
2853
|
+
|
2854
|
+
[[package]]
|
2855
|
+
name = "libz-rs-sys"
|
2856
|
+
version = "0.5.0"
|
2664
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2665
|
-
checksum = "
|
2858
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
2859
|
+
dependencies = [
|
2860
|
+
"zlib-rs",
|
2861
|
+
]
|
2666
2862
|
|
2667
2863
|
[[package]]
|
2668
2864
|
name = "linux-raw-sys"
|
@@ -2670,11 +2866,17 @@ version = "0.4.15"
|
|
2670
2866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2671
2867
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
2672
2868
|
|
2869
|
+
[[package]]
|
2870
|
+
name = "linux-raw-sys"
|
2871
|
+
version = "0.9.4"
|
2872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2873
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
2874
|
+
|
2673
2875
|
[[package]]
|
2674
2876
|
name = "litemap"
|
2675
|
-
version = "0.7.
|
2877
|
+
version = "0.7.5"
|
2676
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2677
|
-
checksum = "
|
2879
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
2678
2880
|
|
2679
2881
|
[[package]]
|
2680
2882
|
name = "lock_api"
|
@@ -2688,9 +2890,9 @@ dependencies = [
|
|
2688
2890
|
|
2689
2891
|
[[package]]
|
2690
2892
|
name = "log"
|
2691
|
-
version = "0.4.
|
2893
|
+
version = "0.4.27"
|
2692
2894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2693
|
-
checksum = "
|
2895
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
2694
2896
|
|
2695
2897
|
[[package]]
|
2696
2898
|
name = "lz4_flex"
|
@@ -2698,7 +2900,7 @@ version = "0.11.3"
|
|
2698
2900
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2699
2901
|
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
2700
2902
|
dependencies = [
|
2701
|
-
"twox-hash",
|
2903
|
+
"twox-hash 1.6.3",
|
2702
2904
|
]
|
2703
2905
|
|
2704
2906
|
[[package]]
|
@@ -2732,7 +2934,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
2732
2934
|
dependencies = [
|
2733
2935
|
"proc-macro2",
|
2734
2936
|
"quote",
|
2735
|
-
"syn
|
2937
|
+
"syn",
|
2736
2938
|
]
|
2737
2939
|
|
2738
2940
|
[[package]]
|
@@ -2771,9 +2973,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2771
2973
|
|
2772
2974
|
[[package]]
|
2773
2975
|
name = "miniz_oxide"
|
2774
|
-
version = "0.8.
|
2976
|
+
version = "0.8.8"
|
2775
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2776
|
-
checksum = "
|
2978
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
2777
2979
|
dependencies = [
|
2778
2980
|
"adler2",
|
2779
2981
|
]
|
@@ -2785,27 +2987,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
2987
|
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
2786
2988
|
dependencies = [
|
2787
2989
|
"libc",
|
2788
|
-
"wasi",
|
2990
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
2789
2991
|
"windows-sys 0.52.0",
|
2790
2992
|
]
|
2791
2993
|
|
2792
|
-
[[package]]
|
2793
|
-
name = "native-tls"
|
2794
|
-
version = "0.2.13"
|
2795
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2796
|
-
checksum = "0dab59f8e050d5df8e4dd87d9206fb6f65a483e20ac9fda365ade4fab353196c"
|
2797
|
-
dependencies = [
|
2798
|
-
"libc",
|
2799
|
-
"log",
|
2800
|
-
"openssl",
|
2801
|
-
"openssl-probe",
|
2802
|
-
"openssl-sys",
|
2803
|
-
"schannel",
|
2804
|
-
"security-framework 2.11.1",
|
2805
|
-
"security-framework-sys",
|
2806
|
-
"tempfile",
|
2807
|
-
]
|
2808
|
-
|
2809
2994
|
[[package]]
|
2810
2995
|
name = "nom"
|
2811
2996
|
version = "7.1.3"
|
@@ -2917,30 +3102,34 @@ dependencies = [
|
|
2917
3102
|
|
2918
3103
|
[[package]]
|
2919
3104
|
name = "object_store"
|
2920
|
-
version = "0.
|
3105
|
+
version = "0.12.0"
|
2921
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2922
|
-
checksum = "
|
3107
|
+
checksum = "e9ce831b09395f933addbc56d894d889e4b226eba304d4e7adbab591e26daf1e"
|
2923
3108
|
dependencies = [
|
2924
3109
|
"async-trait",
|
2925
3110
|
"base64 0.22.1",
|
2926
3111
|
"bytes",
|
2927
3112
|
"chrono",
|
3113
|
+
"form_urlencoded",
|
2928
3114
|
"futures",
|
3115
|
+
"http 1.3.1",
|
3116
|
+
"http-body-util",
|
2929
3117
|
"httparse",
|
2930
3118
|
"humantime",
|
2931
|
-
"hyper 1.
|
2932
|
-
"itertools 0.
|
3119
|
+
"hyper 1.6.0",
|
3120
|
+
"itertools 0.14.0",
|
2933
3121
|
"md-5",
|
2934
3122
|
"parking_lot",
|
2935
3123
|
"percent-encoding",
|
2936
3124
|
"quick-xml",
|
2937
|
-
"rand",
|
3125
|
+
"rand 0.8.5",
|
2938
3126
|
"reqwest",
|
2939
3127
|
"ring",
|
2940
3128
|
"rustls-pemfile 2.2.0",
|
2941
3129
|
"serde",
|
2942
3130
|
"serde_json",
|
2943
|
-
"
|
3131
|
+
"serde_urlencoded",
|
3132
|
+
"thiserror",
|
2944
3133
|
"tokio",
|
2945
3134
|
"tracing",
|
2946
3135
|
"url",
|
@@ -2949,35 +3138,9 @@ dependencies = [
|
|
2949
3138
|
|
2950
3139
|
[[package]]
|
2951
3140
|
name = "once_cell"
|
2952
|
-
version = "1.
|
2953
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2954
|
-
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
2955
|
-
|
2956
|
-
[[package]]
|
2957
|
-
name = "openssl"
|
2958
|
-
version = "0.10.69"
|
2959
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2960
|
-
checksum = "f5e534d133a060a3c19daec1eb3e98ec6f4685978834f2dbadfe2ec215bab64e"
|
2961
|
-
dependencies = [
|
2962
|
-
"bitflags 2.8.0",
|
2963
|
-
"cfg-if",
|
2964
|
-
"foreign-types",
|
2965
|
-
"libc",
|
2966
|
-
"once_cell",
|
2967
|
-
"openssl-macros",
|
2968
|
-
"openssl-sys",
|
2969
|
-
]
|
2970
|
-
|
2971
|
-
[[package]]
|
2972
|
-
name = "openssl-macros"
|
2973
|
-
version = "0.1.1"
|
3141
|
+
version = "1.21.3"
|
2974
3142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2975
|
-
checksum = "
|
2976
|
-
dependencies = [
|
2977
|
-
"proc-macro2",
|
2978
|
-
"quote",
|
2979
|
-
"syn 2.0.96",
|
2980
|
-
]
|
3143
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
2981
3144
|
|
2982
3145
|
[[package]]
|
2983
3146
|
name = "openssl-probe"
|
@@ -2985,18 +3148,6 @@ version = "0.1.6"
|
|
2985
3148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2986
3149
|
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
2987
3150
|
|
2988
|
-
[[package]]
|
2989
|
-
name = "openssl-sys"
|
2990
|
-
version = "0.9.104"
|
2991
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2992
|
-
checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
|
2993
|
-
dependencies = [
|
2994
|
-
"cc",
|
2995
|
-
"libc",
|
2996
|
-
"pkg-config",
|
2997
|
-
"vcpkg",
|
2998
|
-
]
|
2999
|
-
|
3000
3151
|
[[package]]
|
3001
3152
|
name = "ordered-float"
|
3002
3153
|
version = "2.10.1"
|
@@ -3032,14 +3183,14 @@ dependencies = [
|
|
3032
3183
|
"libc",
|
3033
3184
|
"redox_syscall",
|
3034
3185
|
"smallvec",
|
3035
|
-
"windows-targets",
|
3186
|
+
"windows-targets 0.52.6",
|
3036
3187
|
]
|
3037
3188
|
|
3038
3189
|
[[package]]
|
3039
3190
|
name = "parquet"
|
3040
|
-
version = "
|
3191
|
+
version = "55.0.0"
|
3041
3192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3042
|
-
checksum = "
|
3193
|
+
checksum = "cd31a8290ac5b19f09ad77ee7a1e6a541f1be7674ad410547d5f1eef6eef4a9c"
|
3043
3194
|
dependencies = [
|
3044
3195
|
"ahash",
|
3045
3196
|
"arrow-array",
|
@@ -3056,19 +3207,19 @@ dependencies = [
|
|
3056
3207
|
"flate2",
|
3057
3208
|
"futures",
|
3058
3209
|
"half",
|
3059
|
-
"hashbrown 0.15.
|
3210
|
+
"hashbrown 0.15.3",
|
3060
3211
|
"lz4_flex",
|
3061
3212
|
"num",
|
3062
3213
|
"num-bigint",
|
3063
3214
|
"object_store",
|
3064
3215
|
"paste",
|
3065
3216
|
"seq-macro",
|
3217
|
+
"simdutf8",
|
3066
3218
|
"snap",
|
3067
3219
|
"thrift",
|
3068
3220
|
"tokio",
|
3069
|
-
"twox-hash",
|
3221
|
+
"twox-hash 2.1.0",
|
3070
3222
|
"zstd",
|
3071
|
-
"zstd-sys",
|
3072
3223
|
]
|
3073
3224
|
|
3074
3225
|
[[package]]
|
@@ -3094,9 +3245,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
3094
3245
|
|
3095
3246
|
[[package]]
|
3096
3247
|
name = "petgraph"
|
3097
|
-
version = "0.
|
3248
|
+
version = "0.7.1"
|
3098
3249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3099
|
-
checksum = "
|
3250
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
3100
3251
|
dependencies = [
|
3101
3252
|
"fixedbitset",
|
3102
3253
|
"indexmap",
|
@@ -3128,7 +3279,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
3279
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
3129
3280
|
dependencies = [
|
3130
3281
|
"phf_shared",
|
3131
|
-
"rand",
|
3282
|
+
"rand 0.8.5",
|
3132
3283
|
]
|
3133
3284
|
|
3134
3285
|
[[package]]
|
@@ -3154,9 +3305,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
3154
3305
|
|
3155
3306
|
[[package]]
|
3156
3307
|
name = "pkg-config"
|
3157
|
-
version = "0.3.
|
3308
|
+
version = "0.3.32"
|
3158
3309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3159
|
-
checksum = "
|
3310
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
3160
3311
|
|
3161
3312
|
[[package]]
|
3162
3313
|
name = "powerfmt"
|
@@ -3166,27 +3317,37 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
3166
3317
|
|
3167
3318
|
[[package]]
|
3168
3319
|
name = "ppv-lite86"
|
3169
|
-
version = "0.2.
|
3320
|
+
version = "0.2.21"
|
3321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3322
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
3323
|
+
dependencies = [
|
3324
|
+
"zerocopy 0.8.25",
|
3325
|
+
]
|
3326
|
+
|
3327
|
+
[[package]]
|
3328
|
+
name = "prettyplease"
|
3329
|
+
version = "0.2.32"
|
3170
3330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3171
|
-
checksum = "
|
3331
|
+
checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
|
3172
3332
|
dependencies = [
|
3173
|
-
"
|
3333
|
+
"proc-macro2",
|
3334
|
+
"syn",
|
3174
3335
|
]
|
3175
3336
|
|
3176
3337
|
[[package]]
|
3177
3338
|
name = "proc-macro2"
|
3178
|
-
version = "1.0.
|
3339
|
+
version = "1.0.95"
|
3179
3340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3180
|
-
checksum = "
|
3341
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
3181
3342
|
dependencies = [
|
3182
3343
|
"unicode-ident",
|
3183
3344
|
]
|
3184
3345
|
|
3185
3346
|
[[package]]
|
3186
3347
|
name = "prost"
|
3187
|
-
version = "0.13.
|
3348
|
+
version = "0.13.5"
|
3188
3349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3189
|
-
checksum = "
|
3350
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
3190
3351
|
dependencies = [
|
3191
3352
|
"bytes",
|
3192
3353
|
"prost-derive",
|
@@ -3194,31 +3355,31 @@ dependencies = [
|
|
3194
3355
|
|
3195
3356
|
[[package]]
|
3196
3357
|
name = "prost-derive"
|
3197
|
-
version = "0.13.
|
3358
|
+
version = "0.13.5"
|
3198
3359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3199
|
-
checksum = "
|
3360
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
3200
3361
|
dependencies = [
|
3201
3362
|
"anyhow",
|
3202
|
-
"itertools 0.
|
3363
|
+
"itertools 0.14.0",
|
3203
3364
|
"proc-macro2",
|
3204
3365
|
"quote",
|
3205
|
-
"syn
|
3366
|
+
"syn",
|
3206
3367
|
]
|
3207
3368
|
|
3208
3369
|
[[package]]
|
3209
3370
|
name = "psm"
|
3210
|
-
version = "0.1.
|
3371
|
+
version = "0.1.26"
|
3211
3372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3212
|
-
checksum = "
|
3373
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
3213
3374
|
dependencies = [
|
3214
3375
|
"cc",
|
3215
3376
|
]
|
3216
3377
|
|
3217
3378
|
[[package]]
|
3218
3379
|
name = "quick-xml"
|
3219
|
-
version = "0.37.
|
3380
|
+
version = "0.37.5"
|
3220
3381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3221
|
-
checksum = "
|
3382
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
3222
3383
|
dependencies = [
|
3223
3384
|
"memchr",
|
3224
3385
|
"serde",
|
@@ -3226,37 +3387,39 @@ dependencies = [
|
|
3226
3387
|
|
3227
3388
|
[[package]]
|
3228
3389
|
name = "quinn"
|
3229
|
-
version = "0.11.
|
3390
|
+
version = "0.11.7"
|
3230
3391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3231
|
-
checksum = "
|
3392
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
3232
3393
|
dependencies = [
|
3233
3394
|
"bytes",
|
3395
|
+
"cfg_aliases",
|
3234
3396
|
"pin-project-lite",
|
3235
3397
|
"quinn-proto",
|
3236
3398
|
"quinn-udp",
|
3237
|
-
"rustc-hash 2.1.
|
3238
|
-
"rustls 0.23.
|
3399
|
+
"rustc-hash 2.1.1",
|
3400
|
+
"rustls 0.23.26",
|
3239
3401
|
"socket2",
|
3240
|
-
"thiserror
|
3402
|
+
"thiserror",
|
3241
3403
|
"tokio",
|
3242
3404
|
"tracing",
|
3405
|
+
"web-time",
|
3243
3406
|
]
|
3244
3407
|
|
3245
3408
|
[[package]]
|
3246
3409
|
name = "quinn-proto"
|
3247
|
-
version = "0.11.
|
3410
|
+
version = "0.11.11"
|
3248
3411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3249
|
-
checksum = "
|
3412
|
+
checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
|
3250
3413
|
dependencies = [
|
3251
3414
|
"bytes",
|
3252
|
-
"getrandom",
|
3253
|
-
"rand",
|
3415
|
+
"getrandom 0.3.2",
|
3416
|
+
"rand 0.9.1",
|
3254
3417
|
"ring",
|
3255
|
-
"rustc-hash 2.1.
|
3256
|
-
"rustls 0.23.
|
3418
|
+
"rustc-hash 2.1.1",
|
3419
|
+
"rustls 0.23.26",
|
3257
3420
|
"rustls-pki-types",
|
3258
3421
|
"slab",
|
3259
|
-
"thiserror
|
3422
|
+
"thiserror",
|
3260
3423
|
"tinyvec",
|
3261
3424
|
"tracing",
|
3262
3425
|
"web-time",
|
@@ -3264,9 +3427,9 @@ dependencies = [
|
|
3264
3427
|
|
3265
3428
|
[[package]]
|
3266
3429
|
name = "quinn-udp"
|
3267
|
-
version = "0.5.
|
3430
|
+
version = "0.5.12"
|
3268
3431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3269
|
-
checksum = "
|
3432
|
+
checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
|
3270
3433
|
dependencies = [
|
3271
3434
|
"cfg_aliases",
|
3272
3435
|
"libc",
|
@@ -3278,22 +3441,38 @@ dependencies = [
|
|
3278
3441
|
|
3279
3442
|
[[package]]
|
3280
3443
|
name = "quote"
|
3281
|
-
version = "1.0.
|
3444
|
+
version = "1.0.40"
|
3282
3445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3283
|
-
checksum = "
|
3446
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
3447
|
+
dependencies = [
|
3448
|
+
"proc-macro2",
|
3449
|
+
]
|
3450
|
+
|
3451
|
+
[[package]]
|
3452
|
+
name = "r-efi"
|
3453
|
+
version = "5.2.0"
|
3454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3455
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
3456
|
+
|
3457
|
+
[[package]]
|
3458
|
+
name = "rand"
|
3459
|
+
version = "0.8.5"
|
3460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3461
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
3284
3462
|
dependencies = [
|
3285
|
-
"
|
3463
|
+
"libc",
|
3464
|
+
"rand_chacha 0.3.1",
|
3465
|
+
"rand_core 0.6.4",
|
3286
3466
|
]
|
3287
3467
|
|
3288
3468
|
[[package]]
|
3289
3469
|
name = "rand"
|
3290
|
-
version = "0.
|
3470
|
+
version = "0.9.1"
|
3291
3471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3292
|
-
checksum = "
|
3472
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
3293
3473
|
dependencies = [
|
3294
|
-
"
|
3295
|
-
"
|
3296
|
-
"rand_core",
|
3474
|
+
"rand_chacha 0.9.0",
|
3475
|
+
"rand_core 0.9.3",
|
3297
3476
|
]
|
3298
3477
|
|
3299
3478
|
[[package]]
|
@@ -3303,7 +3482,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
3482
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
3304
3483
|
dependencies = [
|
3305
3484
|
"ppv-lite86",
|
3306
|
-
"rand_core",
|
3485
|
+
"rand_core 0.6.4",
|
3486
|
+
]
|
3487
|
+
|
3488
|
+
[[package]]
|
3489
|
+
name = "rand_chacha"
|
3490
|
+
version = "0.9.0"
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3492
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
3493
|
+
dependencies = [
|
3494
|
+
"ppv-lite86",
|
3495
|
+
"rand_core 0.9.3",
|
3307
3496
|
]
|
3308
3497
|
|
3309
3498
|
[[package]]
|
@@ -3312,23 +3501,32 @@ version = "0.6.4"
|
|
3312
3501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3313
3502
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
3314
3503
|
dependencies = [
|
3315
|
-
"getrandom",
|
3504
|
+
"getrandom 0.2.16",
|
3505
|
+
]
|
3506
|
+
|
3507
|
+
[[package]]
|
3508
|
+
name = "rand_core"
|
3509
|
+
version = "0.9.3"
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3511
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
3512
|
+
dependencies = [
|
3513
|
+
"getrandom 0.3.2",
|
3316
3514
|
]
|
3317
3515
|
|
3318
3516
|
[[package]]
|
3319
3517
|
name = "rb-sys"
|
3320
|
-
version = "0.9.
|
3518
|
+
version = "0.9.111"
|
3321
3519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3322
|
-
checksum = "
|
3520
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
3323
3521
|
dependencies = [
|
3324
3522
|
"rb-sys-build",
|
3325
3523
|
]
|
3326
3524
|
|
3327
3525
|
[[package]]
|
3328
3526
|
name = "rb-sys-build"
|
3329
|
-
version = "0.9.
|
3527
|
+
version = "0.9.111"
|
3330
3528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3331
|
-
checksum = "
|
3529
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
3332
3530
|
dependencies = [
|
3333
3531
|
"bindgen",
|
3334
3532
|
"lazy_static",
|
@@ -3336,7 +3534,7 @@ dependencies = [
|
|
3336
3534
|
"quote",
|
3337
3535
|
"regex",
|
3338
3536
|
"shell-words",
|
3339
|
-
"syn
|
3537
|
+
"syn",
|
3340
3538
|
]
|
3341
3539
|
|
3342
3540
|
[[package]]
|
@@ -3362,16 +3560,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
3560
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
3363
3561
|
dependencies = [
|
3364
3562
|
"quote",
|
3365
|
-
"syn
|
3563
|
+
"syn",
|
3366
3564
|
]
|
3367
3565
|
|
3368
3566
|
[[package]]
|
3369
3567
|
name = "redox_syscall"
|
3370
|
-
version = "0.5.
|
3568
|
+
version = "0.5.12"
|
3371
3569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3372
|
-
checksum = "
|
3570
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
3373
3571
|
dependencies = [
|
3374
|
-
"bitflags
|
3572
|
+
"bitflags",
|
3375
3573
|
]
|
3376
3574
|
|
3377
3575
|
[[package]]
|
@@ -3411,33 +3609,30 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
3411
3609
|
|
3412
3610
|
[[package]]
|
3413
3611
|
name = "reqwest"
|
3414
|
-
version = "0.12.
|
3612
|
+
version = "0.12.15"
|
3415
3613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3416
|
-
checksum = "
|
3614
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
3417
3615
|
dependencies = [
|
3418
3616
|
"base64 0.22.1",
|
3419
3617
|
"bytes",
|
3420
|
-
"encoding_rs",
|
3421
3618
|
"futures-core",
|
3422
3619
|
"futures-util",
|
3423
|
-
"h2 0.4.
|
3424
|
-
"http 1.
|
3620
|
+
"h2 0.4.9",
|
3621
|
+
"http 1.3.1",
|
3425
3622
|
"http-body 1.0.1",
|
3426
3623
|
"http-body-util",
|
3427
|
-
"hyper 1.
|
3624
|
+
"hyper 1.6.0",
|
3428
3625
|
"hyper-rustls 0.27.5",
|
3429
|
-
"hyper-tls",
|
3430
3626
|
"hyper-util",
|
3431
3627
|
"ipnet",
|
3432
3628
|
"js-sys",
|
3433
3629
|
"log",
|
3434
3630
|
"mime",
|
3435
|
-
"native-tls",
|
3436
3631
|
"once_cell",
|
3437
3632
|
"percent-encoding",
|
3438
3633
|
"pin-project-lite",
|
3439
3634
|
"quinn",
|
3440
|
-
"rustls 0.23.
|
3635
|
+
"rustls 0.23.26",
|
3441
3636
|
"rustls-native-certs 0.8.1",
|
3442
3637
|
"rustls-pemfile 2.2.0",
|
3443
3638
|
"rustls-pki-types",
|
@@ -3445,10 +3640,8 @@ dependencies = [
|
|
3445
3640
|
"serde_json",
|
3446
3641
|
"serde_urlencoded",
|
3447
3642
|
"sync_wrapper",
|
3448
|
-
"system-configuration",
|
3449
3643
|
"tokio",
|
3450
|
-
"tokio-
|
3451
|
-
"tokio-rustls 0.26.1",
|
3644
|
+
"tokio-rustls 0.26.2",
|
3452
3645
|
"tokio-util",
|
3453
3646
|
"tower",
|
3454
3647
|
"tower-service",
|
@@ -3462,24 +3655,23 @@ dependencies = [
|
|
3462
3655
|
|
3463
3656
|
[[package]]
|
3464
3657
|
name = "ring"
|
3465
|
-
version = "0.17.
|
3658
|
+
version = "0.17.14"
|
3466
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3467
|
-
checksum = "
|
3660
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
3468
3661
|
dependencies = [
|
3469
3662
|
"cc",
|
3470
3663
|
"cfg-if",
|
3471
|
-
"getrandom",
|
3664
|
+
"getrandom 0.2.16",
|
3472
3665
|
"libc",
|
3473
|
-
"spin",
|
3474
3666
|
"untrusted",
|
3475
3667
|
"windows-sys 0.52.0",
|
3476
3668
|
]
|
3477
3669
|
|
3478
3670
|
[[package]]
|
3479
3671
|
name = "roaring"
|
3480
|
-
version = "0.10.
|
3672
|
+
version = "0.10.12"
|
3481
3673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3482
|
-
checksum = "
|
3674
|
+
checksum = "19e8d2cfa184d94d0726d650a9f4a1be7f9b76ac9fdb954219878dc00c1c1e7b"
|
3483
3675
|
dependencies = [
|
3484
3676
|
"bytemuck",
|
3485
3677
|
"byteorder",
|
@@ -3499,9 +3691,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
3499
3691
|
|
3500
3692
|
[[package]]
|
3501
3693
|
name = "rustc-hash"
|
3502
|
-
version = "2.1.
|
3694
|
+
version = "2.1.1"
|
3503
3695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3504
|
-
checksum = "
|
3696
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
3505
3697
|
|
3506
3698
|
[[package]]
|
3507
3699
|
name = "rustc_version"
|
@@ -3518,10 +3710,23 @@ version = "0.38.44"
|
|
3518
3710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3519
3711
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
3520
3712
|
dependencies = [
|
3521
|
-
"bitflags
|
3713
|
+
"bitflags",
|
3714
|
+
"errno",
|
3715
|
+
"libc",
|
3716
|
+
"linux-raw-sys 0.4.15",
|
3717
|
+
"windows-sys 0.59.0",
|
3718
|
+
]
|
3719
|
+
|
3720
|
+
[[package]]
|
3721
|
+
name = "rustix"
|
3722
|
+
version = "1.0.7"
|
3723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3724
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
3725
|
+
dependencies = [
|
3726
|
+
"bitflags",
|
3522
3727
|
"errno",
|
3523
3728
|
"libc",
|
3524
|
-
"linux-raw-sys",
|
3729
|
+
"linux-raw-sys 0.9.4",
|
3525
3730
|
"windows-sys 0.59.0",
|
3526
3731
|
]
|
3527
3732
|
|
@@ -3539,14 +3744,15 @@ dependencies = [
|
|
3539
3744
|
|
3540
3745
|
[[package]]
|
3541
3746
|
name = "rustls"
|
3542
|
-
version = "0.23.
|
3747
|
+
version = "0.23.26"
|
3543
3748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3544
|
-
checksum = "
|
3749
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
3545
3750
|
dependencies = [
|
3751
|
+
"aws-lc-rs",
|
3546
3752
|
"once_cell",
|
3547
3753
|
"ring",
|
3548
3754
|
"rustls-pki-types",
|
3549
|
-
"rustls-webpki 0.
|
3755
|
+
"rustls-webpki 0.103.1",
|
3550
3756
|
"subtle",
|
3551
3757
|
"zeroize",
|
3552
3758
|
]
|
@@ -3614,10 +3820,11 @@ dependencies = [
|
|
3614
3820
|
|
3615
3821
|
[[package]]
|
3616
3822
|
name = "rustls-webpki"
|
3617
|
-
version = "0.
|
3823
|
+
version = "0.103.1"
|
3618
3824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3619
|
-
checksum = "
|
3825
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
3620
3826
|
dependencies = [
|
3827
|
+
"aws-lc-rs",
|
3621
3828
|
"ring",
|
3622
3829
|
"rustls-pki-types",
|
3623
3830
|
"untrusted",
|
@@ -3625,15 +3832,15 @@ dependencies = [
|
|
3625
3832
|
|
3626
3833
|
[[package]]
|
3627
3834
|
name = "rustversion"
|
3628
|
-
version = "1.0.
|
3835
|
+
version = "1.0.20"
|
3629
3836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3630
|
-
checksum = "
|
3837
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
3631
3838
|
|
3632
3839
|
[[package]]
|
3633
3840
|
name = "ryu"
|
3634
|
-
version = "1.0.
|
3841
|
+
version = "1.0.20"
|
3635
3842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3636
|
-
checksum = "
|
3843
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
3637
3844
|
|
3638
3845
|
[[package]]
|
3639
3846
|
name = "same-file"
|
@@ -3675,7 +3882,7 @@ version = "2.11.1"
|
|
3675
3882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3676
3883
|
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
3677
3884
|
dependencies = [
|
3678
|
-
"bitflags
|
3885
|
+
"bitflags",
|
3679
3886
|
"core-foundation 0.9.4",
|
3680
3887
|
"core-foundation-sys",
|
3681
3888
|
"libc",
|
@@ -3688,7 +3895,7 @@ version = "3.2.0"
|
|
3688
3895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3689
3896
|
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
3690
3897
|
dependencies = [
|
3691
|
-
"bitflags
|
3898
|
+
"bitflags",
|
3692
3899
|
"core-foundation 0.10.0",
|
3693
3900
|
"core-foundation-sys",
|
3694
3901
|
"libc",
|
@@ -3707,41 +3914,41 @@ dependencies = [
|
|
3707
3914
|
|
3708
3915
|
[[package]]
|
3709
3916
|
name = "semver"
|
3710
|
-
version = "1.0.
|
3917
|
+
version = "1.0.26"
|
3711
3918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3712
|
-
checksum = "
|
3919
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
3713
3920
|
|
3714
3921
|
[[package]]
|
3715
3922
|
name = "seq-macro"
|
3716
|
-
version = "0.3.
|
3923
|
+
version = "0.3.6"
|
3717
3924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3718
|
-
checksum = "
|
3925
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
3719
3926
|
|
3720
3927
|
[[package]]
|
3721
3928
|
name = "serde"
|
3722
|
-
version = "1.0.
|
3929
|
+
version = "1.0.219"
|
3723
3930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3724
|
-
checksum = "
|
3931
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
3725
3932
|
dependencies = [
|
3726
3933
|
"serde_derive",
|
3727
3934
|
]
|
3728
3935
|
|
3729
3936
|
[[package]]
|
3730
3937
|
name = "serde_derive"
|
3731
|
-
version = "1.0.
|
3938
|
+
version = "1.0.219"
|
3732
3939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3733
|
-
checksum = "
|
3940
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
3734
3941
|
dependencies = [
|
3735
3942
|
"proc-macro2",
|
3736
3943
|
"quote",
|
3737
|
-
"syn
|
3944
|
+
"syn",
|
3738
3945
|
]
|
3739
3946
|
|
3740
3947
|
[[package]]
|
3741
3948
|
name = "serde_json"
|
3742
|
-
version = "1.0.
|
3949
|
+
version = "1.0.140"
|
3743
3950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3744
|
-
checksum = "
|
3951
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
3745
3952
|
dependencies = [
|
3746
3953
|
"itoa",
|
3747
3954
|
"memchr",
|
@@ -3763,9 +3970,9 @@ dependencies = [
|
|
3763
3970
|
|
3764
3971
|
[[package]]
|
3765
3972
|
name = "sha2"
|
3766
|
-
version = "0.10.
|
3973
|
+
version = "0.10.9"
|
3767
3974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3768
|
-
checksum = "
|
3975
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
3769
3976
|
dependencies = [
|
3770
3977
|
"cfg-if",
|
3771
3978
|
"cpufeatures",
|
@@ -3786,13 +3993,19 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3786
3993
|
|
3787
3994
|
[[package]]
|
3788
3995
|
name = "signal-hook-registry"
|
3789
|
-
version = "1.4.
|
3996
|
+
version = "1.4.5"
|
3790
3997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3791
|
-
checksum = "
|
3998
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
3792
3999
|
dependencies = [
|
3793
4000
|
"libc",
|
3794
4001
|
]
|
3795
4002
|
|
4003
|
+
[[package]]
|
4004
|
+
name = "simdutf8"
|
4005
|
+
version = "0.1.5"
|
4006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4007
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
4008
|
+
|
3796
4009
|
[[package]]
|
3797
4010
|
name = "siphasher"
|
3798
4011
|
version = "1.0.1"
|
@@ -3810,30 +4023,9 @@ dependencies = [
|
|
3810
4023
|
|
3811
4024
|
[[package]]
|
3812
4025
|
name = "smallvec"
|
3813
|
-
version = "1.
|
3814
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3815
|
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
3816
|
-
|
3817
|
-
[[package]]
|
3818
|
-
name = "snafu"
|
3819
|
-
version = "0.8.5"
|
4026
|
+
version = "1.15.0"
|
3820
4027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3821
|
-
checksum = "
|
3822
|
-
dependencies = [
|
3823
|
-
"snafu-derive",
|
3824
|
-
]
|
3825
|
-
|
3826
|
-
[[package]]
|
3827
|
-
name = "snafu-derive"
|
3828
|
-
version = "0.8.5"
|
3829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3830
|
-
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
3831
|
-
dependencies = [
|
3832
|
-
"heck",
|
3833
|
-
"proc-macro2",
|
3834
|
-
"quote",
|
3835
|
-
"syn 2.0.96",
|
3836
|
-
]
|
4028
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
3837
4029
|
|
3838
4030
|
[[package]]
|
3839
4031
|
name = "snap"
|
@@ -3843,27 +4035,31 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
3843
4035
|
|
3844
4036
|
[[package]]
|
3845
4037
|
name = "socket2"
|
3846
|
-
version = "0.5.
|
4038
|
+
version = "0.5.9"
|
3847
4039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3848
|
-
checksum = "
|
4040
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
3849
4041
|
dependencies = [
|
3850
4042
|
"libc",
|
3851
4043
|
"windows-sys 0.52.0",
|
3852
4044
|
]
|
3853
4045
|
|
3854
4046
|
[[package]]
|
3855
|
-
name = "
|
3856
|
-
version = "0.
|
4047
|
+
name = "sqlparser"
|
4048
|
+
version = "0.53.0"
|
3857
4049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3858
|
-
checksum = "
|
4050
|
+
checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
|
4051
|
+
dependencies = [
|
4052
|
+
"log",
|
4053
|
+
]
|
3859
4054
|
|
3860
4055
|
[[package]]
|
3861
4056
|
name = "sqlparser"
|
3862
|
-
version = "0.
|
4057
|
+
version = "0.55.0"
|
3863
4058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3864
|
-
checksum = "
|
4059
|
+
checksum = "c4521174166bac1ff04fe16ef4524c70144cd29682a45978978ca3d7f4e0be11"
|
3865
4060
|
dependencies = [
|
3866
4061
|
"log",
|
4062
|
+
"recursive",
|
3867
4063
|
"sqlparser_derive",
|
3868
4064
|
]
|
3869
4065
|
|
@@ -3875,7 +4071,7 @@ checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
|
|
3875
4071
|
dependencies = [
|
3876
4072
|
"proc-macro2",
|
3877
4073
|
"quote",
|
3878
|
-
"syn
|
4074
|
+
"syn",
|
3879
4075
|
]
|
3880
4076
|
|
3881
4077
|
[[package]]
|
@@ -3886,9 +4082,9 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3886
4082
|
|
3887
4083
|
[[package]]
|
3888
4084
|
name = "stacker"
|
3889
|
-
version = "0.1.
|
4085
|
+
version = "0.1.21"
|
3890
4086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3891
|
-
checksum = "
|
4087
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
3892
4088
|
dependencies = [
|
3893
4089
|
"cc",
|
3894
4090
|
"cfg-if",
|
@@ -3905,24 +4101,24 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3905
4101
|
|
3906
4102
|
[[package]]
|
3907
4103
|
name = "strum"
|
3908
|
-
version = "0.
|
4104
|
+
version = "0.27.1"
|
3909
4105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3910
|
-
checksum = "
|
4106
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
3911
4107
|
dependencies = [
|
3912
4108
|
"strum_macros",
|
3913
4109
|
]
|
3914
4110
|
|
3915
4111
|
[[package]]
|
3916
4112
|
name = "strum_macros"
|
3917
|
-
version = "0.
|
4113
|
+
version = "0.27.1"
|
3918
4114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3919
|
-
checksum = "
|
4115
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
3920
4116
|
dependencies = [
|
3921
4117
|
"heck",
|
3922
4118
|
"proc-macro2",
|
3923
4119
|
"quote",
|
3924
4120
|
"rustversion",
|
3925
|
-
"syn
|
4121
|
+
"syn",
|
3926
4122
|
]
|
3927
4123
|
|
3928
4124
|
[[package]]
|
@@ -3933,20 +4129,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3933
4129
|
|
3934
4130
|
[[package]]
|
3935
4131
|
name = "syn"
|
3936
|
-
version = "
|
3937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3938
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
3939
|
-
dependencies = [
|
3940
|
-
"proc-macro2",
|
3941
|
-
"quote",
|
3942
|
-
"unicode-ident",
|
3943
|
-
]
|
3944
|
-
|
3945
|
-
[[package]]
|
3946
|
-
name = "syn"
|
3947
|
-
version = "2.0.96"
|
4132
|
+
version = "2.0.101"
|
3948
4133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3949
|
-
checksum = "
|
4134
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
3950
4135
|
dependencies = [
|
3951
4136
|
"proc-macro2",
|
3952
4137
|
"quote",
|
@@ -3964,88 +4149,46 @@ dependencies = [
|
|
3964
4149
|
|
3965
4150
|
[[package]]
|
3966
4151
|
name = "synstructure"
|
3967
|
-
version = "0.13.
|
4152
|
+
version = "0.13.2"
|
3968
4153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3969
|
-
checksum = "
|
4154
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
3970
4155
|
dependencies = [
|
3971
4156
|
"proc-macro2",
|
3972
4157
|
"quote",
|
3973
|
-
"syn
|
3974
|
-
]
|
3975
|
-
|
3976
|
-
[[package]]
|
3977
|
-
name = "system-configuration"
|
3978
|
-
version = "0.6.1"
|
3979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3980
|
-
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
3981
|
-
dependencies = [
|
3982
|
-
"bitflags 2.8.0",
|
3983
|
-
"core-foundation 0.9.4",
|
3984
|
-
"system-configuration-sys",
|
3985
|
-
]
|
3986
|
-
|
3987
|
-
[[package]]
|
3988
|
-
name = "system-configuration-sys"
|
3989
|
-
version = "0.6.0"
|
3990
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3991
|
-
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
3992
|
-
dependencies = [
|
3993
|
-
"core-foundation-sys",
|
3994
|
-
"libc",
|
4158
|
+
"syn",
|
3995
4159
|
]
|
3996
4160
|
|
3997
4161
|
[[package]]
|
3998
4162
|
name = "tempfile"
|
3999
|
-
version = "3.
|
4163
|
+
version = "3.19.1"
|
4000
4164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4001
|
-
checksum = "
|
4165
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
4002
4166
|
dependencies = [
|
4003
|
-
"cfg-if",
|
4004
4167
|
"fastrand",
|
4005
|
-
"getrandom",
|
4168
|
+
"getrandom 0.3.2",
|
4006
4169
|
"once_cell",
|
4007
|
-
"rustix",
|
4170
|
+
"rustix 1.0.7",
|
4008
4171
|
"windows-sys 0.59.0",
|
4009
4172
|
]
|
4010
4173
|
|
4011
4174
|
[[package]]
|
4012
4175
|
name = "thiserror"
|
4013
|
-
version = "
|
4014
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4015
|
-
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
4016
|
-
dependencies = [
|
4017
|
-
"thiserror-impl 1.0.69",
|
4018
|
-
]
|
4019
|
-
|
4020
|
-
[[package]]
|
4021
|
-
name = "thiserror"
|
4022
|
-
version = "2.0.11"
|
4023
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4024
|
-
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
4025
|
-
dependencies = [
|
4026
|
-
"thiserror-impl 2.0.11",
|
4027
|
-
]
|
4028
|
-
|
4029
|
-
[[package]]
|
4030
|
-
name = "thiserror-impl"
|
4031
|
-
version = "1.0.69"
|
4176
|
+
version = "2.0.12"
|
4032
4177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4033
|
-
checksum = "
|
4178
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
4034
4179
|
dependencies = [
|
4035
|
-
"
|
4036
|
-
"quote",
|
4037
|
-
"syn 2.0.96",
|
4180
|
+
"thiserror-impl",
|
4038
4181
|
]
|
4039
4182
|
|
4040
4183
|
[[package]]
|
4041
4184
|
name = "thiserror-impl"
|
4042
|
-
version = "2.0.
|
4185
|
+
version = "2.0.12"
|
4043
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4044
|
-
checksum = "
|
4187
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
4045
4188
|
dependencies = [
|
4046
4189
|
"proc-macro2",
|
4047
4190
|
"quote",
|
4048
|
-
"syn
|
4191
|
+
"syn",
|
4049
4192
|
]
|
4050
4193
|
|
4051
4194
|
[[package]]
|
@@ -4061,9 +4204,9 @@ dependencies = [
|
|
4061
4204
|
|
4062
4205
|
[[package]]
|
4063
4206
|
name = "time"
|
4064
|
-
version = "0.3.
|
4207
|
+
version = "0.3.41"
|
4065
4208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4066
|
-
checksum = "
|
4209
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
4067
4210
|
dependencies = [
|
4068
4211
|
"deranged",
|
4069
4212
|
"num-conv",
|
@@ -4075,15 +4218,15 @@ dependencies = [
|
|
4075
4218
|
|
4076
4219
|
[[package]]
|
4077
4220
|
name = "time-core"
|
4078
|
-
version = "0.1.
|
4221
|
+
version = "0.1.4"
|
4079
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4080
|
-
checksum = "
|
4223
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
4081
4224
|
|
4082
4225
|
[[package]]
|
4083
4226
|
name = "time-macros"
|
4084
|
-
version = "0.2.
|
4227
|
+
version = "0.2.22"
|
4085
4228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4086
|
-
checksum = "
|
4229
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
4087
4230
|
dependencies = [
|
4088
4231
|
"num-conv",
|
4089
4232
|
"time-core",
|
@@ -4110,9 +4253,9 @@ dependencies = [
|
|
4110
4253
|
|
4111
4254
|
[[package]]
|
4112
4255
|
name = "tinyvec"
|
4113
|
-
version = "1.
|
4256
|
+
version = "1.9.0"
|
4114
4257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4115
|
-
checksum = "
|
4258
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
4116
4259
|
dependencies = [
|
4117
4260
|
"tinyvec_macros",
|
4118
4261
|
]
|
@@ -4125,9 +4268,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
4125
4268
|
|
4126
4269
|
[[package]]
|
4127
4270
|
name = "tokio"
|
4128
|
-
version = "1.
|
4271
|
+
version = "1.44.2"
|
4129
4272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4130
|
-
checksum = "
|
4273
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
4131
4274
|
dependencies = [
|
4132
4275
|
"backtrace",
|
4133
4276
|
"bytes",
|
@@ -4149,17 +4292,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
4149
4292
|
dependencies = [
|
4150
4293
|
"proc-macro2",
|
4151
4294
|
"quote",
|
4152
|
-
"syn
|
4153
|
-
]
|
4154
|
-
|
4155
|
-
[[package]]
|
4156
|
-
name = "tokio-native-tls"
|
4157
|
-
version = "0.3.1"
|
4158
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4159
|
-
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
4160
|
-
dependencies = [
|
4161
|
-
"native-tls",
|
4162
|
-
"tokio",
|
4295
|
+
"syn",
|
4163
4296
|
]
|
4164
4297
|
|
4165
4298
|
[[package]]
|
@@ -4174,19 +4307,19 @@ dependencies = [
|
|
4174
4307
|
|
4175
4308
|
[[package]]
|
4176
4309
|
name = "tokio-rustls"
|
4177
|
-
version = "0.26.
|
4310
|
+
version = "0.26.2"
|
4178
4311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4179
|
-
checksum = "
|
4312
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
4180
4313
|
dependencies = [
|
4181
|
-
"rustls 0.23.
|
4314
|
+
"rustls 0.23.26",
|
4182
4315
|
"tokio",
|
4183
4316
|
]
|
4184
4317
|
|
4185
4318
|
[[package]]
|
4186
4319
|
name = "tokio-util"
|
4187
|
-
version = "0.7.
|
4320
|
+
version = "0.7.15"
|
4188
4321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4189
|
-
checksum = "
|
4322
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
4190
4323
|
dependencies = [
|
4191
4324
|
"bytes",
|
4192
4325
|
"futures-core",
|
@@ -4242,7 +4375,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
4242
4375
|
dependencies = [
|
4243
4376
|
"proc-macro2",
|
4244
4377
|
"quote",
|
4245
|
-
"syn
|
4378
|
+
"syn",
|
4246
4379
|
]
|
4247
4380
|
|
4248
4381
|
[[package]]
|
@@ -4270,17 +4403,23 @@ dependencies = [
|
|
4270
4403
|
"static_assertions",
|
4271
4404
|
]
|
4272
4405
|
|
4406
|
+
[[package]]
|
4407
|
+
name = "twox-hash"
|
4408
|
+
version = "2.1.0"
|
4409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4410
|
+
checksum = "e7b17f197b3050ba473acf9181f7b1d3b66d1cf7356c6cc57886662276e65908"
|
4411
|
+
|
4273
4412
|
[[package]]
|
4274
4413
|
name = "typenum"
|
4275
|
-
version = "1.
|
4414
|
+
version = "1.18.0"
|
4276
4415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4277
|
-
checksum = "
|
4416
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
4278
4417
|
|
4279
4418
|
[[package]]
|
4280
4419
|
name = "unicode-ident"
|
4281
|
-
version = "1.0.
|
4420
|
+
version = "1.0.18"
|
4282
4421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4283
|
-
checksum = "
|
4422
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
4284
4423
|
|
4285
4424
|
[[package]]
|
4286
4425
|
name = "unicode-segmentation"
|
@@ -4331,38 +4470,23 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4331
4470
|
|
4332
4471
|
[[package]]
|
4333
4472
|
name = "uuid"
|
4334
|
-
version = "1.
|
4473
|
+
version = "1.16.0"
|
4335
4474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4336
|
-
checksum = "
|
4475
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
4337
4476
|
dependencies = [
|
4338
|
-
"getrandom",
|
4339
|
-
"
|
4477
|
+
"getrandom 0.3.2",
|
4478
|
+
"js-sys",
|
4479
|
+
"rand 0.9.1",
|
4340
4480
|
"serde",
|
4481
|
+
"wasm-bindgen",
|
4341
4482
|
]
|
4342
4483
|
|
4343
|
-
[[package]]
|
4344
|
-
name = "vcpkg"
|
4345
|
-
version = "0.2.15"
|
4346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4347
|
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
4348
|
-
|
4349
4484
|
[[package]]
|
4350
4485
|
name = "version_check"
|
4351
4486
|
version = "0.9.5"
|
4352
4487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4353
4488
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
4354
4489
|
|
4355
|
-
[[package]]
|
4356
|
-
name = "visibility"
|
4357
|
-
version = "0.1.1"
|
4358
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4359
|
-
checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
|
4360
|
-
dependencies = [
|
4361
|
-
"proc-macro2",
|
4362
|
-
"quote",
|
4363
|
-
"syn 2.0.96",
|
4364
|
-
]
|
4365
|
-
|
4366
4490
|
[[package]]
|
4367
4491
|
name = "vsimd"
|
4368
4492
|
version = "0.8.0"
|
@@ -4394,6 +4518,15 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
4394
4518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4395
4519
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
4396
4520
|
|
4521
|
+
[[package]]
|
4522
|
+
name = "wasi"
|
4523
|
+
version = "0.14.2+wasi-0.2.4"
|
4524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4525
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
4526
|
+
dependencies = [
|
4527
|
+
"wit-bindgen-rt",
|
4528
|
+
]
|
4529
|
+
|
4397
4530
|
[[package]]
|
4398
4531
|
name = "wasm-bindgen"
|
4399
4532
|
version = "0.2.100"
|
@@ -4416,7 +4549,7 @@ dependencies = [
|
|
4416
4549
|
"log",
|
4417
4550
|
"proc-macro2",
|
4418
4551
|
"quote",
|
4419
|
-
"syn
|
4552
|
+
"syn",
|
4420
4553
|
"wasm-bindgen-shared",
|
4421
4554
|
]
|
4422
4555
|
|
@@ -4451,7 +4584,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
4451
4584
|
dependencies = [
|
4452
4585
|
"proc-macro2",
|
4453
4586
|
"quote",
|
4454
|
-
"syn
|
4587
|
+
"syn",
|
4455
4588
|
"wasm-bindgen-backend",
|
4456
4589
|
"wasm-bindgen-shared",
|
4457
4590
|
]
|
@@ -4498,6 +4631,18 @@ dependencies = [
|
|
4498
4631
|
"wasm-bindgen",
|
4499
4632
|
]
|
4500
4633
|
|
4634
|
+
[[package]]
|
4635
|
+
name = "which"
|
4636
|
+
version = "4.4.2"
|
4637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4638
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
4639
|
+
dependencies = [
|
4640
|
+
"either",
|
4641
|
+
"home",
|
4642
|
+
"once_cell",
|
4643
|
+
"rustix 0.38.44",
|
4644
|
+
]
|
4645
|
+
|
4501
4646
|
[[package]]
|
4502
4647
|
name = "winapi-util"
|
4503
4648
|
version = "0.1.9"
|
@@ -4509,41 +4654,81 @@ dependencies = [
|
|
4509
4654
|
|
4510
4655
|
[[package]]
|
4511
4656
|
name = "windows-core"
|
4512
|
-
version = "0.
|
4657
|
+
version = "0.61.0"
|
4658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4659
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
4660
|
+
dependencies = [
|
4661
|
+
"windows-implement",
|
4662
|
+
"windows-interface",
|
4663
|
+
"windows-link",
|
4664
|
+
"windows-result",
|
4665
|
+
"windows-strings 0.4.0",
|
4666
|
+
]
|
4667
|
+
|
4668
|
+
[[package]]
|
4669
|
+
name = "windows-implement"
|
4670
|
+
version = "0.60.0"
|
4671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4672
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
4673
|
+
dependencies = [
|
4674
|
+
"proc-macro2",
|
4675
|
+
"quote",
|
4676
|
+
"syn",
|
4677
|
+
]
|
4678
|
+
|
4679
|
+
[[package]]
|
4680
|
+
name = "windows-interface"
|
4681
|
+
version = "0.59.1"
|
4513
4682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4514
|
-
checksum = "
|
4683
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
4515
4684
|
dependencies = [
|
4516
|
-
"
|
4685
|
+
"proc-macro2",
|
4686
|
+
"quote",
|
4687
|
+
"syn",
|
4517
4688
|
]
|
4518
4689
|
|
4690
|
+
[[package]]
|
4691
|
+
name = "windows-link"
|
4692
|
+
version = "0.1.1"
|
4693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4694
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
4695
|
+
|
4519
4696
|
[[package]]
|
4520
4697
|
name = "windows-registry"
|
4521
|
-
version = "0.
|
4698
|
+
version = "0.4.0"
|
4522
4699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4523
|
-
checksum = "
|
4700
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
4524
4701
|
dependencies = [
|
4525
4702
|
"windows-result",
|
4526
|
-
"windows-strings",
|
4527
|
-
"windows-targets",
|
4703
|
+
"windows-strings 0.3.1",
|
4704
|
+
"windows-targets 0.53.0",
|
4528
4705
|
]
|
4529
4706
|
|
4530
4707
|
[[package]]
|
4531
4708
|
name = "windows-result"
|
4532
|
-
version = "0.2
|
4709
|
+
version = "0.3.2"
|
4533
4710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4534
|
-
checksum = "
|
4711
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
4535
4712
|
dependencies = [
|
4536
|
-
"windows-
|
4713
|
+
"windows-link",
|
4537
4714
|
]
|
4538
4715
|
|
4539
4716
|
[[package]]
|
4540
4717
|
name = "windows-strings"
|
4541
|
-
version = "0.1
|
4718
|
+
version = "0.3.1"
|
4542
4719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4543
|
-
checksum = "
|
4720
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
4544
4721
|
dependencies = [
|
4545
|
-
"windows-
|
4546
|
-
|
4722
|
+
"windows-link",
|
4723
|
+
]
|
4724
|
+
|
4725
|
+
[[package]]
|
4726
|
+
name = "windows-strings"
|
4727
|
+
version = "0.4.0"
|
4728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4729
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
4730
|
+
dependencies = [
|
4731
|
+
"windows-link",
|
4547
4732
|
]
|
4548
4733
|
|
4549
4734
|
[[package]]
|
@@ -4552,7 +4737,7 @@ version = "0.52.0"
|
|
4552
4737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4553
4738
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
4554
4739
|
dependencies = [
|
4555
|
-
"windows-targets",
|
4740
|
+
"windows-targets 0.52.6",
|
4556
4741
|
]
|
4557
4742
|
|
4558
4743
|
[[package]]
|
@@ -4561,7 +4746,7 @@ version = "0.59.0"
|
|
4561
4746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4562
4747
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
4563
4748
|
dependencies = [
|
4564
|
-
"windows-targets",
|
4749
|
+
"windows-targets 0.52.6",
|
4565
4750
|
]
|
4566
4751
|
|
4567
4752
|
[[package]]
|
@@ -4570,14 +4755,30 @@ version = "0.52.6"
|
|
4570
4755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4571
4756
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
4572
4757
|
dependencies = [
|
4573
|
-
"windows_aarch64_gnullvm",
|
4574
|
-
"windows_aarch64_msvc",
|
4575
|
-
"windows_i686_gnu",
|
4576
|
-
"windows_i686_gnullvm",
|
4577
|
-
"windows_i686_msvc",
|
4578
|
-
"windows_x86_64_gnu",
|
4579
|
-
"windows_x86_64_gnullvm",
|
4580
|
-
"windows_x86_64_msvc",
|
4758
|
+
"windows_aarch64_gnullvm 0.52.6",
|
4759
|
+
"windows_aarch64_msvc 0.52.6",
|
4760
|
+
"windows_i686_gnu 0.52.6",
|
4761
|
+
"windows_i686_gnullvm 0.52.6",
|
4762
|
+
"windows_i686_msvc 0.52.6",
|
4763
|
+
"windows_x86_64_gnu 0.52.6",
|
4764
|
+
"windows_x86_64_gnullvm 0.52.6",
|
4765
|
+
"windows_x86_64_msvc 0.52.6",
|
4766
|
+
]
|
4767
|
+
|
4768
|
+
[[package]]
|
4769
|
+
name = "windows-targets"
|
4770
|
+
version = "0.53.0"
|
4771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4772
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
4773
|
+
dependencies = [
|
4774
|
+
"windows_aarch64_gnullvm 0.53.0",
|
4775
|
+
"windows_aarch64_msvc 0.53.0",
|
4776
|
+
"windows_i686_gnu 0.53.0",
|
4777
|
+
"windows_i686_gnullvm 0.53.0",
|
4778
|
+
"windows_i686_msvc 0.53.0",
|
4779
|
+
"windows_x86_64_gnu 0.53.0",
|
4780
|
+
"windows_x86_64_gnullvm 0.53.0",
|
4781
|
+
"windows_x86_64_msvc 0.53.0",
|
4581
4782
|
]
|
4582
4783
|
|
4583
4784
|
[[package]]
|
@@ -4586,48 +4787,105 @@ version = "0.52.6"
|
|
4586
4787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4587
4788
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
4588
4789
|
|
4790
|
+
[[package]]
|
4791
|
+
name = "windows_aarch64_gnullvm"
|
4792
|
+
version = "0.53.0"
|
4793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4794
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
4795
|
+
|
4589
4796
|
[[package]]
|
4590
4797
|
name = "windows_aarch64_msvc"
|
4591
4798
|
version = "0.52.6"
|
4592
4799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4593
4800
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
4594
4801
|
|
4802
|
+
[[package]]
|
4803
|
+
name = "windows_aarch64_msvc"
|
4804
|
+
version = "0.53.0"
|
4805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4806
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
4807
|
+
|
4595
4808
|
[[package]]
|
4596
4809
|
name = "windows_i686_gnu"
|
4597
4810
|
version = "0.52.6"
|
4598
4811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4599
4812
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
4600
4813
|
|
4814
|
+
[[package]]
|
4815
|
+
name = "windows_i686_gnu"
|
4816
|
+
version = "0.53.0"
|
4817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4818
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
4819
|
+
|
4601
4820
|
[[package]]
|
4602
4821
|
name = "windows_i686_gnullvm"
|
4603
4822
|
version = "0.52.6"
|
4604
4823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4605
4824
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
4606
4825
|
|
4826
|
+
[[package]]
|
4827
|
+
name = "windows_i686_gnullvm"
|
4828
|
+
version = "0.53.0"
|
4829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4830
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
4831
|
+
|
4607
4832
|
[[package]]
|
4608
4833
|
name = "windows_i686_msvc"
|
4609
4834
|
version = "0.52.6"
|
4610
4835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4611
4836
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
4612
4837
|
|
4838
|
+
[[package]]
|
4839
|
+
name = "windows_i686_msvc"
|
4840
|
+
version = "0.53.0"
|
4841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4842
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
4843
|
+
|
4613
4844
|
[[package]]
|
4614
4845
|
name = "windows_x86_64_gnu"
|
4615
4846
|
version = "0.52.6"
|
4616
4847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4617
4848
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
4618
4849
|
|
4850
|
+
[[package]]
|
4851
|
+
name = "windows_x86_64_gnu"
|
4852
|
+
version = "0.53.0"
|
4853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4854
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
4855
|
+
|
4619
4856
|
[[package]]
|
4620
4857
|
name = "windows_x86_64_gnullvm"
|
4621
4858
|
version = "0.52.6"
|
4622
4859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4623
4860
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
4624
4861
|
|
4862
|
+
[[package]]
|
4863
|
+
name = "windows_x86_64_gnullvm"
|
4864
|
+
version = "0.53.0"
|
4865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4866
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
4867
|
+
|
4625
4868
|
[[package]]
|
4626
4869
|
name = "windows_x86_64_msvc"
|
4627
4870
|
version = "0.52.6"
|
4628
4871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4629
4872
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
4630
4873
|
|
4874
|
+
[[package]]
|
4875
|
+
name = "windows_x86_64_msvc"
|
4876
|
+
version = "0.53.0"
|
4877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4878
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
4879
|
+
|
4880
|
+
[[package]]
|
4881
|
+
name = "wit-bindgen-rt"
|
4882
|
+
version = "0.39.0"
|
4883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4884
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
4885
|
+
dependencies = [
|
4886
|
+
"bitflags",
|
4887
|
+
]
|
4888
|
+
|
4631
4889
|
[[package]]
|
4632
4890
|
name = "write16"
|
4633
4891
|
version = "1.0.0"
|
@@ -4675,15 +4933,15 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4675
4933
|
dependencies = [
|
4676
4934
|
"proc-macro2",
|
4677
4935
|
"quote",
|
4678
|
-
"syn
|
4936
|
+
"syn",
|
4679
4937
|
"synstructure",
|
4680
4938
|
]
|
4681
4939
|
|
4682
4940
|
[[package]]
|
4683
4941
|
name = "z85"
|
4684
|
-
version = "3.0.
|
4942
|
+
version = "3.0.6"
|
4685
4943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4686
|
-
checksum = "
|
4944
|
+
checksum = "9b3a41ce106832b4da1c065baa4c31cf640cf965fa1483816402b7f6b96f0a64"
|
4687
4945
|
|
4688
4946
|
[[package]]
|
4689
4947
|
name = "zerocopy"
|
@@ -4691,8 +4949,16 @@ version = "0.7.35"
|
|
4691
4949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4692
4950
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
4693
4951
|
dependencies = [
|
4694
|
-
"
|
4695
|
-
|
4952
|
+
"zerocopy-derive 0.7.35",
|
4953
|
+
]
|
4954
|
+
|
4955
|
+
[[package]]
|
4956
|
+
name = "zerocopy"
|
4957
|
+
version = "0.8.25"
|
4958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4959
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
4960
|
+
dependencies = [
|
4961
|
+
"zerocopy-derive 0.8.25",
|
4696
4962
|
]
|
4697
4963
|
|
4698
4964
|
[[package]]
|
@@ -4703,27 +4969,38 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
4703
4969
|
dependencies = [
|
4704
4970
|
"proc-macro2",
|
4705
4971
|
"quote",
|
4706
|
-
"syn
|
4972
|
+
"syn",
|
4973
|
+
]
|
4974
|
+
|
4975
|
+
[[package]]
|
4976
|
+
name = "zerocopy-derive"
|
4977
|
+
version = "0.8.25"
|
4978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4979
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
4980
|
+
dependencies = [
|
4981
|
+
"proc-macro2",
|
4982
|
+
"quote",
|
4983
|
+
"syn",
|
4707
4984
|
]
|
4708
4985
|
|
4709
4986
|
[[package]]
|
4710
4987
|
name = "zerofrom"
|
4711
|
-
version = "0.1.
|
4988
|
+
version = "0.1.6"
|
4712
4989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4713
|
-
checksum = "
|
4990
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
4714
4991
|
dependencies = [
|
4715
4992
|
"zerofrom-derive",
|
4716
4993
|
]
|
4717
4994
|
|
4718
4995
|
[[package]]
|
4719
4996
|
name = "zerofrom-derive"
|
4720
|
-
version = "0.1.
|
4997
|
+
version = "0.1.6"
|
4721
4998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4722
|
-
checksum = "
|
4999
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
4723
5000
|
dependencies = [
|
4724
5001
|
"proc-macro2",
|
4725
5002
|
"quote",
|
4726
|
-
"syn
|
5003
|
+
"syn",
|
4727
5004
|
"synstructure",
|
4728
5005
|
]
|
4729
5006
|
|
@@ -4752,32 +5029,38 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
4752
5029
|
dependencies = [
|
4753
5030
|
"proc-macro2",
|
4754
5031
|
"quote",
|
4755
|
-
"syn
|
5032
|
+
"syn",
|
4756
5033
|
]
|
4757
5034
|
|
5035
|
+
[[package]]
|
5036
|
+
name = "zlib-rs"
|
5037
|
+
version = "0.5.0"
|
5038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5039
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
5040
|
+
|
4758
5041
|
[[package]]
|
4759
5042
|
name = "zstd"
|
4760
|
-
version = "0.13.
|
5043
|
+
version = "0.13.3"
|
4761
5044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4762
|
-
checksum = "
|
5045
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
4763
5046
|
dependencies = [
|
4764
5047
|
"zstd-safe",
|
4765
5048
|
]
|
4766
5049
|
|
4767
5050
|
[[package]]
|
4768
5051
|
name = "zstd-safe"
|
4769
|
-
version = "7.2.
|
5052
|
+
version = "7.2.4"
|
4770
5053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4771
|
-
checksum = "
|
5054
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
4772
5055
|
dependencies = [
|
4773
5056
|
"zstd-sys",
|
4774
5057
|
]
|
4775
5058
|
|
4776
5059
|
[[package]]
|
4777
5060
|
name = "zstd-sys"
|
4778
|
-
version = "2.0.
|
5061
|
+
version = "2.0.15+zstd.1.5.7"
|
4779
5062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4780
|
-
checksum = "
|
5063
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
4781
5064
|
dependencies = [
|
4782
5065
|
"cc",
|
4783
5066
|
"pkg-config",
|