math-core 0.1.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 (35) hide show
  1. math_core-0.1.0/Cargo.lock +936 -0
  2. math_core-0.1.0/Cargo.toml +28 -0
  3. math_core-0.1.0/PKG-INFO +242 -0
  4. math_core-0.1.0/math-core/Cargo.toml +36 -0
  5. math_core-0.1.0/math-core/README.md +169 -0
  6. math_core-0.1.0/math-core/examples/equations.rs +103 -0
  7. math_core-0.1.0/math-core/src/latex_parser/atof.rs +119 -0
  8. math_core-0.1.0/math-core/src/latex_parser/color_defs.rs +100 -0
  9. math_core-0.1.0/math-core/src/latex_parser/commands.rs +785 -0
  10. math_core-0.1.0/math-core/src/latex_parser/error.rs +183 -0
  11. math_core-0.1.0/math-core/src/latex_parser/lexer.rs +291 -0
  12. math_core-0.1.0/math-core/src/latex_parser/mod.rs +15 -0
  13. math_core-0.1.0/math-core/src/latex_parser/parse.rs +1463 -0
  14. math_core-0.1.0/math-core/src/latex_parser/predefined.rs +128 -0
  15. math_core-0.1.0/math-core/src/latex_parser/specifications.rs +301 -0
  16. math_core-0.1.0/math-core/src/latex_parser/token.rs +211 -0
  17. math_core-0.1.0/math-core/src/lib.rs +688 -0
  18. math_core-0.1.0/math-core/src/mathml_renderer/arena.rs +205 -0
  19. math_core-0.1.0/math-core/src/mathml_renderer/ast.rs +1223 -0
  20. math_core-0.1.0/math-core/src/mathml_renderer/attribute.rs +372 -0
  21. math_core-0.1.0/math-core/src/mathml_renderer/fmt.rs +10 -0
  22. math_core-0.1.0/math-core/src/mathml_renderer/itoa.rs +27 -0
  23. math_core-0.1.0/math-core/src/mathml_renderer/length.rs +132 -0
  24. math_core-0.1.0/math-core/src/mathml_renderer/mod.rs +8 -0
  25. math_core-0.1.0/math-core/src/mathml_renderer/symbol.rs +1139 -0
  26. math_core-0.1.0/math-core/src/mathml_renderer/table.rs +185 -0
  27. math_core-0.1.0/math-core/src/raw_node_slice.rs +79 -0
  28. math_core-0.1.0/math-core/tests/wiki_test.rs +1400 -0
  29. math_core-0.1.0/math-core-python/Cargo.toml +18 -0
  30. math_core-0.1.0/math-core-python/README.md +225 -0
  31. math_core-0.1.0/math-core-python/src/lib.rs +130 -0
  32. math_core-0.1.0/pyproject.toml +43 -0
  33. math_core-0.1.0/python/math_core/__init__.py +4 -0
  34. math_core-0.1.0/python/math_core/_math_core_rust.pyi +37 -0
  35. math_core-0.1.0/python/math_core/py.typed +0 -0
