md-tmpl 0.4.0__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.
Files changed (91) hide show
  1. md_tmpl-0.4.0/Cargo.lock +1002 -0
  2. md_tmpl-0.4.0/Cargo.toml +14 -0
  3. md_tmpl-0.4.0/PKG-INFO +23 -0
  4. md_tmpl-0.4.0/crates/md-tmpl/Cargo.toml +65 -0
  5. md_tmpl-0.4.0/crates/md-tmpl/README.md +381 -0
  6. md_tmpl-0.4.0/crates/md-tmpl/SPEC.md +1393 -0
  7. md_tmpl-0.4.0/crates/md-tmpl/benches/template_bench.rs +581 -0
  8. md_tmpl-0.4.0/crates/md-tmpl/prompts/code_review.tmpl.md +20 -0
  9. md_tmpl-0.4.0/crates/md-tmpl/prompts/cross_crate_complex.tmpl.md +26 -0
  10. md_tmpl-0.4.0/crates/md-tmpl/prompts/greeting.tmpl.md +7 -0
  11. md_tmpl-0.4.0/crates/md-tmpl/prompts/simple_greeting.tmpl.md +7 -0
  12. md_tmpl-0.4.0/crates/md-tmpl/prompts/task_report.tmpl.md +21 -0
  13. md_tmpl-0.4.0/crates/md-tmpl/prompts/type_library.tmpl.md +17 -0
  14. md_tmpl-0.4.0/crates/md-tmpl/src/cache.rs +1022 -0
  15. md_tmpl-0.4.0/crates/md-tmpl/src/compat.rs +139 -0
  16. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/analysis.rs +275 -0
  17. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/blockquote.rs +366 -0
  18. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/inline.rs +231 -0
  19. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/mod.rs +968 -0
  20. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/render.rs +1154 -0
  21. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/tests.rs +2049 -0
  22. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/tests_analysis.rs +1192 -0
  23. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/type_check.rs +949 -0
  24. md_tmpl-0.4.0/crates/md-tmpl/src/compiled/type_check_tests.rs +2005 -0
  25. md_tmpl-0.4.0/crates/md-tmpl/src/consts.rs +507 -0
  26. md_tmpl-0.4.0/crates/md-tmpl/src/context.rs +241 -0
  27. md_tmpl-0.4.0/crates/md-tmpl/src/error.rs +393 -0
  28. md_tmpl-0.4.0/crates/md-tmpl/src/filter.rs +503 -0
  29. md_tmpl-0.4.0/crates/md-tmpl/src/frontmatter/imports.rs +443 -0
  30. md_tmpl-0.4.0/crates/md-tmpl/src/frontmatter/mod.rs +1217 -0
  31. md_tmpl-0.4.0/crates/md-tmpl/src/frontmatter/params.rs +1989 -0
  32. md_tmpl-0.4.0/crates/md-tmpl/src/frontmatter/type_aliases.rs +180 -0
  33. md_tmpl-0.4.0/crates/md-tmpl/src/frontmatter/validation.rs +506 -0
  34. md_tmpl-0.4.0/crates/md-tmpl/src/include.rs +715 -0
  35. md_tmpl-0.4.0/crates/md-tmpl/src/include_core.rs +455 -0
  36. md_tmpl-0.4.0/crates/md-tmpl/src/inline_template_tests.rs +279 -0
  37. md_tmpl-0.4.0/crates/md-tmpl/src/lib.rs +197 -0
  38. md_tmpl-0.4.0/crates/md-tmpl/src/parser.rs +1058 -0
  39. md_tmpl-0.4.0/crates/md-tmpl/src/scope.rs +1361 -0
  40. md_tmpl-0.4.0/crates/md-tmpl/src/serde_support.rs +1207 -0
  41. md_tmpl-0.4.0/crates/md-tmpl/src/template/adversarial_tests.rs +1028 -0
  42. md_tmpl-0.4.0/crates/md-tmpl/src/template/collision_and_scope_tests.rs +733 -0
  43. md_tmpl-0.4.0/crates/md-tmpl/src/template/const_tests.rs +356 -0
  44. md_tmpl-0.4.0/crates/md-tmpl/src/template/error_diagnostic_tests.rs +422 -0
  45. md_tmpl-0.4.0/crates/md-tmpl/src/template/higher_order_tests.rs +348 -0
  46. md_tmpl-0.4.0/crates/md-tmpl/src/template/inline_edge_tests.rs +979 -0
  47. md_tmpl-0.4.0/crates/md-tmpl/src/template/mod.rs +1566 -0
  48. md_tmpl-0.4.0/crates/md-tmpl/src/template/render_integration_tests.rs +1259 -0
  49. md_tmpl-0.4.0/crates/md-tmpl/src/template/shared_tests.rs +398 -0
  50. md_tmpl-0.4.0/crates/md-tmpl/src/template/tests.rs +2364 -0
  51. md_tmpl-0.4.0/crates/md-tmpl/src/types.rs +1186 -0
  52. md_tmpl-0.4.0/crates/md-tmpl/src/value.rs +956 -0
  53. md_tmpl-0.4.0/crates/md-tmpl/tests/adv_m1_tests.rs +164 -0
  54. md_tmpl-0.4.0/crates/md-tmpl/tests/no_std_compat.rs +877 -0
  55. md_tmpl-0.4.0/crates/md-tmpl/tests/yaml_conformance.rs +1064 -0
  56. md_tmpl-0.4.0/crates/md-tmpl/tests/yaml_cross_validation.rs +782 -0
  57. md_tmpl-0.4.0/crates/md-tmpl-macros/Cargo.toml +39 -0
  58. md_tmpl-0.4.0/crates/md-tmpl-macros/README.md +126 -0
  59. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/code_review.tmpl.md +20 -0
  60. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/cross_crate_complex.tmpl.md +26 -0
  61. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/filter_test.tmpl.md +17 -0
  62. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/greeting.tmpl.md +7 -0
  63. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/option_test.tmpl.md +21 -0
  64. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/simple_greeting.tmpl.md +7 -0
  65. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/task_report.tmpl.md +21 -0
  66. md_tmpl-0.4.0/crates/md-tmpl-macros/prompts/type_library.tmpl.md +17 -0
  67. md_tmpl-0.4.0/crates/md-tmpl-macros/src/codegen.rs +596 -0
  68. md_tmpl-0.4.0/crates/md-tmpl-macros/src/compile.rs +354 -0
  69. md_tmpl-0.4.0/crates/md-tmpl-macros/src/lib.rs +438 -0
  70. md_tmpl-0.4.0/crates/md-tmpl-macros/src/struct_gen.rs +416 -0
  71. md_tmpl-0.4.0/crates/md-tmpl-macros/src/type_gen.rs +742 -0
  72. md_tmpl-0.4.0/crates/md-tmpl-macros/tests/cross_crate_integration.rs +293 -0
  73. md_tmpl-0.4.0/crates/md-tmpl-macros/tests/macros_integration.rs +607 -0
  74. md_tmpl-0.4.0/crates/md-tmpl-macros/tests/typed_builder_integration.rs +121 -0
  75. md_tmpl-0.4.0/crates/md-tmpl-python/Cargo.toml +27 -0
  76. md_tmpl-0.4.0/crates/md-tmpl-python/README.md +401 -0
  77. md_tmpl-0.4.0/crates/md-tmpl-python/python/tests/test_md_tmpl.py +3820 -0
  78. md_tmpl-0.4.0/crates/md-tmpl-python/src/convert.rs +220 -0
  79. md_tmpl-0.4.0/crates/md-tmpl-python/src/errors.rs +57 -0
  80. md_tmpl-0.4.0/crates/md-tmpl-python/src/lib.rs +36 -0
  81. md_tmpl-0.4.0/crates/md-tmpl-python/src/pyclass_builder.rs +522 -0
  82. md_tmpl-0.4.0/crates/md-tmpl-python/src/template.rs +713 -0
  83. md_tmpl-0.4.0/crates/md-tmpl-python/src/typegen.rs +1086 -0
  84. md_tmpl-0.4.0/pyproject.toml +47 -0
  85. md_tmpl-0.4.0/python/md_tmpl/__init__.py +121 -0
  86. md_tmpl-0.4.0/python/md_tmpl/__init__.pyi +199 -0
  87. md_tmpl-0.4.0/python/md_tmpl/_exceptions.py +39 -0
  88. md_tmpl-0.4.0/python/md_tmpl/_import_hook.py +161 -0
  89. md_tmpl-0.4.0/python/md_tmpl/_template_helper.py +146 -0
  90. md_tmpl-0.4.0/python/md_tmpl/_variants.py +432 -0
  91. md_tmpl-0.4.0/python/md_tmpl/py.typed +1 -0
