css_inline 0.20.1 → 0.20.2
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 +128 -151
- data/README.md +1 -1
- data/ext/css_inline/Cargo.lock +128 -151
- 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.2"
|
|
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",
|
|
@@ -476,12 +472,13 @@ dependencies = [
|
|
|
476
472
|
|
|
477
473
|
[[package]]
|
|
478
474
|
name = "icu_collections"
|
|
479
|
-
version = "2.
|
|
475
|
+
version = "2.2.0"
|
|
480
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
-
checksum = "
|
|
477
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
482
478
|
dependencies = [
|
|
483
479
|
"displaydoc",
|
|
484
480
|
"potential_utf",
|
|
481
|
+
"utf8_iter",
|
|
485
482
|
"yoke",
|
|
486
483
|
"zerofrom",
|
|
487
484
|
"zerovec",
|
|
@@ -489,9 +486,9 @@ dependencies = [
|
|
|
489
486
|
|
|
490
487
|
[[package]]
|
|
491
488
|
name = "icu_locale_core"
|
|
492
|
-
version = "2.
|
|
489
|
+
version = "2.2.0"
|
|
493
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
-
checksum = "
|
|
491
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
495
492
|
dependencies = [
|
|
496
493
|
"displaydoc",
|
|
497
494
|
"litemap",
|
|
@@ -502,9 +499,9 @@ dependencies = [
|
|
|
502
499
|
|
|
503
500
|
[[package]]
|
|
504
501
|
name = "icu_normalizer"
|
|
505
|
-
version = "2.
|
|
502
|
+
version = "2.2.0"
|
|
506
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "
|
|
504
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
508
505
|
dependencies = [
|
|
509
506
|
"icu_collections",
|
|
510
507
|
"icu_normalizer_data",
|
|
@@ -516,15 +513,15 @@ dependencies = [
|
|
|
516
513
|
|
|
517
514
|
[[package]]
|
|
518
515
|
name = "icu_normalizer_data"
|
|
519
|
-
version = "2.
|
|
516
|
+
version = "2.2.0"
|
|
520
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
518
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
522
519
|
|
|
523
520
|
[[package]]
|
|
524
521
|
name = "icu_properties"
|
|
525
|
-
version = "2.
|
|
522
|
+
version = "2.2.0"
|
|
526
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "
|
|
524
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
528
525
|
dependencies = [
|
|
529
526
|
"icu_collections",
|
|
530
527
|
"icu_locale_core",
|
|
@@ -536,15 +533,15 @@ dependencies = [
|
|
|
536
533
|
|
|
537
534
|
[[package]]
|
|
538
535
|
name = "icu_properties_data"
|
|
539
|
-
version = "2.
|
|
536
|
+
version = "2.2.0"
|
|
540
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
538
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
542
539
|
|
|
543
540
|
[[package]]
|
|
544
541
|
name = "icu_provider"
|
|
545
|
-
version = "2.
|
|
542
|
+
version = "2.2.0"
|
|
546
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
-
checksum = "
|
|
544
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
548
545
|
dependencies = [
|
|
549
546
|
"displaydoc",
|
|
550
547
|
"icu_locale_core",
|
|
@@ -578,15 +575,15 @@ dependencies = [
|
|
|
578
575
|
|
|
579
576
|
[[package]]
|
|
580
577
|
name = "ipnet"
|
|
581
|
-
version = "2.
|
|
578
|
+
version = "2.12.0"
|
|
582
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
580
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
584
581
|
|
|
585
582
|
[[package]]
|
|
586
583
|
name = "iri-string"
|
|
587
|
-
version = "0.7.
|
|
584
|
+
version = "0.7.12"
|
|
588
585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
-
checksum = "
|
|
586
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
590
587
|
dependencies = [
|
|
591
588
|
"memchr",
|
|
592
589
|
"serde",
|
|
@@ -594,25 +591,27 @@ dependencies = [
|
|
|
594
591
|
|
|
595
592
|
[[package]]
|
|
596
593
|
name = "itertools"
|
|
597
|
-
version = "0.
|
|
594
|
+
version = "0.13.0"
|
|
598
595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
596
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
600
597
|
dependencies = [
|
|
601
598
|
"either",
|
|
602
599
|
]
|
|
603
600
|
|
|
604
601
|
[[package]]
|
|
605
602
|
name = "itoa"
|
|
606
|
-
version = "1.0.
|
|
603
|
+
version = "1.0.18"
|
|
607
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
-
checksum = "
|
|
605
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
609
606
|
|
|
610
607
|
[[package]]
|
|
611
608
|
name = "js-sys"
|
|
612
|
-
version = "0.3.
|
|
609
|
+
version = "0.3.94"
|
|
613
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
611
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
615
612
|
dependencies = [
|
|
613
|
+
"cfg-if",
|
|
614
|
+
"futures-util",
|
|
616
615
|
"once_cell",
|
|
617
616
|
"wasm-bindgen",
|
|
618
617
|
]
|
|
@@ -623,17 +622,11 @@ version = "1.5.0"
|
|
|
623
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
623
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
625
624
|
|
|
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
625
|
[[package]]
|
|
633
626
|
name = "libc"
|
|
634
|
-
version = "0.2.
|
|
627
|
+
version = "0.2.184"
|
|
635
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "
|
|
629
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
637
630
|
|
|
638
631
|
[[package]]
|
|
639
632
|
name = "libloading"
|
|
@@ -647,9 +640,9 @@ dependencies = [
|
|
|
647
640
|
|
|
648
641
|
[[package]]
|
|
649
642
|
name = "litemap"
|
|
650
|
-
version = "0.8.
|
|
643
|
+
version = "0.8.2"
|
|
651
644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
-
checksum = "
|
|
645
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
653
646
|
|
|
654
647
|
[[package]]
|
|
655
648
|
name = "lock_api"
|
|
@@ -729,9 +722,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
729
722
|
|
|
730
723
|
[[package]]
|
|
731
724
|
name = "mio"
|
|
732
|
-
version = "1.
|
|
725
|
+
version = "1.2.0"
|
|
733
726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
-
checksum = "
|
|
727
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
735
728
|
dependencies = [
|
|
736
729
|
"libc",
|
|
737
730
|
"wasi",
|
|
@@ -756,9 +749,9 @@ dependencies = [
|
|
|
756
749
|
|
|
757
750
|
[[package]]
|
|
758
751
|
name = "once_cell"
|
|
759
|
-
version = "1.21.
|
|
752
|
+
version = "1.21.4"
|
|
760
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
754
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
762
755
|
|
|
763
756
|
[[package]]
|
|
764
757
|
name = "parking_lot"
|
|
@@ -844,21 +837,15 @@ dependencies = [
|
|
|
844
837
|
|
|
845
838
|
[[package]]
|
|
846
839
|
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"
|
|
840
|
+
version = "0.2.17"
|
|
854
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
842
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
856
843
|
|
|
857
844
|
[[package]]
|
|
858
845
|
name = "potential_utf"
|
|
859
|
-
version = "0.1.
|
|
846
|
+
version = "0.1.5"
|
|
860
847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
848
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
862
849
|
dependencies = [
|
|
863
850
|
"zerovec",
|
|
864
851
|
]
|
|
@@ -898,7 +885,7 @@ dependencies = [
|
|
|
898
885
|
"pin-project-lite",
|
|
899
886
|
"quinn-proto",
|
|
900
887
|
"quinn-udp",
|
|
901
|
-
"rustc-hash
|
|
888
|
+
"rustc-hash",
|
|
902
889
|
"rustls",
|
|
903
890
|
"socket2",
|
|
904
891
|
"thiserror",
|
|
@@ -918,7 +905,7 @@ dependencies = [
|
|
|
918
905
|
"lru-slab",
|
|
919
906
|
"rand",
|
|
920
907
|
"ring",
|
|
921
|
-
"rustc-hash
|
|
908
|
+
"rustc-hash",
|
|
922
909
|
"rustls",
|
|
923
910
|
"rustls-pki-types",
|
|
924
911
|
"slab",
|
|
@@ -944,9 +931,9 @@ dependencies = [
|
|
|
944
931
|
|
|
945
932
|
[[package]]
|
|
946
933
|
name = "quote"
|
|
947
|
-
version = "1.0.
|
|
934
|
+
version = "1.0.45"
|
|
948
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
936
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
950
937
|
dependencies = [
|
|
951
938
|
"proc-macro2",
|
|
952
939
|
]
|
|
@@ -1008,18 +995,18 @@ dependencies = [
|
|
|
1008
995
|
|
|
1009
996
|
[[package]]
|
|
1010
997
|
name = "rb-sys"
|
|
1011
|
-
version = "0.9.
|
|
998
|
+
version = "0.9.125"
|
|
1012
999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "
|
|
1000
|
+
checksum = "85b37650fabd8ba515910a0dc089dcb6348eb3c35fbf91698cb226435be2babc"
|
|
1014
1001
|
dependencies = [
|
|
1015
1002
|
"rb-sys-build",
|
|
1016
1003
|
]
|
|
1017
1004
|
|
|
1018
1005
|
[[package]]
|
|
1019
1006
|
name = "rb-sys-build"
|
|
1020
|
-
version = "0.9.
|
|
1007
|
+
version = "0.9.125"
|
|
1021
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
1009
|
+
checksum = "c73b806faa66006e491458b48a78725621c1ac5a2a6efe2614c90711a7780b80"
|
|
1023
1010
|
dependencies = [
|
|
1024
1011
|
"bindgen",
|
|
1025
1012
|
"lazy_static",
|
|
@@ -1070,9 +1057,9 @@ dependencies = [
|
|
|
1070
1057
|
|
|
1071
1058
|
[[package]]
|
|
1072
1059
|
name = "regex-syntax"
|
|
1073
|
-
version = "0.8.
|
|
1060
|
+
version = "0.8.10"
|
|
1074
1061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
-
checksum = "
|
|
1062
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1076
1063
|
|
|
1077
1064
|
[[package]]
|
|
1078
1065
|
name = "reqwest"
|
|
@@ -1130,15 +1117,9 @@ dependencies = [
|
|
|
1130
1117
|
|
|
1131
1118
|
[[package]]
|
|
1132
1119
|
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"
|
|
1120
|
+
version = "2.1.2"
|
|
1140
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1122
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1142
1123
|
|
|
1143
1124
|
[[package]]
|
|
1144
1125
|
name = "rustc_version"
|
|
@@ -1151,9 +1132,9 @@ dependencies = [
|
|
|
1151
1132
|
|
|
1152
1133
|
[[package]]
|
|
1153
1134
|
name = "rustls"
|
|
1154
|
-
version = "0.23.
|
|
1135
|
+
version = "0.23.37"
|
|
1155
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1137
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1157
1138
|
dependencies = [
|
|
1158
1139
|
"once_cell",
|
|
1159
1140
|
"ring",
|
|
@@ -1192,9 +1173,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
1192
1173
|
|
|
1193
1174
|
[[package]]
|
|
1194
1175
|
name = "ryu"
|
|
1195
|
-
version = "1.0.
|
|
1176
|
+
version = "1.0.23"
|
|
1196
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1178
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1198
1179
|
|
|
1199
1180
|
[[package]]
|
|
1200
1181
|
name = "scopeguard"
|
|
@@ -1216,7 +1197,7 @@ dependencies = [
|
|
|
1216
1197
|
"phf",
|
|
1217
1198
|
"phf_codegen",
|
|
1218
1199
|
"precomputed-hash",
|
|
1219
|
-
"rustc-hash
|
|
1200
|
+
"rustc-hash",
|
|
1220
1201
|
"servo_arc",
|
|
1221
1202
|
"smallvec",
|
|
1222
1203
|
]
|
|
@@ -1329,12 +1310,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1329
1310
|
|
|
1330
1311
|
[[package]]
|
|
1331
1312
|
name = "socket2"
|
|
1332
|
-
version = "0.6.
|
|
1313
|
+
version = "0.6.3"
|
|
1333
1314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1315
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1335
1316
|
dependencies = [
|
|
1336
1317
|
"libc",
|
|
1337
|
-
"windows-sys 0.
|
|
1318
|
+
"windows-sys 0.61.2",
|
|
1338
1319
|
]
|
|
1339
1320
|
|
|
1340
1321
|
[[package]]
|
|
@@ -1375,9 +1356,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1375
1356
|
|
|
1376
1357
|
[[package]]
|
|
1377
1358
|
name = "syn"
|
|
1378
|
-
version = "2.0.
|
|
1359
|
+
version = "2.0.117"
|
|
1379
1360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1361
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1381
1362
|
dependencies = [
|
|
1382
1363
|
"proc-macro2",
|
|
1383
1364
|
"quote",
|
|
@@ -1436,9 +1417,9 @@ dependencies = [
|
|
|
1436
1417
|
|
|
1437
1418
|
[[package]]
|
|
1438
1419
|
name = "tinystr"
|
|
1439
|
-
version = "0.8.
|
|
1420
|
+
version = "0.8.3"
|
|
1440
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
-
checksum = "
|
|
1422
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1442
1423
|
dependencies = [
|
|
1443
1424
|
"displaydoc",
|
|
1444
1425
|
"zerovec",
|
|
@@ -1446,9 +1427,9 @@ dependencies = [
|
|
|
1446
1427
|
|
|
1447
1428
|
[[package]]
|
|
1448
1429
|
name = "tinyvec"
|
|
1449
|
-
version = "1.
|
|
1430
|
+
version = "1.11.0"
|
|
1450
1431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "
|
|
1432
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1452
1433
|
dependencies = [
|
|
1453
1434
|
"tinyvec_macros",
|
|
1454
1435
|
]
|
|
@@ -1461,9 +1442,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1461
1442
|
|
|
1462
1443
|
[[package]]
|
|
1463
1444
|
name = "tokio"
|
|
1464
|
-
version = "1.
|
|
1445
|
+
version = "1.50.0"
|
|
1465
1446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
-
checksum = "
|
|
1447
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1467
1448
|
dependencies = [
|
|
1468
1449
|
"bytes",
|
|
1469
1450
|
"libc",
|
|
@@ -1555,9 +1536,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
1555
1536
|
|
|
1556
1537
|
[[package]]
|
|
1557
1538
|
name = "unicode-ident"
|
|
1558
|
-
version = "1.0.
|
|
1539
|
+
version = "1.0.24"
|
|
1559
1540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
-
checksum = "
|
|
1541
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1561
1542
|
|
|
1562
1543
|
[[package]]
|
|
1563
1544
|
name = "untrusted"
|
|
@@ -1615,9 +1596,9 @@ dependencies = [
|
|
|
1615
1596
|
|
|
1616
1597
|
[[package]]
|
|
1617
1598
|
name = "wasm-bindgen"
|
|
1618
|
-
version = "0.2.
|
|
1599
|
+
version = "0.2.117"
|
|
1619
1600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
-
checksum = "
|
|
1601
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
1621
1602
|
dependencies = [
|
|
1622
1603
|
"cfg-if",
|
|
1623
1604
|
"once_cell",
|
|
@@ -1628,23 +1609,19 @@ dependencies = [
|
|
|
1628
1609
|
|
|
1629
1610
|
[[package]]
|
|
1630
1611
|
name = "wasm-bindgen-futures"
|
|
1631
|
-
version = "0.4.
|
|
1612
|
+
version = "0.4.67"
|
|
1632
1613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
-
checksum = "
|
|
1614
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
1634
1615
|
dependencies = [
|
|
1635
|
-
"cfg-if",
|
|
1636
|
-
"futures-util",
|
|
1637
1616
|
"js-sys",
|
|
1638
|
-
"once_cell",
|
|
1639
1617
|
"wasm-bindgen",
|
|
1640
|
-
"web-sys",
|
|
1641
1618
|
]
|
|
1642
1619
|
|
|
1643
1620
|
[[package]]
|
|
1644
1621
|
name = "wasm-bindgen-macro"
|
|
1645
|
-
version = "0.2.
|
|
1622
|
+
version = "0.2.117"
|
|
1646
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
1624
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
1648
1625
|
dependencies = [
|
|
1649
1626
|
"quote",
|
|
1650
1627
|
"wasm-bindgen-macro-support",
|
|
@@ -1652,9 +1629,9 @@ dependencies = [
|
|
|
1652
1629
|
|
|
1653
1630
|
[[package]]
|
|
1654
1631
|
name = "wasm-bindgen-macro-support"
|
|
1655
|
-
version = "0.2.
|
|
1632
|
+
version = "0.2.117"
|
|
1656
1633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
-
checksum = "
|
|
1634
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
1658
1635
|
dependencies = [
|
|
1659
1636
|
"bumpalo",
|
|
1660
1637
|
"proc-macro2",
|
|
@@ -1665,18 +1642,18 @@ dependencies = [
|
|
|
1665
1642
|
|
|
1666
1643
|
[[package]]
|
|
1667
1644
|
name = "wasm-bindgen-shared"
|
|
1668
|
-
version = "0.2.
|
|
1645
|
+
version = "0.2.117"
|
|
1669
1646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1647
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
1671
1648
|
dependencies = [
|
|
1672
1649
|
"unicode-ident",
|
|
1673
1650
|
]
|
|
1674
1651
|
|
|
1675
1652
|
[[package]]
|
|
1676
1653
|
name = "web-sys"
|
|
1677
|
-
version = "0.3.
|
|
1654
|
+
version = "0.3.94"
|
|
1678
1655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
-
checksum = "
|
|
1656
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
1680
1657
|
dependencies = [
|
|
1681
1658
|
"js-sys",
|
|
1682
1659
|
"wasm-bindgen",
|
|
@@ -1889,9 +1866,9 @@ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
|
1889
1866
|
|
|
1890
1867
|
[[package]]
|
|
1891
1868
|
name = "yoke"
|
|
1892
|
-
version = "0.8.
|
|
1869
|
+
version = "0.8.2"
|
|
1893
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
-
checksum = "
|
|
1871
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1895
1872
|
dependencies = [
|
|
1896
1873
|
"stable_deref_trait",
|
|
1897
1874
|
"yoke-derive",
|
|
@@ -1900,9 +1877,9 @@ dependencies = [
|
|
|
1900
1877
|
|
|
1901
1878
|
[[package]]
|
|
1902
1879
|
name = "yoke-derive"
|
|
1903
|
-
version = "0.8.
|
|
1880
|
+
version = "0.8.2"
|
|
1904
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
-
checksum = "
|
|
1882
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1906
1883
|
dependencies = [
|
|
1907
1884
|
"proc-macro2",
|
|
1908
1885
|
"quote",
|
|
@@ -1912,18 +1889,18 @@ dependencies = [
|
|
|
1912
1889
|
|
|
1913
1890
|
[[package]]
|
|
1914
1891
|
name = "zerocopy"
|
|
1915
|
-
version = "0.8.
|
|
1892
|
+
version = "0.8.48"
|
|
1916
1893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
1894
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1918
1895
|
dependencies = [
|
|
1919
1896
|
"zerocopy-derive",
|
|
1920
1897
|
]
|
|
1921
1898
|
|
|
1922
1899
|
[[package]]
|
|
1923
1900
|
name = "zerocopy-derive"
|
|
1924
|
-
version = "0.8.
|
|
1901
|
+
version = "0.8.48"
|
|
1925
1902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
-
checksum = "
|
|
1903
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1927
1904
|
dependencies = [
|
|
1928
1905
|
"proc-macro2",
|
|
1929
1906
|
"quote",
|
|
@@ -1932,18 +1909,18 @@ dependencies = [
|
|
|
1932
1909
|
|
|
1933
1910
|
[[package]]
|
|
1934
1911
|
name = "zerofrom"
|
|
1935
|
-
version = "0.1.
|
|
1912
|
+
version = "0.1.7"
|
|
1936
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
-
checksum = "
|
|
1914
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
1938
1915
|
dependencies = [
|
|
1939
1916
|
"zerofrom-derive",
|
|
1940
1917
|
]
|
|
1941
1918
|
|
|
1942
1919
|
[[package]]
|
|
1943
1920
|
name = "zerofrom-derive"
|
|
1944
|
-
version = "0.1.
|
|
1921
|
+
version = "0.1.7"
|
|
1945
1922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
-
checksum = "
|
|
1923
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1947
1924
|
dependencies = [
|
|
1948
1925
|
"proc-macro2",
|
|
1949
1926
|
"quote",
|
|
@@ -1959,9 +1936,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
1959
1936
|
|
|
1960
1937
|
[[package]]
|
|
1961
1938
|
name = "zerotrie"
|
|
1962
|
-
version = "0.2.
|
|
1939
|
+
version = "0.2.4"
|
|
1963
1940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "
|
|
1941
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1965
1942
|
dependencies = [
|
|
1966
1943
|
"displaydoc",
|
|
1967
1944
|
"yoke",
|
|
@@ -1970,9 +1947,9 @@ dependencies = [
|
|
|
1970
1947
|
|
|
1971
1948
|
[[package]]
|
|
1972
1949
|
name = "zerovec"
|
|
1973
|
-
version = "0.11.
|
|
1950
|
+
version = "0.11.6"
|
|
1974
1951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
-
checksum = "
|
|
1952
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1976
1953
|
dependencies = [
|
|
1977
1954
|
"yoke",
|
|
1978
1955
|
"zerofrom",
|
|
@@ -1981,9 +1958,9 @@ dependencies = [
|
|
|
1981
1958
|
|
|
1982
1959
|
[[package]]
|
|
1983
1960
|
name = "zerovec-derive"
|
|
1984
|
-
version = "0.11.
|
|
1961
|
+
version = "0.11.3"
|
|
1985
1962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
-
checksum = "
|
|
1963
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1987
1964
|
dependencies = [
|
|
1988
1965
|
"proc-macro2",
|
|
1989
1966
|
"quote",
|
|
@@ -1992,6 +1969,6 @@ dependencies = [
|
|
|
1992
1969
|
|
|
1993
1970
|
[[package]]
|
|
1994
1971
|
name = "zmij"
|
|
1995
|
-
version = "1.0.
|
|
1972
|
+
version = "1.0.21"
|
|
1996
1973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "
|
|
1974
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|