html-to-markdown 2.4.2__tar.gz → 2.5.1__tar.gz
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.
Potentially problematic release.
This version of html-to-markdown might be problematic. Click here for more details.
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/Cargo.lock +252 -99
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/Cargo.toml +2 -2
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/PKG-INFO +2 -2
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/README_PYPI.md +1 -1
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/README.md +38 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/converter.rs +154 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/hocr/converter.rs +14 -1
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/hocr/extractor.rs +39 -50
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/lib.rs +2 -2
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/options.rs +5 -0
- html_to_markdown-2.5.1/crates/html-to-markdown/src/sanitizer.rs +284 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown-py/Cargo.toml +1 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown-py/README.md +38 -1
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown-py/src/lib.rs +104 -89
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/__init__.py +1 -1
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/api.py +1 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/bin/html-to-markdown +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/options.py +3 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/pyproject.toml +3 -3
- html_to_markdown-2.4.2/crates/html-to-markdown/src/sanitizer.rs +0 -85
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/LICENSE +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/Cargo.toml +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/benches/conversion_benchmark.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/benches/micro_benchmark.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/benches/profiling_benchmark.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/basic.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/table.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_escape.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_inline_formatting.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_lists.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_semantic_tags.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_tables.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_task_lists.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/examples/test_whitespace.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/error.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/hocr/mod.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/hocr/parser.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/hocr/spatial.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/hocr/types.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/inline_images.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/text.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/src/wrapper.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/tests/commonmark_compliance_test.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/tests/hocr_compliance_test.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown/tests/integration_test.rs +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/crates/html-to-markdown-py/uv.lock +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/__main__.py +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/_rust.pyi +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/cli.py +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/cli_proxy.py +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/exceptions.py +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/py.typed +0 -0
- {html_to_markdown-2.4.2 → html_to_markdown-2.5.1}/html_to_markdown/v1_compat.py +0 -0
|
@@ -10,9 +10,9 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "aho-corasick"
|
|
13
|
-
version = "1.1.
|
|
13
|
+
version = "1.1.4"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
16
|
dependencies = [
|
|
17
17
|
"memchr",
|
|
18
18
|
]
|
|
@@ -88,13 +88,12 @@ dependencies = [
|
|
|
88
88
|
|
|
89
89
|
[[package]]
|
|
90
90
|
name = "assert_cmd"
|
|
91
|
-
version = "2.0
|
|
91
|
+
version = "2.1.0"
|
|
92
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
93
|
+
checksum = "ade3e59755df470dc884dbd126416d098b783b193fdc1981b392eb79398a57a3"
|
|
94
94
|
dependencies = [
|
|
95
95
|
"anstyle",
|
|
96
96
|
"bstr",
|
|
97
|
-
"doc-comment",
|
|
98
97
|
"libc",
|
|
99
98
|
"predicates",
|
|
100
99
|
"predicates-core",
|
|
@@ -114,6 +113,26 @@ version = "0.22.1"
|
|
|
114
113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
114
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
116
115
|
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "bindgen"
|
|
118
|
+
version = "0.69.5"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"bitflags",
|
|
123
|
+
"cexpr",
|
|
124
|
+
"clang-sys",
|
|
125
|
+
"itertools 0.12.1",
|
|
126
|
+
"lazy_static",
|
|
127
|
+
"lazycell",
|
|
128
|
+
"proc-macro2",
|
|
129
|
+
"quote",
|
|
130
|
+
"regex",
|
|
131
|
+
"rustc-hash 1.1.0",
|
|
132
|
+
"shlex",
|
|
133
|
+
"syn",
|
|
134
|
+
]
|
|
135
|
+
|
|
117
136
|
[[package]]
|
|
118
137
|
name = "bitflags"
|
|
119
138
|
version = "2.10.0"
|
|
@@ -122,9 +141,9 @@ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
|
122
141
|
|
|
123
142
|
[[package]]
|
|
124
143
|
name = "bstr"
|
|
125
|
-
version = "1.12.
|
|
144
|
+
version = "1.12.1"
|
|
126
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
-
checksum = "
|
|
146
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
128
147
|
dependencies = [
|
|
129
148
|
"memchr",
|
|
130
149
|
"regex-automata",
|
|
@@ -157,14 +176,23 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
157
176
|
|
|
158
177
|
[[package]]
|
|
159
178
|
name = "cc"
|
|
160
|
-
version = "1.2.
|
|
179
|
+
version = "1.2.43"
|
|
161
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
-
checksum = "
|
|
181
|
+
checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
|
|
163
182
|
dependencies = [
|
|
164
183
|
"find-msvc-tools",
|
|
165
184
|
"shlex",
|
|
166
185
|
]
|
|
167
186
|
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "cexpr"
|
|
189
|
+
version = "0.6.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"nom",
|
|
194
|
+
]
|
|
195
|
+
|
|
168
196
|
[[package]]
|
|
169
197
|
name = "cfg-if"
|
|
170
198
|
version = "1.0.4"
|
|
@@ -198,6 +226,17 @@ dependencies = [
|
|
|
198
226
|
"half",
|
|
199
227
|
]
|
|
200
228
|
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "clang-sys"
|
|
231
|
+
version = "1.8.1"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"glob",
|
|
236
|
+
"libc",
|
|
237
|
+
"libloading",
|
|
238
|
+
]
|
|
239
|
+
|
|
201
240
|
[[package]]
|
|
202
241
|
name = "clap"
|
|
203
242
|
version = "4.5.50"
|
|
@@ -308,7 +347,7 @@ dependencies = [
|
|
|
308
347
|
"ciborium",
|
|
309
348
|
"clap",
|
|
310
349
|
"criterion-plot",
|
|
311
|
-
"itertools",
|
|
350
|
+
"itertools 0.13.0",
|
|
312
351
|
"num-traits",
|
|
313
352
|
"oorandom",
|
|
314
353
|
"plotters",
|
|
@@ -327,7 +366,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
327
366
|
checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
|
|
328
367
|
dependencies = [
|
|
329
368
|
"cast",
|
|
330
|
-
"itertools",
|
|
369
|
+
"itertools 0.13.0",
|
|
331
370
|
]
|
|
332
371
|
|
|
333
372
|
[[package]]
|
|
@@ -406,6 +445,12 @@ version = "0.2.2"
|
|
|
406
445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
446
|
checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
|
|
408
447
|
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "diff"
|
|
450
|
+
version = "0.1.13"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
453
|
+
|
|
409
454
|
[[package]]
|
|
410
455
|
name = "difflib"
|
|
411
456
|
version = "0.4.0"
|
|
@@ -423,12 +468,6 @@ dependencies = [
|
|
|
423
468
|
"syn",
|
|
424
469
|
]
|
|
425
470
|
|
|
426
|
-
[[package]]
|
|
427
|
-
name = "doc-comment"
|
|
428
|
-
version = "0.3.3"
|
|
429
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
431
|
-
|
|
432
471
|
[[package]]
|
|
433
472
|
name = "dtoa"
|
|
434
473
|
version = "1.0.10"
|
|
@@ -550,11 +589,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
550
589
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
551
590
|
dependencies = [
|
|
552
591
|
"cfg-if",
|
|
553
|
-
"js-sys",
|
|
554
592
|
"libc",
|
|
555
593
|
"r-efi",
|
|
556
594
|
"wasip2",
|
|
557
|
-
"wasm-bindgen",
|
|
558
595
|
]
|
|
559
596
|
|
|
560
597
|
[[package]]
|
|
@@ -567,6 +604,12 @@ dependencies = [
|
|
|
567
604
|
"weezl",
|
|
568
605
|
]
|
|
569
606
|
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "glob"
|
|
609
|
+
version = "0.3.3"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
612
|
+
|
|
570
613
|
[[package]]
|
|
571
614
|
name = "half"
|
|
572
615
|
version = "2.7.1"
|
|
@@ -595,7 +638,7 @@ dependencies = [
|
|
|
595
638
|
|
|
596
639
|
[[package]]
|
|
597
640
|
name = "html-to-markdown-cli"
|
|
598
|
-
version = "2.
|
|
641
|
+
version = "2.5.1"
|
|
599
642
|
dependencies = [
|
|
600
643
|
"assert_cmd",
|
|
601
644
|
"clap",
|
|
@@ -609,7 +652,7 @@ dependencies = [
|
|
|
609
652
|
|
|
610
653
|
[[package]]
|
|
611
654
|
name = "html-to-markdown-node"
|
|
612
|
-
version = "2.
|
|
655
|
+
version = "2.5.1"
|
|
613
656
|
dependencies = [
|
|
614
657
|
"html-to-markdown-rs",
|
|
615
658
|
"mimalloc-rust",
|
|
@@ -620,7 +663,7 @@ dependencies = [
|
|
|
620
663
|
|
|
621
664
|
[[package]]
|
|
622
665
|
name = "html-to-markdown-py"
|
|
623
|
-
version = "2.
|
|
666
|
+
version = "2.5.1"
|
|
624
667
|
dependencies = [
|
|
625
668
|
"base64",
|
|
626
669
|
"html-to-markdown-rs",
|
|
@@ -628,9 +671,18 @@ dependencies = [
|
|
|
628
671
|
"pyo3",
|
|
629
672
|
]
|
|
630
673
|
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "html-to-markdown-rb"
|
|
676
|
+
version = "2.5.1"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"html-to-markdown-rs",
|
|
679
|
+
"magnus",
|
|
680
|
+
"pretty_assertions",
|
|
681
|
+
]
|
|
682
|
+
|
|
631
683
|
[[package]]
|
|
632
684
|
name = "html-to-markdown-rs"
|
|
633
|
-
version = "2.
|
|
685
|
+
version = "2.5.1"
|
|
634
686
|
dependencies = [
|
|
635
687
|
"ammonia",
|
|
636
688
|
"base64",
|
|
@@ -647,10 +699,9 @@ dependencies = [
|
|
|
647
699
|
|
|
648
700
|
[[package]]
|
|
649
701
|
name = "html-to-markdown-wasm"
|
|
650
|
-
version = "2.
|
|
702
|
+
version = "2.5.1"
|
|
651
703
|
dependencies = [
|
|
652
704
|
"console_error_panic_hook",
|
|
653
|
-
"getrandom",
|
|
654
705
|
"html-to-markdown-rs",
|
|
655
706
|
"js-sys",
|
|
656
707
|
"serde",
|
|
@@ -672,9 +723,9 @@ dependencies = [
|
|
|
672
723
|
|
|
673
724
|
[[package]]
|
|
674
725
|
name = "icu_collections"
|
|
675
|
-
version = "2.
|
|
726
|
+
version = "2.1.1"
|
|
676
727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
-
checksum = "
|
|
728
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
678
729
|
dependencies = [
|
|
679
730
|
"displaydoc",
|
|
680
731
|
"potential_utf",
|
|
@@ -685,9 +736,9 @@ dependencies = [
|
|
|
685
736
|
|
|
686
737
|
[[package]]
|
|
687
738
|
name = "icu_locale_core"
|
|
688
|
-
version = "2.
|
|
739
|
+
version = "2.1.1"
|
|
689
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
-
checksum = "
|
|
741
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
691
742
|
dependencies = [
|
|
692
743
|
"displaydoc",
|
|
693
744
|
"litemap",
|
|
@@ -698,11 +749,10 @@ dependencies = [
|
|
|
698
749
|
|
|
699
750
|
[[package]]
|
|
700
751
|
name = "icu_normalizer"
|
|
701
|
-
version = "2.
|
|
752
|
+
version = "2.1.1"
|
|
702
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
754
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
704
755
|
dependencies = [
|
|
705
|
-
"displaydoc",
|
|
706
756
|
"icu_collections",
|
|
707
757
|
"icu_normalizer_data",
|
|
708
758
|
"icu_properties",
|
|
@@ -713,42 +763,38 @@ dependencies = [
|
|
|
713
763
|
|
|
714
764
|
[[package]]
|
|
715
765
|
name = "icu_normalizer_data"
|
|
716
|
-
version = "2.
|
|
766
|
+
version = "2.1.1"
|
|
717
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
-
checksum = "
|
|
768
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
719
769
|
|
|
720
770
|
[[package]]
|
|
721
771
|
name = "icu_properties"
|
|
722
|
-
version = "2.
|
|
772
|
+
version = "2.1.1"
|
|
723
773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
-
checksum = "
|
|
774
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
725
775
|
dependencies = [
|
|
726
|
-
"displaydoc",
|
|
727
776
|
"icu_collections",
|
|
728
777
|
"icu_locale_core",
|
|
729
778
|
"icu_properties_data",
|
|
730
779
|
"icu_provider",
|
|
731
|
-
"potential_utf",
|
|
732
780
|
"zerotrie",
|
|
733
781
|
"zerovec",
|
|
734
782
|
]
|
|
735
783
|
|
|
736
784
|
[[package]]
|
|
737
785
|
name = "icu_properties_data"
|
|
738
|
-
version = "2.
|
|
786
|
+
version = "2.1.1"
|
|
739
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
-
checksum = "
|
|
788
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
741
789
|
|
|
742
790
|
[[package]]
|
|
743
791
|
name = "icu_provider"
|
|
744
|
-
version = "2.
|
|
792
|
+
version = "2.1.1"
|
|
745
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
-
checksum = "
|
|
794
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
747
795
|
dependencies = [
|
|
748
796
|
"displaydoc",
|
|
749
797
|
"icu_locale_core",
|
|
750
|
-
"stable_deref_trait",
|
|
751
|
-
"tinystr",
|
|
752
798
|
"writeable",
|
|
753
799
|
"yoke",
|
|
754
800
|
"zerofrom",
|
|
@@ -820,6 +866,15 @@ version = "1.70.2"
|
|
|
820
866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
867
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
822
868
|
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "itertools"
|
|
871
|
+
version = "0.12.1"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"either",
|
|
876
|
+
]
|
|
877
|
+
|
|
823
878
|
[[package]]
|
|
824
879
|
name = "itertools"
|
|
825
880
|
version = "0.13.0"
|
|
@@ -837,14 +892,26 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
|
837
892
|
|
|
838
893
|
[[package]]
|
|
839
894
|
name = "js-sys"
|
|
840
|
-
version = "0.3.
|
|
895
|
+
version = "0.3.82"
|
|
841
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
-
checksum = "
|
|
897
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
843
898
|
dependencies = [
|
|
844
899
|
"once_cell",
|
|
845
900
|
"wasm-bindgen",
|
|
846
901
|
]
|
|
847
902
|
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "lazy_static"
|
|
905
|
+
version = "1.5.0"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "lazycell"
|
|
911
|
+
version = "1.3.0"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
914
|
+
|
|
848
915
|
[[package]]
|
|
849
916
|
name = "libc"
|
|
850
917
|
version = "0.2.177"
|
|
@@ -869,9 +936,9 @@ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
|
869
936
|
|
|
870
937
|
[[package]]
|
|
871
938
|
name = "litemap"
|
|
872
|
-
version = "0.8.
|
|
939
|
+
version = "0.8.1"
|
|
873
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
-
checksum = "
|
|
941
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
875
942
|
|
|
876
943
|
[[package]]
|
|
877
944
|
name = "lock_api"
|
|
@@ -894,6 +961,27 @@ version = "0.1.1"
|
|
|
894
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
962
|
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
896
963
|
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "magnus"
|
|
966
|
+
version = "0.9.0"
|
|
967
|
+
source = "git+https://github.com/matsadler/magnus?rev=f6db11769efb517427bf7f121f9c32e18b059b38#f6db11769efb517427bf7f121f9c32e18b059b38"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"magnus-macros",
|
|
970
|
+
"rb-sys",
|
|
971
|
+
"rb-sys-env",
|
|
972
|
+
"seq-macro",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "magnus-macros"
|
|
977
|
+
version = "0.9.0"
|
|
978
|
+
source = "git+https://github.com/matsadler/magnus?rev=f6db11769efb517427bf7f121f9c32e18b059b38#f6db11769efb517427bf7f121f9c32e18b059b38"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"proc-macro2",
|
|
981
|
+
"quote",
|
|
982
|
+
"syn",
|
|
983
|
+
]
|
|
984
|
+
|
|
897
985
|
[[package]]
|
|
898
986
|
name = "maplit"
|
|
899
987
|
version = "1.0.2"
|
|
@@ -967,6 +1055,12 @@ dependencies = [
|
|
|
967
1055
|
"walkdir",
|
|
968
1056
|
]
|
|
969
1057
|
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "minimal-lexical"
|
|
1060
|
+
version = "0.2.1"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1063
|
+
|
|
970
1064
|
[[package]]
|
|
971
1065
|
name = "miniz_oxide"
|
|
972
1066
|
version = "0.8.9"
|
|
@@ -979,9 +1073,9 @@ dependencies = [
|
|
|
979
1073
|
|
|
980
1074
|
[[package]]
|
|
981
1075
|
name = "moxcms"
|
|
982
|
-
version = "0.7.
|
|
1076
|
+
version = "0.7.9"
|
|
983
1077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
1078
|
+
checksum = "0fbdd3d7436f8b5e892b8b7ea114271ff0fa00bc5acae845d53b07d498616ef6"
|
|
985
1079
|
dependencies = [
|
|
986
1080
|
"num-traits",
|
|
987
1081
|
"pxfm",
|
|
@@ -998,7 +1092,7 @@ dependencies = [
|
|
|
998
1092
|
"napi-build",
|
|
999
1093
|
"napi-sys",
|
|
1000
1094
|
"nohash-hasher",
|
|
1001
|
-
"rustc-hash",
|
|
1095
|
+
"rustc-hash 2.1.1",
|
|
1002
1096
|
]
|
|
1003
1097
|
|
|
1004
1098
|
[[package]]
|
|
@@ -1055,6 +1149,16 @@ version = "0.2.0"
|
|
|
1055
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
1150
|
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1057
1151
|
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "nom"
|
|
1154
|
+
version = "7.1.3"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"memchr",
|
|
1159
|
+
"minimal-lexical",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1058
1162
|
[[package]]
|
|
1059
1163
|
name = "normalize-line-endings"
|
|
1060
1164
|
version = "0.3.0"
|
|
@@ -1218,9 +1322,9 @@ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
|
1218
1322
|
|
|
1219
1323
|
[[package]]
|
|
1220
1324
|
name = "potential_utf"
|
|
1221
|
-
version = "0.1.
|
|
1325
|
+
version = "0.1.4"
|
|
1222
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1327
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1224
1328
|
dependencies = [
|
|
1225
1329
|
"zerovec",
|
|
1226
1330
|
]
|
|
@@ -1261,6 +1365,16 @@ dependencies = [
|
|
|
1261
1365
|
"termtree",
|
|
1262
1366
|
]
|
|
1263
1367
|
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "pretty_assertions"
|
|
1370
|
+
version = "1.4.1"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"diff",
|
|
1375
|
+
"yansi",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1264
1378
|
[[package]]
|
|
1265
1379
|
name = "proc-macro2"
|
|
1266
1380
|
version = "1.0.103"
|
|
@@ -1396,6 +1510,36 @@ dependencies = [
|
|
|
1396
1510
|
"crossbeam-utils",
|
|
1397
1511
|
]
|
|
1398
1512
|
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "rb-sys"
|
|
1515
|
+
version = "0.9.117"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"rb-sys-build",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "rb-sys-build"
|
|
1524
|
+
version = "0.9.117"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"bindgen",
|
|
1529
|
+
"lazy_static",
|
|
1530
|
+
"proc-macro2",
|
|
1531
|
+
"quote",
|
|
1532
|
+
"regex",
|
|
1533
|
+
"shell-words",
|
|
1534
|
+
"syn",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "rb-sys-env"
|
|
1539
|
+
version = "0.2.2"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
1542
|
+
|
|
1399
1543
|
[[package]]
|
|
1400
1544
|
name = "redox_syscall"
|
|
1401
1545
|
version = "0.5.18"
|
|
@@ -1440,6 +1584,12 @@ version = "0.2.2"
|
|
|
1440
1584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
1585
|
checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
|
|
1442
1586
|
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "rustc-hash"
|
|
1589
|
+
version = "1.1.0"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1592
|
+
|
|
1443
1593
|
[[package]]
|
|
1444
1594
|
name = "rustc-hash"
|
|
1445
1595
|
version = "2.1.1"
|
|
@@ -1492,6 +1642,12 @@ version = "1.0.27"
|
|
|
1492
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
1643
|
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1494
1644
|
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "seq-macro"
|
|
1647
|
+
version = "0.3.6"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1650
|
+
|
|
1495
1651
|
[[package]]
|
|
1496
1652
|
name = "serde"
|
|
1497
1653
|
version = "1.0.228"
|
|
@@ -1546,6 +1702,12 @@ dependencies = [
|
|
|
1546
1702
|
"serde_core",
|
|
1547
1703
|
]
|
|
1548
1704
|
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "shell-words"
|
|
1707
|
+
version = "1.1.0"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1710
|
+
|
|
1549
1711
|
[[package]]
|
|
1550
1712
|
name = "shlex"
|
|
1551
1713
|
version = "1.3.0"
|
|
@@ -1687,9 +1849,9 @@ dependencies = [
|
|
|
1687
1849
|
|
|
1688
1850
|
[[package]]
|
|
1689
1851
|
name = "tinystr"
|
|
1690
|
-
version = "0.8.
|
|
1852
|
+
version = "0.8.2"
|
|
1691
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
-
checksum = "
|
|
1854
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1693
1855
|
dependencies = [
|
|
1694
1856
|
"displaydoc",
|
|
1695
1857
|
"zerovec",
|
|
@@ -1795,9 +1957,9 @@ dependencies = [
|
|
|
1795
1957
|
|
|
1796
1958
|
[[package]]
|
|
1797
1959
|
name = "wasm-bindgen"
|
|
1798
|
-
version = "0.2.
|
|
1960
|
+
version = "0.2.105"
|
|
1799
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "
|
|
1962
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
1801
1963
|
dependencies = [
|
|
1802
1964
|
"cfg-if",
|
|
1803
1965
|
"once_cell",
|
|
@@ -1806,25 +1968,11 @@ dependencies = [
|
|
|
1806
1968
|
"wasm-bindgen-shared",
|
|
1807
1969
|
]
|
|
1808
1970
|
|
|
1809
|
-
[[package]]
|
|
1810
|
-
name = "wasm-bindgen-backend"
|
|
1811
|
-
version = "0.2.104"
|
|
1812
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
-
checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
|
|
1814
|
-
dependencies = [
|
|
1815
|
-
"bumpalo",
|
|
1816
|
-
"log",
|
|
1817
|
-
"proc-macro2",
|
|
1818
|
-
"quote",
|
|
1819
|
-
"syn",
|
|
1820
|
-
"wasm-bindgen-shared",
|
|
1821
|
-
]
|
|
1822
|
-
|
|
1823
1971
|
[[package]]
|
|
1824
1972
|
name = "wasm-bindgen-futures"
|
|
1825
|
-
version = "0.4.
|
|
1973
|
+
version = "0.4.55"
|
|
1826
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
-
checksum = "
|
|
1975
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
1828
1976
|
dependencies = [
|
|
1829
1977
|
"cfg-if",
|
|
1830
1978
|
"js-sys",
|
|
@@ -1835,9 +1983,9 @@ dependencies = [
|
|
|
1835
1983
|
|
|
1836
1984
|
[[package]]
|
|
1837
1985
|
name = "wasm-bindgen-macro"
|
|
1838
|
-
version = "0.2.
|
|
1986
|
+
version = "0.2.105"
|
|
1839
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
-
checksum = "
|
|
1988
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
1841
1989
|
dependencies = [
|
|
1842
1990
|
"quote",
|
|
1843
1991
|
"wasm-bindgen-macro-support",
|
|
@@ -1845,31 +1993,31 @@ dependencies = [
|
|
|
1845
1993
|
|
|
1846
1994
|
[[package]]
|
|
1847
1995
|
name = "wasm-bindgen-macro-support"
|
|
1848
|
-
version = "0.2.
|
|
1996
|
+
version = "0.2.105"
|
|
1849
1997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
-
checksum = "
|
|
1998
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
1851
1999
|
dependencies = [
|
|
2000
|
+
"bumpalo",
|
|
1852
2001
|
"proc-macro2",
|
|
1853
2002
|
"quote",
|
|
1854
2003
|
"syn",
|
|
1855
|
-
"wasm-bindgen-backend",
|
|
1856
2004
|
"wasm-bindgen-shared",
|
|
1857
2005
|
]
|
|
1858
2006
|
|
|
1859
2007
|
[[package]]
|
|
1860
2008
|
name = "wasm-bindgen-shared"
|
|
1861
|
-
version = "0.2.
|
|
2009
|
+
version = "0.2.105"
|
|
1862
2010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
-
checksum = "
|
|
2011
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
1864
2012
|
dependencies = [
|
|
1865
2013
|
"unicode-ident",
|
|
1866
2014
|
]
|
|
1867
2015
|
|
|
1868
2016
|
[[package]]
|
|
1869
2017
|
name = "wasm-bindgen-test"
|
|
1870
|
-
version = "0.3.
|
|
2018
|
+
version = "0.3.55"
|
|
1871
2019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
-
checksum = "
|
|
2020
|
+
checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
|
|
1873
2021
|
dependencies = [
|
|
1874
2022
|
"js-sys",
|
|
1875
2023
|
"minicov",
|
|
@@ -1880,9 +2028,9 @@ dependencies = [
|
|
|
1880
2028
|
|
|
1881
2029
|
[[package]]
|
|
1882
2030
|
name = "wasm-bindgen-test-macro"
|
|
1883
|
-
version = "0.3.
|
|
2031
|
+
version = "0.3.55"
|
|
1884
2032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
-
checksum = "
|
|
2033
|
+
checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
|
|
1886
2034
|
dependencies = [
|
|
1887
2035
|
"proc-macro2",
|
|
1888
2036
|
"quote",
|
|
@@ -1891,9 +2039,9 @@ dependencies = [
|
|
|
1891
2039
|
|
|
1892
2040
|
[[package]]
|
|
1893
2041
|
name = "web-sys"
|
|
1894
|
-
version = "0.3.
|
|
2042
|
+
version = "0.3.82"
|
|
1895
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
-
checksum = "
|
|
2044
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
1897
2045
|
dependencies = [
|
|
1898
2046
|
"js-sys",
|
|
1899
2047
|
"wasm-bindgen",
|
|
@@ -2023,17 +2171,22 @@ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
|
2023
2171
|
|
|
2024
2172
|
[[package]]
|
|
2025
2173
|
name = "writeable"
|
|
2026
|
-
version = "0.6.
|
|
2174
|
+
version = "0.6.2"
|
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "yansi"
|
|
2180
|
+
version = "1.0.1"
|
|
2027
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2182
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
2029
2183
|
|
|
2030
2184
|
[[package]]
|
|
2031
2185
|
name = "yoke"
|
|
2032
|
-
version = "0.8.
|
|
2186
|
+
version = "0.8.1"
|
|
2033
2187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
-
checksum = "
|
|
2188
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2035
2189
|
dependencies = [
|
|
2036
|
-
"serde",
|
|
2037
2190
|
"stable_deref_trait",
|
|
2038
2191
|
"yoke-derive",
|
|
2039
2192
|
"zerofrom",
|
|
@@ -2041,9 +2194,9 @@ dependencies = [
|
|
|
2041
2194
|
|
|
2042
2195
|
[[package]]
|
|
2043
2196
|
name = "yoke-derive"
|
|
2044
|
-
version = "0.8.
|
|
2197
|
+
version = "0.8.1"
|
|
2045
2198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
-
checksum = "
|
|
2199
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2047
2200
|
dependencies = [
|
|
2048
2201
|
"proc-macro2",
|
|
2049
2202
|
"quote",
|
|
@@ -2094,9 +2247,9 @@ dependencies = [
|
|
|
2094
2247
|
|
|
2095
2248
|
[[package]]
|
|
2096
2249
|
name = "zerotrie"
|
|
2097
|
-
version = "0.2.
|
|
2250
|
+
version = "0.2.3"
|
|
2098
2251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
-
checksum = "
|
|
2252
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
2100
2253
|
dependencies = [
|
|
2101
2254
|
"displaydoc",
|
|
2102
2255
|
"yoke",
|
|
@@ -2105,9 +2258,9 @@ dependencies = [
|
|
|
2105
2258
|
|
|
2106
2259
|
[[package]]
|
|
2107
2260
|
name = "zerovec"
|
|
2108
|
-
version = "0.11.
|
|
2261
|
+
version = "0.11.5"
|
|
2109
2262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
-
checksum = "
|
|
2263
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
2111
2264
|
dependencies = [
|
|
2112
2265
|
"yoke",
|
|
2113
2266
|
"zerofrom",
|
|
@@ -2116,9 +2269,9 @@ dependencies = [
|
|
|
2116
2269
|
|
|
2117
2270
|
[[package]]
|
|
2118
2271
|
name = "zerovec-derive"
|
|
2119
|
-
version = "0.11.
|
|
2272
|
+
version = "0.11.2"
|
|
2120
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
-
checksum = "
|
|
2274
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2122
2275
|
dependencies = [
|
|
2123
2276
|
"proc-macro2",
|
|
2124
2277
|
"quote",
|