typst 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2840 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.7"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
16
+ dependencies = [
17
+ "getrandom",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aho-corasick"
24
+ version = "1.1.2"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
27
+ dependencies = [
28
+ "memchr",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "android-tzdata"
33
+ version = "0.1.1"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
36
+
37
+ [[package]]
38
+ name = "android_system_properties"
39
+ version = "0.1.5"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
42
+ dependencies = [
43
+ "libc",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "approx"
48
+ version = "0.5.1"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
51
+ dependencies = [
52
+ "num-traits",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "arrayref"
57
+ version = "0.3.7"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
60
+
61
+ [[package]]
62
+ name = "arrayvec"
63
+ version = "0.7.4"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
66
+
67
+ [[package]]
68
+ name = "autocfg"
69
+ version = "1.1.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
72
+
73
+ [[package]]
74
+ name = "az"
75
+ version = "1.2.1"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973"
78
+
79
+ [[package]]
80
+ name = "base64"
81
+ version = "0.21.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
84
+
85
+ [[package]]
86
+ name = "biblatex"
87
+ version = "0.8.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "2e41df82f0d1c4919d946bb0c7c3d179b6071246243d308a1bdee6cfecee3bc7"
90
+ dependencies = [
91
+ "numerals",
92
+ "paste",
93
+ "strum",
94
+ "unicode-normalization",
95
+ "unscanny",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "bincode"
100
+ version = "1.3.3"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
103
+ dependencies = [
104
+ "serde",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "bindgen"
109
+ version = "0.69.1"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
112
+ dependencies = [
113
+ "bitflags 2.4.1",
114
+ "cexpr",
115
+ "clang-sys",
116
+ "lazy_static",
117
+ "lazycell",
118
+ "peeking_take_while",
119
+ "proc-macro2",
120
+ "quote",
121
+ "regex",
122
+ "rustc-hash",
123
+ "shlex",
124
+ "syn 2.0.39",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "bit-set"
129
+ version = "0.5.3"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
132
+ dependencies = [
133
+ "bit-vec",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "bit-vec"
138
+ version = "0.6.3"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
141
+
142
+ [[package]]
143
+ name = "bitflags"
144
+ version = "1.3.2"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
147
+
148
+ [[package]]
149
+ name = "bitflags"
150
+ version = "2.4.1"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
153
+ dependencies = [
154
+ "serde",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "bitvec"
159
+ version = "1.0.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
162
+ dependencies = [
163
+ "funty",
164
+ "radium",
165
+ "tap",
166
+ "wyz",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "bumpalo"
171
+ version = "3.14.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
174
+
175
+ [[package]]
176
+ name = "bytecheck"
177
+ version = "0.6.11"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
180
+ dependencies = [
181
+ "bytecheck_derive",
182
+ "ptr_meta",
183
+ "simdutf8",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "bytecheck_derive"
188
+ version = "0.6.11"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
191
+ dependencies = [
192
+ "proc-macro2",
193
+ "quote",
194
+ "syn 1.0.109",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "bytemuck"
199
+ version = "1.14.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
202
+
203
+ [[package]]
204
+ name = "byteorder"
205
+ version = "1.5.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
208
+
209
+ [[package]]
210
+ name = "cc"
211
+ version = "1.0.83"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
214
+ dependencies = [
215
+ "libc",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "cexpr"
220
+ version = "0.6.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
223
+ dependencies = [
224
+ "nom",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "cfg-if"
229
+ version = "1.0.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
232
+
233
+ [[package]]
234
+ name = "chinese-number"
235
+ version = "0.7.3"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "d9cec9efb10b00914876c7e7b1fdaec572b888443b4046cd11ba91eb8c5a1ccb"
238
+ dependencies = [
239
+ "chinese-variant",
240
+ "enum-ordinalize",
241
+ "num-bigint",
242
+ "num-traits",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "chinese-variant"
247
+ version = "1.0.9"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "aeea139b89efab957972956e5d3e4efb66a6c261f726abf6911040cc8ef700f7"
250
+
251
+ [[package]]
252
+ name = "chrono"
253
+ version = "0.4.31"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
256
+ dependencies = [
257
+ "android-tzdata",
258
+ "iana-time-zone",
259
+ "num-traits",
260
+ "windows-targets",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "ciborium"
265
+ version = "0.2.1"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926"
268
+ dependencies = [
269
+ "ciborium-io",
270
+ "ciborium-ll",
271
+ "serde",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "ciborium-io"
276
+ version = "0.2.1"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656"
279
+
280
+ [[package]]
281
+ name = "ciborium-ll"
282
+ version = "0.2.1"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b"
285
+ dependencies = [
286
+ "ciborium-io",
287
+ "half",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "citationberg"
292
+ version = "0.1.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "4c857faf24e89710f105b623c174508070a9e11e056a749f251ca4c56f59ad88"
295
+ dependencies = [
296
+ "quick-xml 0.28.2",
297
+ "serde",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "clang-sys"
302
+ version = "1.6.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
305
+ dependencies = [
306
+ "glob",
307
+ "libc",
308
+ "libloading",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "cobs"
313
+ version = "0.2.3"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
316
+
317
+ [[package]]
318
+ name = "codespan-reporting"
319
+ version = "0.11.1"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
322
+ dependencies = [
323
+ "termcolor",
324
+ "unicode-width",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "color_quant"
329
+ version = "1.1.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
332
+
333
+ [[package]]
334
+ name = "comemo"
335
+ version = "0.3.0"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "28a097f142aeb5b03af73595536cd55f5d649fca4d656379aac86b3af133cf92"
338
+ dependencies = [
339
+ "comemo-macros",
340
+ "siphasher 0.3.11",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "comemo-macros"
345
+ version = "0.3.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "168cc09917f6a014a4cf6ed166d1b541a20a768c60f9cc348f25203ee8312940"
348
+ dependencies = [
349
+ "proc-macro2",
350
+ "quote",
351
+ "syn 1.0.109",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "core-foundation-sys"
356
+ version = "0.8.4"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
359
+
360
+ [[package]]
361
+ name = "core_maths"
362
+ version = "0.1.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "e3b02505ccb8c50b0aa21ace0fc08c3e53adebd4e58caa18a36152803c7709a3"
365
+ dependencies = [
366
+ "libm",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "crc32fast"
371
+ version = "1.3.2"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
374
+ dependencies = [
375
+ "cfg-if",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "csv"
380
+ version = "1.3.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
383
+ dependencies = [
384
+ "csv-core",
385
+ "itoa",
386
+ "ryu",
387
+ "serde",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "csv-core"
392
+ version = "0.1.11"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
395
+ dependencies = [
396
+ "memchr",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "data-url"
401
+ version = "0.3.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
404
+
405
+ [[package]]
406
+ name = "deranged"
407
+ version = "0.3.9"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
410
+ dependencies = [
411
+ "powerfmt",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "dirs"
416
+ version = "5.0.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
419
+ dependencies = [
420
+ "dirs-sys",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "dirs-sys"
425
+ version = "0.4.1"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
428
+ dependencies = [
429
+ "libc",
430
+ "option-ext",
431
+ "redox_users",
432
+ "windows-sys",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "displaydoc"
437
+ version = "0.2.4"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
440
+ dependencies = [
441
+ "proc-macro2",
442
+ "quote",
443
+ "syn 2.0.39",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "downcast-rs"
448
+ version = "1.2.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
451
+
452
+ [[package]]
453
+ name = "ecow"
454
+ version = "0.2.0"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "e6ea5e3f9cda726431da9d1a8d5a29785d544b31e98e1ca7a210906244002e02"
457
+ dependencies = [
458
+ "serde",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "embedded-io"
463
+ version = "0.4.0"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
466
+
467
+ [[package]]
468
+ name = "enum-ordinalize"
469
+ version = "3.1.15"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
472
+ dependencies = [
473
+ "num-bigint",
474
+ "num-traits",
475
+ "proc-macro2",
476
+ "quote",
477
+ "syn 2.0.39",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "env_logger"
482
+ version = "0.10.1"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
485
+ dependencies = [
486
+ "humantime",
487
+ "is-terminal",
488
+ "log",
489
+ "regex",
490
+ "termcolor",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "env_proxy"
495
+ version = "0.4.1"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "3a5019be18538406a43b5419a5501461f0c8b49ea7dfda0cfc32f4e51fc44be1"
498
+ dependencies = [
499
+ "log",
500
+ "url",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "equivalent"
505
+ version = "1.0.1"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
508
+
509
+ [[package]]
510
+ name = "errno"
511
+ version = "0.3.7"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8"
514
+ dependencies = [
515
+ "libc",
516
+ "windows-sys",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "fancy-regex"
521
+ version = "0.11.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
524
+ dependencies = [
525
+ "bit-set",
526
+ "regex",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "fast-srgb8"
531
+ version = "1.0.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
534
+
535
+ [[package]]
536
+ name = "fdeflate"
537
+ version = "0.3.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868"
540
+ dependencies = [
541
+ "simd-adler32",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "filetime"
546
+ version = "0.2.22"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
549
+ dependencies = [
550
+ "cfg-if",
551
+ "libc",
552
+ "redox_syscall 0.3.5",
553
+ "windows-sys",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "flate2"
558
+ version = "1.0.28"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
561
+ dependencies = [
562
+ "crc32fast",
563
+ "miniz_oxide",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "float-cmp"
568
+ version = "0.9.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
571
+
572
+ [[package]]
573
+ name = "fnv"
574
+ version = "1.0.7"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
577
+
578
+ [[package]]
579
+ name = "fontconfig-parser"
580
+ version = "0.5.3"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4"
583
+ dependencies = [
584
+ "roxmltree",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "fontdb"
589
+ version = "0.15.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38"
592
+ dependencies = [
593
+ "fontconfig-parser",
594
+ "log",
595
+ "memmap2",
596
+ "slotmap",
597
+ "tinyvec",
598
+ "ttf-parser",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "form_urlencoded"
603
+ version = "1.2.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
606
+ dependencies = [
607
+ "percent-encoding",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "funty"
612
+ version = "2.0.0"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
615
+
616
+ [[package]]
617
+ name = "getrandom"
618
+ version = "0.2.11"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
621
+ dependencies = [
622
+ "cfg-if",
623
+ "libc",
624
+ "wasi",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "gif"
629
+ version = "0.12.0"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
632
+ dependencies = [
633
+ "color_quant",
634
+ "weezl",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "glob"
639
+ version = "0.3.1"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
642
+
643
+ [[package]]
644
+ name = "half"
645
+ version = "1.8.2"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
648
+
649
+ [[package]]
650
+ name = "hashbrown"
651
+ version = "0.12.3"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
654
+ dependencies = [
655
+ "ahash",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "hashbrown"
660
+ version = "0.14.2"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
663
+
664
+ [[package]]
665
+ name = "hayagriva"
666
+ version = "0.4.0"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "c5af3d464a6b5ae882f15fe1da4e696fd96b77fee78ded933e0ad81d1d87cbc5"
669
+ dependencies = [
670
+ "biblatex",
671
+ "ciborium",
672
+ "citationberg",
673
+ "indexmap",
674
+ "numerals",
675
+ "paste",
676
+ "rkyv",
677
+ "serde",
678
+ "serde_yaml",
679
+ "thiserror",
680
+ "unic-langid",
681
+ "unicode-segmentation",
682
+ "unscanny",
683
+ "url",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "heck"
688
+ version = "0.4.1"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
691
+
692
+ [[package]]
693
+ name = "hermit-abi"
694
+ version = "0.3.3"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
697
+
698
+ [[package]]
699
+ name = "humantime"
700
+ version = "2.1.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
703
+
704
+ [[package]]
705
+ name = "hypher"
706
+ version = "0.1.4"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "94bf16dd62ea2bec617a6f8a3e1ba03107311783069a647787ac689d1f35321e"
709
+
710
+ [[package]]
711
+ name = "iana-time-zone"
712
+ version = "0.1.58"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
715
+ dependencies = [
716
+ "android_system_properties",
717
+ "core-foundation-sys",
718
+ "iana-time-zone-haiku",
719
+ "js-sys",
720
+ "wasm-bindgen",
721
+ "windows-core",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "iana-time-zone-haiku"
726
+ version = "0.1.2"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
729
+ dependencies = [
730
+ "cc",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "icu_collections"
735
+ version = "1.4.0"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "137d96353afc8544d437e8a99eceb10ab291352699573b0de5b08bda38c78c60"
738
+ dependencies = [
739
+ "displaydoc",
740
+ "serde",
741
+ "yoke",
742
+ "zerofrom",
743
+ "zerovec",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "icu_locid"
748
+ version = "1.4.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "5c0aa2536adc14c07e2a521e95512b75ed8ef832f0fdf9299d4a0a45d2be2a9d"
751
+ dependencies = [
752
+ "displaydoc",
753
+ "litemap",
754
+ "tinystr",
755
+ "writeable",
756
+ "zerovec",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "icu_locid_transform"
761
+ version = "1.4.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "57c17d8f6524fdca4471101dd71f0a132eb6382b5d6d7f2970441cb25f6f435a"
764
+ dependencies = [
765
+ "displaydoc",
766
+ "icu_locid",
767
+ "icu_locid_transform_data",
768
+ "icu_provider",
769
+ "tinystr",
770
+ "zerovec",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "icu_locid_transform_data"
775
+ version = "1.4.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "545c6c3e8bf9580e2dafee8de6f9ec14826aaf359787789c7724f1f85f47d3dc"
778
+
779
+ [[package]]
780
+ name = "icu_properties"
781
+ version = "1.4.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "976e296217453af983efa25f287a4c1da04b9a63bf1ed63719455068e4453eb5"
784
+ dependencies = [
785
+ "displaydoc",
786
+ "icu_collections",
787
+ "icu_locid_transform",
788
+ "icu_properties_data",
789
+ "icu_provider",
790
+ "serde",
791
+ "tinystr",
792
+ "zerovec",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "icu_properties_data"
797
+ version = "1.4.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "f6a86c0e384532b06b6c104814f9c1b13bcd5b64409001c0d05713a1f3529d99"
800
+
801
+ [[package]]
802
+ name = "icu_provider"
803
+ version = "1.4.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "ba58e782287eb6950247abbf11719f83f5d4e4a5c1f2cd490d30a334bc47c2f4"
806
+ dependencies = [
807
+ "displaydoc",
808
+ "icu_locid",
809
+ "icu_provider_macros",
810
+ "postcard",
811
+ "serde",
812
+ "stable_deref_trait",
813
+ "tinystr",
814
+ "writeable",
815
+ "yoke",
816
+ "zerofrom",
817
+ "zerovec",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "icu_provider_adapters"
822
+ version = "1.4.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "a229f978260da7c3aabb68cb7dc7316589936680570fe55e50fdd3f97711a4dd"
825
+ dependencies = [
826
+ "icu_locid",
827
+ "icu_locid_transform",
828
+ "icu_provider",
829
+ "tinystr",
830
+ "zerovec",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "icu_provider_blob"
835
+ version = "1.4.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "4a7202cddda672db167c6352719959e9b01cb1ca576d32fa79103f61b5a73601"
838
+ dependencies = [
839
+ "icu_provider",
840
+ "postcard",
841
+ "serde",
842
+ "writeable",
843
+ "zerotrie",
844
+ "zerovec",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "icu_provider_macros"
849
+ version = "1.4.0"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "d2abdd3a62551e8337af119c5899e600ca0c88ec8f23a46c60ba216c803dcf1a"
852
+ dependencies = [
853
+ "proc-macro2",
854
+ "quote",
855
+ "syn 2.0.39",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "icu_segmenter"
860
+ version = "1.4.0"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "b2dc1e8f4ba33a6a4956770ac5c08570f255d6605519fb3a859a0c0a270a2f8f"
863
+ dependencies = [
864
+ "core_maths",
865
+ "displaydoc",
866
+ "icu_collections",
867
+ "icu_locid",
868
+ "icu_provider",
869
+ "icu_segmenter_data",
870
+ "serde",
871
+ "utf8_iter",
872
+ "zerovec",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "icu_segmenter_data"
877
+ version = "1.4.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "3673d6698dcffce08cfe8fc5da3c11c3f2c663d5d6137fd58ab2cbf44235ab46"
880
+
881
+ [[package]]
882
+ name = "idna"
883
+ version = "0.5.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
886
+ dependencies = [
887
+ "unicode-bidi",
888
+ "unicode-normalization",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "image"
893
+ version = "0.24.7"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711"
896
+ dependencies = [
897
+ "bytemuck",
898
+ "byteorder",
899
+ "color_quant",
900
+ "gif",
901
+ "jpeg-decoder",
902
+ "num-rational",
903
+ "num-traits",
904
+ "png",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "imagesize"
909
+ version = "0.12.0"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284"
912
+
913
+ [[package]]
914
+ name = "indexmap"
915
+ version = "2.1.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
918
+ dependencies = [
919
+ "equivalent",
920
+ "hashbrown 0.14.2",
921
+ "serde",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "indexmap-nostd"
926
+ version = "0.4.0"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590"
929
+
930
+ [[package]]
931
+ name = "is-terminal"
932
+ version = "0.4.9"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
935
+ dependencies = [
936
+ "hermit-abi",
937
+ "rustix",
938
+ "windows-sys",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "itoa"
943
+ version = "1.0.9"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
946
+
947
+ [[package]]
948
+ name = "jpeg-decoder"
949
+ version = "0.3.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
952
+
953
+ [[package]]
954
+ name = "js-sys"
955
+ version = "0.3.65"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
958
+ dependencies = [
959
+ "wasm-bindgen",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "kurbo"
964
+ version = "0.9.5"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "bd85a5776cd9500c2e2059c8c76c3b01528566b7fcbaf8098b55a33fc298849b"
967
+ dependencies = [
968
+ "arrayvec",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "lazy_static"
973
+ version = "1.4.0"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
976
+
977
+ [[package]]
978
+ name = "lazycell"
979
+ version = "1.3.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
982
+
983
+ [[package]]
984
+ name = "libc"
985
+ version = "0.2.150"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
988
+
989
+ [[package]]
990
+ name = "libloading"
991
+ version = "0.7.4"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
994
+ dependencies = [
995
+ "cfg-if",
996
+ "winapi",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "libm"
1001
+ version = "0.2.8"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
1004
+
1005
+ [[package]]
1006
+ name = "libredox"
1007
+ version = "0.0.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
1010
+ dependencies = [
1011
+ "bitflags 2.4.1",
1012
+ "libc",
1013
+ "redox_syscall 0.4.1",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "line-wrap"
1018
+ version = "0.1.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
1021
+ dependencies = [
1022
+ "safemem",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "linked-hash-map"
1027
+ version = "0.5.6"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1030
+
1031
+ [[package]]
1032
+ name = "linux-raw-sys"
1033
+ version = "0.4.11"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
1036
+
1037
+ [[package]]
1038
+ name = "lipsum"
1039
+ version = "0.9.0"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "9c5e9ef2d2ad6fe67a59ace27c203c8d3a71d195532ee82e3bbe0d5f9a9ca541"
1042
+ dependencies = [
1043
+ "rand",
1044
+ "rand_chacha",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "litemap"
1049
+ version = "0.7.2"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "f9d642685b028806386b2b6e75685faadd3eb65a85fff7df711ce18446a422da"
1052
+ dependencies = [
1053
+ "serde",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "log"
1058
+ version = "0.4.20"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1061
+
1062
+ [[package]]
1063
+ name = "magnus"
1064
+ version = "0.6.2"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
1067
+ dependencies = [
1068
+ "magnus-macros",
1069
+ "rb-sys",
1070
+ "rb-sys-env",
1071
+ "seq-macro",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "magnus-macros"
1076
+ version = "0.6.0"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
1079
+ dependencies = [
1080
+ "proc-macro2",
1081
+ "quote",
1082
+ "syn 2.0.39",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "memchr"
1087
+ version = "2.6.4"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
1090
+
1091
+ [[package]]
1092
+ name = "memmap2"
1093
+ version = "0.8.0"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
1096
+ dependencies = [
1097
+ "libc",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "minimal-lexical"
1102
+ version = "0.2.1"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1105
+
1106
+ [[package]]
1107
+ name = "miniz_oxide"
1108
+ version = "0.7.1"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
1111
+ dependencies = [
1112
+ "adler",
1113
+ "simd-adler32",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "nom"
1118
+ version = "7.1.3"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1121
+ dependencies = [
1122
+ "memchr",
1123
+ "minimal-lexical",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "num-bigint"
1128
+ version = "0.4.4"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
1131
+ dependencies = [
1132
+ "autocfg",
1133
+ "num-integer",
1134
+ "num-traits",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "num-integer"
1139
+ version = "0.1.45"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1142
+ dependencies = [
1143
+ "autocfg",
1144
+ "num-traits",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "num-rational"
1149
+ version = "0.4.1"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1152
+ dependencies = [
1153
+ "autocfg",
1154
+ "num-integer",
1155
+ "num-traits",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "num-traits"
1160
+ version = "0.2.17"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
1163
+ dependencies = [
1164
+ "autocfg",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "numerals"
1169
+ version = "0.1.4"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "e25be21376a772d15f97ae789845340a9651d3c4246ff5ebb6a2b35f9c37bd31"
1172
+
1173
+ [[package]]
1174
+ name = "once_cell"
1175
+ version = "1.18.0"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
1178
+
1179
+ [[package]]
1180
+ name = "option-ext"
1181
+ version = "0.2.0"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1184
+
1185
+ [[package]]
1186
+ name = "palette"
1187
+ version = "0.7.3"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "b2e2f34147767aa758aa649415b50a69eeb46a67f9dc7db8011eeb3d84b351dc"
1190
+ dependencies = [
1191
+ "approx",
1192
+ "fast-srgb8",
1193
+ "libm",
1194
+ "palette_derive",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "palette_derive"
1199
+ version = "0.7.3"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "b7db010ec5ff3d4385e4f133916faacd9dad0f6a09394c92d825b3aed310fa0a"
1202
+ dependencies = [
1203
+ "proc-macro2",
1204
+ "quote",
1205
+ "syn 2.0.39",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "paste"
1210
+ version = "1.0.14"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
1213
+
1214
+ [[package]]
1215
+ name = "pathdiff"
1216
+ version = "0.2.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
1219
+
1220
+ [[package]]
1221
+ name = "pdf-writer"
1222
+ version = "0.9.2"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "644b654f2de28457bf1e25a4905a76a563d1128a33ce60cf042f721f6818feaf"
1225
+ dependencies = [
1226
+ "bitflags 1.3.2",
1227
+ "itoa",
1228
+ "memchr",
1229
+ "ryu",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "peeking_take_while"
1234
+ version = "0.1.2"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1237
+
1238
+ [[package]]
1239
+ name = "percent-encoding"
1240
+ version = "2.3.1"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1243
+
1244
+ [[package]]
1245
+ name = "pico-args"
1246
+ version = "0.5.0"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
1249
+
1250
+ [[package]]
1251
+ name = "pin-project-lite"
1252
+ version = "0.2.13"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1255
+
1256
+ [[package]]
1257
+ name = "pixglyph"
1258
+ version = "0.2.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "f67591f21f6668e63c1cd85adab066ac8a92bc7b962668dd8042197a6e4b8f8f"
1261
+ dependencies = [
1262
+ "ttf-parser",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "plist"
1267
+ version = "1.6.0"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef"
1270
+ dependencies = [
1271
+ "base64",
1272
+ "indexmap",
1273
+ "line-wrap",
1274
+ "quick-xml 0.31.0",
1275
+ "serde",
1276
+ "time",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "png"
1281
+ version = "0.17.10"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64"
1284
+ dependencies = [
1285
+ "bitflags 1.3.2",
1286
+ "crc32fast",
1287
+ "fdeflate",
1288
+ "flate2",
1289
+ "miniz_oxide",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "postcard"
1294
+ version = "1.0.8"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8"
1297
+ dependencies = [
1298
+ "cobs",
1299
+ "embedded-io",
1300
+ "serde",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "powerfmt"
1305
+ version = "0.2.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1308
+
1309
+ [[package]]
1310
+ name = "ppv-lite86"
1311
+ version = "0.2.17"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1314
+
1315
+ [[package]]
1316
+ name = "proc-macro2"
1317
+ version = "1.0.69"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
1320
+ dependencies = [
1321
+ "unicode-ident",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "psm"
1326
+ version = "0.1.21"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
1329
+ dependencies = [
1330
+ "cc",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "ptr_meta"
1335
+ version = "0.1.4"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
1338
+ dependencies = [
1339
+ "ptr_meta_derive",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "ptr_meta_derive"
1344
+ version = "0.1.4"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
1347
+ dependencies = [
1348
+ "proc-macro2",
1349
+ "quote",
1350
+ "syn 1.0.109",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "quick-xml"
1355
+ version = "0.28.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
1358
+ dependencies = [
1359
+ "memchr",
1360
+ "serde",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "quick-xml"
1365
+ version = "0.31.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
1368
+ dependencies = [
1369
+ "memchr",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "quote"
1374
+ version = "1.0.33"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
1377
+ dependencies = [
1378
+ "proc-macro2",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "radium"
1383
+ version = "0.7.0"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1386
+
1387
+ [[package]]
1388
+ name = "rand"
1389
+ version = "0.8.5"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1392
+ dependencies = [
1393
+ "rand_core",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "rand_chacha"
1398
+ version = "0.3.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1401
+ dependencies = [
1402
+ "ppv-lite86",
1403
+ "rand_core",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "rand_core"
1408
+ version = "0.6.4"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1411
+
1412
+ [[package]]
1413
+ name = "rb-sys"
1414
+ version = "0.9.83"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "7e5b8d560b60790a3e60e56e73a8c7be88ac14e6af39fc82b5eca72c71753840"
1417
+ dependencies = [
1418
+ "rb-sys-build",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "rb-sys-build"
1423
+ version = "0.9.83"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "c2d2bfd00002007d7e9ad93d0397437933040caf452d260c26dbef5fd95ae1a6"
1426
+ dependencies = [
1427
+ "bindgen",
1428
+ "lazy_static",
1429
+ "proc-macro2",
1430
+ "quote",
1431
+ "regex",
1432
+ "shell-words",
1433
+ "syn 2.0.39",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "rb-sys-env"
1438
+ version = "0.1.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
1441
+
1442
+ [[package]]
1443
+ name = "rctree"
1444
+ version = "0.5.0"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f"
1447
+
1448
+ [[package]]
1449
+ name = "redox_syscall"
1450
+ version = "0.3.5"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
1453
+ dependencies = [
1454
+ "bitflags 1.3.2",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "redox_syscall"
1459
+ version = "0.4.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1462
+ dependencies = [
1463
+ "bitflags 1.3.2",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "redox_users"
1468
+ version = "0.4.4"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
1471
+ dependencies = [
1472
+ "getrandom",
1473
+ "libredox",
1474
+ "thiserror",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "regex"
1479
+ version = "1.10.2"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
1482
+ dependencies = [
1483
+ "aho-corasick",
1484
+ "memchr",
1485
+ "regex-automata",
1486
+ "regex-syntax 0.8.2",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "regex-automata"
1491
+ version = "0.4.3"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
1494
+ dependencies = [
1495
+ "aho-corasick",
1496
+ "memchr",
1497
+ "regex-syntax 0.8.2",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "regex-syntax"
1502
+ version = "0.7.5"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
1505
+
1506
+ [[package]]
1507
+ name = "regex-syntax"
1508
+ version = "0.8.2"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
1511
+
1512
+ [[package]]
1513
+ name = "rend"
1514
+ version = "0.4.1"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd"
1517
+ dependencies = [
1518
+ "bytecheck",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "resvg"
1523
+ version = "0.36.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "cc7980f653f9a7db31acff916a262c3b78c562919263edea29bf41a056e20497"
1526
+ dependencies = [
1527
+ "gif",
1528
+ "jpeg-decoder",
1529
+ "log",
1530
+ "pico-args",
1531
+ "png",
1532
+ "rgb",
1533
+ "svgtypes",
1534
+ "tiny-skia",
1535
+ "usvg",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "rgb"
1540
+ version = "0.8.37"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8"
1543
+ dependencies = [
1544
+ "bytemuck",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "rkyv"
1549
+ version = "0.7.42"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
1552
+ dependencies = [
1553
+ "bitvec",
1554
+ "bytecheck",
1555
+ "hashbrown 0.12.3",
1556
+ "ptr_meta",
1557
+ "rend",
1558
+ "rkyv_derive",
1559
+ "seahash",
1560
+ "tinyvec",
1561
+ "uuid",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "rkyv_derive"
1566
+ version = "0.7.42"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
1569
+ dependencies = [
1570
+ "proc-macro2",
1571
+ "quote",
1572
+ "syn 1.0.109",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "roxmltree"
1577
+ version = "0.18.1"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "862340e351ce1b271a378ec53f304a5558f7db87f3769dc655a8f6ecbb68b302"
1580
+ dependencies = [
1581
+ "xmlparser",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "rustc-hash"
1586
+ version = "1.1.0"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1589
+
1590
+ [[package]]
1591
+ name = "rustix"
1592
+ version = "0.38.25"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e"
1595
+ dependencies = [
1596
+ "bitflags 2.4.1",
1597
+ "errno",
1598
+ "libc",
1599
+ "linux-raw-sys",
1600
+ "windows-sys",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "rustversion"
1605
+ version = "1.0.14"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
1608
+
1609
+ [[package]]
1610
+ name = "rustybuzz"
1611
+ version = "0.10.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "71cd15fef9112a1f94ac64b58d1e4628192631ad6af4dc69997f995459c874e7"
1614
+ dependencies = [
1615
+ "bitflags 1.3.2",
1616
+ "bytemuck",
1617
+ "smallvec",
1618
+ "ttf-parser",
1619
+ "unicode-bidi-mirroring",
1620
+ "unicode-ccc",
1621
+ "unicode-properties",
1622
+ "unicode-script",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "ryu"
1627
+ version = "1.0.15"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
1630
+
1631
+ [[package]]
1632
+ name = "safemem"
1633
+ version = "0.3.3"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
1636
+
1637
+ [[package]]
1638
+ name = "same-file"
1639
+ version = "1.0.6"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1642
+ dependencies = [
1643
+ "winapi-util",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "seahash"
1648
+ version = "4.1.0"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1651
+
1652
+ [[package]]
1653
+ name = "seq-macro"
1654
+ version = "0.3.5"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
1657
+
1658
+ [[package]]
1659
+ name = "serde"
1660
+ version = "1.0.193"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
1663
+ dependencies = [
1664
+ "serde_derive",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "serde_derive"
1669
+ version = "1.0.193"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
1672
+ dependencies = [
1673
+ "proc-macro2",
1674
+ "quote",
1675
+ "syn 2.0.39",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "serde_json"
1680
+ version = "1.0.108"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
1683
+ dependencies = [
1684
+ "itoa",
1685
+ "ryu",
1686
+ "serde",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "serde_spanned"
1691
+ version = "0.6.4"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"
1694
+ dependencies = [
1695
+ "serde",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "serde_yaml"
1700
+ version = "0.9.27"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c"
1703
+ dependencies = [
1704
+ "indexmap",
1705
+ "itoa",
1706
+ "ryu",
1707
+ "serde",
1708
+ "unsafe-libyaml",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "shell-words"
1713
+ version = "1.1.0"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1716
+
1717
+ [[package]]
1718
+ name = "shlex"
1719
+ version = "1.2.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
1722
+
1723
+ [[package]]
1724
+ name = "simd-adler32"
1725
+ version = "0.3.7"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1728
+
1729
+ [[package]]
1730
+ name = "simdutf8"
1731
+ version = "0.1.4"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
1734
+
1735
+ [[package]]
1736
+ name = "simplecss"
1737
+ version = "0.2.1"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "a11be7c62927d9427e9f40f3444d5499d868648e2edbc4e2116de69e7ec0e89d"
1740
+ dependencies = [
1741
+ "log",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "siphasher"
1746
+ version = "0.3.11"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1749
+
1750
+ [[package]]
1751
+ name = "siphasher"
1752
+ version = "1.0.0"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
1755
+
1756
+ [[package]]
1757
+ name = "slotmap"
1758
+ version = "1.0.6"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"
1761
+ dependencies = [
1762
+ "version_check",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "smallvec"
1767
+ version = "1.11.2"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
1770
+
1771
+ [[package]]
1772
+ name = "socks"
1773
+ version = "0.3.4"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
1776
+ dependencies = [
1777
+ "byteorder",
1778
+ "libc",
1779
+ "winapi",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "spin"
1784
+ version = "0.9.8"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1787
+
1788
+ [[package]]
1789
+ name = "stable_deref_trait"
1790
+ version = "1.2.0"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1793
+
1794
+ [[package]]
1795
+ name = "stacker"
1796
+ version = "0.1.15"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
1799
+ dependencies = [
1800
+ "cc",
1801
+ "cfg-if",
1802
+ "libc",
1803
+ "psm",
1804
+ "winapi",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "strict-num"
1809
+ version = "0.1.1"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
1812
+ dependencies = [
1813
+ "float-cmp",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "strum"
1818
+ version = "0.24.1"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
1821
+ dependencies = [
1822
+ "strum_macros",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "strum_macros"
1827
+ version = "0.24.3"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
1830
+ dependencies = [
1831
+ "heck",
1832
+ "proc-macro2",
1833
+ "quote",
1834
+ "rustversion",
1835
+ "syn 1.0.109",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "subsetter"
1840
+ version = "0.1.1"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "09eab8a83bff89ba2200bd4c59be45c7c787f988431b936099a5a266c957f2f9"
1843
+
1844
+ [[package]]
1845
+ name = "svg2pdf"
1846
+ version = "0.9.0"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "363c5346967da04bf3ebb3d8bafa7f52c53c810167047904df1960eac3fc08b7"
1849
+ dependencies = [
1850
+ "image",
1851
+ "miniz_oxide",
1852
+ "pdf-writer",
1853
+ "usvg",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "svgtypes"
1858
+ version = "0.12.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "d71499ff2d42f59d26edb21369a308ede691421f79ebc0f001e2b1fd3a7c9e52"
1861
+ dependencies = [
1862
+ "kurbo",
1863
+ "siphasher 0.3.11",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "syn"
1868
+ version = "1.0.109"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1871
+ dependencies = [
1872
+ "proc-macro2",
1873
+ "quote",
1874
+ "unicode-ident",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "syn"
1879
+ version = "2.0.39"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
1882
+ dependencies = [
1883
+ "proc-macro2",
1884
+ "quote",
1885
+ "unicode-ident",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "synstructure"
1890
+ version = "0.13.0"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "285ba80e733fac80aa4270fbcdf83772a79b80aa35c97075320abfee4a915b06"
1893
+ dependencies = [
1894
+ "proc-macro2",
1895
+ "quote",
1896
+ "syn 2.0.39",
1897
+ "unicode-xid",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "syntect"
1902
+ version = "5.1.0"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91"
1905
+ dependencies = [
1906
+ "bincode",
1907
+ "bitflags 1.3.2",
1908
+ "fancy-regex",
1909
+ "flate2",
1910
+ "fnv",
1911
+ "once_cell",
1912
+ "plist",
1913
+ "regex-syntax 0.7.5",
1914
+ "serde",
1915
+ "serde_json",
1916
+ "thiserror",
1917
+ "walkdir",
1918
+ "yaml-rust",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "tap"
1923
+ version = "1.0.1"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1926
+
1927
+ [[package]]
1928
+ name = "tar"
1929
+ version = "0.4.40"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
1932
+ dependencies = [
1933
+ "filetime",
1934
+ "libc",
1935
+ "xattr",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "termcolor"
1940
+ version = "1.4.0"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
1943
+ dependencies = [
1944
+ "winapi-util",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "thiserror"
1949
+ version = "1.0.50"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
1952
+ dependencies = [
1953
+ "thiserror-impl",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "thiserror-impl"
1958
+ version = "1.0.50"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
1961
+ dependencies = [
1962
+ "proc-macro2",
1963
+ "quote",
1964
+ "syn 2.0.39",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "time"
1969
+ version = "0.3.30"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
1972
+ dependencies = [
1973
+ "deranged",
1974
+ "itoa",
1975
+ "powerfmt",
1976
+ "serde",
1977
+ "time-core",
1978
+ "time-macros",
1979
+ ]
1980
+
1981
+ [[package]]
1982
+ name = "time-core"
1983
+ version = "0.1.2"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
1986
+
1987
+ [[package]]
1988
+ name = "time-macros"
1989
+ version = "0.2.15"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
1992
+ dependencies = [
1993
+ "time-core",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "tiny-skia"
1998
+ version = "0.11.2"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "3b72a92a05db376db09fe6d50b7948d106011761c05a6a45e23e17ee9b556222"
2001
+ dependencies = [
2002
+ "arrayref",
2003
+ "arrayvec",
2004
+ "bytemuck",
2005
+ "cfg-if",
2006
+ "log",
2007
+ "png",
2008
+ "tiny-skia-path",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "tiny-skia-path"
2013
+ version = "0.11.2"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "6ac3865b9708fc7e1961a65c3a4fa55e984272f33092d3c859929f887fceb647"
2016
+ dependencies = [
2017
+ "arrayref",
2018
+ "bytemuck",
2019
+ "strict-num",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "tinystr"
2024
+ version = "0.7.5"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece"
2027
+ dependencies = [
2028
+ "displaydoc",
2029
+ "serde",
2030
+ "zerovec",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "tinyvec"
2035
+ version = "1.6.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2038
+ dependencies = [
2039
+ "tinyvec_macros",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "tinyvec_macros"
2044
+ version = "0.1.1"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2047
+
2048
+ [[package]]
2049
+ name = "toml"
2050
+ version = "0.8.8"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
2053
+ dependencies = [
2054
+ "serde",
2055
+ "serde_spanned",
2056
+ "toml_datetime",
2057
+ "toml_edit",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "toml_datetime"
2062
+ version = "0.6.5"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
2065
+ dependencies = [
2066
+ "serde",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "toml_edit"
2071
+ version = "0.21.0"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
2074
+ dependencies = [
2075
+ "indexmap",
2076
+ "serde",
2077
+ "serde_spanned",
2078
+ "toml_datetime",
2079
+ "winnow",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "tracing"
2084
+ version = "0.1.40"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2087
+ dependencies = [
2088
+ "pin-project-lite",
2089
+ "tracing-attributes",
2090
+ "tracing-core",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "tracing-attributes"
2095
+ version = "0.1.27"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2098
+ dependencies = [
2099
+ "proc-macro2",
2100
+ "quote",
2101
+ "syn 2.0.39",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "tracing-core"
2106
+ version = "0.1.32"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2109
+ dependencies = [
2110
+ "once_cell",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "ttf-parser"
2115
+ version = "0.19.2"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1"
2118
+
2119
+ [[package]]
2120
+ name = "typed-arena"
2121
+ version = "2.0.2"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
2124
+
2125
+ [[package]]
2126
+ name = "typst"
2127
+ version = "0.0.1"
2128
+ dependencies = [
2129
+ "chrono",
2130
+ "codespan-reporting",
2131
+ "comemo",
2132
+ "dirs",
2133
+ "ecow",
2134
+ "env_logger",
2135
+ "env_proxy",
2136
+ "filetime",
2137
+ "flate2",
2138
+ "fontdb",
2139
+ "log",
2140
+ "magnus",
2141
+ "pathdiff",
2142
+ "rb-sys",
2143
+ "same-file",
2144
+ "siphasher 1.0.0",
2145
+ "tar",
2146
+ "typst 0.9.0",
2147
+ "typst-library",
2148
+ "ureq",
2149
+ "walkdir",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "typst"
2154
+ version = "0.9.0"
2155
+ source = "git+https://github.com/typst/typst.git?tag=v0.9.0#7bb4f6df44086b4c1120b227f7ae963e6c2ad5ab"
2156
+ dependencies = [
2157
+ "base64",
2158
+ "bitflags 2.4.1",
2159
+ "bytemuck",
2160
+ "comemo",
2161
+ "ecow",
2162
+ "flate2",
2163
+ "fontdb",
2164
+ "image",
2165
+ "indexmap",
2166
+ "kurbo",
2167
+ "log",
2168
+ "miniz_oxide",
2169
+ "once_cell",
2170
+ "palette",
2171
+ "pdf-writer",
2172
+ "pixglyph",
2173
+ "regex",
2174
+ "resvg",
2175
+ "roxmltree",
2176
+ "rustybuzz",
2177
+ "serde",
2178
+ "siphasher 0.3.11",
2179
+ "stacker",
2180
+ "subsetter",
2181
+ "svg2pdf",
2182
+ "time",
2183
+ "tiny-skia",
2184
+ "toml",
2185
+ "tracing",
2186
+ "ttf-parser",
2187
+ "typst-macros",
2188
+ "typst-syntax",
2189
+ "unicode-ident",
2190
+ "unicode-math-class",
2191
+ "unicode-properties",
2192
+ "unicode-segmentation",
2193
+ "unscanny",
2194
+ "usvg",
2195
+ "wasmi",
2196
+ "xmlparser",
2197
+ "xmlwriter",
2198
+ "xmp-writer",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "typst-library"
2203
+ version = "0.9.0"
2204
+ source = "git+https://github.com/typst/typst.git?tag=v0.9.0#7bb4f6df44086b4c1120b227f7ae963e6c2ad5ab"
2205
+ dependencies = [
2206
+ "az",
2207
+ "chinese-number",
2208
+ "ciborium",
2209
+ "comemo",
2210
+ "csv",
2211
+ "ecow",
2212
+ "hayagriva",
2213
+ "hypher",
2214
+ "icu_properties",
2215
+ "icu_provider",
2216
+ "icu_provider_adapters",
2217
+ "icu_provider_blob",
2218
+ "icu_segmenter",
2219
+ "indexmap",
2220
+ "kurbo",
2221
+ "lipsum",
2222
+ "log",
2223
+ "once_cell",
2224
+ "roxmltree",
2225
+ "rustybuzz",
2226
+ "serde_json",
2227
+ "serde_yaml",
2228
+ "smallvec",
2229
+ "syntect",
2230
+ "time",
2231
+ "toml",
2232
+ "tracing",
2233
+ "ttf-parser",
2234
+ "typed-arena",
2235
+ "typst 0.9.0",
2236
+ "unicode-bidi",
2237
+ "unicode-math-class",
2238
+ "unicode-script",
2239
+ "unicode-segmentation",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "typst-macros"
2244
+ version = "0.9.0"
2245
+ source = "git+https://github.com/typst/typst.git?tag=v0.9.0#7bb4f6df44086b4c1120b227f7ae963e6c2ad5ab"
2246
+ dependencies = [
2247
+ "heck",
2248
+ "proc-macro2",
2249
+ "quote",
2250
+ "syn 2.0.39",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "typst-syntax"
2255
+ version = "0.9.0"
2256
+ source = "git+https://github.com/typst/typst.git?tag=v0.9.0#7bb4f6df44086b4c1120b227f7ae963e6c2ad5ab"
2257
+ dependencies = [
2258
+ "comemo",
2259
+ "ecow",
2260
+ "once_cell",
2261
+ "serde",
2262
+ "tracing",
2263
+ "unicode-ident",
2264
+ "unicode-math-class",
2265
+ "unicode-segmentation",
2266
+ "unscanny",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "unic-langid"
2271
+ version = "0.9.1"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f"
2274
+ dependencies = [
2275
+ "unic-langid-impl",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "unic-langid-impl"
2280
+ version = "0.9.1"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff"
2283
+ dependencies = [
2284
+ "serde",
2285
+ "tinystr",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "unicode-bidi"
2290
+ version = "0.3.13"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2293
+
2294
+ [[package]]
2295
+ name = "unicode-bidi-mirroring"
2296
+ version = "0.1.0"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694"
2299
+
2300
+ [[package]]
2301
+ name = "unicode-ccc"
2302
+ version = "0.1.2"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1"
2305
+
2306
+ [[package]]
2307
+ name = "unicode-ident"
2308
+ version = "1.0.12"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2311
+
2312
+ [[package]]
2313
+ name = "unicode-math-class"
2314
+ version = "0.1.0"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "7d246cf599d5fae3c8d56e04b20eb519adb89a8af8d0b0fbcded369aa3647d65"
2317
+
2318
+ [[package]]
2319
+ name = "unicode-normalization"
2320
+ version = "0.1.22"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2323
+ dependencies = [
2324
+ "tinyvec",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "unicode-properties"
2329
+ version = "0.1.0"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "c7f91c8b21fbbaa18853c3d0801c78f4fc94cdb976699bb03e832e75f7fd22f0"
2332
+
2333
+ [[package]]
2334
+ name = "unicode-script"
2335
+ version = "0.5.5"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc"
2338
+
2339
+ [[package]]
2340
+ name = "unicode-segmentation"
2341
+ version = "1.10.1"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2344
+
2345
+ [[package]]
2346
+ name = "unicode-vo"
2347
+ version = "0.1.0"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
2350
+
2351
+ [[package]]
2352
+ name = "unicode-width"
2353
+ version = "0.1.11"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2356
+
2357
+ [[package]]
2358
+ name = "unicode-xid"
2359
+ version = "0.2.4"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2362
+
2363
+ [[package]]
2364
+ name = "unsafe-libyaml"
2365
+ version = "0.2.9"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa"
2368
+
2369
+ [[package]]
2370
+ name = "unscanny"
2371
+ version = "0.1.0"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
2374
+
2375
+ [[package]]
2376
+ name = "ureq"
2377
+ version = "2.9.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "7830e33f6e25723d41a63f77e434159dad02919f18f55a512b5f16f3b1d77138"
2380
+ dependencies = [
2381
+ "base64",
2382
+ "flate2",
2383
+ "log",
2384
+ "once_cell",
2385
+ "socks",
2386
+ "url",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "url"
2391
+ version = "2.5.0"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2394
+ dependencies = [
2395
+ "form_urlencoded",
2396
+ "idna",
2397
+ "percent-encoding",
2398
+ "serde",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "usvg"
2403
+ version = "0.36.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "c51daa774fe9ee5efcf7b4fec13019b8119cda764d9a8b5b06df02bb1445c656"
2406
+ dependencies = [
2407
+ "base64",
2408
+ "log",
2409
+ "pico-args",
2410
+ "usvg-parser",
2411
+ "usvg-text-layout",
2412
+ "usvg-tree",
2413
+ "xmlwriter",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "usvg-parser"
2418
+ version = "0.36.0"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "45c88a5ffaa338f0e978ecf3d4e00d8f9f493e29bed0752e1a808a1db16afc40"
2421
+ dependencies = [
2422
+ "data-url",
2423
+ "flate2",
2424
+ "imagesize",
2425
+ "kurbo",
2426
+ "log",
2427
+ "roxmltree",
2428
+ "simplecss",
2429
+ "siphasher 0.3.11",
2430
+ "svgtypes",
2431
+ "usvg-tree",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "usvg-text-layout"
2436
+ version = "0.36.0"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "4d2374378cb7a3fb8f33894e0fdb8625e1bbc4f25312db8d91f862130b541593"
2439
+ dependencies = [
2440
+ "fontdb",
2441
+ "kurbo",
2442
+ "log",
2443
+ "rustybuzz",
2444
+ "unicode-bidi",
2445
+ "unicode-script",
2446
+ "unicode-vo",
2447
+ "usvg-tree",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "usvg-tree"
2452
+ version = "0.36.0"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "6cacb0c5edeaf3e80e5afcf5b0d4004cc1d36318befc9a7c6606507e5d0f4062"
2455
+ dependencies = [
2456
+ "rctree",
2457
+ "strict-num",
2458
+ "svgtypes",
2459
+ "tiny-skia-path",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "utf8_iter"
2464
+ version = "1.0.3"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "64a8922555b9500e3d865caed19330172cd67cbf82203f1a3311d8c305cc9f33"
2467
+
2468
+ [[package]]
2469
+ name = "uuid"
2470
+ version = "1.6.1"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
2473
+
2474
+ [[package]]
2475
+ name = "version_check"
2476
+ version = "0.9.4"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2479
+
2480
+ [[package]]
2481
+ name = "walkdir"
2482
+ version = "2.4.0"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
2485
+ dependencies = [
2486
+ "same-file",
2487
+ "winapi-util",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "wasi"
2492
+ version = "0.11.0+wasi-snapshot-preview1"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2495
+
2496
+ [[package]]
2497
+ name = "wasm-bindgen"
2498
+ version = "0.2.88"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
2501
+ dependencies = [
2502
+ "cfg-if",
2503
+ "wasm-bindgen-macro",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "wasm-bindgen-backend"
2508
+ version = "0.2.88"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
2511
+ dependencies = [
2512
+ "bumpalo",
2513
+ "log",
2514
+ "once_cell",
2515
+ "proc-macro2",
2516
+ "quote",
2517
+ "syn 2.0.39",
2518
+ "wasm-bindgen-shared",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "wasm-bindgen-macro"
2523
+ version = "0.2.88"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
2526
+ dependencies = [
2527
+ "quote",
2528
+ "wasm-bindgen-macro-support",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "wasm-bindgen-macro-support"
2533
+ version = "0.2.88"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
2536
+ dependencies = [
2537
+ "proc-macro2",
2538
+ "quote",
2539
+ "syn 2.0.39",
2540
+ "wasm-bindgen-backend",
2541
+ "wasm-bindgen-shared",
2542
+ ]
2543
+
2544
+ [[package]]
2545
+ name = "wasm-bindgen-shared"
2546
+ version = "0.2.88"
2547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2548
+ checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
2549
+
2550
+ [[package]]
2551
+ name = "wasmi"
2552
+ version = "0.31.0"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "1f341edb80021141d4ae6468cbeefc50798716a347d4085c3811900049ea8945"
2555
+ dependencies = [
2556
+ "smallvec",
2557
+ "spin",
2558
+ "wasmi_arena",
2559
+ "wasmi_core",
2560
+ "wasmparser-nostd",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "wasmi_arena"
2565
+ version = "0.4.0"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "401c1f35e413fac1846d4843745589d9ec678977ab35a384db8ae7830525d468"
2568
+
2569
+ [[package]]
2570
+ name = "wasmi_core"
2571
+ version = "0.13.0"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a"
2574
+ dependencies = [
2575
+ "downcast-rs",
2576
+ "libm",
2577
+ "num-traits",
2578
+ "paste",
2579
+ ]
2580
+
2581
+ [[package]]
2582
+ name = "wasmparser-nostd"
2583
+ version = "0.100.1"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724"
2586
+ dependencies = [
2587
+ "indexmap-nostd",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "weezl"
2592
+ version = "0.1.7"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
2595
+
2596
+ [[package]]
2597
+ name = "winapi"
2598
+ version = "0.3.9"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2601
+ dependencies = [
2602
+ "winapi-i686-pc-windows-gnu",
2603
+ "winapi-x86_64-pc-windows-gnu",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "winapi-i686-pc-windows-gnu"
2608
+ version = "0.4.0"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2611
+
2612
+ [[package]]
2613
+ name = "winapi-util"
2614
+ version = "0.1.6"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2617
+ dependencies = [
2618
+ "winapi",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "winapi-x86_64-pc-windows-gnu"
2623
+ version = "0.4.0"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2626
+
2627
+ [[package]]
2628
+ name = "windows-core"
2629
+ version = "0.51.1"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
2632
+ dependencies = [
2633
+ "windows-targets",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "windows-sys"
2638
+ version = "0.48.0"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2641
+ dependencies = [
2642
+ "windows-targets",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "windows-targets"
2647
+ version = "0.48.5"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2650
+ dependencies = [
2651
+ "windows_aarch64_gnullvm",
2652
+ "windows_aarch64_msvc",
2653
+ "windows_i686_gnu",
2654
+ "windows_i686_msvc",
2655
+ "windows_x86_64_gnu",
2656
+ "windows_x86_64_gnullvm",
2657
+ "windows_x86_64_msvc",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "windows_aarch64_gnullvm"
2662
+ version = "0.48.5"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2665
+
2666
+ [[package]]
2667
+ name = "windows_aarch64_msvc"
2668
+ version = "0.48.5"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2671
+
2672
+ [[package]]
2673
+ name = "windows_i686_gnu"
2674
+ version = "0.48.5"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2677
+
2678
+ [[package]]
2679
+ name = "windows_i686_msvc"
2680
+ version = "0.48.5"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2683
+
2684
+ [[package]]
2685
+ name = "windows_x86_64_gnu"
2686
+ version = "0.48.5"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2689
+
2690
+ [[package]]
2691
+ name = "windows_x86_64_gnullvm"
2692
+ version = "0.48.5"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2695
+
2696
+ [[package]]
2697
+ name = "windows_x86_64_msvc"
2698
+ version = "0.48.5"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2701
+
2702
+ [[package]]
2703
+ name = "winnow"
2704
+ version = "0.5.19"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b"
2707
+ dependencies = [
2708
+ "memchr",
2709
+ ]
2710
+
2711
+ [[package]]
2712
+ name = "writeable"
2713
+ version = "0.5.4"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "dad7bb64b8ef9c0aa27b6da38b452b0ee9fd82beaf276a87dd796fb55cbae14e"
2716
+
2717
+ [[package]]
2718
+ name = "wyz"
2719
+ version = "0.5.1"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2722
+ dependencies = [
2723
+ "tap",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "xattr"
2728
+ version = "1.0.1"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985"
2731
+ dependencies = [
2732
+ "libc",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "xmlparser"
2737
+ version = "0.13.6"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
2740
+
2741
+ [[package]]
2742
+ name = "xmlwriter"
2743
+ version = "0.1.0"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
2746
+
2747
+ [[package]]
2748
+ name = "xmp-writer"
2749
+ version = "0.2.0"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "4543ba138f64a94b19e1e9c66c165bca7e03d470e1c066cb76ea279d9d0e1989"
2752
+
2753
+ [[package]]
2754
+ name = "yaml-rust"
2755
+ version = "0.4.5"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2758
+ dependencies = [
2759
+ "linked-hash-map",
2760
+ ]
2761
+
2762
+ [[package]]
2763
+ name = "yoke"
2764
+ version = "0.7.3"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4"
2767
+ dependencies = [
2768
+ "serde",
2769
+ "stable_deref_trait",
2770
+ "yoke-derive",
2771
+ "zerofrom",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "yoke-derive"
2776
+ version = "0.7.3"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8"
2779
+ dependencies = [
2780
+ "proc-macro2",
2781
+ "quote",
2782
+ "syn 2.0.39",
2783
+ "synstructure",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "zerofrom"
2788
+ version = "0.1.3"
2789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2790
+ checksum = "655b0814c5c0b19ade497851070c640773304939a6c0fd5f5fb43da0696d05b7"
2791
+ dependencies = [
2792
+ "zerofrom-derive",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "zerofrom-derive"
2797
+ version = "0.1.3"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3"
2800
+ dependencies = [
2801
+ "proc-macro2",
2802
+ "quote",
2803
+ "syn 2.0.39",
2804
+ "synstructure",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "zerotrie"
2809
+ version = "0.1.2"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "d0594125a0574fb93059c92c588ab209cc036a23d1baeb3410fa9181bea551a0"
2812
+ dependencies = [
2813
+ "displaydoc",
2814
+ "litemap",
2815
+ "serde",
2816
+ "zerovec",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "zerovec"
2821
+ version = "0.10.1"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "eff4439ae91fb5c72b8abc12f3f2dbf51bd27e6eadb9f8a5bc8898dddb0e27ea"
2824
+ dependencies = [
2825
+ "serde",
2826
+ "yoke",
2827
+ "zerofrom",
2828
+ "zerovec-derive",
2829
+ ]
2830
+
2831
+ [[package]]
2832
+ name = "zerovec-derive"
2833
+ version = "0.10.1"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "7b4e5997cbf58990550ef1f0e5124a05e47e1ebd33a84af25739be6031a62c20"
2836
+ dependencies = [
2837
+ "proc-macro2",
2838
+ "quote",
2839
+ "syn 2.0.39",
2840
+ ]