parquet 0.5.6 → 0.5.8
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/Cargo.lock +282 -167
- data/ext/parquet/Cargo.toml +4 -3
- data/ext/parquet/src/reader/unified/mod.rs +55 -20
- data/ext/parquet/src/types/mod.rs +2 -0
- data/ext/parquet/src/types/record_types.rs +178 -10
- data/lib/parquet/version.rb +1 -1
- metadata +2 -2
data/Cargo.lock
CHANGED
@@ -10,16 +10,16 @@ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
10
10
|
|
11
11
|
[[package]]
|
12
12
|
name = "ahash"
|
13
|
-
version = "0.8.
|
13
|
+
version = "0.8.12"
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
|
-
checksum = "
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
16
16
|
dependencies = [
|
17
17
|
"cfg-if",
|
18
18
|
"const-random",
|
19
|
-
"getrandom 0.
|
19
|
+
"getrandom 0.3.3",
|
20
20
|
"once_cell",
|
21
21
|
"version_check",
|
22
|
-
"zerocopy
|
22
|
+
"zerocopy",
|
23
23
|
]
|
24
24
|
|
25
25
|
[[package]]
|
@@ -64,7 +64,7 @@ dependencies = [
|
|
64
64
|
[[package]]
|
65
65
|
name = "arrow-array"
|
66
66
|
version = "55.1.0"
|
67
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
67
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
68
68
|
dependencies = [
|
69
69
|
"ahash",
|
70
70
|
"arrow-buffer",
|
@@ -79,7 +79,7 @@ dependencies = [
|
|
79
79
|
[[package]]
|
80
80
|
name = "arrow-buffer"
|
81
81
|
version = "55.1.0"
|
82
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
82
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
83
83
|
dependencies = [
|
84
84
|
"bytes",
|
85
85
|
"half",
|
@@ -89,7 +89,7 @@ dependencies = [
|
|
89
89
|
[[package]]
|
90
90
|
name = "arrow-cast"
|
91
91
|
version = "55.1.0"
|
92
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
92
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
93
93
|
dependencies = [
|
94
94
|
"arrow-array",
|
95
95
|
"arrow-buffer",
|
@@ -108,7 +108,7 @@ dependencies = [
|
|
108
108
|
[[package]]
|
109
109
|
name = "arrow-data"
|
110
110
|
version = "55.1.0"
|
111
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
111
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
112
112
|
dependencies = [
|
113
113
|
"arrow-buffer",
|
114
114
|
"arrow-schema",
|
@@ -119,7 +119,7 @@ dependencies = [
|
|
119
119
|
[[package]]
|
120
120
|
name = "arrow-ipc"
|
121
121
|
version = "55.1.0"
|
122
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
122
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
123
123
|
dependencies = [
|
124
124
|
"arrow-array",
|
125
125
|
"arrow-buffer",
|
@@ -131,12 +131,12 @@ dependencies = [
|
|
131
131
|
[[package]]
|
132
132
|
name = "arrow-schema"
|
133
133
|
version = "55.1.0"
|
134
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
134
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
135
135
|
|
136
136
|
[[package]]
|
137
137
|
name = "arrow-select"
|
138
138
|
version = "55.1.0"
|
139
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
139
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
140
140
|
dependencies = [
|
141
141
|
"ahash",
|
142
142
|
"arrow-array",
|
@@ -189,9 +189,9 @@ dependencies = [
|
|
189
189
|
|
190
190
|
[[package]]
|
191
191
|
name = "bitflags"
|
192
|
-
version = "2.
|
192
|
+
version = "2.9.1"
|
193
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
-
checksum = "
|
194
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
195
195
|
|
196
196
|
[[package]]
|
197
197
|
name = "brotli"
|
@@ -228,15 +228,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
228
228
|
|
229
229
|
[[package]]
|
230
230
|
name = "bytes"
|
231
|
-
version = "1.10.
|
231
|
+
version = "1.10.1"
|
232
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
233
|
-
checksum = "
|
233
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
234
234
|
|
235
235
|
[[package]]
|
236
236
|
name = "cc"
|
237
|
-
version = "1.2.
|
237
|
+
version = "1.2.24"
|
238
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
-
checksum = "
|
239
|
+
checksum = "16595d3be041c03b09d08d0858631facccee9221e579704070e6e9e4915d3bc7"
|
240
240
|
dependencies = [
|
241
241
|
"jobserver",
|
242
242
|
"libc",
|
@@ -260,9 +260,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
260
260
|
|
261
261
|
[[package]]
|
262
262
|
name = "chrono"
|
263
|
-
version = "0.4.
|
263
|
+
version = "0.4.41"
|
264
264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
265
|
-
checksum = "
|
265
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
266
266
|
dependencies = [
|
267
267
|
"android-tzdata",
|
268
268
|
"iana-time-zone",
|
@@ -296,7 +296,7 @@ version = "0.1.16"
|
|
296
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
297
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
298
298
|
dependencies = [
|
299
|
-
"getrandom 0.2.
|
299
|
+
"getrandom 0.2.16",
|
300
300
|
"once_cell",
|
301
301
|
"tiny-keccak",
|
302
302
|
]
|
@@ -324,15 +324,15 @@ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
324
324
|
|
325
325
|
[[package]]
|
326
326
|
name = "either"
|
327
|
-
version = "1.
|
327
|
+
version = "1.15.0"
|
328
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
329
|
-
checksum = "
|
329
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
330
330
|
|
331
331
|
[[package]]
|
332
332
|
name = "errno"
|
333
|
-
version = "0.3.
|
333
|
+
version = "0.3.12"
|
334
334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
-
checksum = "
|
335
|
+
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
|
336
336
|
dependencies = [
|
337
337
|
"libc",
|
338
338
|
"windows-sys",
|
@@ -356,9 +356,9 @@ dependencies = [
|
|
356
356
|
|
357
357
|
[[package]]
|
358
358
|
name = "flate2"
|
359
|
-
version = "1.1.
|
359
|
+
version = "1.1.1"
|
360
360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
-
checksum = "
|
361
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
362
362
|
dependencies = [
|
363
363
|
"crc32fast",
|
364
364
|
"libz-rs-sys",
|
@@ -367,9 +367,9 @@ dependencies = [
|
|
367
367
|
|
368
368
|
[[package]]
|
369
369
|
name = "getrandom"
|
370
|
-
version = "0.2.
|
370
|
+
version = "0.2.16"
|
371
371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
372
|
-
checksum = "
|
372
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
373
373
|
dependencies = [
|
374
374
|
"cfg-if",
|
375
375
|
"libc",
|
@@ -378,14 +378,14 @@ dependencies = [
|
|
378
378
|
|
379
379
|
[[package]]
|
380
380
|
name = "getrandom"
|
381
|
-
version = "0.3.
|
381
|
+
version = "0.3.3"
|
382
382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
-
checksum = "
|
383
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
384
384
|
dependencies = [
|
385
385
|
"cfg-if",
|
386
386
|
"libc",
|
387
|
-
"
|
388
|
-
"
|
387
|
+
"r-efi",
|
388
|
+
"wasi 0.14.2+wasi-0.2.4",
|
389
389
|
]
|
390
390
|
|
391
391
|
[[package]]
|
@@ -396,9 +396,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
396
396
|
|
397
397
|
[[package]]
|
398
398
|
name = "half"
|
399
|
-
version = "2.
|
399
|
+
version = "2.6.0"
|
400
400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
-
checksum = "
|
401
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
402
402
|
dependencies = [
|
403
403
|
"cfg-if",
|
404
404
|
"crunchy",
|
@@ -407,20 +407,21 @@ dependencies = [
|
|
407
407
|
|
408
408
|
[[package]]
|
409
409
|
name = "hashbrown"
|
410
|
-
version = "0.15.
|
410
|
+
version = "0.15.3"
|
411
411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
-
checksum = "
|
412
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
413
413
|
|
414
414
|
[[package]]
|
415
415
|
name = "iana-time-zone"
|
416
|
-
version = "0.1.
|
416
|
+
version = "0.1.63"
|
417
417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
|
-
checksum = "
|
418
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
419
419
|
dependencies = [
|
420
420
|
"android_system_properties",
|
421
421
|
"core-foundation-sys",
|
422
422
|
"iana-time-zone-haiku",
|
423
423
|
"js-sys",
|
424
|
+
"log",
|
424
425
|
"wasm-bindgen",
|
425
426
|
"windows-core",
|
426
427
|
]
|
@@ -460,9 +461,9 @@ dependencies = [
|
|
460
461
|
|
461
462
|
[[package]]
|
462
463
|
name = "itoa"
|
463
|
-
version = "1.0.
|
464
|
+
version = "1.0.15"
|
464
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
-
checksum = "
|
466
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
466
467
|
|
467
468
|
[[package]]
|
468
469
|
name = "jemalloc-sys"
|
@@ -486,10 +487,11 @@ dependencies = [
|
|
486
487
|
|
487
488
|
[[package]]
|
488
489
|
name = "jiff"
|
489
|
-
version = "0.2.
|
490
|
+
version = "0.2.14"
|
490
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
491
|
-
checksum = "
|
492
|
+
checksum = "a194df1107f33c79f4f93d02c80798520551949d59dfad22b6157048a88cca93"
|
492
493
|
dependencies = [
|
494
|
+
"jiff-static",
|
493
495
|
"jiff-tzdb-platform",
|
494
496
|
"log",
|
495
497
|
"portable-atomic",
|
@@ -498,27 +500,39 @@ dependencies = [
|
|
498
500
|
"windows-sys",
|
499
501
|
]
|
500
502
|
|
503
|
+
[[package]]
|
504
|
+
name = "jiff-static"
|
505
|
+
version = "0.2.14"
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
507
|
+
checksum = "6c6e1db7ed32c6c71b759497fae34bf7933636f75a251b9e736555da426f6442"
|
508
|
+
dependencies = [
|
509
|
+
"proc-macro2",
|
510
|
+
"quote",
|
511
|
+
"syn",
|
512
|
+
]
|
513
|
+
|
501
514
|
[[package]]
|
502
515
|
name = "jiff-tzdb"
|
503
|
-
version = "0.1.
|
516
|
+
version = "0.1.4"
|
504
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
505
|
-
checksum = "
|
518
|
+
checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524"
|
506
519
|
|
507
520
|
[[package]]
|
508
521
|
name = "jiff-tzdb-platform"
|
509
|
-
version = "0.1.
|
522
|
+
version = "0.1.3"
|
510
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
511
|
-
checksum = "
|
524
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
512
525
|
dependencies = [
|
513
526
|
"jiff-tzdb",
|
514
527
|
]
|
515
528
|
|
516
529
|
[[package]]
|
517
530
|
name = "jobserver"
|
518
|
-
version = "0.1.
|
531
|
+
version = "0.1.33"
|
519
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
-
checksum = "
|
533
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
521
534
|
dependencies = [
|
535
|
+
"getrandom 0.3.3",
|
522
536
|
"libc",
|
523
537
|
]
|
524
538
|
|
@@ -610,31 +624,31 @@ dependencies = [
|
|
610
624
|
|
611
625
|
[[package]]
|
612
626
|
name = "libc"
|
613
|
-
version = "0.2.
|
627
|
+
version = "0.2.172"
|
614
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
615
|
-
checksum = "
|
629
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
616
630
|
|
617
631
|
[[package]]
|
618
632
|
name = "libloading"
|
619
|
-
version = "0.8.
|
633
|
+
version = "0.8.7"
|
620
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "
|
635
|
+
checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
|
622
636
|
dependencies = [
|
623
637
|
"cfg-if",
|
624
|
-
"windows-targets",
|
638
|
+
"windows-targets 0.53.0",
|
625
639
|
]
|
626
640
|
|
627
641
|
[[package]]
|
628
642
|
name = "libm"
|
629
|
-
version = "0.2.
|
643
|
+
version = "0.2.15"
|
630
644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
-
checksum = "
|
645
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
632
646
|
|
633
647
|
[[package]]
|
634
648
|
name = "libmimalloc-sys"
|
635
|
-
version = "0.1.
|
649
|
+
version = "0.1.42"
|
636
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
-
checksum = "
|
651
|
+
checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
|
638
652
|
dependencies = [
|
639
653
|
"cc",
|
640
654
|
"libc",
|
@@ -642,24 +656,24 @@ dependencies = [
|
|
642
656
|
|
643
657
|
[[package]]
|
644
658
|
name = "libz-rs-sys"
|
645
|
-
version = "0.
|
659
|
+
version = "0.5.0"
|
646
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
647
|
-
checksum = "
|
661
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
648
662
|
dependencies = [
|
649
663
|
"zlib-rs",
|
650
664
|
]
|
651
665
|
|
652
666
|
[[package]]
|
653
667
|
name = "linux-raw-sys"
|
654
|
-
version = "0.4
|
668
|
+
version = "0.9.4"
|
655
669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
656
|
-
checksum = "
|
670
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
657
671
|
|
658
672
|
[[package]]
|
659
673
|
name = "log"
|
660
|
-
version = "0.4.
|
674
|
+
version = "0.4.27"
|
661
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
|
-
checksum = "
|
676
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
663
677
|
|
664
678
|
[[package]]
|
665
679
|
name = "lz4_flex"
|
@@ -701,9 +715,9 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
701
715
|
|
702
716
|
[[package]]
|
703
717
|
name = "mimalloc"
|
704
|
-
version = "0.1.
|
718
|
+
version = "0.1.46"
|
705
719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
706
|
-
checksum = "
|
720
|
+
checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
|
707
721
|
dependencies = [
|
708
722
|
"libmimalloc-sys",
|
709
723
|
]
|
@@ -716,9 +730,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
716
730
|
|
717
731
|
[[package]]
|
718
732
|
name = "miniz_oxide"
|
719
|
-
version = "0.8.
|
733
|
+
version = "0.8.8"
|
720
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
721
|
-
checksum = "
|
735
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
722
736
|
dependencies = [
|
723
737
|
"adler2",
|
724
738
|
]
|
@@ -809,9 +823,9 @@ dependencies = [
|
|
809
823
|
|
810
824
|
[[package]]
|
811
825
|
name = "once_cell"
|
812
|
-
version = "1.
|
826
|
+
version = "1.21.3"
|
813
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
814
|
-
checksum = "
|
828
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
815
829
|
|
816
830
|
[[package]]
|
817
831
|
name = "ordered-float"
|
@@ -844,12 +858,13 @@ dependencies = [
|
|
844
858
|
"simdutf8",
|
845
859
|
"tempfile",
|
846
860
|
"thiserror",
|
861
|
+
"uuid",
|
847
862
|
]
|
848
863
|
|
849
864
|
[[package]]
|
850
865
|
name = "parquet"
|
851
866
|
version = "55.1.0"
|
852
|
-
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-
|
867
|
+
source = "git+https://github.com/njaremko/arrow-rs?branch=nathan%2Ffix-time#a6a93f401a9a2aba72aa362822b50068f67ded42"
|
853
868
|
dependencies = [
|
854
869
|
"ahash",
|
855
870
|
"arrow-array",
|
@@ -887,9 +902,9 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
887
902
|
|
888
903
|
[[package]]
|
889
904
|
name = "pkg-config"
|
890
|
-
version = "0.3.
|
905
|
+
version = "0.3.32"
|
891
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
-
checksum = "
|
907
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
893
908
|
|
894
909
|
[[package]]
|
895
910
|
name = "portable-atomic"
|
@@ -908,40 +923,45 @@ dependencies = [
|
|
908
923
|
|
909
924
|
[[package]]
|
910
925
|
name = "ppv-lite86"
|
911
|
-
version = "0.2.
|
926
|
+
version = "0.2.21"
|
912
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
-
checksum = "
|
928
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
914
929
|
dependencies = [
|
915
|
-
"zerocopy
|
930
|
+
"zerocopy",
|
916
931
|
]
|
917
932
|
|
918
933
|
[[package]]
|
919
934
|
name = "proc-macro2"
|
920
|
-
version = "1.0.
|
935
|
+
version = "1.0.95"
|
921
936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
922
|
-
checksum = "
|
937
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
923
938
|
dependencies = [
|
924
939
|
"unicode-ident",
|
925
940
|
]
|
926
941
|
|
927
942
|
[[package]]
|
928
943
|
name = "quote"
|
929
|
-
version = "1.0.
|
944
|
+
version = "1.0.40"
|
930
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
931
|
-
checksum = "
|
946
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
932
947
|
dependencies = [
|
933
948
|
"proc-macro2",
|
934
949
|
]
|
935
950
|
|
951
|
+
[[package]]
|
952
|
+
name = "r-efi"
|
953
|
+
version = "5.2.0"
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
955
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
956
|
+
|
936
957
|
[[package]]
|
937
958
|
name = "rand"
|
938
|
-
version = "0.9.
|
959
|
+
version = "0.9.1"
|
939
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
940
|
-
checksum = "
|
961
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
941
962
|
dependencies = [
|
942
963
|
"rand_chacha",
|
943
964
|
"rand_core",
|
944
|
-
"zerocopy 0.8.20",
|
945
965
|
]
|
946
966
|
|
947
967
|
[[package]]
|
@@ -956,28 +976,27 @@ dependencies = [
|
|
956
976
|
|
957
977
|
[[package]]
|
958
978
|
name = "rand_core"
|
959
|
-
version = "0.9.
|
979
|
+
version = "0.9.3"
|
960
980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
-
checksum = "
|
981
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
962
982
|
dependencies = [
|
963
|
-
"getrandom 0.3.
|
964
|
-
"zerocopy 0.8.20",
|
983
|
+
"getrandom 0.3.3",
|
965
984
|
]
|
966
985
|
|
967
986
|
[[package]]
|
968
987
|
name = "rb-sys"
|
969
|
-
version = "0.9.
|
988
|
+
version = "0.9.115"
|
970
989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
-
checksum = "
|
990
|
+
checksum = "99ca6726be0eca74687047fed7dcbc2d509571f3962e190c343ac1eb40e482b3"
|
972
991
|
dependencies = [
|
973
992
|
"rb-sys-build",
|
974
993
|
]
|
975
994
|
|
976
995
|
[[package]]
|
977
996
|
name = "rb-sys-build"
|
978
|
-
version = "0.9.
|
997
|
+
version = "0.9.115"
|
979
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
980
|
-
checksum = "
|
999
|
+
checksum = "9f2390cfc87b7513656656faad6567291e581542d3ec41dd0a2bf381896e0880"
|
981
1000
|
dependencies = [
|
982
1001
|
"bindgen",
|
983
1002
|
"lazy_static",
|
@@ -1046,9 +1065,9 @@ dependencies = [
|
|
1046
1065
|
|
1047
1066
|
[[package]]
|
1048
1067
|
name = "rustix"
|
1049
|
-
version = "0.
|
1068
|
+
version = "1.0.7"
|
1050
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1051
|
-
checksum = "
|
1070
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
1052
1071
|
dependencies = [
|
1053
1072
|
"bitflags",
|
1054
1073
|
"errno",
|
@@ -1059,42 +1078,42 @@ dependencies = [
|
|
1059
1078
|
|
1060
1079
|
[[package]]
|
1061
1080
|
name = "rustversion"
|
1062
|
-
version = "1.0.
|
1081
|
+
version = "1.0.21"
|
1063
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
-
checksum = "
|
1083
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
1065
1084
|
|
1066
1085
|
[[package]]
|
1067
1086
|
name = "ryu"
|
1068
|
-
version = "1.0.
|
1087
|
+
version = "1.0.20"
|
1069
1088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1070
|
-
checksum = "
|
1089
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1071
1090
|
|
1072
1091
|
[[package]]
|
1073
1092
|
name = "semver"
|
1074
|
-
version = "1.0.
|
1093
|
+
version = "1.0.26"
|
1075
1094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1076
|
-
checksum = "
|
1095
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
1077
1096
|
|
1078
1097
|
[[package]]
|
1079
1098
|
name = "seq-macro"
|
1080
|
-
version = "0.3.
|
1099
|
+
version = "0.3.6"
|
1081
1100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
-
checksum = "
|
1101
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1083
1102
|
|
1084
1103
|
[[package]]
|
1085
1104
|
name = "serde"
|
1086
|
-
version = "1.0.
|
1105
|
+
version = "1.0.219"
|
1087
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1088
|
-
checksum = "
|
1107
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1089
1108
|
dependencies = [
|
1090
1109
|
"serde_derive",
|
1091
1110
|
]
|
1092
1111
|
|
1093
1112
|
[[package]]
|
1094
1113
|
name = "serde_derive"
|
1095
|
-
version = "1.0.
|
1114
|
+
version = "1.0.219"
|
1096
1115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1097
|
-
checksum = "
|
1116
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1098
1117
|
dependencies = [
|
1099
1118
|
"proc-macro2",
|
1100
1119
|
"quote",
|
@@ -1103,9 +1122,9 @@ dependencies = [
|
|
1103
1122
|
|
1104
1123
|
[[package]]
|
1105
1124
|
name = "serde_json"
|
1106
|
-
version = "1.0.
|
1125
|
+
version = "1.0.140"
|
1107
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
-
checksum = "
|
1127
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1109
1128
|
dependencies = [
|
1110
1129
|
"itoa",
|
1111
1130
|
"memchr",
|
@@ -1145,9 +1164,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1145
1164
|
|
1146
1165
|
[[package]]
|
1147
1166
|
name = "syn"
|
1148
|
-
version = "2.0.
|
1167
|
+
version = "2.0.101"
|
1149
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1150
|
-
checksum = "
|
1169
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
1151
1170
|
dependencies = [
|
1152
1171
|
"proc-macro2",
|
1153
1172
|
"quote",
|
@@ -1156,13 +1175,12 @@ dependencies = [
|
|
1156
1175
|
|
1157
1176
|
[[package]]
|
1158
1177
|
name = "tempfile"
|
1159
|
-
version = "3.
|
1178
|
+
version = "3.20.0"
|
1160
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1161
|
-
checksum = "
|
1180
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
1162
1181
|
dependencies = [
|
1163
|
-
"cfg-if",
|
1164
1182
|
"fastrand",
|
1165
|
-
"getrandom 0.3.
|
1183
|
+
"getrandom 0.3.3",
|
1166
1184
|
"once_cell",
|
1167
1185
|
"rustix",
|
1168
1186
|
"windows-sys",
|
@@ -1170,18 +1188,18 @@ dependencies = [
|
|
1170
1188
|
|
1171
1189
|
[[package]]
|
1172
1190
|
name = "thiserror"
|
1173
|
-
version = "2.0.
|
1191
|
+
version = "2.0.12"
|
1174
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1175
|
-
checksum = "
|
1193
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1176
1194
|
dependencies = [
|
1177
1195
|
"thiserror-impl",
|
1178
1196
|
]
|
1179
1197
|
|
1180
1198
|
[[package]]
|
1181
1199
|
name = "thiserror-impl"
|
1182
|
-
version = "2.0.
|
1200
|
+
version = "2.0.12"
|
1183
1201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
-
checksum = "
|
1202
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1185
1203
|
dependencies = [
|
1186
1204
|
"proc-macro2",
|
1187
1205
|
"quote",
|
@@ -1226,9 +1244,19 @@ checksum = "e7b17f197b3050ba473acf9181f7b1d3b66d1cf7356c6cc57886662276e65908"
|
|
1226
1244
|
|
1227
1245
|
[[package]]
|
1228
1246
|
name = "unicode-ident"
|
1229
|
-
version = "1.0.
|
1247
|
+
version = "1.0.18"
|
1230
1248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1231
|
-
checksum = "
|
1249
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
1250
|
+
|
1251
|
+
[[package]]
|
1252
|
+
name = "uuid"
|
1253
|
+
version = "1.17.0"
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
1256
|
+
dependencies = [
|
1257
|
+
"js-sys",
|
1258
|
+
"wasm-bindgen",
|
1259
|
+
]
|
1232
1260
|
|
1233
1261
|
[[package]]
|
1234
1262
|
name = "version_check"
|
@@ -1244,9 +1272,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1244
1272
|
|
1245
1273
|
[[package]]
|
1246
1274
|
name = "wasi"
|
1247
|
-
version = "0.
|
1275
|
+
version = "0.14.2+wasi-0.2.4"
|
1248
1276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1249
|
-
checksum = "
|
1277
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
1250
1278
|
dependencies = [
|
1251
1279
|
"wit-bindgen-rt",
|
1252
1280
|
]
|
@@ -1311,18 +1339,62 @@ dependencies = [
|
|
1311
1339
|
|
1312
1340
|
[[package]]
|
1313
1341
|
name = "windows-core"
|
1314
|
-
version = "0.
|
1342
|
+
version = "0.61.2"
|
1315
1343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1316
|
-
checksum = "
|
1344
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
1317
1345
|
dependencies = [
|
1318
|
-
"windows-
|
1346
|
+
"windows-implement",
|
1347
|
+
"windows-interface",
|
1348
|
+
"windows-link",
|
1349
|
+
"windows-result",
|
1350
|
+
"windows-strings",
|
1351
|
+
]
|
1352
|
+
|
1353
|
+
[[package]]
|
1354
|
+
name = "windows-implement"
|
1355
|
+
version = "0.60.0"
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
1358
|
+
dependencies = [
|
1359
|
+
"proc-macro2",
|
1360
|
+
"quote",
|
1361
|
+
"syn",
|
1362
|
+
]
|
1363
|
+
|
1364
|
+
[[package]]
|
1365
|
+
name = "windows-interface"
|
1366
|
+
version = "0.59.1"
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
1369
|
+
dependencies = [
|
1370
|
+
"proc-macro2",
|
1371
|
+
"quote",
|
1372
|
+
"syn",
|
1319
1373
|
]
|
1320
1374
|
|
1321
1375
|
[[package]]
|
1322
1376
|
name = "windows-link"
|
1323
|
-
version = "0.1.
|
1377
|
+
version = "0.1.1"
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1379
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
1380
|
+
|
1381
|
+
[[package]]
|
1382
|
+
name = "windows-result"
|
1383
|
+
version = "0.3.4"
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
1386
|
+
dependencies = [
|
1387
|
+
"windows-link",
|
1388
|
+
]
|
1389
|
+
|
1390
|
+
[[package]]
|
1391
|
+
name = "windows-strings"
|
1392
|
+
version = "0.4.2"
|
1324
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
-
checksum = "
|
1394
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
1395
|
+
dependencies = [
|
1396
|
+
"windows-link",
|
1397
|
+
]
|
1326
1398
|
|
1327
1399
|
[[package]]
|
1328
1400
|
name = "windows-sys"
|
@@ -1330,7 +1402,7 @@ version = "0.59.0"
|
|
1330
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1331
1403
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1332
1404
|
dependencies = [
|
1333
|
-
"windows-targets",
|
1405
|
+
"windows-targets 0.52.6",
|
1334
1406
|
]
|
1335
1407
|
|
1336
1408
|
[[package]]
|
@@ -1339,14 +1411,30 @@ version = "0.52.6"
|
|
1339
1411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1340
1412
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1341
1413
|
dependencies = [
|
1342
|
-
"windows_aarch64_gnullvm",
|
1343
|
-
"windows_aarch64_msvc",
|
1344
|
-
"windows_i686_gnu",
|
1345
|
-
"windows_i686_gnullvm",
|
1346
|
-
"windows_i686_msvc",
|
1347
|
-
"windows_x86_64_gnu",
|
1348
|
-
"windows_x86_64_gnullvm",
|
1349
|
-
"windows_x86_64_msvc",
|
1414
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1415
|
+
"windows_aarch64_msvc 0.52.6",
|
1416
|
+
"windows_i686_gnu 0.52.6",
|
1417
|
+
"windows_i686_gnullvm 0.52.6",
|
1418
|
+
"windows_i686_msvc 0.52.6",
|
1419
|
+
"windows_x86_64_gnu 0.52.6",
|
1420
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1421
|
+
"windows_x86_64_msvc 0.52.6",
|
1422
|
+
]
|
1423
|
+
|
1424
|
+
[[package]]
|
1425
|
+
name = "windows-targets"
|
1426
|
+
version = "0.53.0"
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1428
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
1429
|
+
dependencies = [
|
1430
|
+
"windows_aarch64_gnullvm 0.53.0",
|
1431
|
+
"windows_aarch64_msvc 0.53.0",
|
1432
|
+
"windows_i686_gnu 0.53.0",
|
1433
|
+
"windows_i686_gnullvm 0.53.0",
|
1434
|
+
"windows_i686_msvc 0.53.0",
|
1435
|
+
"windows_x86_64_gnu 0.53.0",
|
1436
|
+
"windows_x86_64_gnullvm 0.53.0",
|
1437
|
+
"windows_x86_64_msvc 0.53.0",
|
1350
1438
|
]
|
1351
1439
|
|
1352
1440
|
[[package]]
|
@@ -1355,42 +1443,84 @@ version = "0.52.6"
|
|
1355
1443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1356
1444
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1357
1445
|
|
1446
|
+
[[package]]
|
1447
|
+
name = "windows_aarch64_gnullvm"
|
1448
|
+
version = "0.53.0"
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1451
|
+
|
1358
1452
|
[[package]]
|
1359
1453
|
name = "windows_aarch64_msvc"
|
1360
1454
|
version = "0.52.6"
|
1361
1455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1362
1456
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1363
1457
|
|
1458
|
+
[[package]]
|
1459
|
+
name = "windows_aarch64_msvc"
|
1460
|
+
version = "0.53.0"
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1462
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1463
|
+
|
1364
1464
|
[[package]]
|
1365
1465
|
name = "windows_i686_gnu"
|
1366
1466
|
version = "0.52.6"
|
1367
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368
1468
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1369
1469
|
|
1470
|
+
[[package]]
|
1471
|
+
name = "windows_i686_gnu"
|
1472
|
+
version = "0.53.0"
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1474
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1475
|
+
|
1370
1476
|
[[package]]
|
1371
1477
|
name = "windows_i686_gnullvm"
|
1372
1478
|
version = "0.52.6"
|
1373
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
1480
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1375
1481
|
|
1482
|
+
[[package]]
|
1483
|
+
name = "windows_i686_gnullvm"
|
1484
|
+
version = "0.53.0"
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1487
|
+
|
1376
1488
|
[[package]]
|
1377
1489
|
name = "windows_i686_msvc"
|
1378
1490
|
version = "0.52.6"
|
1379
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1380
1492
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1381
1493
|
|
1494
|
+
[[package]]
|
1495
|
+
name = "windows_i686_msvc"
|
1496
|
+
version = "0.53.0"
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1498
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1499
|
+
|
1382
1500
|
[[package]]
|
1383
1501
|
name = "windows_x86_64_gnu"
|
1384
1502
|
version = "0.52.6"
|
1385
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
1504
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1387
1505
|
|
1506
|
+
[[package]]
|
1507
|
+
name = "windows_x86_64_gnu"
|
1508
|
+
version = "0.53.0"
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1510
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1511
|
+
|
1388
1512
|
[[package]]
|
1389
1513
|
name = "windows_x86_64_gnullvm"
|
1390
1514
|
version = "0.52.6"
|
1391
1515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1392
1516
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1393
1517
|
|
1518
|
+
[[package]]
|
1519
|
+
name = "windows_x86_64_gnullvm"
|
1520
|
+
version = "0.53.0"
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1522
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1523
|
+
|
1394
1524
|
[[package]]
|
1395
1525
|
name = "windows_x86_64_msvc"
|
1396
1526
|
version = "0.52.6"
|
@@ -1398,49 +1528,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
1528
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1399
1529
|
|
1400
1530
|
[[package]]
|
1401
|
-
name = "
|
1402
|
-
version = "0.
|
1531
|
+
name = "windows_x86_64_msvc"
|
1532
|
+
version = "0.53.0"
|
1403
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1404
|
-
checksum = "
|
1405
|
-
dependencies = [
|
1406
|
-
"bitflags",
|
1407
|
-
]
|
1534
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
1408
1535
|
|
1409
1536
|
[[package]]
|
1410
|
-
name = "
|
1411
|
-
version = "0.
|
1537
|
+
name = "wit-bindgen-rt"
|
1538
|
+
version = "0.39.0"
|
1412
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1413
|
-
checksum = "
|
1540
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
1414
1541
|
dependencies = [
|
1415
|
-
"
|
1416
|
-
"zerocopy-derive 0.7.35",
|
1542
|
+
"bitflags",
|
1417
1543
|
]
|
1418
1544
|
|
1419
1545
|
[[package]]
|
1420
1546
|
name = "zerocopy"
|
1421
|
-
version = "0.8.
|
1422
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1423
|
-
checksum = "dde3bb8c68a8f3f1ed4ac9221aad6b10cece3e60a8e2ea54a6a2dec806d0084c"
|
1424
|
-
dependencies = [
|
1425
|
-
"zerocopy-derive 0.8.20",
|
1426
|
-
]
|
1427
|
-
|
1428
|
-
[[package]]
|
1429
|
-
name = "zerocopy-derive"
|
1430
|
-
version = "0.7.35"
|
1547
|
+
version = "0.8.25"
|
1431
1548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1432
|
-
checksum = "
|
1549
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
1433
1550
|
dependencies = [
|
1434
|
-
"
|
1435
|
-
"quote",
|
1436
|
-
"syn",
|
1551
|
+
"zerocopy-derive",
|
1437
1552
|
]
|
1438
1553
|
|
1439
1554
|
[[package]]
|
1440
1555
|
name = "zerocopy-derive"
|
1441
|
-
version = "0.8.
|
1556
|
+
version = "0.8.25"
|
1442
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1443
|
-
checksum = "
|
1558
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
1444
1559
|
dependencies = [
|
1445
1560
|
"proc-macro2",
|
1446
1561
|
"quote",
|
@@ -1449,9 +1564,9 @@ dependencies = [
|
|
1449
1564
|
|
1450
1565
|
[[package]]
|
1451
1566
|
name = "zlib-rs"
|
1452
|
-
version = "0.
|
1567
|
+
version = "0.5.0"
|
1453
1568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1454
|
-
checksum = "
|
1569
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
1455
1570
|
|
1456
1571
|
[[package]]
|
1457
1572
|
name = "zstd"
|
@@ -1464,18 +1579,18 @@ dependencies = [
|
|
1464
1579
|
|
1465
1580
|
[[package]]
|
1466
1581
|
name = "zstd-safe"
|
1467
|
-
version = "7.2.
|
1582
|
+
version = "7.2.4"
|
1468
1583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1469
|
-
checksum = "
|
1584
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
1470
1585
|
dependencies = [
|
1471
1586
|
"zstd-sys",
|
1472
1587
|
]
|
1473
1588
|
|
1474
1589
|
[[package]]
|
1475
1590
|
name = "zstd-sys"
|
1476
|
-
version = "2.0.
|
1591
|
+
version = "2.0.15+zstd.1.5.7"
|
1477
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1478
|
-
checksum = "
|
1593
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
1479
1594
|
dependencies = [
|
1480
1595
|
"cc",
|
1481
1596
|
"pkg-config",
|