@@ -0,0 +1,1002 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.14"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
37
+
38
+ [[package]]
39
+ name = "bitflags"
40
+ version = "1.3.2"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
43
+
44
+ [[package]]
45
+ name = "bitflags"
46
+ version = "2.13.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
49
+
50
+ [[package]]
51
+ name = "bumpalo"
52
+ version = "3.20.3"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
55
+
56
+ [[package]]
57
+ name = "byteorder"
58
+ version = "1.5.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
61
+
62
+ [[package]]
63
+ name = "cast"
64
+ version = "0.3.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
67
+
68
+ [[package]]
69
+ name = "cfg-if"
70
+ version = "1.0.4"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
73
+
74
+ [[package]]
75
+ name = "ciborium"
76
+ version = "0.2.2"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
79
+ dependencies = [
80
+ "ciborium-io",
81
+ "ciborium-ll",
82
+ "serde",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "ciborium-io"
87
+ version = "0.2.2"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
90
+
91
+ [[package]]
92
+ name = "ciborium-ll"
93
+ version = "0.2.2"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
96
+ dependencies = [
97
+ "ciborium-io",
98
+ "half",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "clap"
103
+ version = "4.6.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
106
+ dependencies = [
107
+ "clap_builder",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "clap_builder"
112
+ version = "4.6.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
115
+ dependencies = [
116
+ "anstyle",
117
+ "clap_lex",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "clap_lex"
122
+ version = "1.1.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
125
+
126
+ [[package]]
127
+ name = "const-str"
128
+ version = "1.1.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "18f12cc9948ed9604230cdddc7c86e270f9401ccbe3c2e98a4378c5e7632212f"
131
+
132
+ [[package]]
133
+ name = "criterion"
134
+ version = "0.7.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
137
+ dependencies = [
138
+ "anes",
139
+ "cast",
140
+ "ciborium",
141
+ "clap",
142
+ "criterion-plot",
143
+ "itertools",
144
+ "num-traits",
145
+ "oorandom",
146
+ "plotters",
147
+ "rayon",
148
+ "regex",
149
+ "serde",
150
+ "serde_json",
151
+ "tinytemplate",
152
+ "walkdir",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "criterion-plot"
157
+ version = "0.6.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
160
+ dependencies = [
161
+ "cast",
162
+ "itertools",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "crossbeam-deque"
167
+ version = "0.8.6"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
170
+ dependencies = [
171
+ "crossbeam-epoch",
172
+ "crossbeam-utils",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "crossbeam-epoch"
177
+ version = "0.9.18"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
180
+ dependencies = [
181
+ "crossbeam-utils",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "crossbeam-utils"
186
+ version = "0.8.21"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
189
+
190
+ [[package]]
191
+ name = "crunchy"
192
+ version = "0.2.4"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
195
+
196
+ [[package]]
197
+ name = "either"
198
+ version = "1.16.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
201
+
202
+ [[package]]
203
+ name = "equivalent"
204
+ version = "1.0.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
207
+
208
+ [[package]]
209
+ name = "errno"
210
+ version = "0.3.14"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
213
+ dependencies = [
214
+ "libc",
215
+ "windows-sys",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "fastrand"
220
+ version = "2.4.1"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
223
+
224
+ [[package]]
225
+ name = "flexbuffers"
226
+ version = "25.12.19"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "8bc752b3d049e0705749b9999d0b130d6cf62935bc7762fd3bdb7636047abe43"
229
+ dependencies = [
230
+ "bitflags 1.3.2",
231
+ "byteorder",
232
+ "num_enum",
233
+ "serde",
234
+ "serde_derive",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "foldhash"
239
+ version = "0.2.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
242
+
243
+ [[package]]
244
+ name = "futures-core"
245
+ version = "0.3.32"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
248
+
249
+ [[package]]
250
+ name = "futures-task"
251
+ version = "0.3.32"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
254
+
255
+ [[package]]
256
+ name = "futures-util"
257
+ version = "0.3.32"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
260
+ dependencies = [
261
+ "futures-core",
262
+ "futures-task",
263
+ "pin-project-lite",
264
+ "slab",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "getrandom"
269
+ version = "0.4.3"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
272
+ dependencies = [
273
+ "cfg-if",
274
+ "libc",
275
+ "r-efi",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "half"
280
+ version = "2.7.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
283
+ dependencies = [
284
+ "cfg-if",
285
+ "crunchy",
286
+ "zerocopy",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "hashbrown"
291
+ version = "0.17.1"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
294
+ dependencies = [
295
+ "allocator-api2",
296
+ "equivalent",
297
+ "foldhash",
298
+ "serde",
299
+ "serde_core",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "heck"
304
+ version = "0.5.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
307
+
308
+ [[package]]
309
+ name = "indexmap"
310
+ version = "2.14.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
313
+ dependencies = [
314
+ "equivalent",
315
+ "hashbrown",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "itertools"
320
+ version = "0.13.0"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
323
+ dependencies = [
324
+ "either",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "itoa"
329
+ version = "1.0.18"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
332
+
333
+ [[package]]
334
+ name = "js-sys"
335
+ version = "0.3.103"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
338
+ dependencies = [
339
+ "cfg-if",
340
+ "futures-util",
341
+ "wasm-bindgen",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "libc"
346
+ version = "0.2.186"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
349
+
350
+ [[package]]
351
+ name = "linux-raw-sys"
352
+ version = "0.12.1"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
355
+
356
+ [[package]]
357
+ name = "md-tmpl"
358
+ version = "0.4.0"
359
+ dependencies = [
360
+ "ciborium",
361
+ "const-str",
362
+ "criterion",
363
+ "flexbuffers",
364
+ "hashbrown",
365
+ "itoa",
366
+ "md-tmpl-macros",
367
+ "serde",
368
+ "serde_yaml",
369
+ "spin",
370
+ "tempfile",
371
+ "thiserror",
372
+ "typed-builder",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "md-tmpl-ffi"
377
+ version = "0.4.0"
378
+ dependencies = [
379
+ "flexbuffers",
380
+ "md-tmpl",
381
+ "serde",
382
+ "tempfile",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "md-tmpl-macros"
387
+ version = "0.4.0"
388
+ dependencies = [
389
+ "hashbrown",
390
+ "md-tmpl",
391
+ "proc-macro2",
392
+ "quote",
393
+ "serde",
394
+ "syn 2.0.118",
395
+ "typed-builder",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "md-tmpl-python"
400
+ version = "0.4.0"
401
+ dependencies = [
402
+ "hashbrown",
403
+ "md-tmpl",
404
+ "pyo3",
405
+ "serde_json",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "md-tmpl-wasm"
410
+ version = "0.4.0"
411
+ dependencies = [
412
+ "js-sys",
413
+ "md-tmpl",
414
+ "serde-wasm-bindgen",
415
+ "serde_json",
416
+ "wasm-bindgen",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "memchr"
421
+ version = "2.8.2"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
424
+
425
+ [[package]]
426
+ name = "num-traits"
427
+ version = "0.2.19"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
430
+ dependencies = [
431
+ "autocfg",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "num_enum"
436
+ version = "0.5.11"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
439
+ dependencies = [
440
+ "num_enum_derive",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "num_enum_derive"
445
+ version = "0.5.11"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
448
+ dependencies = [
449
+ "proc-macro-crate",
450
+ "proc-macro2",
451
+ "quote",
452
+ "syn 1.0.109",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "once_cell"
457
+ version = "1.21.4"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
460
+
461
+ [[package]]
462
+ name = "oorandom"
463
+ version = "11.1.5"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
466
+
467
+ [[package]]
468
+ name = "pin-project-lite"
469
+ version = "0.2.17"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
472
+
473
+ [[package]]
474
+ name = "plotters"
475
+ version = "0.3.7"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
478
+ dependencies = [
479
+ "num-traits",
480
+ "plotters-backend",
481
+ "plotters-svg",
482
+ "wasm-bindgen",
483
+ "web-sys",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "plotters-backend"
488
+ version = "0.3.7"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
491
+
492
+ [[package]]
493
+ name = "plotters-svg"
494
+ version = "0.3.7"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
497
+ dependencies = [
498
+ "plotters-backend",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "portable-atomic"
503
+ version = "1.13.1"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
506
+
507
+ [[package]]
508
+ name = "proc-macro-crate"
509
+ version = "1.3.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
512
+ dependencies = [
513
+ "once_cell",
514
+ "toml_edit",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "proc-macro2"
519
+ version = "1.0.106"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
522
+ dependencies = [
523
+ "unicode-ident",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "pyo3"
528
+ version = "0.29.0"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
531
+ dependencies = [
532
+ "libc",
533
+ "once_cell",
534
+ "portable-atomic",
535
+ "pyo3-build-config",
536
+ "pyo3-ffi",
537
+ "pyo3-macros",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "pyo3-build-config"
542
+ version = "0.29.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
545
+ dependencies = [
546
+ "target-lexicon",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "pyo3-ffi"
551
+ version = "0.29.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
554
+ dependencies = [
555
+ "libc",
556
+ "pyo3-build-config",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "pyo3-macros"
561
+ version = "0.29.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
564
+ dependencies = [
565
+ "proc-macro2",
566
+ "pyo3-macros-backend",
567
+ "quote",
568
+ "syn 2.0.118",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "pyo3-macros-backend"
573
+ version = "0.29.0"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
576
+ dependencies = [
577
+ "heck",
578
+ "proc-macro2",
579
+ "quote",
580
+ "syn 2.0.118",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "quote"
585
+ version = "1.0.46"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
588
+ dependencies = [
589
+ "proc-macro2",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "r-efi"
594
+ version = "6.0.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
597
+
598
+ [[package]]
599
+ name = "rayon"
600
+ version = "1.12.0"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
603
+ dependencies = [
604
+ "either",
605
+ "rayon-core",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "rayon-core"
610
+ version = "1.13.0"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
613
+ dependencies = [
614
+ "crossbeam-deque",
615
+ "crossbeam-utils",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "regex"
620
+ version = "1.12.4"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
623
+ dependencies = [
624
+ "aho-corasick",
625
+ "memchr",
626
+ "regex-automata",
627
+ "regex-syntax",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "regex-automata"
632
+ version = "0.4.14"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
635
+ dependencies = [
636
+ "aho-corasick",
637
+ "memchr",
638
+ "regex-syntax",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "regex-syntax"
643
+ version = "0.8.11"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
646
+
647
+ [[package]]
648
+ name = "rustix"
649
+ version = "1.1.4"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
652
+ dependencies = [
653
+ "bitflags 2.13.0",
654
+ "errno",
655
+ "libc",
656
+ "linux-raw-sys",
657
+ "windows-sys",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "rustversion"
662
+ version = "1.0.22"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
665
+
666
+ [[package]]
667
+ name = "ryu"
668
+ version = "1.0.23"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
671
+
672
+ [[package]]
673
+ name = "same-file"
674
+ version = "1.0.6"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
677
+ dependencies = [
678
+ "winapi-util",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "serde"
683
+ version = "1.0.228"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
686
+ dependencies = [
687
+ "serde_core",
688
+ "serde_derive",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "serde-wasm-bindgen"
693
+ version = "0.6.5"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
696
+ dependencies = [
697
+ "js-sys",
698
+ "serde",
699
+ "wasm-bindgen",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "serde_core"
704
+ version = "1.0.228"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
707
+ dependencies = [
708
+ "serde_derive",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "serde_derive"
713
+ version = "1.0.228"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
716
+ dependencies = [
717
+ "proc-macro2",
718
+ "quote",
719
+ "syn 2.0.118",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "serde_json"
724
+ version = "1.0.150"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
727
+ dependencies = [
728
+ "itoa",
729
+ "memchr",
730
+ "serde",
731
+ "serde_core",
732
+ "zmij",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "serde_yaml"
737
+ version = "0.9.34+deprecated"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
740
+ dependencies = [
741
+ "indexmap",
742
+ "itoa",
743
+ "ryu",
744
+ "serde",
745
+ "unsafe-libyaml",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "slab"
750
+ version = "0.4.12"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
753
+
754
+ [[package]]
755
+ name = "spin"
756
+ version = "0.12.1"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "bd5231412d905519dca6a5deb0327d407be68d6c941feec004533401d3a0a715"
759
+
760
+ [[package]]
761
+ name = "syn"
762
+ version = "1.0.109"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
765
+ dependencies = [
766
+ "proc-macro2",
767
+ "quote",
768
+ "unicode-ident",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "syn"
773
+ version = "2.0.118"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
776
+ dependencies = [
777
+ "proc-macro2",
778
+ "quote",
779
+ "unicode-ident",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "target-lexicon"
784
+ version = "0.13.5"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
787
+
788
+ [[package]]
789
+ name = "tempfile"
790
+ version = "3.27.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
793
+ dependencies = [
794
+ "fastrand",
795
+ "getrandom",
796
+ "once_cell",
797
+ "rustix",
798
+ "windows-sys",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "thiserror"
803
+ version = "2.0.18"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
806
+ dependencies = [
807
+ "thiserror-impl",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "thiserror-impl"
812
+ version = "2.0.18"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
815
+ dependencies = [
816
+ "proc-macro2",
817
+ "quote",
818
+ "syn 2.0.118",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "tinytemplate"
823
+ version = "1.2.1"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
826
+ dependencies = [
827
+ "serde",
828
+ "serde_json",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "toml_datetime"
833
+ version = "0.6.11"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
836
+
837
+ [[package]]
838
+ name = "toml_edit"
839
+ version = "0.19.15"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
842
+ dependencies = [
843
+ "indexmap",
844
+ "toml_datetime",
845
+ "winnow",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "typed-builder"
850
+ version = "0.23.2"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "31aa81521b70f94402501d848ccc0ecaa8f93c8eb6999eb9747e72287757ffda"
853
+ dependencies = [
854
+ "typed-builder-macro",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "typed-builder-macro"
859
+ version = "0.23.2"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
862
+ dependencies = [
863
+ "proc-macro2",
864
+ "quote",
865
+ "syn 2.0.118",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "unicode-ident"
870
+ version = "1.0.24"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
873
+
874
+ [[package]]
875
+ name = "unsafe-libyaml"
876
+ version = "0.2.11"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
879
+
880
+ [[package]]
881
+ name = "walkdir"
882
+ version = "2.5.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
885
+ dependencies = [
886
+ "same-file",
887
+ "winapi-util",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "wasm-bindgen"
892
+ version = "0.2.126"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
895
+ dependencies = [
896
+ "cfg-if",
897
+ "once_cell",
898
+ "rustversion",
899
+ "wasm-bindgen-macro",
900
+ "wasm-bindgen-shared",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "wasm-bindgen-macro"
905
+ version = "0.2.126"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
908
+ dependencies = [
909
+ "quote",
910
+ "wasm-bindgen-macro-support",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "wasm-bindgen-macro-support"
915
+ version = "0.2.126"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
918
+ dependencies = [
919
+ "bumpalo",
920
+ "proc-macro2",
921
+ "quote",
922
+ "syn 2.0.118",
923
+ "wasm-bindgen-shared",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "wasm-bindgen-shared"
928
+ version = "0.2.126"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
931
+ dependencies = [
932
+ "unicode-ident",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "web-sys"
937
+ version = "0.3.103"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
940
+ dependencies = [
941
+ "js-sys",
942
+ "wasm-bindgen",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "winapi-util"
947
+ version = "0.1.11"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
950
+ dependencies = [
951
+ "windows-sys",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "windows-link"
956
+ version = "0.2.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
959
+
960
+ [[package]]
961
+ name = "windows-sys"
962
+ version = "0.61.2"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
965
+ dependencies = [
966
+ "windows-link",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "winnow"
971
+ version = "0.5.40"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
974
+ dependencies = [
975
+ "memchr",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "zerocopy"
980
+ version = "0.8.52"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
983
+ dependencies = [
984
+ "zerocopy-derive",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "zerocopy-derive"
989
+ version = "0.8.52"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
992
+ dependencies = [
993
+ "proc-macro2",
994
+ "quote",
995
+ "syn 2.0.118",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "zmij"
1000
+ version = "1.0.21"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"