parquet 0.2.9 → 0.2.12
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 +82 -651
- data/README.md +7 -0
- data/ext/parquet/Cargo.toml +3 -1
- data/ext/parquet/src/enumerator.rs +9 -17
- data/ext/parquet/src/header_cache.rs +20 -80
- data/ext/parquet/src/reader/mod.rs +2 -0
- data/ext/parquet/src/reader/parquet_column_reader.rs +82 -106
- data/ext/parquet/src/reader/parquet_row_reader.rs +51 -46
- data/ext/parquet/src/types/writer_types.rs +1 -0
- data/ext/parquet/src/writer/mod.rs +92 -10
- data/lib/parquet/version.rb +1 -1
- data/lib/parquet.rbi +4 -2
- metadata +2 -2
data/Cargo.lock
CHANGED
@@ -2,15 +2,6 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 4
|
4
4
|
|
5
|
-
[[package]]
|
6
|
-
name = "addr2line"
|
7
|
-
version = "0.24.2"
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
10
|
-
dependencies = [
|
11
|
-
"gimli",
|
12
|
-
]
|
13
|
-
|
14
5
|
[[package]]
|
15
6
|
name = "adler2"
|
16
7
|
version = "2.0.0"
|
@@ -25,10 +16,10 @@ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
25
16
|
dependencies = [
|
26
17
|
"cfg-if",
|
27
18
|
"const-random",
|
28
|
-
"getrandom",
|
19
|
+
"getrandom 0.2.15",
|
29
20
|
"once_cell",
|
30
21
|
"version_check",
|
31
|
-
"zerocopy",
|
22
|
+
"zerocopy 0.7.35",
|
32
23
|
]
|
33
24
|
|
34
25
|
[[package]]
|
@@ -162,17 +153,6 @@ dependencies = [
|
|
162
153
|
"num",
|
163
154
|
]
|
164
155
|
|
165
|
-
[[package]]
|
166
|
-
name = "async-trait"
|
167
|
-
version = "0.1.83"
|
168
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
169
|
-
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
170
|
-
dependencies = [
|
171
|
-
"proc-macro2",
|
172
|
-
"quote",
|
173
|
-
"syn",
|
174
|
-
]
|
175
|
-
|
176
156
|
[[package]]
|
177
157
|
name = "atoi"
|
178
158
|
version = "2.0.0"
|
@@ -188,21 +168,6 @@ version = "1.4.0"
|
|
188
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
189
169
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
190
170
|
|
191
|
-
[[package]]
|
192
|
-
name = "backtrace"
|
193
|
-
version = "0.3.74"
|
194
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
196
|
-
dependencies = [
|
197
|
-
"addr2line",
|
198
|
-
"cfg-if",
|
199
|
-
"libc",
|
200
|
-
"miniz_oxide",
|
201
|
-
"object",
|
202
|
-
"rustc-demangle",
|
203
|
-
"windows-targets",
|
204
|
-
]
|
205
|
-
|
206
171
|
[[package]]
|
207
172
|
name = "base64"
|
208
173
|
version = "0.22.1"
|
@@ -344,7 +309,7 @@ version = "0.1.16"
|
|
344
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
310
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
346
311
|
dependencies = [
|
347
|
-
"getrandom",
|
312
|
+
"getrandom 0.2.15",
|
348
313
|
"once_cell",
|
349
314
|
"tiny-keccak",
|
350
315
|
]
|
@@ -370,17 +335,6 @@ version = "0.2.2"
|
|
370
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
336
|
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
372
337
|
|
373
|
-
[[package]]
|
374
|
-
name = "displaydoc"
|
375
|
-
version = "0.2.5"
|
376
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
377
|
-
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
378
|
-
dependencies = [
|
379
|
-
"proc-macro2",
|
380
|
-
"quote",
|
381
|
-
"syn",
|
382
|
-
]
|
383
|
-
|
384
338
|
[[package]]
|
385
339
|
name = "either"
|
386
340
|
version = "1.13.0"
|
@@ -423,104 +377,6 @@ dependencies = [
|
|
423
377
|
"miniz_oxide",
|
424
378
|
]
|
425
379
|
|
426
|
-
[[package]]
|
427
|
-
name = "form_urlencoded"
|
428
|
-
version = "1.2.1"
|
429
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
-
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
431
|
-
dependencies = [
|
432
|
-
"percent-encoding",
|
433
|
-
]
|
434
|
-
|
435
|
-
[[package]]
|
436
|
-
name = "futures"
|
437
|
-
version = "0.3.31"
|
438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
439
|
-
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
440
|
-
dependencies = [
|
441
|
-
"futures-channel",
|
442
|
-
"futures-core",
|
443
|
-
"futures-executor",
|
444
|
-
"futures-io",
|
445
|
-
"futures-sink",
|
446
|
-
"futures-task",
|
447
|
-
"futures-util",
|
448
|
-
]
|
449
|
-
|
450
|
-
[[package]]
|
451
|
-
name = "futures-channel"
|
452
|
-
version = "0.3.31"
|
453
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
|
-
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
455
|
-
dependencies = [
|
456
|
-
"futures-core",
|
457
|
-
"futures-sink",
|
458
|
-
]
|
459
|
-
|
460
|
-
[[package]]
|
461
|
-
name = "futures-core"
|
462
|
-
version = "0.3.31"
|
463
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
-
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
465
|
-
|
466
|
-
[[package]]
|
467
|
-
name = "futures-executor"
|
468
|
-
version = "0.3.31"
|
469
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
-
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
471
|
-
dependencies = [
|
472
|
-
"futures-core",
|
473
|
-
"futures-task",
|
474
|
-
"futures-util",
|
475
|
-
]
|
476
|
-
|
477
|
-
[[package]]
|
478
|
-
name = "futures-io"
|
479
|
-
version = "0.3.31"
|
480
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
481
|
-
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
482
|
-
|
483
|
-
[[package]]
|
484
|
-
name = "futures-macro"
|
485
|
-
version = "0.3.31"
|
486
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
487
|
-
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
488
|
-
dependencies = [
|
489
|
-
"proc-macro2",
|
490
|
-
"quote",
|
491
|
-
"syn",
|
492
|
-
]
|
493
|
-
|
494
|
-
[[package]]
|
495
|
-
name = "futures-sink"
|
496
|
-
version = "0.3.31"
|
497
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
-
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
499
|
-
|
500
|
-
[[package]]
|
501
|
-
name = "futures-task"
|
502
|
-
version = "0.3.31"
|
503
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
-
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
505
|
-
|
506
|
-
[[package]]
|
507
|
-
name = "futures-util"
|
508
|
-
version = "0.3.31"
|
509
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
511
|
-
dependencies = [
|
512
|
-
"futures-channel",
|
513
|
-
"futures-core",
|
514
|
-
"futures-io",
|
515
|
-
"futures-macro",
|
516
|
-
"futures-sink",
|
517
|
-
"futures-task",
|
518
|
-
"memchr",
|
519
|
-
"pin-project-lite",
|
520
|
-
"pin-utils",
|
521
|
-
"slab",
|
522
|
-
]
|
523
|
-
|
524
380
|
[[package]]
|
525
381
|
name = "getrandom"
|
526
382
|
version = "0.2.15"
|
@@ -529,14 +385,20 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
529
385
|
dependencies = [
|
530
386
|
"cfg-if",
|
531
387
|
"libc",
|
532
|
-
"wasi",
|
388
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
533
389
|
]
|
534
390
|
|
535
391
|
[[package]]
|
536
|
-
name = "
|
537
|
-
version = "0.
|
392
|
+
name = "getrandom"
|
393
|
+
version = "0.3.1"
|
538
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
-
checksum = "
|
395
|
+
checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
|
396
|
+
dependencies = [
|
397
|
+
"cfg-if",
|
398
|
+
"libc",
|
399
|
+
"wasi 0.13.3+wasi-0.2.2",
|
400
|
+
"windows-targets",
|
401
|
+
]
|
540
402
|
|
541
403
|
[[package]]
|
542
404
|
name = "glob"
|
@@ -561,18 +423,6 @@ version = "0.15.2"
|
|
561
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
424
|
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
563
425
|
|
564
|
-
[[package]]
|
565
|
-
name = "heck"
|
566
|
-
version = "0.5.0"
|
567
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
568
|
-
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
569
|
-
|
570
|
-
[[package]]
|
571
|
-
name = "humantime"
|
572
|
-
version = "2.1.0"
|
573
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
574
|
-
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
575
|
-
|
576
426
|
[[package]]
|
577
427
|
name = "iana-time-zone"
|
578
428
|
version = "0.1.61"
|
@@ -596,145 +446,6 @@ dependencies = [
|
|
596
446
|
"cc",
|
597
447
|
]
|
598
448
|
|
599
|
-
[[package]]
|
600
|
-
name = "icu_collections"
|
601
|
-
version = "1.5.0"
|
602
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
603
|
-
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
604
|
-
dependencies = [
|
605
|
-
"displaydoc",
|
606
|
-
"yoke",
|
607
|
-
"zerofrom",
|
608
|
-
"zerovec",
|
609
|
-
]
|
610
|
-
|
611
|
-
[[package]]
|
612
|
-
name = "icu_locid"
|
613
|
-
version = "1.5.0"
|
614
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
615
|
-
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
616
|
-
dependencies = [
|
617
|
-
"displaydoc",
|
618
|
-
"litemap",
|
619
|
-
"tinystr",
|
620
|
-
"writeable",
|
621
|
-
"zerovec",
|
622
|
-
]
|
623
|
-
|
624
|
-
[[package]]
|
625
|
-
name = "icu_locid_transform"
|
626
|
-
version = "1.5.0"
|
627
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
-
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
629
|
-
dependencies = [
|
630
|
-
"displaydoc",
|
631
|
-
"icu_locid",
|
632
|
-
"icu_locid_transform_data",
|
633
|
-
"icu_provider",
|
634
|
-
"tinystr",
|
635
|
-
"zerovec",
|
636
|
-
]
|
637
|
-
|
638
|
-
[[package]]
|
639
|
-
name = "icu_locid_transform_data"
|
640
|
-
version = "1.5.0"
|
641
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
-
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
643
|
-
|
644
|
-
[[package]]
|
645
|
-
name = "icu_normalizer"
|
646
|
-
version = "1.5.0"
|
647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
648
|
-
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
649
|
-
dependencies = [
|
650
|
-
"displaydoc",
|
651
|
-
"icu_collections",
|
652
|
-
"icu_normalizer_data",
|
653
|
-
"icu_properties",
|
654
|
-
"icu_provider",
|
655
|
-
"smallvec",
|
656
|
-
"utf16_iter",
|
657
|
-
"utf8_iter",
|
658
|
-
"write16",
|
659
|
-
"zerovec",
|
660
|
-
]
|
661
|
-
|
662
|
-
[[package]]
|
663
|
-
name = "icu_normalizer_data"
|
664
|
-
version = "1.5.0"
|
665
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
666
|
-
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
667
|
-
|
668
|
-
[[package]]
|
669
|
-
name = "icu_properties"
|
670
|
-
version = "1.5.1"
|
671
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
-
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
673
|
-
dependencies = [
|
674
|
-
"displaydoc",
|
675
|
-
"icu_collections",
|
676
|
-
"icu_locid_transform",
|
677
|
-
"icu_properties_data",
|
678
|
-
"icu_provider",
|
679
|
-
"tinystr",
|
680
|
-
"zerovec",
|
681
|
-
]
|
682
|
-
|
683
|
-
[[package]]
|
684
|
-
name = "icu_properties_data"
|
685
|
-
version = "1.5.0"
|
686
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
-
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
688
|
-
|
689
|
-
[[package]]
|
690
|
-
name = "icu_provider"
|
691
|
-
version = "1.5.0"
|
692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
693
|
-
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
694
|
-
dependencies = [
|
695
|
-
"displaydoc",
|
696
|
-
"icu_locid",
|
697
|
-
"icu_provider_macros",
|
698
|
-
"stable_deref_trait",
|
699
|
-
"tinystr",
|
700
|
-
"writeable",
|
701
|
-
"yoke",
|
702
|
-
"zerofrom",
|
703
|
-
"zerovec",
|
704
|
-
]
|
705
|
-
|
706
|
-
[[package]]
|
707
|
-
name = "icu_provider_macros"
|
708
|
-
version = "1.5.0"
|
709
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
710
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
711
|
-
dependencies = [
|
712
|
-
"proc-macro2",
|
713
|
-
"quote",
|
714
|
-
"syn",
|
715
|
-
]
|
716
|
-
|
717
|
-
[[package]]
|
718
|
-
name = "idna"
|
719
|
-
version = "1.0.3"
|
720
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
721
|
-
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
722
|
-
dependencies = [
|
723
|
-
"idna_adapter",
|
724
|
-
"smallvec",
|
725
|
-
"utf8_iter",
|
726
|
-
]
|
727
|
-
|
728
|
-
[[package]]
|
729
|
-
name = "idna_adapter"
|
730
|
-
version = "1.2.0"
|
731
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
-
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
733
|
-
dependencies = [
|
734
|
-
"icu_normalizer",
|
735
|
-
"icu_properties",
|
736
|
-
]
|
737
|
-
|
738
449
|
[[package]]
|
739
450
|
name = "integer-encoding"
|
740
451
|
version = "3.0.4"
|
@@ -750,15 +461,6 @@ dependencies = [
|
|
750
461
|
"either",
|
751
462
|
]
|
752
463
|
|
753
|
-
[[package]]
|
754
|
-
name = "itertools"
|
755
|
-
version = "0.13.0"
|
756
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
757
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
758
|
-
dependencies = [
|
759
|
-
"either",
|
760
|
-
]
|
761
|
-
|
762
464
|
[[package]]
|
763
465
|
name = "itertools"
|
764
466
|
version = "0.14.0"
|
@@ -956,22 +658,6 @@ version = "0.4.15"
|
|
956
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
659
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
958
660
|
|
959
|
-
[[package]]
|
960
|
-
name = "litemap"
|
961
|
-
version = "0.7.4"
|
962
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
963
|
-
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
964
|
-
|
965
|
-
[[package]]
|
966
|
-
name = "lock_api"
|
967
|
-
version = "0.4.12"
|
968
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
969
|
-
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
970
|
-
dependencies = [
|
971
|
-
"autocfg",
|
972
|
-
"scopeguard",
|
973
|
-
]
|
974
|
-
|
975
661
|
[[package]]
|
976
662
|
name = "log"
|
977
663
|
version = "0.4.22"
|
@@ -1124,36 +810,6 @@ dependencies = [
|
|
1124
810
|
"libm",
|
1125
811
|
]
|
1126
812
|
|
1127
|
-
[[package]]
|
1128
|
-
name = "object"
|
1129
|
-
version = "0.36.7"
|
1130
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1131
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1132
|
-
dependencies = [
|
1133
|
-
"memchr",
|
1134
|
-
]
|
1135
|
-
|
1136
|
-
[[package]]
|
1137
|
-
name = "object_store"
|
1138
|
-
version = "0.11.2"
|
1139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
-
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
1141
|
-
dependencies = [
|
1142
|
-
"async-trait",
|
1143
|
-
"bytes",
|
1144
|
-
"chrono",
|
1145
|
-
"futures",
|
1146
|
-
"humantime",
|
1147
|
-
"itertools 0.13.0",
|
1148
|
-
"parking_lot",
|
1149
|
-
"percent-encoding",
|
1150
|
-
"snafu",
|
1151
|
-
"tokio",
|
1152
|
-
"tracing",
|
1153
|
-
"url",
|
1154
|
-
"walkdir",
|
1155
|
-
]
|
1156
|
-
|
1157
813
|
[[package]]
|
1158
814
|
name = "once_cell"
|
1159
815
|
version = "1.20.2"
|
@@ -1169,29 +825,6 @@ dependencies = [
|
|
1169
825
|
"num-traits",
|
1170
826
|
]
|
1171
827
|
|
1172
|
-
[[package]]
|
1173
|
-
name = "parking_lot"
|
1174
|
-
version = "0.12.3"
|
1175
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1176
|
-
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1177
|
-
dependencies = [
|
1178
|
-
"lock_api",
|
1179
|
-
"parking_lot_core",
|
1180
|
-
]
|
1181
|
-
|
1182
|
-
[[package]]
|
1183
|
-
name = "parking_lot_core"
|
1184
|
-
version = "0.9.10"
|
1185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1186
|
-
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
1187
|
-
dependencies = [
|
1188
|
-
"cfg-if",
|
1189
|
-
"libc",
|
1190
|
-
"redox_syscall",
|
1191
|
-
"smallvec",
|
1192
|
-
"windows-targets",
|
1193
|
-
]
|
1194
|
-
|
1195
828
|
[[package]]
|
1196
829
|
name = "parquet"
|
1197
830
|
version = "0.1.0"
|
@@ -1206,7 +839,9 @@ dependencies = [
|
|
1206
839
|
"magnus",
|
1207
840
|
"mimalloc",
|
1208
841
|
"parquet 54.0.0",
|
842
|
+
"rand",
|
1209
843
|
"rb-sys",
|
844
|
+
"simdutf8",
|
1210
845
|
"tempfile",
|
1211
846
|
"thiserror",
|
1212
847
|
]
|
@@ -1230,19 +865,16 @@ dependencies = [
|
|
1230
865
|
"bytes",
|
1231
866
|
"chrono",
|
1232
867
|
"flate2",
|
1233
|
-
"futures",
|
1234
868
|
"half",
|
1235
869
|
"hashbrown",
|
1236
870
|
"lz4_flex",
|
1237
871
|
"num",
|
1238
872
|
"num-bigint",
|
1239
|
-
"object_store",
|
1240
873
|
"paste",
|
1241
874
|
"seq-macro",
|
1242
875
|
"serde_json",
|
1243
876
|
"snap",
|
1244
877
|
"thrift",
|
1245
|
-
"tokio",
|
1246
878
|
"twox-hash",
|
1247
879
|
"zstd",
|
1248
880
|
"zstd-sys",
|
@@ -1254,24 +886,6 @@ version = "1.0.15"
|
|
1254
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
887
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
1256
888
|
|
1257
|
-
[[package]]
|
1258
|
-
name = "percent-encoding"
|
1259
|
-
version = "2.3.1"
|
1260
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1261
|
-
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1262
|
-
|
1263
|
-
[[package]]
|
1264
|
-
name = "pin-project-lite"
|
1265
|
-
version = "0.2.15"
|
1266
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1267
|
-
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
1268
|
-
|
1269
|
-
[[package]]
|
1270
|
-
name = "pin-utils"
|
1271
|
-
version = "0.1.0"
|
1272
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1274
|
-
|
1275
889
|
[[package]]
|
1276
890
|
name = "pkg-config"
|
1277
891
|
version = "0.3.31"
|
@@ -1293,6 +907,15 @@ dependencies = [
|
|
1293
907
|
"portable-atomic",
|
1294
908
|
]
|
1295
909
|
|
910
|
+
[[package]]
|
911
|
+
name = "ppv-lite86"
|
912
|
+
version = "0.2.20"
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
914
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
915
|
+
dependencies = [
|
916
|
+
"zerocopy 0.7.35",
|
917
|
+
]
|
918
|
+
|
1296
919
|
[[package]]
|
1297
920
|
name = "proc-macro2"
|
1298
921
|
version = "1.0.92"
|
@@ -1311,6 +934,37 @@ dependencies = [
|
|
1311
934
|
"proc-macro2",
|
1312
935
|
]
|
1313
936
|
|
937
|
+
[[package]]
|
938
|
+
name = "rand"
|
939
|
+
version = "0.9.0"
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
941
|
+
checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
|
942
|
+
dependencies = [
|
943
|
+
"rand_chacha",
|
944
|
+
"rand_core",
|
945
|
+
"zerocopy 0.8.14",
|
946
|
+
]
|
947
|
+
|
948
|
+
[[package]]
|
949
|
+
name = "rand_chacha"
|
950
|
+
version = "0.9.0"
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
953
|
+
dependencies = [
|
954
|
+
"ppv-lite86",
|
955
|
+
"rand_core",
|
956
|
+
]
|
957
|
+
|
958
|
+
[[package]]
|
959
|
+
name = "rand_core"
|
960
|
+
version = "0.9.0"
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
962
|
+
checksum = "b08f3c9802962f7e1b25113931d94f43ed9725bebc59db9d0c3e9a23b67e15ff"
|
963
|
+
dependencies = [
|
964
|
+
"getrandom 0.3.1",
|
965
|
+
"zerocopy 0.8.14",
|
966
|
+
]
|
967
|
+
|
1314
968
|
[[package]]
|
1315
969
|
name = "rb-sys"
|
1316
970
|
version = "0.9.104"
|
@@ -1341,15 +995,6 @@ version = "0.1.2"
|
|
1341
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1342
996
|
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1343
997
|
|
1344
|
-
[[package]]
|
1345
|
-
name = "redox_syscall"
|
1346
|
-
version = "0.5.8"
|
1347
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1348
|
-
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
1349
|
-
dependencies = [
|
1350
|
-
"bitflags 2.6.0",
|
1351
|
-
]
|
1352
|
-
|
1353
998
|
[[package]]
|
1354
999
|
name = "regex"
|
1355
1000
|
version = "1.11.1"
|
@@ -1379,12 +1024,6 @@ version = "0.8.5"
|
|
1379
1024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1380
1025
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1381
1026
|
|
1382
|
-
[[package]]
|
1383
|
-
name = "rustc-demangle"
|
1384
|
-
version = "0.1.24"
|
1385
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1387
|
-
|
1388
1027
|
[[package]]
|
1389
1028
|
name = "rustc-hash"
|
1390
1029
|
version = "1.1.0"
|
@@ -1419,21 +1058,6 @@ version = "1.0.18"
|
|
1419
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1420
1059
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1421
1060
|
|
1422
|
-
[[package]]
|
1423
|
-
name = "same-file"
|
1424
|
-
version = "1.0.6"
|
1425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
-
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
1427
|
-
dependencies = [
|
1428
|
-
"winapi-util",
|
1429
|
-
]
|
1430
|
-
|
1431
|
-
[[package]]
|
1432
|
-
name = "scopeguard"
|
1433
|
-
version = "1.2.0"
|
1434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1436
|
-
|
1437
1061
|
[[package]]
|
1438
1062
|
name = "semver"
|
1439
1063
|
version = "1.0.24"
|
@@ -1491,40 +1115,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
1115
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1492
1116
|
|
1493
1117
|
[[package]]
|
1494
|
-
name = "
|
1495
|
-
version = "0.
|
1496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1497
|
-
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
1498
|
-
dependencies = [
|
1499
|
-
"autocfg",
|
1500
|
-
]
|
1501
|
-
|
1502
|
-
[[package]]
|
1503
|
-
name = "smallvec"
|
1504
|
-
version = "1.13.2"
|
1505
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1506
|
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
1507
|
-
|
1508
|
-
[[package]]
|
1509
|
-
name = "snafu"
|
1510
|
-
version = "0.8.5"
|
1511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1512
|
-
checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019"
|
1513
|
-
dependencies = [
|
1514
|
-
"snafu-derive",
|
1515
|
-
]
|
1516
|
-
|
1517
|
-
[[package]]
|
1518
|
-
name = "snafu-derive"
|
1519
|
-
version = "0.8.5"
|
1118
|
+
name = "simdutf8"
|
1119
|
+
version = "0.1.5"
|
1520
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1521
|
-
checksum = "
|
1522
|
-
dependencies = [
|
1523
|
-
"heck",
|
1524
|
-
"proc-macro2",
|
1525
|
-
"quote",
|
1526
|
-
"syn",
|
1527
|
-
]
|
1121
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
1528
1122
|
|
1529
1123
|
[[package]]
|
1530
1124
|
name = "snap"
|
@@ -1532,12 +1126,6 @@ version = "1.1.1"
|
|
1532
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1533
1127
|
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
1534
1128
|
|
1535
|
-
[[package]]
|
1536
|
-
name = "stable_deref_trait"
|
1537
|
-
version = "1.2.0"
|
1538
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
-
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1540
|
-
|
1541
1129
|
[[package]]
|
1542
1130
|
name = "static_assertions"
|
1543
1131
|
version = "1.1.0"
|
@@ -1555,17 +1143,6 @@ dependencies = [
|
|
1555
1143
|
"unicode-ident",
|
1556
1144
|
]
|
1557
1145
|
|
1558
|
-
[[package]]
|
1559
|
-
name = "synstructure"
|
1560
|
-
version = "0.13.1"
|
1561
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1562
|
-
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
1563
|
-
dependencies = [
|
1564
|
-
"proc-macro2",
|
1565
|
-
"quote",
|
1566
|
-
"syn",
|
1567
|
-
]
|
1568
|
-
|
1569
1146
|
[[package]]
|
1570
1147
|
name = "tempfile"
|
1571
1148
|
version = "3.15.0"
|
@@ -1574,7 +1151,7 @@ checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
|
|
1574
1151
|
dependencies = [
|
1575
1152
|
"cfg-if",
|
1576
1153
|
"fastrand",
|
1577
|
-
"getrandom",
|
1154
|
+
"getrandom 0.2.15",
|
1578
1155
|
"once_cell",
|
1579
1156
|
"rustix",
|
1580
1157
|
"windows-sys",
|
@@ -1620,70 +1197,6 @@ dependencies = [
|
|
1620
1197
|
"crunchy",
|
1621
1198
|
]
|
1622
1199
|
|
1623
|
-
[[package]]
|
1624
|
-
name = "tinystr"
|
1625
|
-
version = "0.7.6"
|
1626
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1627
|
-
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
1628
|
-
dependencies = [
|
1629
|
-
"displaydoc",
|
1630
|
-
"zerovec",
|
1631
|
-
]
|
1632
|
-
|
1633
|
-
[[package]]
|
1634
|
-
name = "tokio"
|
1635
|
-
version = "1.42.0"
|
1636
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1637
|
-
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
|
1638
|
-
dependencies = [
|
1639
|
-
"backtrace",
|
1640
|
-
"bytes",
|
1641
|
-
"pin-project-lite",
|
1642
|
-
"tokio-macros",
|
1643
|
-
]
|
1644
|
-
|
1645
|
-
[[package]]
|
1646
|
-
name = "tokio-macros"
|
1647
|
-
version = "2.4.0"
|
1648
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1649
|
-
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
1650
|
-
dependencies = [
|
1651
|
-
"proc-macro2",
|
1652
|
-
"quote",
|
1653
|
-
"syn",
|
1654
|
-
]
|
1655
|
-
|
1656
|
-
[[package]]
|
1657
|
-
name = "tracing"
|
1658
|
-
version = "0.1.41"
|
1659
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1660
|
-
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
1661
|
-
dependencies = [
|
1662
|
-
"pin-project-lite",
|
1663
|
-
"tracing-attributes",
|
1664
|
-
"tracing-core",
|
1665
|
-
]
|
1666
|
-
|
1667
|
-
[[package]]
|
1668
|
-
name = "tracing-attributes"
|
1669
|
-
version = "0.1.28"
|
1670
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1671
|
-
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
1672
|
-
dependencies = [
|
1673
|
-
"proc-macro2",
|
1674
|
-
"quote",
|
1675
|
-
"syn",
|
1676
|
-
]
|
1677
|
-
|
1678
|
-
[[package]]
|
1679
|
-
name = "tracing-core"
|
1680
|
-
version = "0.1.33"
|
1681
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1682
|
-
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
1683
|
-
dependencies = [
|
1684
|
-
"once_cell",
|
1685
|
-
]
|
1686
|
-
|
1687
1200
|
[[package]]
|
1688
1201
|
name = "twox-hash"
|
1689
1202
|
version = "1.6.3"
|
@@ -1700,29 +1213,6 @@ version = "1.0.14"
|
|
1700
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1701
1214
|
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
1702
1215
|
|
1703
|
-
[[package]]
|
1704
|
-
name = "url"
|
1705
|
-
version = "2.5.4"
|
1706
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1707
|
-
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
1708
|
-
dependencies = [
|
1709
|
-
"form_urlencoded",
|
1710
|
-
"idna",
|
1711
|
-
"percent-encoding",
|
1712
|
-
]
|
1713
|
-
|
1714
|
-
[[package]]
|
1715
|
-
name = "utf16_iter"
|
1716
|
-
version = "1.0.5"
|
1717
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1718
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
1719
|
-
|
1720
|
-
[[package]]
|
1721
|
-
name = "utf8_iter"
|
1722
|
-
version = "1.0.4"
|
1723
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1724
|
-
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
1725
|
-
|
1726
1216
|
[[package]]
|
1727
1217
|
name = "version_check"
|
1728
1218
|
version = "0.9.5"
|
@@ -1730,20 +1220,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
1220
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
1731
1221
|
|
1732
1222
|
[[package]]
|
1733
|
-
name = "
|
1734
|
-
version = "
|
1223
|
+
name = "wasi"
|
1224
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
1735
1225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1736
|
-
checksum = "
|
1737
|
-
dependencies = [
|
1738
|
-
"same-file",
|
1739
|
-
"winapi-util",
|
1740
|
-
]
|
1226
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1741
1227
|
|
1742
1228
|
[[package]]
|
1743
1229
|
name = "wasi"
|
1744
|
-
version = "0.
|
1230
|
+
version = "0.13.3+wasi-0.2.2"
|
1745
1231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1746
|
-
checksum = "
|
1232
|
+
checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
|
1233
|
+
dependencies = [
|
1234
|
+
"wit-bindgen-rt",
|
1235
|
+
]
|
1747
1236
|
|
1748
1237
|
[[package]]
|
1749
1238
|
name = "wasm-bindgen"
|
@@ -1799,15 +1288,6 @@ version = "0.2.99"
|
|
1799
1288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1800
1289
|
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
1801
1290
|
|
1802
|
-
[[package]]
|
1803
|
-
name = "winapi-util"
|
1804
|
-
version = "0.1.9"
|
1805
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1806
|
-
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1807
|
-
dependencies = [
|
1808
|
-
"windows-sys",
|
1809
|
-
]
|
1810
|
-
|
1811
1291
|
[[package]]
|
1812
1292
|
name = "windows-core"
|
1813
1293
|
version = "0.52.0"
|
@@ -1891,48 +1371,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
1371
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1892
1372
|
|
1893
1373
|
[[package]]
|
1894
|
-
name = "
|
1895
|
-
version = "
|
1374
|
+
name = "wit-bindgen-rt"
|
1375
|
+
version = "0.33.0"
|
1896
1376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1897
|
-
checksum = "
|
1898
|
-
|
1899
|
-
[[package]]
|
1900
|
-
name = "writeable"
|
1901
|
-
version = "0.5.5"
|
1902
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1903
|
-
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
1904
|
-
|
1905
|
-
[[package]]
|
1906
|
-
name = "yoke"
|
1907
|
-
version = "0.7.5"
|
1908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1909
|
-
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
1377
|
+
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
|
1910
1378
|
dependencies = [
|
1911
|
-
"
|
1912
|
-
"stable_deref_trait",
|
1913
|
-
"yoke-derive",
|
1914
|
-
"zerofrom",
|
1379
|
+
"bitflags 2.6.0",
|
1915
1380
|
]
|
1916
1381
|
|
1917
1382
|
[[package]]
|
1918
|
-
name = "
|
1919
|
-
version = "0.7.
|
1383
|
+
name = "zerocopy"
|
1384
|
+
version = "0.7.35"
|
1920
1385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1921
|
-
checksum = "
|
1386
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
1922
1387
|
dependencies = [
|
1923
|
-
"
|
1924
|
-
"
|
1925
|
-
"syn",
|
1926
|
-
"synstructure",
|
1388
|
+
"byteorder",
|
1389
|
+
"zerocopy-derive 0.7.35",
|
1927
1390
|
]
|
1928
1391
|
|
1929
1392
|
[[package]]
|
1930
1393
|
name = "zerocopy"
|
1931
|
-
version = "0.
|
1394
|
+
version = "0.8.14"
|
1932
1395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1933
|
-
checksum = "
|
1396
|
+
checksum = "a367f292d93d4eab890745e75a778da40909cab4d6ff8173693812f79c4a2468"
|
1934
1397
|
dependencies = [
|
1935
|
-
"zerocopy-derive",
|
1398
|
+
"zerocopy-derive 0.8.14",
|
1936
1399
|
]
|
1937
1400
|
|
1938
1401
|
[[package]]
|
@@ -1947,42 +1410,10 @@ dependencies = [
|
|
1947
1410
|
]
|
1948
1411
|
|
1949
1412
|
[[package]]
|
1950
|
-
name = "
|
1951
|
-
version = "0.
|
1952
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1953
|
-
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
1954
|
-
dependencies = [
|
1955
|
-
"zerofrom-derive",
|
1956
|
-
]
|
1957
|
-
|
1958
|
-
[[package]]
|
1959
|
-
name = "zerofrom-derive"
|
1960
|
-
version = "0.1.5"
|
1961
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1962
|
-
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
1963
|
-
dependencies = [
|
1964
|
-
"proc-macro2",
|
1965
|
-
"quote",
|
1966
|
-
"syn",
|
1967
|
-
"synstructure",
|
1968
|
-
]
|
1969
|
-
|
1970
|
-
[[package]]
|
1971
|
-
name = "zerovec"
|
1972
|
-
version = "0.10.4"
|
1973
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1974
|
-
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
1975
|
-
dependencies = [
|
1976
|
-
"yoke",
|
1977
|
-
"zerofrom",
|
1978
|
-
"zerovec-derive",
|
1979
|
-
]
|
1980
|
-
|
1981
|
-
[[package]]
|
1982
|
-
name = "zerovec-derive"
|
1983
|
-
version = "0.10.3"
|
1413
|
+
name = "zerocopy-derive"
|
1414
|
+
version = "0.8.14"
|
1984
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1985
|
-
checksum = "
|
1416
|
+
checksum = "d3931cb58c62c13adec22e38686b559c86a30565e16ad6e8510a337cedc611e1"
|
1986
1417
|
dependencies = [
|
1987
1418
|
"proc-macro2",
|
1988
1419
|
"quote",
|