codimate 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 (74) hide show
  1. codimate-0.1.0/Cargo.lock +2028 -0
  2. codimate-0.1.0/Cargo.toml +3 -0
  3. codimate-0.1.0/PKG-INFO +340 -0
  4. codimate-0.1.0/README.md +327 -0
  5. codimate-0.1.0/crates/codimate-animation/Cargo.toml +7 -0
  6. codimate-0.1.0/crates/codimate-animation/src/lib.rs +369 -0
  7. codimate-0.1.0/crates/codimate-animation/tests/animation.rs +27 -0
  8. codimate-0.1.0/crates/codimate-animation/tests/parallel.rs +37 -0
  9. codimate-0.1.0/crates/codimate-animation/tests/playable.rs +72 -0
  10. codimate-0.1.0/crates/codimate-animation/tests/sequence.rs +40 -0
  11. codimate-0.1.0/crates/codimate-animation/tests/stagger.rs +38 -0
  12. codimate-0.1.0/crates/codimate-core/Cargo.toml +7 -0
  13. codimate-0.1.0/crates/codimate-core/src/builder.rs +79 -0
  14. codimate-0.1.0/crates/codimate-core/src/easing.rs +33 -0
  15. codimate-0.1.0/crates/codimate-core/src/glyph.rs +76 -0
  16. codimate-0.1.0/crates/codimate-core/src/lib.rs +38 -0
  17. codimate-0.1.0/crates/codimate-core/src/manim_palette.rs +37 -0
  18. codimate-0.1.0/crates/codimate-core/src/path.rs +483 -0
  19. codimate-0.1.0/crates/codimate-core/src/scene/circle.rs +175 -0
  20. codimate-0.1.0/crates/codimate-core/src/scene/connection.rs +239 -0
  21. codimate-0.1.0/crates/codimate-core/src/scene/mod.rs +362 -0
  22. codimate-0.1.0/crates/codimate-core/src/scene/path.rs +223 -0
  23. codimate-0.1.0/crates/codimate-core/src/scene/primitive.rs +626 -0
  24. codimate-0.1.0/crates/codimate-core/src/scene/pulse.rs +110 -0
  25. codimate-0.1.0/crates/codimate-core/src/scene/rect.rs +238 -0
  26. codimate-0.1.0/crates/codimate-core/src/scene/text.rs +167 -0
  27. codimate-0.1.0/crates/codimate-core/src/scene/transform.rs +237 -0
  28. codimate-0.1.0/crates/codimate-core/src/value.rs +309 -0
  29. codimate-0.1.0/crates/codimate-core/tests/anchors.rs +179 -0
  30. codimate-0.1.0/crates/codimate-core/tests/animated.rs +39 -0
  31. codimate-0.1.0/crates/codimate-core/tests/circle.rs +33 -0
  32. codimate-0.1.0/crates/codimate-core/tests/connection.rs +96 -0
  33. codimate-0.1.0/crates/codimate-core/tests/easing.rs +49 -0
  34. codimate-0.1.0/crates/codimate-core/tests/manim_palette.rs +33 -0
  35. codimate-0.1.0/crates/codimate-core/tests/path.rs +410 -0
  36. codimate-0.1.0/crates/codimate-core/tests/ports.rs +39 -0
  37. codimate-0.1.0/crates/codimate-core/tests/pulse.rs +110 -0
  38. codimate-0.1.0/crates/codimate-core/tests/rect.rs +41 -0
  39. codimate-0.1.0/crates/codimate-core/tests/scene.rs +87 -0
  40. codimate-0.1.0/crates/codimate-core/tests/scene_effect_helpers.rs +126 -0
  41. codimate-0.1.0/crates/codimate-core/tests/tween.rs +87 -0
  42. codimate-0.1.0/crates/codimate-export/Cargo.toml +15 -0
  43. codimate-0.1.0/crates/codimate-export/src/lib.rs +438 -0
  44. codimate-0.1.0/crates/codimate-export/tests/export.rs +124 -0
  45. codimate-0.1.0/crates/codimate-export/tests/png.rs +45 -0
  46. codimate-0.1.0/crates/codimate-fonts/Cargo.toml +9 -0
  47. codimate-0.1.0/crates/codimate-fonts/build.rs +101 -0
  48. codimate-0.1.0/crates/codimate-fonts/fonts/DejaVuSansMono.ttf +0 -0
  49. codimate-0.1.0/crates/codimate-fonts/fonts/DroidSansFallbackFull.ttf +0 -0
  50. codimate-0.1.0/crates/codimate-fonts/fonts/NotoSansKhmer-Regular.ttf +0 -0
  51. codimate-0.1.0/crates/codimate-fonts/src/lib.rs +129 -0
  52. codimate-0.1.0/crates/codimate-glyph/Cargo.toml +10 -0
  53. codimate-0.1.0/crates/codimate-glyph/src/lib.rs +185 -0
  54. codimate-0.1.0/crates/codimate-layout/Cargo.toml +7 -0
  55. codimate-0.1.0/crates/codimate-layout/src/lib.rs +531 -0
  56. codimate-0.1.0/crates/codimate-layout/tests/layout.rs +261 -0
  57. codimate-0.1.0/crates/codimate-math/Cargo.toml +10 -0
  58. codimate-0.1.0/crates/codimate-math/src/lib.rs +293 -0
  59. codimate-0.1.0/crates/codimate-py/Cargo.toml +26 -0
  60. codimate-0.1.0/crates/codimate-py/src/lib.rs +226 -0
  61. codimate-0.1.0/crates/codimate-reconcile/Cargo.toml +10 -0
  62. codimate-0.1.0/crates/codimate-reconcile/src/lib.rs +1437 -0
  63. codimate-0.1.0/crates/codimate-render/Cargo.toml +12 -0
  64. codimate-0.1.0/crates/codimate-render/src/command.rs +247 -0
  65. codimate-0.1.0/crates/codimate-render/src/lib.rs +16 -0
  66. codimate-0.1.0/crates/codimate-render/src/raster.rs +623 -0
  67. codimate-0.1.0/crates/codimate-render/tests/raster.rs +336 -0
  68. codimate-0.1.0/crates/codimate-render/tests/render.rs +130 -0
  69. codimate-0.1.0/pyproject.toml +47 -0
  70. codimate-0.1.0/python/codimate/__init__.py +87 -0
  71. codimate-0.1.0/python/codimate/explain.py +269 -0
  72. codimate-0.1.0/python/codimate/layout.py +308 -0
  73. codimate-0.1.0/python/codimate/scene.py +439 -0
  74. codimate-0.1.0/python/codimate/trace.py +157 -0
