css_inline 0.20.1 → 0.20.3
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 +115 -139
- data/README.md +1 -1
- data/ext/css_inline/Cargo.lock +115 -139
- data/ext/css_inline/Cargo.toml +2 -2
- metadata +2 -2
data/Cargo.lock
CHANGED
|
@@ -31,35 +31,33 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
31
31
|
|
|
32
32
|
[[package]]
|
|
33
33
|
name = "bindgen"
|
|
34
|
-
version = "0.
|
|
34
|
+
version = "0.72.1"
|
|
35
35
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
-
checksum = "
|
|
36
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
37
37
|
dependencies = [
|
|
38
38
|
"bitflags",
|
|
39
39
|
"cexpr",
|
|
40
40
|
"clang-sys",
|
|
41
41
|
"itertools",
|
|
42
|
-
"lazy_static",
|
|
43
|
-
"lazycell",
|
|
44
42
|
"proc-macro2",
|
|
45
43
|
"quote",
|
|
46
44
|
"regex",
|
|
47
|
-
"rustc-hash
|
|
45
|
+
"rustc-hash",
|
|
48
46
|
"shlex",
|
|
49
47
|
"syn",
|
|
50
48
|
]
|
|
51
49
|
|
|
52
50
|
[[package]]
|
|
53
51
|
name = "bitflags"
|
|
54
|
-
version = "2.
|
|
52
|
+
version = "2.11.0"
|
|
55
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
54
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
57
55
|
|
|
58
56
|
[[package]]
|
|
59
57
|
name = "bumpalo"
|
|
60
|
-
version = "3.
|
|
58
|
+
version = "3.20.2"
|
|
61
59
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
60
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
63
61
|
|
|
64
62
|
[[package]]
|
|
65
63
|
name = "bytes"
|
|
@@ -69,9 +67,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
69
67
|
|
|
70
68
|
[[package]]
|
|
71
69
|
name = "cc"
|
|
72
|
-
version = "1.2.
|
|
70
|
+
version = "1.2.58"
|
|
73
71
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "
|
|
72
|
+
checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
|
|
75
73
|
dependencies = [
|
|
76
74
|
"find-msvc-tools",
|
|
77
75
|
"shlex",
|
|
@@ -136,9 +134,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
136
134
|
|
|
137
135
|
[[package]]
|
|
138
136
|
name = "css-inline"
|
|
139
|
-
version = "0.20.
|
|
137
|
+
version = "0.20.2"
|
|
140
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
-
checksum = "
|
|
139
|
+
checksum = "94c78ae84c4ea75d3734db18f768c7ce7ef5615fbd13987245db26c4a121771d"
|
|
142
140
|
dependencies = [
|
|
143
141
|
"cssparser",
|
|
144
142
|
"html5ever",
|
|
@@ -146,7 +144,7 @@ dependencies = [
|
|
|
146
144
|
"memchr",
|
|
147
145
|
"precomputed-hash",
|
|
148
146
|
"reqwest",
|
|
149
|
-
"rustc-hash
|
|
147
|
+
"rustc-hash",
|
|
150
148
|
"selectors",
|
|
151
149
|
"smallvec",
|
|
152
150
|
"url",
|
|
@@ -154,7 +152,7 @@ dependencies = [
|
|
|
154
152
|
|
|
155
153
|
[[package]]
|
|
156
154
|
name = "css-inline-ruby"
|
|
157
|
-
version = "0.20.
|
|
155
|
+
version = "0.20.3"
|
|
158
156
|
dependencies = [
|
|
159
157
|
"css-inline",
|
|
160
158
|
"magnus",
|
|
@@ -272,9 +270,9 @@ dependencies = [
|
|
|
272
270
|
|
|
273
271
|
[[package]]
|
|
274
272
|
name = "futures-channel"
|
|
275
|
-
version = "0.3.
|
|
273
|
+
version = "0.3.32"
|
|
276
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
-
checksum = "
|
|
275
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
278
276
|
dependencies = [
|
|
279
277
|
"futures-core",
|
|
280
278
|
"futures-sink",
|
|
@@ -282,33 +280,33 @@ dependencies = [
|
|
|
282
280
|
|
|
283
281
|
[[package]]
|
|
284
282
|
name = "futures-core"
|
|
285
|
-
version = "0.3.
|
|
283
|
+
version = "0.3.32"
|
|
286
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "
|
|
285
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
288
286
|
|
|
289
287
|
[[package]]
|
|
290
288
|
name = "futures-io"
|
|
291
|
-
version = "0.3.
|
|
289
|
+
version = "0.3.32"
|
|
292
290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
-
checksum = "
|
|
291
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
294
292
|
|
|
295
293
|
[[package]]
|
|
296
294
|
name = "futures-sink"
|
|
297
|
-
version = "0.3.
|
|
295
|
+
version = "0.3.32"
|
|
298
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
-
checksum = "
|
|
297
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
300
298
|
|
|
301
299
|
[[package]]
|
|
302
300
|
name = "futures-task"
|
|
303
|
-
version = "0.3.
|
|
301
|
+
version = "0.3.32"
|
|
304
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
-
checksum = "
|
|
303
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
306
304
|
|
|
307
305
|
[[package]]
|
|
308
306
|
name = "futures-util"
|
|
309
|
-
version = "0.3.
|
|
307
|
+
version = "0.3.32"
|
|
310
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
309
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
312
310
|
dependencies = [
|
|
313
311
|
"futures-core",
|
|
314
312
|
"futures-io",
|
|
@@ -316,7 +314,6 @@ dependencies = [
|
|
|
316
314
|
"futures-task",
|
|
317
315
|
"memchr",
|
|
318
316
|
"pin-project-lite",
|
|
319
|
-
"pin-utils",
|
|
320
317
|
"slab",
|
|
321
318
|
]
|
|
322
319
|
|
|
@@ -415,9 +412,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
415
412
|
|
|
416
413
|
[[package]]
|
|
417
414
|
name = "hyper"
|
|
418
|
-
version = "1.
|
|
415
|
+
version = "1.9.0"
|
|
419
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "
|
|
417
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
421
418
|
dependencies = [
|
|
422
419
|
"atomic-waker",
|
|
423
420
|
"bytes",
|
|
@@ -428,7 +425,6 @@ dependencies = [
|
|
|
428
425
|
"httparse",
|
|
429
426
|
"itoa",
|
|
430
427
|
"pin-project-lite",
|
|
431
|
-
"pin-utils",
|
|
432
428
|
"smallvec",
|
|
433
429
|
"tokio",
|
|
434
430
|
"want",
|
|
@@ -502,9 +498,9 @@ dependencies = [
|
|
|
502
498
|
|
|
503
499
|
[[package]]
|
|
504
500
|
name = "icu_normalizer"
|
|
505
|
-
version = "2.1.
|
|
501
|
+
version = "2.1.0"
|
|
506
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "
|
|
503
|
+
checksum = "33747cecc725eebb47ac503fab725e395d50cb7889ae490a1359f130611d4cc5"
|
|
508
504
|
dependencies = [
|
|
509
505
|
"icu_collections",
|
|
510
506
|
"icu_normalizer_data",
|
|
@@ -578,15 +574,15 @@ dependencies = [
|
|
|
578
574
|
|
|
579
575
|
[[package]]
|
|
580
576
|
name = "ipnet"
|
|
581
|
-
version = "2.
|
|
577
|
+
version = "2.12.0"
|
|
582
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
579
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
584
580
|
|
|
585
581
|
[[package]]
|
|
586
582
|
name = "iri-string"
|
|
587
|
-
version = "0.7.
|
|
583
|
+
version = "0.7.12"
|
|
588
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
-
checksum = "
|
|
585
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
590
586
|
dependencies = [
|
|
591
587
|
"memchr",
|
|
592
588
|
"serde",
|
|
@@ -594,25 +590,27 @@ dependencies = [
|
|
|
594
590
|
|
|
595
591
|
[[package]]
|
|
596
592
|
name = "itertools"
|
|
597
|
-
version = "0.
|
|
593
|
+
version = "0.13.0"
|
|
598
594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
595
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
600
596
|
dependencies = [
|
|
601
597
|
"either",
|
|
602
598
|
]
|
|
603
599
|
|
|
604
600
|
[[package]]
|
|
605
601
|
name = "itoa"
|
|
606
|
-
version = "1.0.
|
|
602
|
+
version = "1.0.18"
|
|
607
603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
-
checksum = "
|
|
604
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
609
605
|
|
|
610
606
|
[[package]]
|
|
611
607
|
name = "js-sys"
|
|
612
|
-
version = "0.3.
|
|
608
|
+
version = "0.3.94"
|
|
613
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
610
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
615
611
|
dependencies = [
|
|
612
|
+
"cfg-if",
|
|
613
|
+
"futures-util",
|
|
616
614
|
"once_cell",
|
|
617
615
|
"wasm-bindgen",
|
|
618
616
|
]
|
|
@@ -623,17 +621,11 @@ version = "1.5.0"
|
|
|
623
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
622
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
625
623
|
|
|
626
|
-
[[package]]
|
|
627
|
-
name = "lazycell"
|
|
628
|
-
version = "1.3.0"
|
|
629
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
631
|
-
|
|
632
624
|
[[package]]
|
|
633
625
|
name = "libc"
|
|
634
|
-
version = "0.2.
|
|
626
|
+
version = "0.2.184"
|
|
635
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "
|
|
628
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
637
629
|
|
|
638
630
|
[[package]]
|
|
639
631
|
name = "libloading"
|
|
@@ -647,9 +639,9 @@ dependencies = [
|
|
|
647
639
|
|
|
648
640
|
[[package]]
|
|
649
641
|
name = "litemap"
|
|
650
|
-
version = "0.8.
|
|
642
|
+
version = "0.8.2"
|
|
651
643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
-
checksum = "
|
|
644
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
653
645
|
|
|
654
646
|
[[package]]
|
|
655
647
|
name = "lock_api"
|
|
@@ -729,9 +721,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
729
721
|
|
|
730
722
|
[[package]]
|
|
731
723
|
name = "mio"
|
|
732
|
-
version = "1.
|
|
724
|
+
version = "1.2.0"
|
|
733
725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
-
checksum = "
|
|
726
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
735
727
|
dependencies = [
|
|
736
728
|
"libc",
|
|
737
729
|
"wasi",
|
|
@@ -756,9 +748,9 @@ dependencies = [
|
|
|
756
748
|
|
|
757
749
|
[[package]]
|
|
758
750
|
name = "once_cell"
|
|
759
|
-
version = "1.21.
|
|
751
|
+
version = "1.21.4"
|
|
760
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
753
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
762
754
|
|
|
763
755
|
[[package]]
|
|
764
756
|
name = "parking_lot"
|
|
@@ -844,21 +836,15 @@ dependencies = [
|
|
|
844
836
|
|
|
845
837
|
[[package]]
|
|
846
838
|
name = "pin-project-lite"
|
|
847
|
-
version = "0.2.
|
|
848
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
-
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
850
|
-
|
|
851
|
-
[[package]]
|
|
852
|
-
name = "pin-utils"
|
|
853
|
-
version = "0.1.0"
|
|
839
|
+
version = "0.2.17"
|
|
854
840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
841
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
856
842
|
|
|
857
843
|
[[package]]
|
|
858
844
|
name = "potential_utf"
|
|
859
|
-
version = "0.1.
|
|
845
|
+
version = "0.1.5"
|
|
860
846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
847
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
862
848
|
dependencies = [
|
|
863
849
|
"zerovec",
|
|
864
850
|
]
|
|
@@ -898,7 +884,7 @@ dependencies = [
|
|
|
898
884
|
"pin-project-lite",
|
|
899
885
|
"quinn-proto",
|
|
900
886
|
"quinn-udp",
|
|
901
|
-
"rustc-hash
|
|
887
|
+
"rustc-hash",
|
|
902
888
|
"rustls",
|
|
903
889
|
"socket2",
|
|
904
890
|
"thiserror",
|
|
@@ -918,7 +904,7 @@ dependencies = [
|
|
|
918
904
|
"lru-slab",
|
|
919
905
|
"rand",
|
|
920
906
|
"ring",
|
|
921
|
-
"rustc-hash
|
|
907
|
+
"rustc-hash",
|
|
922
908
|
"rustls",
|
|
923
909
|
"rustls-pki-types",
|
|
924
910
|
"slab",
|
|
@@ -944,9 +930,9 @@ dependencies = [
|
|
|
944
930
|
|
|
945
931
|
[[package]]
|
|
946
932
|
name = "quote"
|
|
947
|
-
version = "1.0.
|
|
933
|
+
version = "1.0.45"
|
|
948
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
935
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
950
936
|
dependencies = [
|
|
951
937
|
"proc-macro2",
|
|
952
938
|
]
|
|
@@ -1008,18 +994,18 @@ dependencies = [
|
|
|
1008
994
|
|
|
1009
995
|
[[package]]
|
|
1010
996
|
name = "rb-sys"
|
|
1011
|
-
version = "0.9.
|
|
997
|
+
version = "0.9.125"
|
|
1012
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "
|
|
999
|
+
checksum = "85b37650fabd8ba515910a0dc089dcb6348eb3c35fbf91698cb226435be2babc"
|
|
1014
1000
|
dependencies = [
|
|
1015
1001
|
"rb-sys-build",
|
|
1016
1002
|
]
|
|
1017
1003
|
|
|
1018
1004
|
[[package]]
|
|
1019
1005
|
name = "rb-sys-build"
|
|
1020
|
-
version = "0.9.
|
|
1006
|
+
version = "0.9.125"
|
|
1021
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
1008
|
+
checksum = "c73b806faa66006e491458b48a78725621c1ac5a2a6efe2614c90711a7780b80"
|
|
1023
1009
|
dependencies = [
|
|
1024
1010
|
"bindgen",
|
|
1025
1011
|
"lazy_static",
|
|
@@ -1070,9 +1056,9 @@ dependencies = [
|
|
|
1070
1056
|
|
|
1071
1057
|
[[package]]
|
|
1072
1058
|
name = "regex-syntax"
|
|
1073
|
-
version = "0.8.
|
|
1059
|
+
version = "0.8.10"
|
|
1074
1060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
-
checksum = "
|
|
1061
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1076
1062
|
|
|
1077
1063
|
[[package]]
|
|
1078
1064
|
name = "reqwest"
|
|
@@ -1130,15 +1116,9 @@ dependencies = [
|
|
|
1130
1116
|
|
|
1131
1117
|
[[package]]
|
|
1132
1118
|
name = "rustc-hash"
|
|
1133
|
-
version = "
|
|
1134
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1136
|
-
|
|
1137
|
-
[[package]]
|
|
1138
|
-
name = "rustc-hash"
|
|
1139
|
-
version = "2.1.1"
|
|
1119
|
+
version = "2.1.2"
|
|
1140
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1121
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1142
1122
|
|
|
1143
1123
|
[[package]]
|
|
1144
1124
|
name = "rustc_version"
|
|
@@ -1151,9 +1131,9 @@ dependencies = [
|
|
|
1151
1131
|
|
|
1152
1132
|
[[package]]
|
|
1153
1133
|
name = "rustls"
|
|
1154
|
-
version = "0.23.
|
|
1134
|
+
version = "0.23.37"
|
|
1155
1135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1136
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1157
1137
|
dependencies = [
|
|
1158
1138
|
"once_cell",
|
|
1159
1139
|
"ring",
|
|
@@ -1192,9 +1172,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
1192
1172
|
|
|
1193
1173
|
[[package]]
|
|
1194
1174
|
name = "ryu"
|
|
1195
|
-
version = "1.0.
|
|
1175
|
+
version = "1.0.23"
|
|
1196
1176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1177
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1198
1178
|
|
|
1199
1179
|
[[package]]
|
|
1200
1180
|
name = "scopeguard"
|
|
@@ -1216,7 +1196,7 @@ dependencies = [
|
|
|
1216
1196
|
"phf",
|
|
1217
1197
|
"phf_codegen",
|
|
1218
1198
|
"precomputed-hash",
|
|
1219
|
-
"rustc-hash
|
|
1199
|
+
"rustc-hash",
|
|
1220
1200
|
"servo_arc",
|
|
1221
1201
|
"smallvec",
|
|
1222
1202
|
]
|
|
@@ -1329,12 +1309,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1329
1309
|
|
|
1330
1310
|
[[package]]
|
|
1331
1311
|
name = "socket2"
|
|
1332
|
-
version = "0.6.
|
|
1312
|
+
version = "0.6.3"
|
|
1333
1313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1314
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1335
1315
|
dependencies = [
|
|
1336
1316
|
"libc",
|
|
1337
|
-
"windows-sys 0.
|
|
1317
|
+
"windows-sys 0.61.2",
|
|
1338
1318
|
]
|
|
1339
1319
|
|
|
1340
1320
|
[[package]]
|
|
@@ -1375,9 +1355,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1375
1355
|
|
|
1376
1356
|
[[package]]
|
|
1377
1357
|
name = "syn"
|
|
1378
|
-
version = "2.0.
|
|
1358
|
+
version = "2.0.117"
|
|
1379
1359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1360
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1381
1361
|
dependencies = [
|
|
1382
1362
|
"proc-macro2",
|
|
1383
1363
|
"quote",
|
|
@@ -1436,9 +1416,9 @@ dependencies = [
|
|
|
1436
1416
|
|
|
1437
1417
|
[[package]]
|
|
1438
1418
|
name = "tinystr"
|
|
1439
|
-
version = "0.8.
|
|
1419
|
+
version = "0.8.3"
|
|
1440
1420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
-
checksum = "
|
|
1421
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1442
1422
|
dependencies = [
|
|
1443
1423
|
"displaydoc",
|
|
1444
1424
|
"zerovec",
|
|
@@ -1446,9 +1426,9 @@ dependencies = [
|
|
|
1446
1426
|
|
|
1447
1427
|
[[package]]
|
|
1448
1428
|
name = "tinyvec"
|
|
1449
|
-
version = "1.
|
|
1429
|
+
version = "1.11.0"
|
|
1450
1430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "
|
|
1431
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1452
1432
|
dependencies = [
|
|
1453
1433
|
"tinyvec_macros",
|
|
1454
1434
|
]
|
|
@@ -1461,9 +1441,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1461
1441
|
|
|
1462
1442
|
[[package]]
|
|
1463
1443
|
name = "tokio"
|
|
1464
|
-
version = "1.
|
|
1444
|
+
version = "1.50.0"
|
|
1465
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
-
checksum = "
|
|
1446
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1467
1447
|
dependencies = [
|
|
1468
1448
|
"bytes",
|
|
1469
1449
|
"libc",
|
|
@@ -1555,9 +1535,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
1555
1535
|
|
|
1556
1536
|
[[package]]
|
|
1557
1537
|
name = "unicode-ident"
|
|
1558
|
-
version = "1.0.
|
|
1538
|
+
version = "1.0.24"
|
|
1559
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
-
checksum = "
|
|
1540
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1561
1541
|
|
|
1562
1542
|
[[package]]
|
|
1563
1543
|
name = "untrusted"
|
|
@@ -1615,9 +1595,9 @@ dependencies = [
|
|
|
1615
1595
|
|
|
1616
1596
|
[[package]]
|
|
1617
1597
|
name = "wasm-bindgen"
|
|
1618
|
-
version = "0.2.
|
|
1598
|
+
version = "0.2.117"
|
|
1619
1599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
-
checksum = "
|
|
1600
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
1621
1601
|
dependencies = [
|
|
1622
1602
|
"cfg-if",
|
|
1623
1603
|
"once_cell",
|
|
@@ -1628,23 +1608,19 @@ dependencies = [
|
|
|
1628
1608
|
|
|
1629
1609
|
[[package]]
|
|
1630
1610
|
name = "wasm-bindgen-futures"
|
|
1631
|
-
version = "0.4.
|
|
1611
|
+
version = "0.4.67"
|
|
1632
1612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
-
checksum = "
|
|
1613
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
1634
1614
|
dependencies = [
|
|
1635
|
-
"cfg-if",
|
|
1636
|
-
"futures-util",
|
|
1637
1615
|
"js-sys",
|
|
1638
|
-
"once_cell",
|
|
1639
1616
|
"wasm-bindgen",
|
|
1640
|
-
"web-sys",
|
|
1641
1617
|
]
|
|
1642
1618
|
|
|
1643
1619
|
[[package]]
|
|
1644
1620
|
name = "wasm-bindgen-macro"
|
|
1645
|
-
version = "0.2.
|
|
1621
|
+
version = "0.2.117"
|
|
1646
1622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
1623
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
1648
1624
|
dependencies = [
|
|
1649
1625
|
"quote",
|
|
1650
1626
|
"wasm-bindgen-macro-support",
|
|
@@ -1652,9 +1628,9 @@ dependencies = [
|
|
|
1652
1628
|
|
|
1653
1629
|
[[package]]
|
|
1654
1630
|
name = "wasm-bindgen-macro-support"
|
|
1655
|
-
version = "0.2.
|
|
1631
|
+
version = "0.2.117"
|
|
1656
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
-
checksum = "
|
|
1633
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
1658
1634
|
dependencies = [
|
|
1659
1635
|
"bumpalo",
|
|
1660
1636
|
"proc-macro2",
|
|
@@ -1665,18 +1641,18 @@ dependencies = [
|
|
|
1665
1641
|
|
|
1666
1642
|
[[package]]
|
|
1667
1643
|
name = "wasm-bindgen-shared"
|
|
1668
|
-
version = "0.2.
|
|
1644
|
+
version = "0.2.117"
|
|
1669
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1646
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
1671
1647
|
dependencies = [
|
|
1672
1648
|
"unicode-ident",
|
|
1673
1649
|
]
|
|
1674
1650
|
|
|
1675
1651
|
[[package]]
|
|
1676
1652
|
name = "web-sys"
|
|
1677
|
-
version = "0.3.
|
|
1653
|
+
version = "0.3.94"
|
|
1678
1654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
-
checksum = "
|
|
1655
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
1680
1656
|
dependencies = [
|
|
1681
1657
|
"js-sys",
|
|
1682
1658
|
"wasm-bindgen",
|
|
@@ -1889,9 +1865,9 @@ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
|
1889
1865
|
|
|
1890
1866
|
[[package]]
|
|
1891
1867
|
name = "yoke"
|
|
1892
|
-
version = "0.8.
|
|
1868
|
+
version = "0.8.2"
|
|
1893
1869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
-
checksum = "
|
|
1870
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1895
1871
|
dependencies = [
|
|
1896
1872
|
"stable_deref_trait",
|
|
1897
1873
|
"yoke-derive",
|
|
@@ -1900,9 +1876,9 @@ dependencies = [
|
|
|
1900
1876
|
|
|
1901
1877
|
[[package]]
|
|
1902
1878
|
name = "yoke-derive"
|
|
1903
|
-
version = "0.8.
|
|
1879
|
+
version = "0.8.2"
|
|
1904
1880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
-
checksum = "
|
|
1881
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1906
1882
|
dependencies = [
|
|
1907
1883
|
"proc-macro2",
|
|
1908
1884
|
"quote",
|
|
@@ -1912,18 +1888,18 @@ dependencies = [
|
|
|
1912
1888
|
|
|
1913
1889
|
[[package]]
|
|
1914
1890
|
name = "zerocopy"
|
|
1915
|
-
version = "0.8.
|
|
1891
|
+
version = "0.8.48"
|
|
1916
1892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
1893
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1918
1894
|
dependencies = [
|
|
1919
1895
|
"zerocopy-derive",
|
|
1920
1896
|
]
|
|
1921
1897
|
|
|
1922
1898
|
[[package]]
|
|
1923
1899
|
name = "zerocopy-derive"
|
|
1924
|
-
version = "0.8.
|
|
1900
|
+
version = "0.8.48"
|
|
1925
1901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
-
checksum = "
|
|
1902
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1927
1903
|
dependencies = [
|
|
1928
1904
|
"proc-macro2",
|
|
1929
1905
|
"quote",
|
|
@@ -1932,18 +1908,18 @@ dependencies = [
|
|
|
1932
1908
|
|
|
1933
1909
|
[[package]]
|
|
1934
1910
|
name = "zerofrom"
|
|
1935
|
-
version = "0.1.
|
|
1911
|
+
version = "0.1.7"
|
|
1936
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
-
checksum = "
|
|
1913
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
1938
1914
|
dependencies = [
|
|
1939
1915
|
"zerofrom-derive",
|
|
1940
1916
|
]
|
|
1941
1917
|
|
|
1942
1918
|
[[package]]
|
|
1943
1919
|
name = "zerofrom-derive"
|
|
1944
|
-
version = "0.1.
|
|
1920
|
+
version = "0.1.7"
|
|
1945
1921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
-
checksum = "
|
|
1922
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1947
1923
|
dependencies = [
|
|
1948
1924
|
"proc-macro2",
|
|
1949
1925
|
"quote",
|
|
@@ -1959,9 +1935,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
1959
1935
|
|
|
1960
1936
|
[[package]]
|
|
1961
1937
|
name = "zerotrie"
|
|
1962
|
-
version = "0.2.
|
|
1938
|
+
version = "0.2.4"
|
|
1963
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "
|
|
1940
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1965
1941
|
dependencies = [
|
|
1966
1942
|
"displaydoc",
|
|
1967
1943
|
"yoke",
|
|
@@ -1970,9 +1946,9 @@ dependencies = [
|
|
|
1970
1946
|
|
|
1971
1947
|
[[package]]
|
|
1972
1948
|
name = "zerovec"
|
|
1973
|
-
version = "0.11.
|
|
1949
|
+
version = "0.11.6"
|
|
1974
1950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
-
checksum = "
|
|
1951
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1976
1952
|
dependencies = [
|
|
1977
1953
|
"yoke",
|
|
1978
1954
|
"zerofrom",
|
|
@@ -1981,9 +1957,9 @@ dependencies = [
|
|
|
1981
1957
|
|
|
1982
1958
|
[[package]]
|
|
1983
1959
|
name = "zerovec-derive"
|
|
1984
|
-
version = "0.11.
|
|
1960
|
+
version = "0.11.3"
|
|
1985
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
-
checksum = "
|
|
1962
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1987
1963
|
dependencies = [
|
|
1988
1964
|
"proc-macro2",
|
|
1989
1965
|
"quote",
|
|
@@ -1992,6 +1968,6 @@ dependencies = [
|
|
|
1992
1968
|
|
|
1993
1969
|
[[package]]
|
|
1994
1970
|
name = "zmij"
|
|
1995
|
-
version = "1.0.
|
|
1971
|
+
version = "1.0.21"
|
|
1996
1972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "
|
|
1973
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|