jsonschema_rs 0.45.0 → 0.46.0
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 +23 -1
- data/Cargo.toml +2 -2
- data/ext/jsonschema/Cargo.lock +141 -195
- data/ext/jsonschema/Cargo.toml +3 -3
- data/lib/jsonschema/version.rb +1 -1
- data/sig/jsonschema.rbs +50 -0
- data/src/lib.rs +138 -13
- data/src/options.rs +7 -4
- data/src/registry.rs +184 -25
- data/src/validator_map.rs +92 -0
- metadata +2 -1
data/ext/jsonschema/Cargo.lock
CHANGED
|
@@ -51,16 +51,14 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
51
51
|
|
|
52
52
|
[[package]]
|
|
53
53
|
name = "bindgen"
|
|
54
|
-
version = "0.
|
|
54
|
+
version = "0.72.1"
|
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
56
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
57
57
|
dependencies = [
|
|
58
58
|
"bitflags",
|
|
59
59
|
"cexpr",
|
|
60
60
|
"clang-sys",
|
|
61
61
|
"itertools",
|
|
62
|
-
"lazy_static",
|
|
63
|
-
"lazycell",
|
|
64
62
|
"proc-macro2",
|
|
65
63
|
"quote",
|
|
66
64
|
"regex",
|
|
@@ -116,9 +114,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
116
114
|
|
|
117
115
|
[[package]]
|
|
118
116
|
name = "cc"
|
|
119
|
-
version = "1.2.
|
|
117
|
+
version = "1.2.60"
|
|
120
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
119
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
122
120
|
dependencies = [
|
|
123
121
|
"find-msvc-tools",
|
|
124
122
|
"shlex",
|
|
@@ -389,6 +387,12 @@ dependencies = [
|
|
|
389
387
|
"foldhash",
|
|
390
388
|
]
|
|
391
389
|
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "hashbrown"
|
|
392
|
+
version = "0.17.0"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
395
|
+
|
|
392
396
|
[[package]]
|
|
393
397
|
name = "http"
|
|
394
398
|
version = "1.4.0"
|
|
@@ -430,9 +434,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
430
434
|
|
|
431
435
|
[[package]]
|
|
432
436
|
name = "hyper"
|
|
433
|
-
version = "1.
|
|
437
|
+
version = "1.9.0"
|
|
434
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
-
checksum = "
|
|
439
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
436
440
|
dependencies = [
|
|
437
441
|
"atomic-waker",
|
|
438
442
|
"bytes",
|
|
@@ -444,7 +448,6 @@ dependencies = [
|
|
|
444
448
|
"httparse",
|
|
445
449
|
"itoa",
|
|
446
450
|
"pin-project-lite",
|
|
447
|
-
"pin-utils",
|
|
448
451
|
"smallvec",
|
|
449
452
|
"tokio",
|
|
450
453
|
"want",
|
|
@@ -491,12 +494,13 @@ dependencies = [
|
|
|
491
494
|
|
|
492
495
|
[[package]]
|
|
493
496
|
name = "icu_collections"
|
|
494
|
-
version = "2.
|
|
497
|
+
version = "2.2.0"
|
|
495
498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
-
checksum = "
|
|
499
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
497
500
|
dependencies = [
|
|
498
501
|
"displaydoc",
|
|
499
502
|
"potential_utf",
|
|
503
|
+
"utf8_iter",
|
|
500
504
|
"yoke",
|
|
501
505
|
"zerofrom",
|
|
502
506
|
"zerovec",
|
|
@@ -504,9 +508,9 @@ dependencies = [
|
|
|
504
508
|
|
|
505
509
|
[[package]]
|
|
506
510
|
name = "icu_locale_core"
|
|
507
|
-
version = "2.
|
|
511
|
+
version = "2.2.0"
|
|
508
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
513
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
510
514
|
dependencies = [
|
|
511
515
|
"displaydoc",
|
|
512
516
|
"litemap",
|
|
@@ -517,9 +521,9 @@ dependencies = [
|
|
|
517
521
|
|
|
518
522
|
[[package]]
|
|
519
523
|
name = "icu_normalizer"
|
|
520
|
-
version = "2.
|
|
524
|
+
version = "2.2.0"
|
|
521
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
-
checksum = "
|
|
526
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
523
527
|
dependencies = [
|
|
524
528
|
"icu_collections",
|
|
525
529
|
"icu_normalizer_data",
|
|
@@ -531,15 +535,15 @@ dependencies = [
|
|
|
531
535
|
|
|
532
536
|
[[package]]
|
|
533
537
|
name = "icu_normalizer_data"
|
|
534
|
-
version = "2.
|
|
538
|
+
version = "2.2.0"
|
|
535
539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
540
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
537
541
|
|
|
538
542
|
[[package]]
|
|
539
543
|
name = "icu_properties"
|
|
540
|
-
version = "2.
|
|
544
|
+
version = "2.2.0"
|
|
541
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
546
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
543
547
|
dependencies = [
|
|
544
548
|
"icu_collections",
|
|
545
549
|
"icu_locale_core",
|
|
@@ -551,15 +555,15 @@ dependencies = [
|
|
|
551
555
|
|
|
552
556
|
[[package]]
|
|
553
557
|
name = "icu_properties_data"
|
|
554
|
-
version = "2.
|
|
558
|
+
version = "2.2.0"
|
|
555
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
-
checksum = "
|
|
560
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
557
561
|
|
|
558
562
|
[[package]]
|
|
559
563
|
name = "icu_provider"
|
|
560
|
-
version = "2.
|
|
564
|
+
version = "2.2.0"
|
|
561
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
-
checksum = "
|
|
566
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
563
567
|
dependencies = [
|
|
564
568
|
"displaydoc",
|
|
565
569
|
"icu_locale_core",
|
|
@@ -593,12 +597,12 @@ dependencies = [
|
|
|
593
597
|
|
|
594
598
|
[[package]]
|
|
595
599
|
name = "indexmap"
|
|
596
|
-
version = "2.
|
|
600
|
+
version = "2.14.0"
|
|
597
601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
-
checksum = "
|
|
602
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
599
603
|
dependencies = [
|
|
600
604
|
"equivalent",
|
|
601
|
-
"hashbrown",
|
|
605
|
+
"hashbrown 0.17.0",
|
|
602
606
|
]
|
|
603
607
|
|
|
604
608
|
[[package]]
|
|
@@ -609,9 +613,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
|
609
613
|
|
|
610
614
|
[[package]]
|
|
611
615
|
name = "iri-string"
|
|
612
|
-
version = "0.7.
|
|
616
|
+
version = "0.7.12"
|
|
613
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
618
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
615
619
|
dependencies = [
|
|
616
620
|
"memchr",
|
|
617
621
|
"serde",
|
|
@@ -619,18 +623,18 @@ dependencies = [
|
|
|
619
623
|
|
|
620
624
|
[[package]]
|
|
621
625
|
name = "itertools"
|
|
622
|
-
version = "0.
|
|
626
|
+
version = "0.13.0"
|
|
623
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
628
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
625
629
|
dependencies = [
|
|
626
630
|
"either",
|
|
627
631
|
]
|
|
628
632
|
|
|
629
633
|
[[package]]
|
|
630
634
|
name = "itoa"
|
|
631
|
-
version = "1.0.
|
|
635
|
+
version = "1.0.18"
|
|
632
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
-
checksum = "
|
|
637
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
634
638
|
|
|
635
639
|
[[package]]
|
|
636
640
|
name = "jni"
|
|
@@ -641,7 +645,7 @@ dependencies = [
|
|
|
641
645
|
"cesu8",
|
|
642
646
|
"cfg-if",
|
|
643
647
|
"combine",
|
|
644
|
-
"jni-sys",
|
|
648
|
+
"jni-sys 0.3.1",
|
|
645
649
|
"log",
|
|
646
650
|
"thiserror",
|
|
647
651
|
"walkdir",
|
|
@@ -650,25 +654,49 @@ dependencies = [
|
|
|
650
654
|
|
|
651
655
|
[[package]]
|
|
652
656
|
name = "jni-sys"
|
|
653
|
-
version = "0.3.
|
|
657
|
+
version = "0.3.1"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"jni-sys 0.4.1",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "jni-sys"
|
|
666
|
+
version = "0.4.1"
|
|
654
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
668
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"jni-sys-macros",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "jni-sys-macros"
|
|
675
|
+
version = "0.4.1"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"quote",
|
|
680
|
+
"syn",
|
|
681
|
+
]
|
|
656
682
|
|
|
657
683
|
[[package]]
|
|
658
684
|
name = "js-sys"
|
|
659
|
-
version = "0.3.
|
|
685
|
+
version = "0.3.95"
|
|
660
686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
-
checksum = "
|
|
687
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
662
688
|
dependencies = [
|
|
689
|
+
"cfg-if",
|
|
690
|
+
"futures-util",
|
|
663
691
|
"once_cell",
|
|
664
692
|
"wasm-bindgen",
|
|
665
693
|
]
|
|
666
694
|
|
|
667
695
|
[[package]]
|
|
668
696
|
name = "jsonschema"
|
|
669
|
-
version = "0.
|
|
697
|
+
version = "0.46.0"
|
|
670
698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
-
checksum = "
|
|
699
|
+
checksum = "84695c6689b01384700a3d93acecbd07231ee6fff1bf22ae980b4c307e6ddfd5"
|
|
672
700
|
dependencies = [
|
|
673
701
|
"ahash",
|
|
674
702
|
"bytecount",
|
|
@@ -696,7 +724,7 @@ dependencies = [
|
|
|
696
724
|
|
|
697
725
|
[[package]]
|
|
698
726
|
name = "jsonschema-rb-ext"
|
|
699
|
-
version = "0.
|
|
727
|
+
version = "0.46.0"
|
|
700
728
|
dependencies = [
|
|
701
729
|
"jsonschema",
|
|
702
730
|
"magnus",
|
|
@@ -712,17 +740,11 @@ version = "1.5.0"
|
|
|
712
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
741
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
714
742
|
|
|
715
|
-
[[package]]
|
|
716
|
-
name = "lazycell"
|
|
717
|
-
version = "1.3.0"
|
|
718
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
720
|
-
|
|
721
743
|
[[package]]
|
|
722
744
|
name = "libc"
|
|
723
|
-
version = "0.2.
|
|
745
|
+
version = "0.2.184"
|
|
724
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "
|
|
747
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
726
748
|
|
|
727
749
|
[[package]]
|
|
728
750
|
name = "libloading"
|
|
@@ -736,9 +758,9 @@ dependencies = [
|
|
|
736
758
|
|
|
737
759
|
[[package]]
|
|
738
760
|
name = "litemap"
|
|
739
|
-
version = "0.8.
|
|
761
|
+
version = "0.8.2"
|
|
740
762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
-
checksum = "
|
|
763
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
742
764
|
|
|
743
765
|
[[package]]
|
|
744
766
|
name = "lock_api"
|
|
@@ -784,6 +806,12 @@ version = "2.8.0"
|
|
|
784
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
807
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
786
808
|
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "micromap"
|
|
811
|
+
version = "0.3.0"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "c2a86d3146ed3995b5913c414f6664344b9617457320782e64f0bb44afd49d74"
|
|
814
|
+
|
|
787
815
|
[[package]]
|
|
788
816
|
name = "minimal-lexical"
|
|
789
817
|
version = "0.2.1"
|
|
@@ -792,9 +820,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
792
820
|
|
|
793
821
|
[[package]]
|
|
794
822
|
name = "mio"
|
|
795
|
-
version = "1.
|
|
823
|
+
version = "1.2.0"
|
|
796
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
-
checksum = "
|
|
825
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
798
826
|
dependencies = [
|
|
799
827
|
"libc",
|
|
800
828
|
"wasi",
|
|
@@ -892,9 +920,9 @@ dependencies = [
|
|
|
892
920
|
|
|
893
921
|
[[package]]
|
|
894
922
|
name = "once_cell"
|
|
895
|
-
version = "1.21.
|
|
923
|
+
version = "1.21.4"
|
|
896
924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
-
checksum = "
|
|
925
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
898
926
|
|
|
899
927
|
[[package]]
|
|
900
928
|
name = "openssl-probe"
|
|
@@ -943,17 +971,11 @@ version = "0.2.17"
|
|
|
943
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
972
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
945
973
|
|
|
946
|
-
[[package]]
|
|
947
|
-
name = "pin-utils"
|
|
948
|
-
version = "0.1.0"
|
|
949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
951
|
-
|
|
952
974
|
[[package]]
|
|
953
975
|
name = "potential_utf"
|
|
954
|
-
version = "0.1.
|
|
976
|
+
version = "0.1.5"
|
|
955
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
-
checksum = "
|
|
978
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
957
979
|
dependencies = [
|
|
958
980
|
"zerovec",
|
|
959
981
|
]
|
|
@@ -969,9 +991,9 @@ dependencies = [
|
|
|
969
991
|
|
|
970
992
|
[[package]]
|
|
971
993
|
name = "quote"
|
|
972
|
-
version = "1.0.
|
|
994
|
+
version = "1.0.45"
|
|
973
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
-
checksum = "
|
|
996
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
975
997
|
dependencies = [
|
|
976
998
|
"proc-macro2",
|
|
977
999
|
]
|
|
@@ -984,18 +1006,18 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
|
984
1006
|
|
|
985
1007
|
[[package]]
|
|
986
1008
|
name = "rb-sys"
|
|
987
|
-
version = "0.9.
|
|
1009
|
+
version = "0.9.126"
|
|
988
1010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
1011
|
+
checksum = "284799e73e899fe946fd77c7211b83bff61a1356e039ade7a2516a779e3212d0"
|
|
990
1012
|
dependencies = [
|
|
991
1013
|
"rb-sys-build",
|
|
992
1014
|
]
|
|
993
1015
|
|
|
994
1016
|
[[package]]
|
|
995
1017
|
name = "rb-sys-build"
|
|
996
|
-
version = "0.9.
|
|
1018
|
+
version = "0.9.126"
|
|
997
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
-
checksum = "
|
|
1020
|
+
checksum = "855fc1ad8943d12c89ef12f9147f1cc531f5bf19fb744112fdd317bb6ee7b5c5"
|
|
999
1021
|
dependencies = [
|
|
1000
1022
|
"bindgen",
|
|
1001
1023
|
"lazy_static",
|
|
@@ -1043,14 +1065,16 @@ dependencies = [
|
|
|
1043
1065
|
|
|
1044
1066
|
[[package]]
|
|
1045
1067
|
name = "referencing"
|
|
1046
|
-
version = "0.
|
|
1068
|
+
version = "0.46.0"
|
|
1047
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
-
checksum = "
|
|
1070
|
+
checksum = "a2d5554bf79f4acf770dc3193b44b2d63b348f5f7b7448a0ea1191b37b620728"
|
|
1049
1071
|
dependencies = [
|
|
1050
1072
|
"ahash",
|
|
1051
1073
|
"fluent-uri",
|
|
1052
1074
|
"getrandom 0.3.4",
|
|
1053
|
-
"hashbrown",
|
|
1075
|
+
"hashbrown 0.16.1",
|
|
1076
|
+
"itoa",
|
|
1077
|
+
"micromap",
|
|
1054
1078
|
"parking_lot",
|
|
1055
1079
|
"percent-encoding",
|
|
1056
1080
|
"serde_json",
|
|
@@ -1140,9 +1164,9 @@ dependencies = [
|
|
|
1140
1164
|
|
|
1141
1165
|
[[package]]
|
|
1142
1166
|
name = "rustc-hash"
|
|
1143
|
-
version = "
|
|
1167
|
+
version = "2.1.2"
|
|
1144
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
1169
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1146
1170
|
|
|
1147
1171
|
[[package]]
|
|
1148
1172
|
name = "rustls"
|
|
@@ -1208,9 +1232,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
1208
1232
|
|
|
1209
1233
|
[[package]]
|
|
1210
1234
|
name = "rustls-webpki"
|
|
1211
|
-
version = "0.103.
|
|
1235
|
+
version = "0.103.11"
|
|
1212
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
-
checksum = "
|
|
1237
|
+
checksum = "20a6af516fea4b20eccceaf166e8aa666ac996208e8a644ce3ef5aa783bc7cd4"
|
|
1214
1238
|
dependencies = [
|
|
1215
1239
|
"ring",
|
|
1216
1240
|
"rustls-pki-types",
|
|
@@ -1234,9 +1258,9 @@ dependencies = [
|
|
|
1234
1258
|
|
|
1235
1259
|
[[package]]
|
|
1236
1260
|
name = "schannel"
|
|
1237
|
-
version = "0.1.
|
|
1261
|
+
version = "0.1.29"
|
|
1238
1262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
-
checksum = "
|
|
1263
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1240
1264
|
dependencies = [
|
|
1241
1265
|
"windows-sys 0.61.2",
|
|
1242
1266
|
]
|
|
@@ -1345,12 +1369,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1345
1369
|
|
|
1346
1370
|
[[package]]
|
|
1347
1371
|
name = "socket2"
|
|
1348
|
-
version = "0.6.
|
|
1372
|
+
version = "0.6.3"
|
|
1349
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
-
checksum = "
|
|
1374
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1351
1375
|
dependencies = [
|
|
1352
1376
|
"libc",
|
|
1353
|
-
"windows-sys 0.
|
|
1377
|
+
"windows-sys 0.61.2",
|
|
1354
1378
|
]
|
|
1355
1379
|
|
|
1356
1380
|
[[package]]
|
|
@@ -1418,9 +1442,9 @@ dependencies = [
|
|
|
1418
1442
|
|
|
1419
1443
|
[[package]]
|
|
1420
1444
|
name = "tinystr"
|
|
1421
|
-
version = "0.8.
|
|
1445
|
+
version = "0.8.3"
|
|
1422
1446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
-
checksum = "
|
|
1447
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1424
1448
|
dependencies = [
|
|
1425
1449
|
"displaydoc",
|
|
1426
1450
|
"zerovec",
|
|
@@ -1428,9 +1452,9 @@ dependencies = [
|
|
|
1428
1452
|
|
|
1429
1453
|
[[package]]
|
|
1430
1454
|
name = "tokio"
|
|
1431
|
-
version = "1.
|
|
1455
|
+
version = "1.51.1"
|
|
1432
1456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
-
checksum = "
|
|
1457
|
+
checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
|
|
1434
1458
|
dependencies = [
|
|
1435
1459
|
"bytes",
|
|
1436
1460
|
"libc",
|
|
@@ -1627,9 +1651,9 @@ dependencies = [
|
|
|
1627
1651
|
|
|
1628
1652
|
[[package]]
|
|
1629
1653
|
name = "wasm-bindgen"
|
|
1630
|
-
version = "0.2.
|
|
1654
|
+
version = "0.2.118"
|
|
1631
1655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
-
checksum = "
|
|
1656
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
1633
1657
|
dependencies = [
|
|
1634
1658
|
"cfg-if",
|
|
1635
1659
|
"once_cell",
|
|
@@ -1640,23 +1664,19 @@ dependencies = [
|
|
|
1640
1664
|
|
|
1641
1665
|
[[package]]
|
|
1642
1666
|
name = "wasm-bindgen-futures"
|
|
1643
|
-
version = "0.4.
|
|
1667
|
+
version = "0.4.68"
|
|
1644
1668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1669
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
1646
1670
|
dependencies = [
|
|
1647
|
-
"cfg-if",
|
|
1648
|
-
"futures-util",
|
|
1649
1671
|
"js-sys",
|
|
1650
|
-
"once_cell",
|
|
1651
1672
|
"wasm-bindgen",
|
|
1652
|
-
"web-sys",
|
|
1653
1673
|
]
|
|
1654
1674
|
|
|
1655
1675
|
[[package]]
|
|
1656
1676
|
name = "wasm-bindgen-macro"
|
|
1657
|
-
version = "0.2.
|
|
1677
|
+
version = "0.2.118"
|
|
1658
1678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
-
checksum = "
|
|
1679
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
1660
1680
|
dependencies = [
|
|
1661
1681
|
"quote",
|
|
1662
1682
|
"wasm-bindgen-macro-support",
|
|
@@ -1664,9 +1684,9 @@ dependencies = [
|
|
|
1664
1684
|
|
|
1665
1685
|
[[package]]
|
|
1666
1686
|
name = "wasm-bindgen-macro-support"
|
|
1667
|
-
version = "0.2.
|
|
1687
|
+
version = "0.2.118"
|
|
1668
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
-
checksum = "
|
|
1689
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
1670
1690
|
dependencies = [
|
|
1671
1691
|
"bumpalo",
|
|
1672
1692
|
"proc-macro2",
|
|
@@ -1677,18 +1697,18 @@ dependencies = [
|
|
|
1677
1697
|
|
|
1678
1698
|
[[package]]
|
|
1679
1699
|
name = "wasm-bindgen-shared"
|
|
1680
|
-
version = "0.2.
|
|
1700
|
+
version = "0.2.118"
|
|
1681
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
-
checksum = "
|
|
1702
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
1683
1703
|
dependencies = [
|
|
1684
1704
|
"unicode-ident",
|
|
1685
1705
|
]
|
|
1686
1706
|
|
|
1687
1707
|
[[package]]
|
|
1688
1708
|
name = "web-sys"
|
|
1689
|
-
version = "0.3.
|
|
1709
|
+
version = "0.3.95"
|
|
1690
1710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
-
checksum = "
|
|
1711
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
1692
1712
|
dependencies = [
|
|
1693
1713
|
"js-sys",
|
|
1694
1714
|
"wasm-bindgen",
|
|
@@ -1736,15 +1756,6 @@ dependencies = [
|
|
|
1736
1756
|
"windows-targets 0.52.6",
|
|
1737
1757
|
]
|
|
1738
1758
|
|
|
1739
|
-
[[package]]
|
|
1740
|
-
name = "windows-sys"
|
|
1741
|
-
version = "0.60.2"
|
|
1742
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1744
|
-
dependencies = [
|
|
1745
|
-
"windows-targets 0.53.5",
|
|
1746
|
-
]
|
|
1747
|
-
|
|
1748
1759
|
[[package]]
|
|
1749
1760
|
name = "windows-sys"
|
|
1750
1761
|
version = "0.61.2"
|
|
@@ -1778,30 +1789,13 @@ dependencies = [
|
|
|
1778
1789
|
"windows_aarch64_gnullvm 0.52.6",
|
|
1779
1790
|
"windows_aarch64_msvc 0.52.6",
|
|
1780
1791
|
"windows_i686_gnu 0.52.6",
|
|
1781
|
-
"windows_i686_gnullvm
|
|
1792
|
+
"windows_i686_gnullvm",
|
|
1782
1793
|
"windows_i686_msvc 0.52.6",
|
|
1783
1794
|
"windows_x86_64_gnu 0.52.6",
|
|
1784
1795
|
"windows_x86_64_gnullvm 0.52.6",
|
|
1785
1796
|
"windows_x86_64_msvc 0.52.6",
|
|
1786
1797
|
]
|
|
1787
1798
|
|
|
1788
|
-
[[package]]
|
|
1789
|
-
name = "windows-targets"
|
|
1790
|
-
version = "0.53.5"
|
|
1791
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1793
|
-
dependencies = [
|
|
1794
|
-
"windows-link",
|
|
1795
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
1796
|
-
"windows_aarch64_msvc 0.53.1",
|
|
1797
|
-
"windows_i686_gnu 0.53.1",
|
|
1798
|
-
"windows_i686_gnullvm 0.53.1",
|
|
1799
|
-
"windows_i686_msvc 0.53.1",
|
|
1800
|
-
"windows_x86_64_gnu 0.53.1",
|
|
1801
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
1802
|
-
"windows_x86_64_msvc 0.53.1",
|
|
1803
|
-
]
|
|
1804
|
-
|
|
1805
1799
|
[[package]]
|
|
1806
1800
|
name = "windows_aarch64_gnullvm"
|
|
1807
1801
|
version = "0.42.2"
|
|
@@ -1814,12 +1808,6 @@ version = "0.52.6"
|
|
|
1814
1808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
1809
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1816
1810
|
|
|
1817
|
-
[[package]]
|
|
1818
|
-
name = "windows_aarch64_gnullvm"
|
|
1819
|
-
version = "0.53.1"
|
|
1820
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1822
|
-
|
|
1823
1811
|
[[package]]
|
|
1824
1812
|
name = "windows_aarch64_msvc"
|
|
1825
1813
|
version = "0.42.2"
|
|
@@ -1832,12 +1820,6 @@ version = "0.52.6"
|
|
|
1832
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
1821
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1834
1822
|
|
|
1835
|
-
[[package]]
|
|
1836
|
-
name = "windows_aarch64_msvc"
|
|
1837
|
-
version = "0.53.1"
|
|
1838
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1840
|
-
|
|
1841
1823
|
[[package]]
|
|
1842
1824
|
name = "windows_i686_gnu"
|
|
1843
1825
|
version = "0.42.2"
|
|
@@ -1850,24 +1832,12 @@ version = "0.52.6"
|
|
|
1850
1832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
1833
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1852
1834
|
|
|
1853
|
-
[[package]]
|
|
1854
|
-
name = "windows_i686_gnu"
|
|
1855
|
-
version = "0.53.1"
|
|
1856
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1858
|
-
|
|
1859
1835
|
[[package]]
|
|
1860
1836
|
name = "windows_i686_gnullvm"
|
|
1861
1837
|
version = "0.52.6"
|
|
1862
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
1839
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1864
1840
|
|
|
1865
|
-
[[package]]
|
|
1866
|
-
name = "windows_i686_gnullvm"
|
|
1867
|
-
version = "0.53.1"
|
|
1868
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1870
|
-
|
|
1871
1841
|
[[package]]
|
|
1872
1842
|
name = "windows_i686_msvc"
|
|
1873
1843
|
version = "0.42.2"
|
|
@@ -1880,12 +1850,6 @@ version = "0.52.6"
|
|
|
1880
1850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
1851
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1882
1852
|
|
|
1883
|
-
[[package]]
|
|
1884
|
-
name = "windows_i686_msvc"
|
|
1885
|
-
version = "0.53.1"
|
|
1886
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1888
|
-
|
|
1889
1853
|
[[package]]
|
|
1890
1854
|
name = "windows_x86_64_gnu"
|
|
1891
1855
|
version = "0.42.2"
|
|
@@ -1898,12 +1862,6 @@ version = "0.52.6"
|
|
|
1898
1862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
1863
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1900
1864
|
|
|
1901
|
-
[[package]]
|
|
1902
|
-
name = "windows_x86_64_gnu"
|
|
1903
|
-
version = "0.53.1"
|
|
1904
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1906
|
-
|
|
1907
1865
|
[[package]]
|
|
1908
1866
|
name = "windows_x86_64_gnullvm"
|
|
1909
1867
|
version = "0.42.2"
|
|
@@ -1916,12 +1874,6 @@ version = "0.52.6"
|
|
|
1916
1874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
1875
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1918
1876
|
|
|
1919
|
-
[[package]]
|
|
1920
|
-
name = "windows_x86_64_gnullvm"
|
|
1921
|
-
version = "0.53.1"
|
|
1922
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1924
|
-
|
|
1925
1877
|
[[package]]
|
|
1926
1878
|
name = "windows_x86_64_msvc"
|
|
1927
1879
|
version = "0.42.2"
|
|
@@ -1934,12 +1886,6 @@ version = "0.52.6"
|
|
|
1934
1886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
1887
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1936
1888
|
|
|
1937
|
-
[[package]]
|
|
1938
|
-
name = "windows_x86_64_msvc"
|
|
1939
|
-
version = "0.53.1"
|
|
1940
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1942
|
-
|
|
1943
1889
|
[[package]]
|
|
1944
1890
|
name = "wit-bindgen"
|
|
1945
1891
|
version = "0.51.0"
|
|
@@ -1948,15 +1894,15 @@ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
|
1948
1894
|
|
|
1949
1895
|
[[package]]
|
|
1950
1896
|
name = "writeable"
|
|
1951
|
-
version = "0.6.
|
|
1897
|
+
version = "0.6.3"
|
|
1952
1898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
-
checksum = "
|
|
1899
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1954
1900
|
|
|
1955
1901
|
[[package]]
|
|
1956
1902
|
name = "yoke"
|
|
1957
|
-
version = "0.8.
|
|
1903
|
+
version = "0.8.2"
|
|
1958
1904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
-
checksum = "
|
|
1905
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1960
1906
|
dependencies = [
|
|
1961
1907
|
"stable_deref_trait",
|
|
1962
1908
|
"yoke-derive",
|
|
@@ -1965,9 +1911,9 @@ dependencies = [
|
|
|
1965
1911
|
|
|
1966
1912
|
[[package]]
|
|
1967
1913
|
name = "yoke-derive"
|
|
1968
|
-
version = "0.8.
|
|
1914
|
+
version = "0.8.2"
|
|
1969
1915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
-
checksum = "
|
|
1916
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1971
1917
|
dependencies = [
|
|
1972
1918
|
"proc-macro2",
|
|
1973
1919
|
"quote",
|
|
@@ -1977,18 +1923,18 @@ dependencies = [
|
|
|
1977
1923
|
|
|
1978
1924
|
[[package]]
|
|
1979
1925
|
name = "zerocopy"
|
|
1980
|
-
version = "0.8.
|
|
1926
|
+
version = "0.8.48"
|
|
1981
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
-
checksum = "
|
|
1928
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1983
1929
|
dependencies = [
|
|
1984
1930
|
"zerocopy-derive",
|
|
1985
1931
|
]
|
|
1986
1932
|
|
|
1987
1933
|
[[package]]
|
|
1988
1934
|
name = "zerocopy-derive"
|
|
1989
|
-
version = "0.8.
|
|
1935
|
+
version = "0.8.48"
|
|
1990
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "
|
|
1937
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1992
1938
|
dependencies = [
|
|
1993
1939
|
"proc-macro2",
|
|
1994
1940
|
"quote",
|
|
@@ -1997,18 +1943,18 @@ dependencies = [
|
|
|
1997
1943
|
|
|
1998
1944
|
[[package]]
|
|
1999
1945
|
name = "zerofrom"
|
|
2000
|
-
version = "0.1.
|
|
1946
|
+
version = "0.1.7"
|
|
2001
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
-
checksum = "
|
|
1948
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
2003
1949
|
dependencies = [
|
|
2004
1950
|
"zerofrom-derive",
|
|
2005
1951
|
]
|
|
2006
1952
|
|
|
2007
1953
|
[[package]]
|
|
2008
1954
|
name = "zerofrom-derive"
|
|
2009
|
-
version = "0.1.
|
|
1955
|
+
version = "0.1.7"
|
|
2010
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
-
checksum = "
|
|
1957
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2012
1958
|
dependencies = [
|
|
2013
1959
|
"proc-macro2",
|
|
2014
1960
|
"quote",
|
|
@@ -2024,9 +1970,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
2024
1970
|
|
|
2025
1971
|
[[package]]
|
|
2026
1972
|
name = "zerotrie"
|
|
2027
|
-
version = "0.2.
|
|
1973
|
+
version = "0.2.4"
|
|
2028
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
-
checksum = "
|
|
1975
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2030
1976
|
dependencies = [
|
|
2031
1977
|
"displaydoc",
|
|
2032
1978
|
"yoke",
|
|
@@ -2035,9 +1981,9 @@ dependencies = [
|
|
|
2035
1981
|
|
|
2036
1982
|
[[package]]
|
|
2037
1983
|
name = "zerovec"
|
|
2038
|
-
version = "0.11.
|
|
1984
|
+
version = "0.11.6"
|
|
2039
1985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
-
checksum = "
|
|
1986
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2041
1987
|
dependencies = [
|
|
2042
1988
|
"yoke",
|
|
2043
1989
|
"zerofrom",
|
|
@@ -2046,9 +1992,9 @@ dependencies = [
|
|
|
2046
1992
|
|
|
2047
1993
|
[[package]]
|
|
2048
1994
|
name = "zerovec-derive"
|
|
2049
|
-
version = "0.11.
|
|
1995
|
+
version = "0.11.3"
|
|
2050
1996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
-
checksum = "
|
|
1997
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2052
1998
|
dependencies = [
|
|
2053
1999
|
"proc-macro2",
|
|
2054
2000
|
"quote",
|