@@ -0,0 +1,2028 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ab_glyph"
7
+ version = "0.2.32"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
10
+ dependencies = [
11
+ "ab_glyph_rasterizer",
12
+ "owned_ttf_parser",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "ab_glyph_rasterizer"
17
+ version = "0.1.10"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
20
+
21
+ [[package]]
22
+ name = "adler2"
23
+ version = "2.0.1"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
26
+
27
+ [[package]]
28
+ name = "ahash"
29
+ version = "0.7.8"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
32
+ dependencies = [
33
+ "getrandom",
34
+ "once_cell",
35
+ "version_check",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anyhow"
40
+ version = "1.0.102"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
43
+
44
+ [[package]]
45
+ name = "arrayref"
46
+ version = "0.3.9"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
49
+
50
+ [[package]]
51
+ name = "arrayvec"
52
+ version = "0.7.6"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
55
+
56
+ [[package]]
57
+ name = "autocfg"
58
+ version = "1.5.1"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
61
+
62
+ [[package]]
63
+ name = "base64"
64
+ version = "0.22.1"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
67
+
68
+ [[package]]
69
+ name = "beef"
70
+ version = "0.5.2"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
73
+
74
+ [[package]]
75
+ name = "bitflags"
76
+ version = "1.3.2"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
79
+
80
+ [[package]]
81
+ name = "bitflags"
82
+ version = "2.13.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
85
+
86
+ [[package]]
87
+ name = "bitvec"
88
+ version = "1.0.1"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
91
+ dependencies = [
92
+ "funty",
93
+ "radium",
94
+ "tap",
95
+ "wyz",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "bumpalo"
100
+ version = "3.20.3"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
103
+
104
+ [[package]]
105
+ name = "bytecheck"
106
+ version = "0.6.12"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
109
+ dependencies = [
110
+ "bytecheck_derive",
111
+ "ptr_meta",
112
+ "simdutf8",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "bytecheck_derive"
117
+ version = "0.6.12"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
120
+ dependencies = [
121
+ "proc-macro2",
122
+ "quote",
123
+ "syn 1.0.109",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "bytemuck"
128
+ version = "1.25.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
131
+
132
+ [[package]]
133
+ name = "byteorder"
134
+ version = "1.5.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
137
+
138
+ [[package]]
139
+ name = "bytes"
140
+ version = "1.11.1"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
143
+
144
+ [[package]]
145
+ name = "cc"
146
+ version = "1.2.63"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
149
+ dependencies = [
150
+ "find-msvc-tools",
151
+ "shlex",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "cfg-if"
156
+ version = "1.0.4"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
159
+
160
+ [[package]]
161
+ name = "codimate"
162
+ version = "0.1.0"
163
+ dependencies = [
164
+ "codimate-animation",
165
+ "codimate-core",
166
+ "codimate-export",
167
+ "codimate-layout",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "codimate-animation"
172
+ version = "0.1.0"
173
+ dependencies = [
174
+ "codimate-core",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "codimate-arrange"
179
+ version = "0.1.0"
180
+ dependencies = [
181
+ "codimate-core",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "codimate-core"
186
+ version = "0.1.0"
187
+
188
+ [[package]]
189
+ name = "codimate-effects"
190
+ version = "0.1.0"
191
+ dependencies = [
192
+ "codimate-animation",
193
+ "codimate-core",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "codimate-example-box-arrow"
198
+ version = "0.1.0"
199
+ dependencies = [
200
+ "codimate",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "codimate-example-circle-to-square"
205
+ version = "0.1.0"
206
+ dependencies = [
207
+ "codimate",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "codimate-example-connection-pulse"
212
+ version = "0.1.0"
213
+ dependencies = [
214
+ "codimate",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "codimate-example-demo"
219
+ version = "0.1.0"
220
+ dependencies = [
221
+ "codimate",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "codimate-example-dijkstra"
226
+ version = "0.1.0"
227
+ dependencies = [
228
+ "codimate",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "codimate-example-faster-dijkstra"
233
+ version = "0.1.0"
234
+ dependencies = [
235
+ "codimate",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "codimate-example-hanoi-tower"
240
+ version = "0.1.0"
241
+ dependencies = [
242
+ "codimate",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "codimate-example-insertion-sort"
247
+ version = "0.1.0"
248
+ dependencies = [
249
+ "codimate",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "codimate-example-khmer-fade-wave"
254
+ version = "0.1.0"
255
+ dependencies = [
256
+ "codimate",
257
+ "codimate-effects",
258
+ "codimate-fonts",
259
+ "codimate-glyph",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "codimate-example-knapsack"
264
+ version = "0.1.0"
265
+ dependencies = [
266
+ "codimate",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "codimate-example-matrix-mult"
271
+ version = "0.1.0"
272
+ dependencies = [
273
+ "codimate",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "codimate-example-merge-sort"
278
+ version = "0.1.0"
279
+ dependencies = [
280
+ "codimate",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "codimate-example-neural-net"
285
+ version = "0.1.0"
286
+ dependencies = [
287
+ "codimate",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "codimate-example-newton-laws"
292
+ version = "0.1.0"
293
+ dependencies = [
294
+ "codimate",
295
+ "codimate-math",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "codimate-example-preview"
300
+ version = "0.1.0"
301
+ dependencies = [
302
+ "codimate",
303
+ "codimate-previewer",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "codimate-example-quick-sort"
308
+ version = "0.1.0"
309
+ dependencies = [
310
+ "codimate",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "codimate-example-swap"
315
+ version = "0.1.0"
316
+ dependencies = [
317
+ "codimate",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "codimate-example-swap-a-b"
322
+ version = "0.1.0"
323
+ dependencies = [
324
+ "codimate",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "codimate-example-symspell"
329
+ version = "0.1.0"
330
+ dependencies = [
331
+ "codimate",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "codimate-example-system-diagram"
336
+ version = "0.1.0"
337
+ dependencies = [
338
+ "codimate",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "codimate-example-three-sum"
343
+ version = "0.1.0"
344
+ dependencies = [
345
+ "codimate",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "codimate-example-word-appear"
350
+ version = "0.1.0"
351
+ dependencies = [
352
+ "codimate",
353
+ "codimate-fonts",
354
+ "codimate-glyph",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "codimate-export"
359
+ version = "0.1.0"
360
+ dependencies = [
361
+ "codimate-animation",
362
+ "codimate-core",
363
+ "codimate-layout",
364
+ "codimate-render",
365
+ "jpeg-encoder",
366
+ "png",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "codimate-fonts"
371
+ version = "0.1.0"
372
+ dependencies = [
373
+ "ttf-parser 0.21.1",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "codimate-glyph"
378
+ version = "0.1.0"
379
+ dependencies = [
380
+ "codimate-core",
381
+ "codimate-fonts",
382
+ "harfbuzz_rs",
383
+ "ttf-parser 0.21.1",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "codimate-layout"
388
+ version = "0.1.0"
389
+ dependencies = [
390
+ "codimate-core",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "codimate-math"
395
+ version = "0.1.0"
396
+ dependencies = [
397
+ "codimate-core",
398
+ "mitex",
399
+ "usvg",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "codimate-previewer"
404
+ version = "0.1.0"
405
+ dependencies = [
406
+ "codimate-animation",
407
+ "codimate-core",
408
+ "codimate-example-box-arrow",
409
+ "codimate-example-circle-to-square",
410
+ "codimate-example-connection-pulse",
411
+ "codimate-example-demo",
412
+ "codimate-example-dijkstra",
413
+ "codimate-example-faster-dijkstra",
414
+ "codimate-example-insertion-sort",
415
+ "codimate-example-knapsack",
416
+ "codimate-example-matrix-mult",
417
+ "codimate-example-merge-sort",
418
+ "codimate-example-neural-net",
419
+ "codimate-example-newton-laws",
420
+ "codimate-example-swap-a-b",
421
+ "codimate-example-system-diagram",
422
+ "codimate-example-word-appear",
423
+ "codimate-export",
424
+ "codimate-layout",
425
+ "codimate-render",
426
+ "minifb",
427
+ "toml",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "codimate-py"
432
+ version = "0.1.0"
433
+ dependencies = [
434
+ "codimate-animation",
435
+ "codimate-core",
436
+ "codimate-export",
437
+ "codimate-layout",
438
+ "codimate-reconcile",
439
+ "codimate-render",
440
+ "pyo3",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "codimate-reconcile"
445
+ version = "0.1.0"
446
+ dependencies = [
447
+ "codimate-animation",
448
+ "codimate-core",
449
+ "codimate-math",
450
+ "codimate-render",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "codimate-render"
455
+ version = "0.1.0"
456
+ dependencies = [
457
+ "ab_glyph",
458
+ "codimate-core",
459
+ "codimate-fonts",
460
+ "codimate-glyph",
461
+ "codimate-layout",
462
+ "tiny-skia",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "core-foundation"
467
+ version = "0.9.4"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
470
+ dependencies = [
471
+ "core-foundation-sys",
472
+ "libc",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "core-foundation-sys"
477
+ version = "0.8.7"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
480
+
481
+ [[package]]
482
+ name = "core-graphics"
483
+ version = "0.22.3"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
486
+ dependencies = [
487
+ "bitflags 1.3.2",
488
+ "core-foundation",
489
+ "core-graphics-types",
490
+ "foreign-types",
491
+ "libc",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "core-graphics-types"
496
+ version = "0.1.3"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
499
+ dependencies = [
500
+ "bitflags 1.3.2",
501
+ "core-foundation",
502
+ "libc",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "core-text"
507
+ version = "19.2.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25"
510
+ dependencies = [
511
+ "core-foundation",
512
+ "core-graphics",
513
+ "foreign-types",
514
+ "libc",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "countme"
519
+ version = "3.0.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
522
+
523
+ [[package]]
524
+ name = "crc32fast"
525
+ version = "1.5.0"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
528
+ dependencies = [
529
+ "cfg-if",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "cty"
534
+ version = "0.2.2"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
537
+
538
+ [[package]]
539
+ name = "data-url"
540
+ version = "0.3.2"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
543
+
544
+ [[package]]
545
+ name = "ecow"
546
+ version = "0.2.6"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "78e4f79b296fbaab6ce2e22d52cb4c7f010fe0ebe7a32e34fa25885fd797bd02"
549
+
550
+ [[package]]
551
+ name = "either"
552
+ version = "1.16.0"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
555
+
556
+ [[package]]
557
+ name = "ena"
558
+ version = "0.14.4"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1"
561
+ dependencies = [
562
+ "log",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "equivalent"
567
+ version = "1.0.2"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
570
+
571
+ [[package]]
572
+ name = "errno"
573
+ version = "0.3.14"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
576
+ dependencies = [
577
+ "libc",
578
+ "windows-sys 0.61.2",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "euclid"
583
+ version = "0.22.14"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
586
+ dependencies = [
587
+ "num-traits",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "fdeflate"
592
+ version = "0.3.7"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
595
+ dependencies = [
596
+ "simd-adler32",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "find-msvc-tools"
601
+ version = "0.1.9"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
604
+
605
+ [[package]]
606
+ name = "flate2"
607
+ version = "1.1.9"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
610
+ dependencies = [
611
+ "crc32fast",
612
+ "miniz_oxide",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "float-cmp"
617
+ version = "0.9.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
620
+
621
+ [[package]]
622
+ name = "fnv"
623
+ version = "1.0.7"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
626
+
627
+ [[package]]
628
+ name = "foreign-types"
629
+ version = "0.3.2"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
632
+ dependencies = [
633
+ "foreign-types-shared",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "foreign-types-shared"
638
+ version = "0.1.1"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
641
+
642
+ [[package]]
643
+ name = "freetype"
644
+ version = "0.7.2"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "5a440748e063798e4893ceb877151e84acef9bea9a8c6800645cf3f1b3a7806e"
647
+ dependencies = [
648
+ "freetype-sys",
649
+ "libc",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "freetype-sys"
654
+ version = "0.20.1"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "0e7edc5b9669349acfda99533e9e0bcf26a51862ab43b08ee7745c55d28eb134"
657
+ dependencies = [
658
+ "cc",
659
+ "libc",
660
+ "pkg-config",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "funty"
665
+ version = "2.0.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
668
+
669
+ [[package]]
670
+ name = "futures"
671
+ version = "0.3.32"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
674
+ dependencies = [
675
+ "futures-channel",
676
+ "futures-core",
677
+ "futures-executor",
678
+ "futures-io",
679
+ "futures-sink",
680
+ "futures-task",
681
+ "futures-util",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "futures-channel"
686
+ version = "0.3.32"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
689
+ dependencies = [
690
+ "futures-core",
691
+ "futures-sink",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "futures-core"
696
+ version = "0.3.32"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
699
+
700
+ [[package]]
701
+ name = "futures-executor"
702
+ version = "0.3.32"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
705
+ dependencies = [
706
+ "futures-core",
707
+ "futures-task",
708
+ "futures-util",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "futures-io"
713
+ version = "0.3.32"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
716
+
717
+ [[package]]
718
+ name = "futures-macro"
719
+ version = "0.3.32"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
722
+ dependencies = [
723
+ "proc-macro2",
724
+ "quote",
725
+ "syn 2.0.117",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "futures-sink"
730
+ version = "0.3.32"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
733
+
734
+ [[package]]
735
+ name = "futures-task"
736
+ version = "0.3.32"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
739
+
740
+ [[package]]
741
+ name = "futures-util"
742
+ version = "0.3.32"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
745
+ dependencies = [
746
+ "futures-channel",
747
+ "futures-core",
748
+ "futures-io",
749
+ "futures-macro",
750
+ "futures-sink",
751
+ "futures-task",
752
+ "memchr",
753
+ "pin-project-lite",
754
+ "slab",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "fxhash"
759
+ version = "0.2.1"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
762
+ dependencies = [
763
+ "byteorder",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "getrandom"
768
+ version = "0.2.17"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
771
+ dependencies = [
772
+ "cfg-if",
773
+ "libc",
774
+ "wasi",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "harfbuzz-sys"
779
+ version = "0.5.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "bf8c27ca13930dc4ffe474880040fe9e0f03c2121600dc9c95423624cab3e467"
782
+ dependencies = [
783
+ "cc",
784
+ "core-graphics",
785
+ "core-text",
786
+ "foreign-types",
787
+ "freetype",
788
+ "pkg-config",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "harfbuzz_rs"
793
+ version = "2.0.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "58c18cfc23920d010f7637b86240a5f8892dfdbcb4f0e60828f8a9dc6ff5521d"
796
+ dependencies = [
797
+ "bitflags 1.3.2",
798
+ "harfbuzz-sys",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "hashbrown"
803
+ version = "0.12.3"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
806
+ dependencies = [
807
+ "ahash",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "hashbrown"
812
+ version = "0.14.5"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
815
+
816
+ [[package]]
817
+ name = "hashbrown"
818
+ version = "0.17.1"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
821
+
822
+ [[package]]
823
+ name = "heck"
824
+ version = "0.5.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
827
+
828
+ [[package]]
829
+ name = "home"
830
+ version = "0.5.12"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
833
+ dependencies = [
834
+ "windows-sys 0.61.2",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "imagesize"
839
+ version = "0.14.0"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "09e54e57b4c48b40f7aec75635392b12b3421fa26fe8b4332e63138ed278459c"
842
+
843
+ [[package]]
844
+ name = "indexmap"
845
+ version = "2.14.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
848
+ dependencies = [
849
+ "equivalent",
850
+ "hashbrown 0.17.1",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "indoc"
855
+ version = "2.0.7"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
858
+ dependencies = [
859
+ "rustversion",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "instant"
864
+ version = "0.1.13"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
867
+ dependencies = [
868
+ "cfg-if",
869
+ "js-sys",
870
+ "wasm-bindgen",
871
+ "web-sys",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "itoa"
876
+ version = "1.0.18"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
879
+
880
+ [[package]]
881
+ name = "jpeg-encoder"
882
+ version = "0.6.1"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "b454d911ac55068f53495488d8ccd0646eaa540c033a28ee15b07838afafb01f"
885
+
886
+ [[package]]
887
+ name = "js-sys"
888
+ version = "0.3.100"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
891
+ dependencies = [
892
+ "cfg-if",
893
+ "futures-util",
894
+ "wasm-bindgen",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "kurbo"
899
+ version = "0.13.1"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
902
+ dependencies = [
903
+ "arrayvec",
904
+ "euclid",
905
+ "polycool",
906
+ "smallvec",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "lazy_static"
911
+ version = "1.5.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
914
+
915
+ [[package]]
916
+ name = "libc"
917
+ version = "0.2.186"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
920
+
921
+ [[package]]
922
+ name = "libredox"
923
+ version = "0.1.17"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
926
+ dependencies = [
927
+ "bitflags 2.13.0",
928
+ "libc",
929
+ "plain",
930
+ "redox_syscall",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "linux-raw-sys"
935
+ version = "0.4.15"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
938
+
939
+ [[package]]
940
+ name = "log"
941
+ version = "0.4.32"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
944
+
945
+ [[package]]
946
+ name = "logos"
947
+ version = "0.13.0"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "c000ca4d908ff18ac99b93a062cb8958d331c3220719c52e77cb19cc6ac5d2c1"
950
+ dependencies = [
951
+ "logos-derive",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "logos-codegen"
956
+ version = "0.13.0"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "dc487311295e0002e452025d6b580b77bb17286de87b57138f3b5db711cded68"
959
+ dependencies = [
960
+ "beef",
961
+ "fnv",
962
+ "proc-macro2",
963
+ "quote",
964
+ "regex-syntax",
965
+ "syn 2.0.117",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "logos-derive"
970
+ version = "0.13.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "dbfc0d229f1f42d790440136d941afd806bc9e949e2bcb8faa813b0f00d1267e"
973
+ dependencies = [
974
+ "logos-codegen",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "memchr"
979
+ version = "2.8.1"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
982
+
983
+ [[package]]
984
+ name = "memoffset"
985
+ version = "0.9.1"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
988
+ dependencies = [
989
+ "autocfg",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "minifb"
994
+ version = "0.25.0"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "05eddefadb505d3dcb66a89fa77dd0936e72ec84e891cc8fc36e3c05bfe61103"
997
+ dependencies = [
998
+ "cc",
999
+ "futures",
1000
+ "instant",
1001
+ "js-sys",
1002
+ "libc",
1003
+ "orbclient",
1004
+ "raw-window-handle",
1005
+ "serde",
1006
+ "serde_derive",
1007
+ "wasm-bindgen-futures",
1008
+ "winapi",
1009
+ "x11-dl",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "miniz_oxide"
1014
+ version = "0.8.9"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1017
+ dependencies = [
1018
+ "adler2",
1019
+ "simd-adler32",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "mitex"
1024
+ version = "0.2.4"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "81f1eb466efdd212fe624f8bf24083f21d582f2d08e3b879bc4a059b25969d6c"
1027
+ dependencies = [
1028
+ "mitex-parser",
1029
+ "mitex-spec-gen",
1030
+ "rowan",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "mitex-glob"
1035
+ version = "0.2.4"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "c3074187856f137e3392e906daefa2fdc993175d1c7d55ff1348e3bb9321d415"
1038
+
1039
+ [[package]]
1040
+ name = "mitex-lexer"
1041
+ version = "0.2.4"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "0fd0a245774eed6cbf0df25bc3a9c6cc64445a5ea2c3a241f1c9691d83ae214b"
1044
+ dependencies = [
1045
+ "ecow",
1046
+ "ena",
1047
+ "fxhash",
1048
+ "logos",
1049
+ "mitex-spec",
1050
+ "once_cell",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "mitex-parser"
1055
+ version = "0.2.4"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "1a42a2f86c46d250802262387dfb1d6bb18affd2d99328bbe4dbd12ce294c3a4"
1058
+ dependencies = [
1059
+ "mitex-glob",
1060
+ "mitex-lexer",
1061
+ "mitex-spec",
1062
+ "rowan",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "mitex-spec"
1067
+ version = "0.2.4"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "12ecaa5f36d60e2d64ea5508d1be44b1c19daa50518f5b8425f36697fdc60509"
1070
+ dependencies = [
1071
+ "fxhash",
1072
+ "rkyv",
1073
+ "serde",
1074
+ "serde_json",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "mitex-spec-gen"
1079
+ version = "0.2.4"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "a1e9ef918ec9c2a14e60ebb20275684b483d23afb5c3314127c9eb46ce74ae68"
1082
+ dependencies = [
1083
+ "anyhow",
1084
+ "mitex-spec",
1085
+ "once_cell",
1086
+ "serde",
1087
+ "serde_json",
1088
+ "which",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "num-traits"
1093
+ version = "0.2.19"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1096
+ dependencies = [
1097
+ "autocfg",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "once_cell"
1102
+ version = "1.21.4"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1105
+
1106
+ [[package]]
1107
+ name = "orbclient"
1108
+ version = "0.3.55"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "5df339f526ea9a60e371768d50efc2f2508c7203290731565d1f7a6f71d21747"
1111
+ dependencies = [
1112
+ "libc",
1113
+ "libredox",
1114
+ "sdl2",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "owned_ttf_parser"
1119
+ version = "0.25.1"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
1122
+ dependencies = [
1123
+ "ttf-parser 0.25.1",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "pico-args"
1128
+ version = "0.5.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
1131
+
1132
+ [[package]]
1133
+ name = "pin-project-lite"
1134
+ version = "0.2.17"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1137
+
1138
+ [[package]]
1139
+ name = "pkg-config"
1140
+ version = "0.3.33"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1143
+
1144
+ [[package]]
1145
+ name = "plain"
1146
+ version = "0.2.3"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1149
+
1150
+ [[package]]
1151
+ name = "png"
1152
+ version = "0.18.1"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1155
+ dependencies = [
1156
+ "bitflags 2.13.0",
1157
+ "crc32fast",
1158
+ "fdeflate",
1159
+ "flate2",
1160
+ "miniz_oxide",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "polycool"
1165
+ version = "0.4.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
1168
+ dependencies = [
1169
+ "arrayvec",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "portable-atomic"
1174
+ version = "1.15.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1177
+
1178
+ [[package]]
1179
+ name = "proc-macro2"
1180
+ version = "1.0.106"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1183
+ dependencies = [
1184
+ "unicode-ident",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "ptr_meta"
1189
+ version = "0.1.4"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
1192
+ dependencies = [
1193
+ "ptr_meta_derive",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "ptr_meta_derive"
1198
+ version = "0.1.4"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
1201
+ dependencies = [
1202
+ "proc-macro2",
1203
+ "quote",
1204
+ "syn 1.0.109",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "pyo3"
1209
+ version = "0.22.6"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1212
+ dependencies = [
1213
+ "cfg-if",
1214
+ "indoc",
1215
+ "libc",
1216
+ "memoffset",
1217
+ "once_cell",
1218
+ "portable-atomic",
1219
+ "pyo3-build-config",
1220
+ "pyo3-ffi",
1221
+ "pyo3-macros",
1222
+ "unindent",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "pyo3-build-config"
1227
+ version = "0.22.6"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1230
+ dependencies = [
1231
+ "once_cell",
1232
+ "target-lexicon",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "pyo3-ffi"
1237
+ version = "0.22.6"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1240
+ dependencies = [
1241
+ "libc",
1242
+ "pyo3-build-config",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "pyo3-macros"
1247
+ version = "0.22.6"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1250
+ dependencies = [
1251
+ "proc-macro2",
1252
+ "pyo3-macros-backend",
1253
+ "quote",
1254
+ "syn 2.0.117",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "pyo3-macros-backend"
1259
+ version = "0.22.6"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1262
+ dependencies = [
1263
+ "heck",
1264
+ "proc-macro2",
1265
+ "pyo3-build-config",
1266
+ "quote",
1267
+ "syn 2.0.117",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "quote"
1272
+ version = "1.0.45"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1275
+ dependencies = [
1276
+ "proc-macro2",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "radium"
1281
+ version = "0.7.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1284
+
1285
+ [[package]]
1286
+ name = "raw-window-handle"
1287
+ version = "0.4.3"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41"
1290
+ dependencies = [
1291
+ "cty",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "redox_syscall"
1296
+ version = "0.8.1"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "5b44b894f2a6e36457d665d1e08c3866add6ed5e70050c1b4ba8a8ddedb02ce7"
1299
+ dependencies = [
1300
+ "bitflags 2.13.0",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "regex-syntax"
1305
+ version = "0.6.29"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1308
+
1309
+ [[package]]
1310
+ name = "rend"
1311
+ version = "0.4.2"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
1314
+ dependencies = [
1315
+ "bytecheck",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "rkyv"
1320
+ version = "0.7.46"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
1323
+ dependencies = [
1324
+ "bitvec",
1325
+ "bytecheck",
1326
+ "bytes",
1327
+ "hashbrown 0.12.3",
1328
+ "ptr_meta",
1329
+ "rend",
1330
+ "rkyv_derive",
1331
+ "seahash",
1332
+ "tinyvec",
1333
+ "uuid",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "rkyv_derive"
1338
+ version = "0.7.46"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
1341
+ dependencies = [
1342
+ "proc-macro2",
1343
+ "quote",
1344
+ "syn 1.0.109",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "rowan"
1349
+ version = "0.15.18"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "62f509095fc8cc0c8c8564016771d458079c11a8d857e65861f045145c0d3208"
1352
+ dependencies = [
1353
+ "countme",
1354
+ "hashbrown 0.14.5",
1355
+ "memoffset",
1356
+ "rustc-hash",
1357
+ "text-size",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "roxmltree"
1362
+ version = "0.21.1"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
1365
+ dependencies = [
1366
+ "memchr",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "rustc-hash"
1371
+ version = "1.1.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1374
+
1375
+ [[package]]
1376
+ name = "rustix"
1377
+ version = "0.38.44"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1380
+ dependencies = [
1381
+ "bitflags 2.13.0",
1382
+ "errno",
1383
+ "libc",
1384
+ "linux-raw-sys",
1385
+ "windows-sys 0.59.0",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "rustversion"
1390
+ version = "1.0.22"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1393
+
1394
+ [[package]]
1395
+ name = "sdl2"
1396
+ version = "0.38.0"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "2d42407afc6a8ab67e36f92e80b8ba34cbdc55aaeed05249efe9a2e8d0e9feef"
1399
+ dependencies = [
1400
+ "bitflags 1.3.2",
1401
+ "lazy_static",
1402
+ "libc",
1403
+ "sdl2-sys",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "sdl2-sys"
1408
+ version = "0.38.0"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "3ff61407fc75d4b0bbc93dc7e4d6c196439965fbef8e4a4f003a36095823eac0"
1411
+ dependencies = [
1412
+ "cfg-if",
1413
+ "libc",
1414
+ "version-compare",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "seahash"
1419
+ version = "4.1.0"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1422
+
1423
+ [[package]]
1424
+ name = "serde"
1425
+ version = "1.0.228"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1428
+ dependencies = [
1429
+ "serde_core",
1430
+ "serde_derive",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "serde_core"
1435
+ version = "1.0.228"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1438
+ dependencies = [
1439
+ "serde_derive",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "serde_derive"
1444
+ version = "1.0.228"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1447
+ dependencies = [
1448
+ "proc-macro2",
1449
+ "quote",
1450
+ "syn 2.0.117",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "serde_json"
1455
+ version = "1.0.150"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1458
+ dependencies = [
1459
+ "itoa",
1460
+ "memchr",
1461
+ "serde",
1462
+ "serde_core",
1463
+ "zmij",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "serde_spanned"
1468
+ version = "0.6.9"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1471
+ dependencies = [
1472
+ "serde",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "shlex"
1477
+ version = "2.0.1"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1480
+
1481
+ [[package]]
1482
+ name = "simd-adler32"
1483
+ version = "0.3.9"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1486
+
1487
+ [[package]]
1488
+ name = "simdutf8"
1489
+ version = "0.1.5"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1492
+
1493
+ [[package]]
1494
+ name = "simplecss"
1495
+ version = "0.2.2"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
1498
+ dependencies = [
1499
+ "log",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "siphasher"
1504
+ version = "1.0.3"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1507
+
1508
+ [[package]]
1509
+ name = "slab"
1510
+ version = "0.4.12"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1513
+
1514
+ [[package]]
1515
+ name = "smallvec"
1516
+ version = "1.15.1"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1519
+
1520
+ [[package]]
1521
+ name = "strict-num"
1522
+ version = "0.1.1"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
1525
+ dependencies = [
1526
+ "float-cmp",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "svgtypes"
1531
+ version = "0.16.1"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "695b5790b3131dafa99b3bbfd25a216edb3d216dad9ca208d4657bfb8f2abc3d"
1534
+ dependencies = [
1535
+ "kurbo",
1536
+ "siphasher",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "syn"
1541
+ version = "1.0.109"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1544
+ dependencies = [
1545
+ "proc-macro2",
1546
+ "quote",
1547
+ "unicode-ident",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "syn"
1552
+ version = "2.0.117"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1555
+ dependencies = [
1556
+ "proc-macro2",
1557
+ "quote",
1558
+ "unicode-ident",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "tap"
1563
+ version = "1.0.1"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1566
+
1567
+ [[package]]
1568
+ name = "target-lexicon"
1569
+ version = "0.12.16"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1572
+
1573
+ [[package]]
1574
+ name = "text-size"
1575
+ version = "1.1.1"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
1578
+
1579
+ [[package]]
1580
+ name = "tiny-skia"
1581
+ version = "0.12.0"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
1584
+ dependencies = [
1585
+ "arrayref",
1586
+ "arrayvec",
1587
+ "bytemuck",
1588
+ "cfg-if",
1589
+ "log",
1590
+ "png",
1591
+ "tiny-skia-path",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "tiny-skia-path"
1596
+ version = "0.12.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
1599
+ dependencies = [
1600
+ "arrayref",
1601
+ "bytemuck",
1602
+ "strict-num",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "tinyvec"
1607
+ version = "1.11.0"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1610
+ dependencies = [
1611
+ "tinyvec_macros",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "tinyvec_macros"
1616
+ version = "0.1.1"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1619
+
1620
+ [[package]]
1621
+ name = "toml"
1622
+ version = "0.8.23"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1625
+ dependencies = [
1626
+ "serde",
1627
+ "serde_spanned",
1628
+ "toml_datetime",
1629
+ "toml_edit",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "toml_datetime"
1634
+ version = "0.6.11"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1637
+ dependencies = [
1638
+ "serde",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "toml_edit"
1643
+ version = "0.22.27"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1646
+ dependencies = [
1647
+ "indexmap",
1648
+ "serde",
1649
+ "serde_spanned",
1650
+ "toml_datetime",
1651
+ "toml_write",
1652
+ "winnow",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "toml_write"
1657
+ version = "0.1.2"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1660
+
1661
+ [[package]]
1662
+ name = "ttf-parser"
1663
+ version = "0.21.1"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
1666
+
1667
+ [[package]]
1668
+ name = "ttf-parser"
1669
+ version = "0.25.1"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
1672
+
1673
+ [[package]]
1674
+ name = "unicode-ident"
1675
+ version = "1.0.24"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1678
+
1679
+ [[package]]
1680
+ name = "unindent"
1681
+ version = "0.2.4"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1684
+
1685
+ [[package]]
1686
+ name = "usvg"
1687
+ version = "0.47.0"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "d46cf96c5f498d36b7a9693bc6a7075c0bb9303189d61b2249b0dc3d309c07de"
1690
+ dependencies = [
1691
+ "base64",
1692
+ "data-url",
1693
+ "flate2",
1694
+ "imagesize",
1695
+ "kurbo",
1696
+ "log",
1697
+ "pico-args",
1698
+ "roxmltree",
1699
+ "simplecss",
1700
+ "siphasher",
1701
+ "strict-num",
1702
+ "svgtypes",
1703
+ "tiny-skia-path",
1704
+ "xmlwriter",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "uuid"
1709
+ version = "1.23.3"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
1712
+ dependencies = [
1713
+ "js-sys",
1714
+ "wasm-bindgen",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "version-compare"
1719
+ version = "0.1.1"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
1722
+
1723
+ [[package]]
1724
+ name = "version_check"
1725
+ version = "0.9.5"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1728
+
1729
+ [[package]]
1730
+ name = "wasi"
1731
+ version = "0.11.1+wasi-snapshot-preview1"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1734
+
1735
+ [[package]]
1736
+ name = "wasm-bindgen"
1737
+ version = "0.2.123"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
1740
+ dependencies = [
1741
+ "cfg-if",
1742
+ "once_cell",
1743
+ "rustversion",
1744
+ "wasm-bindgen-macro",
1745
+ "wasm-bindgen-shared",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "wasm-bindgen-futures"
1750
+ version = "0.4.73"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "54568702fabf5d4849ce2b90fadfa64168a097eaf4b351ce9df8b687a0086aaf"
1753
+ dependencies = [
1754
+ "js-sys",
1755
+ "wasm-bindgen",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "wasm-bindgen-macro"
1760
+ version = "0.2.123"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
1763
+ dependencies = [
1764
+ "quote",
1765
+ "wasm-bindgen-macro-support",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "wasm-bindgen-macro-support"
1770
+ version = "0.2.123"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
1773
+ dependencies = [
1774
+ "bumpalo",
1775
+ "proc-macro2",
1776
+ "quote",
1777
+ "syn 2.0.117",
1778
+ "wasm-bindgen-shared",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "wasm-bindgen-shared"
1783
+ version = "0.2.123"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
1786
+ dependencies = [
1787
+ "unicode-ident",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "web-sys"
1792
+ version = "0.3.100"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "6e0871acf327f283dc6da28a1696cdc64fb355ba9f935d052021fa77f35cce69"
1795
+ dependencies = [
1796
+ "js-sys",
1797
+ "wasm-bindgen",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "which"
1802
+ version = "5.0.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14"
1805
+ dependencies = [
1806
+ "either",
1807
+ "home",
1808
+ "once_cell",
1809
+ "rustix",
1810
+ "windows-sys 0.48.0",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "winapi"
1815
+ version = "0.3.9"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1818
+ dependencies = [
1819
+ "winapi-i686-pc-windows-gnu",
1820
+ "winapi-x86_64-pc-windows-gnu",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "winapi-i686-pc-windows-gnu"
1825
+ version = "0.4.0"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1828
+
1829
+ [[package]]
1830
+ name = "winapi-x86_64-pc-windows-gnu"
1831
+ version = "0.4.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1834
+
1835
+ [[package]]
1836
+ name = "windows-link"
1837
+ version = "0.2.1"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1840
+
1841
+ [[package]]
1842
+ name = "windows-sys"
1843
+ version = "0.48.0"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1846
+ dependencies = [
1847
+ "windows-targets 0.48.5",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "windows-sys"
1852
+ version = "0.59.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1855
+ dependencies = [
1856
+ "windows-targets 0.52.6",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "windows-sys"
1861
+ version = "0.61.2"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1864
+ dependencies = [
1865
+ "windows-link",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "windows-targets"
1870
+ version = "0.48.5"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1873
+ dependencies = [
1874
+ "windows_aarch64_gnullvm 0.48.5",
1875
+ "windows_aarch64_msvc 0.48.5",
1876
+ "windows_i686_gnu 0.48.5",
1877
+ "windows_i686_msvc 0.48.5",
1878
+ "windows_x86_64_gnu 0.48.5",
1879
+ "windows_x86_64_gnullvm 0.48.5",
1880
+ "windows_x86_64_msvc 0.48.5",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "windows-targets"
1885
+ version = "0.52.6"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1888
+ dependencies = [
1889
+ "windows_aarch64_gnullvm 0.52.6",
1890
+ "windows_aarch64_msvc 0.52.6",
1891
+ "windows_i686_gnu 0.52.6",
1892
+ "windows_i686_gnullvm",
1893
+ "windows_i686_msvc 0.52.6",
1894
+ "windows_x86_64_gnu 0.52.6",
1895
+ "windows_x86_64_gnullvm 0.52.6",
1896
+ "windows_x86_64_msvc 0.52.6",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "windows_aarch64_gnullvm"
1901
+ version = "0.48.5"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1904
+
1905
+ [[package]]
1906
+ name = "windows_aarch64_gnullvm"
1907
+ version = "0.52.6"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1910
+
1911
+ [[package]]
1912
+ name = "windows_aarch64_msvc"
1913
+ version = "0.48.5"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1916
+
1917
+ [[package]]
1918
+ name = "windows_aarch64_msvc"
1919
+ version = "0.52.6"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1922
+
1923
+ [[package]]
1924
+ name = "windows_i686_gnu"
1925
+ version = "0.48.5"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1928
+
1929
+ [[package]]
1930
+ name = "windows_i686_gnu"
1931
+ version = "0.52.6"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1934
+
1935
+ [[package]]
1936
+ name = "windows_i686_gnullvm"
1937
+ version = "0.52.6"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1940
+
1941
+ [[package]]
1942
+ name = "windows_i686_msvc"
1943
+ version = "0.48.5"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1946
+
1947
+ [[package]]
1948
+ name = "windows_i686_msvc"
1949
+ version = "0.52.6"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1952
+
1953
+ [[package]]
1954
+ name = "windows_x86_64_gnu"
1955
+ version = "0.48.5"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1958
+
1959
+ [[package]]
1960
+ name = "windows_x86_64_gnu"
1961
+ version = "0.52.6"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1964
+
1965
+ [[package]]
1966
+ name = "windows_x86_64_gnullvm"
1967
+ version = "0.48.5"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1970
+
1971
+ [[package]]
1972
+ name = "windows_x86_64_gnullvm"
1973
+ version = "0.52.6"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1976
+
1977
+ [[package]]
1978
+ name = "windows_x86_64_msvc"
1979
+ version = "0.48.5"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1982
+
1983
+ [[package]]
1984
+ name = "windows_x86_64_msvc"
1985
+ version = "0.52.6"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1988
+
1989
+ [[package]]
1990
+ name = "winnow"
1991
+ version = "0.7.15"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1994
+ dependencies = [
1995
+ "memchr",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "wyz"
2000
+ version = "0.5.1"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2003
+ dependencies = [
2004
+ "tap",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "x11-dl"
2009
+ version = "2.21.0"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
2012
+ dependencies = [
2013
+ "libc",
2014
+ "once_cell",
2015
+ "pkg-config",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "xmlwriter"
2020
+ version = "0.1.0"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
2023
+
2024
+ [[package]]
2025
+ name = "zmij"
2026
+ version = "1.0.21"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"