@@ -0,0 +1,936 @@
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.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "0.6.15"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.8"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "0.2.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.1"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.4"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
58
+ dependencies = [
59
+ "anstyle",
60
+ "windows-sys",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "autocfg"
65
+ version = "1.3.0"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
68
+
69
+ [[package]]
70
+ name = "base64"
71
+ version = "0.13.1"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
74
+
75
+ [[package]]
76
+ name = "bitflags"
77
+ version = "1.3.2"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
80
+
81
+ [[package]]
82
+ name = "bumpalo"
83
+ version = "3.17.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
86
+
87
+ [[package]]
88
+ name = "cc"
89
+ version = "1.2.16"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
92
+ dependencies = [
93
+ "shlex",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "cfg-if"
98
+ version = "1.0.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
101
+
102
+ [[package]]
103
+ name = "clap"
104
+ version = "4.5.40"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
107
+ dependencies = [
108
+ "clap_builder",
109
+ "clap_derive",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "clap_builder"
114
+ version = "4.5.40"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
117
+ dependencies = [
118
+ "anstream",
119
+ "anstyle",
120
+ "clap_lex",
121
+ "strsim",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "clap_derive"
126
+ version = "4.5.40"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
129
+ dependencies = [
130
+ "heck",
131
+ "proc-macro2",
132
+ "quote",
133
+ "syn",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "clap_lex"
138
+ version = "0.7.4"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
141
+
142
+ [[package]]
143
+ name = "colorchoice"
144
+ version = "1.0.2"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
147
+
148
+ [[package]]
149
+ name = "console"
150
+ version = "0.15.8"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
153
+ dependencies = [
154
+ "encode_unicode",
155
+ "lazy_static",
156
+ "libc",
157
+ "windows-sys",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "dtoa"
162
+ version = "1.0.10"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
165
+
166
+ [[package]]
167
+ name = "encode_unicode"
168
+ version = "0.3.6"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
171
+
172
+ [[package]]
173
+ name = "equivalent"
174
+ version = "1.0.2"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
177
+
178
+ [[package]]
179
+ name = "hashbrown"
180
+ version = "0.15.4"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
183
+
184
+ [[package]]
185
+ name = "heck"
186
+ version = "0.5.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
189
+
190
+ [[package]]
191
+ name = "indexmap"
192
+ version = "2.9.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
195
+ dependencies = [
196
+ "equivalent",
197
+ "hashbrown",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "indoc"
202
+ version = "2.0.5"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
205
+
206
+ [[package]]
207
+ name = "insta"
208
+ version = "1.41.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8"
211
+ dependencies = [
212
+ "console",
213
+ "lazy_static",
214
+ "linked-hash-map",
215
+ "ron",
216
+ "serde",
217
+ "similar",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "is_terminal_polyfill"
222
+ version = "1.70.1"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
225
+
226
+ [[package]]
227
+ name = "js-sys"
228
+ version = "0.3.77"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
231
+ dependencies = [
232
+ "once_cell",
233
+ "wasm-bindgen",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "lazy_static"
238
+ version = "1.5.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
241
+
242
+ [[package]]
243
+ name = "libc"
244
+ version = "0.2.158"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
247
+
248
+ [[package]]
249
+ name = "linked-hash-map"
250
+ version = "0.5.6"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
253
+
254
+ [[package]]
255
+ name = "lock_api"
256
+ version = "0.4.12"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
259
+ dependencies = [
260
+ "autocfg",
261
+ "scopeguard",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "log"
266
+ version = "0.4.22"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
269
+
270
+ [[package]]
271
+ name = "lol_alloc"
272
+ version = "0.4.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "83e5106554cabc97552dcadf54f57560ae6af3276652f82ca2be06120dc4c5dc"
275
+ dependencies = [
276
+ "spin",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "math-core"
281
+ version = "0.1.0"
282
+ dependencies = [
283
+ "dtoa",
284
+ "insta",
285
+ "math-core",
286
+ "phf",
287
+ "regex",
288
+ "rustc-hash",
289
+ "serde",
290
+ "stable-arena",
291
+ "strum",
292
+ "strum_macros",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "math-core-cli"
297
+ version = "0.1.0"
298
+ dependencies = [
299
+ "clap",
300
+ "math-core",
301
+ "memchr",
302
+ "phf",
303
+ "serde",
304
+ "toml",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "math-core-python"
309
+ version = "0.1.0"
310
+ dependencies = [
311
+ "math-core",
312
+ "pyo3",
313
+ "rustc-hash",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "math-core-wasm"
318
+ version = "0.1.0"
319
+ dependencies = [
320
+ "js-sys",
321
+ "lol_alloc",
322
+ "math-core",
323
+ "rustc-hash",
324
+ "wasm-bindgen",
325
+ "wasm-bindgen-test",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "memchr"
330
+ version = "2.7.5"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
333
+
334
+ [[package]]
335
+ name = "memoffset"
336
+ version = "0.9.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
339
+ dependencies = [
340
+ "autocfg",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "minicov"
345
+ version = "0.3.7"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
348
+ dependencies = [
349
+ "cc",
350
+ "walkdir",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "once_cell"
355
+ version = "1.19.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
358
+
359
+ [[package]]
360
+ name = "phf"
361
+ version = "0.11.3"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
364
+ dependencies = [
365
+ "phf_macros",
366
+ "phf_shared",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "phf_generator"
371
+ version = "0.11.2"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
374
+ dependencies = [
375
+ "phf_shared",
376
+ "rand",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "phf_macros"
381
+ version = "0.11.3"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
384
+ dependencies = [
385
+ "phf_generator",
386
+ "phf_shared",
387
+ "proc-macro2",
388
+ "quote",
389
+ "syn",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "phf_shared"
394
+ version = "0.11.3"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
397
+ dependencies = [
398
+ "siphasher",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "portable-atomic"
403
+ version = "1.7.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
406
+
407
+ [[package]]
408
+ name = "proc-macro2"
409
+ version = "1.0.86"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
412
+ dependencies = [
413
+ "unicode-ident",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "pyo3"
418
+ version = "0.25.1"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
421
+ dependencies = [
422
+ "indoc",
423
+ "libc",
424
+ "memoffset",
425
+ "once_cell",
426
+ "portable-atomic",
427
+ "pyo3-build-config",
428
+ "pyo3-ffi",
429
+ "pyo3-macros",
430
+ "unindent",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "pyo3-build-config"
435
+ version = "0.25.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
438
+ dependencies = [
439
+ "once_cell",
440
+ "target-lexicon",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "pyo3-ffi"
445
+ version = "0.25.1"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
448
+ dependencies = [
449
+ "libc",
450
+ "pyo3-build-config",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "pyo3-macros"
455
+ version = "0.25.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
458
+ dependencies = [
459
+ "proc-macro2",
460
+ "pyo3-macros-backend",
461
+ "quote",
462
+ "syn",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "pyo3-macros-backend"
467
+ version = "0.25.1"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
470
+ dependencies = [
471
+ "heck",
472
+ "proc-macro2",
473
+ "pyo3-build-config",
474
+ "quote",
475
+ "syn",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "quote"
480
+ version = "1.0.37"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
483
+ dependencies = [
484
+ "proc-macro2",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "rand"
489
+ version = "0.8.5"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
492
+ dependencies = [
493
+ "rand_core",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "rand_core"
498
+ version = "0.6.4"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
501
+
502
+ [[package]]
503
+ name = "regex"
504
+ version = "1.11.1"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
507
+ dependencies = [
508
+ "aho-corasick",
509
+ "memchr",
510
+ "regex-automata",
511
+ "regex-syntax",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "regex-automata"
516
+ version = "0.4.8"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
519
+ dependencies = [
520
+ "aho-corasick",
521
+ "memchr",
522
+ "regex-syntax",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "regex-syntax"
527
+ version = "0.8.5"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
530
+
531
+ [[package]]
532
+ name = "ron"
533
+ version = "0.7.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
536
+ dependencies = [
537
+ "base64",
538
+ "bitflags",
539
+ "serde",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "rustc-hash"
544
+ version = "2.1.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
547
+
548
+ [[package]]
549
+ name = "rustversion"
550
+ version = "1.0.17"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
553
+
554
+ [[package]]
555
+ name = "same-file"
556
+ version = "1.0.6"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
559
+ dependencies = [
560
+ "winapi-util",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "scopeguard"
565
+ version = "1.2.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
568
+
569
+ [[package]]
570
+ name = "serde"
571
+ version = "1.0.219"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
574
+ dependencies = [
575
+ "serde_derive",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "serde_derive"
580
+ version = "1.0.219"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
583
+ dependencies = [
584
+ "proc-macro2",
585
+ "quote",
586
+ "syn",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "serde_spanned"
591
+ version = "0.6.9"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
594
+ dependencies = [
595
+ "serde",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "shlex"
600
+ version = "1.3.0"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
603
+
604
+ [[package]]
605
+ name = "similar"
606
+ version = "2.7.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
609
+
610
+ [[package]]
611
+ name = "siphasher"
612
+ version = "1.0.1"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
615
+
616
+ [[package]]
617
+ name = "spin"
618
+ version = "0.9.8"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
621
+ dependencies = [
622
+ "lock_api",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "stable-arena"
627
+ version = "0.2.0"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "2a6572b16faf73db61fab0b1d848ce108e20d026dc20dcb043a3f83c73ad1c09"
630
+
631
+ [[package]]
632
+ name = "strsim"
633
+ version = "0.11.1"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
636
+
637
+ [[package]]
638
+ name = "strum"
639
+ version = "0.27.1"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
642
+
643
+ [[package]]
644
+ name = "strum_macros"
645
+ version = "0.27.1"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
648
+ dependencies = [
649
+ "heck",
650
+ "proc-macro2",
651
+ "quote",
652
+ "rustversion",
653
+ "syn",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "syn"
658
+ version = "2.0.85"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
661
+ dependencies = [
662
+ "proc-macro2",
663
+ "quote",
664
+ "unicode-ident",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "target-lexicon"
669
+ version = "0.13.2"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
672
+
673
+ [[package]]
674
+ name = "toml"
675
+ version = "0.8.23"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
678
+ dependencies = [
679
+ "serde",
680
+ "serde_spanned",
681
+ "toml_datetime",
682
+ "toml_edit",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "toml_datetime"
687
+ version = "0.6.11"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
690
+ dependencies = [
691
+ "serde",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "toml_edit"
696
+ version = "0.22.27"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
699
+ dependencies = [
700
+ "indexmap",
701
+ "serde",
702
+ "serde_spanned",
703
+ "toml_datetime",
704
+ "toml_write",
705
+ "winnow",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "toml_write"
710
+ version = "0.1.2"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
713
+
714
+ [[package]]
715
+ name = "unicode-ident"
716
+ version = "1.0.12"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
719
+
720
+ [[package]]
721
+ name = "unindent"
722
+ version = "0.2.3"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
725
+
726
+ [[package]]
727
+ name = "utf8parse"
728
+ version = "0.2.2"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
731
+
732
+ [[package]]
733
+ name = "walkdir"
734
+ version = "2.5.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
737
+ dependencies = [
738
+ "same-file",
739
+ "winapi-util",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "wasm-bindgen"
744
+ version = "0.2.100"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
747
+ dependencies = [
748
+ "cfg-if",
749
+ "once_cell",
750
+ "rustversion",
751
+ "wasm-bindgen-macro",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "wasm-bindgen-backend"
756
+ version = "0.2.100"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
759
+ dependencies = [
760
+ "bumpalo",
761
+ "log",
762
+ "proc-macro2",
763
+ "quote",
764
+ "syn",
765
+ "wasm-bindgen-shared",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "wasm-bindgen-futures"
770
+ version = "0.4.50"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
773
+ dependencies = [
774
+ "cfg-if",
775
+ "js-sys",
776
+ "once_cell",
777
+ "wasm-bindgen",
778
+ "web-sys",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "wasm-bindgen-macro"
783
+ version = "0.2.100"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
786
+ dependencies = [
787
+ "quote",
788
+ "wasm-bindgen-macro-support",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "wasm-bindgen-macro-support"
793
+ version = "0.2.100"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
796
+ dependencies = [
797
+ "proc-macro2",
798
+ "quote",
799
+ "syn",
800
+ "wasm-bindgen-backend",
801
+ "wasm-bindgen-shared",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "wasm-bindgen-shared"
806
+ version = "0.2.100"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
809
+ dependencies = [
810
+ "unicode-ident",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "wasm-bindgen-test"
815
+ version = "0.3.50"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
818
+ dependencies = [
819
+ "js-sys",
820
+ "minicov",
821
+ "wasm-bindgen",
822
+ "wasm-bindgen-futures",
823
+ "wasm-bindgen-test-macro",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "wasm-bindgen-test-macro"
828
+ version = "0.3.50"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
831
+ dependencies = [
832
+ "proc-macro2",
833
+ "quote",
834
+ "syn",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "web-sys"
839
+ version = "0.3.77"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
842
+ dependencies = [
843
+ "js-sys",
844
+ "wasm-bindgen",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "winapi-util"
849
+ version = "0.1.9"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
852
+ dependencies = [
853
+ "windows-sys",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "windows-sys"
858
+ version = "0.52.0"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
861
+ dependencies = [
862
+ "windows-targets",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "windows-targets"
867
+ version = "0.52.6"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
870
+ dependencies = [
871
+ "windows_aarch64_gnullvm",
872
+ "windows_aarch64_msvc",
873
+ "windows_i686_gnu",
874
+ "windows_i686_gnullvm",
875
+ "windows_i686_msvc",
876
+ "windows_x86_64_gnu",
877
+ "windows_x86_64_gnullvm",
878
+ "windows_x86_64_msvc",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "windows_aarch64_gnullvm"
883
+ version = "0.52.6"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
886
+
887
+ [[package]]
888
+ name = "windows_aarch64_msvc"
889
+ version = "0.52.6"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
892
+
893
+ [[package]]
894
+ name = "windows_i686_gnu"
895
+ version = "0.52.6"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
898
+
899
+ [[package]]
900
+ name = "windows_i686_gnullvm"
901
+ version = "0.52.6"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
904
+
905
+ [[package]]
906
+ name = "windows_i686_msvc"
907
+ version = "0.52.6"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
910
+
911
+ [[package]]
912
+ name = "windows_x86_64_gnu"
913
+ version = "0.52.6"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
916
+
917
+ [[package]]
918
+ name = "windows_x86_64_gnullvm"
919
+ version = "0.52.6"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
922
+
923
+ [[package]]
924
+ name = "windows_x86_64_msvc"
925
+ version = "0.52.6"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
928
+
929
+ [[package]]
930
+ name = "winnow"
931
+ version = "0.7.11"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
934
+ dependencies = [
935
+ "memchr",
936
+ ]