sghtmltopdf 0.1.0

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.
data/Cargo.lock ADDED
@@ -0,0 +1,1363 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "approx"
28
+ version = "0.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
31
+ dependencies = [
32
+ "num-traits",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "arrayvec"
37
+ version = "0.7.8"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.5.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
46
+
47
+ [[package]]
48
+ name = "base64"
49
+ version = "0.22.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
52
+
53
+ [[package]]
54
+ name = "bindgen"
55
+ version = "0.72.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
58
+ dependencies = [
59
+ "bitflags",
60
+ "cexpr",
61
+ "clang-sys",
62
+ "itertools",
63
+ "proc-macro2",
64
+ "quote",
65
+ "regex",
66
+ "rustc-hash",
67
+ "shlex 1.3.0",
68
+ "syn 2.0.119",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "bitflags"
73
+ version = "2.13.1"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
76
+
77
+ [[package]]
78
+ name = "by_address"
79
+ version = "1.2.1"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
82
+
83
+ [[package]]
84
+ name = "bytemuck"
85
+ version = "1.25.2"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
88
+ dependencies = [
89
+ "bytemuck_derive",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "bytemuck_derive"
94
+ version = "1.11.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
97
+ dependencies = [
98
+ "proc-macro2",
99
+ "quote",
100
+ "syn 2.0.119",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "byteorder-lite"
105
+ version = "0.1.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
108
+
109
+ [[package]]
110
+ name = "bytes"
111
+ version = "1.12.1"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
114
+
115
+ [[package]]
116
+ name = "cc"
117
+ version = "1.4.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
120
+ dependencies = [
121
+ "find-msvc-tools",
122
+ "shlex 2.0.1",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "cexpr"
127
+ version = "0.6.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
130
+ dependencies = [
131
+ "nom",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "cfg-if"
136
+ version = "1.0.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
139
+
140
+ [[package]]
141
+ name = "clang-sys"
142
+ version = "1.8.1"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
145
+ dependencies = [
146
+ "glob",
147
+ "libc",
148
+ "libloading",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "clap"
153
+ version = "4.6.4"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
156
+ dependencies = [
157
+ "clap_builder",
158
+ "clap_derive",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "clap_builder"
163
+ version = "4.6.2"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
166
+ dependencies = [
167
+ "anstyle",
168
+ "clap_lex",
169
+ "strsim",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "clap_derive"
174
+ version = "4.6.4"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
177
+ dependencies = [
178
+ "heck",
179
+ "proc-macro2",
180
+ "quote",
181
+ "syn 3.0.3",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "clap_lex"
186
+ version = "1.1.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
189
+
190
+ [[package]]
191
+ name = "crc32fast"
192
+ version = "1.5.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
195
+ dependencies = [
196
+ "cfg-if",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "cssparser"
201
+ version = "0.37.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "8c9cdaae01d5ed7882b04d795e7f752f46ff52d2fa3b50a20d28c464510bba98"
204
+ dependencies = [
205
+ "cssparser-macros",
206
+ "dtoa-short",
207
+ "itoa",
208
+ "phf",
209
+ "smallvec",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "cssparser-color"
214
+ version = "0.5.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "bbaa233e1dcd9c13a5d3e3a8a2c0f5a727bac380398345dbcb31db4597edc86b"
217
+ dependencies = [
218
+ "cssparser",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cssparser-macros"
223
+ version = "0.7.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "10a2a99df6e410a8ff4245aa2006499ea662245f967cc7c0a38c83ef8eb44dbf"
226
+ dependencies = [
227
+ "quote",
228
+ "syn 2.0.119",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "derive_more"
233
+ version = "2.1.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
236
+ dependencies = [
237
+ "derive_more-impl",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "derive_more-impl"
242
+ version = "2.1.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
245
+ dependencies = [
246
+ "proc-macro2",
247
+ "quote",
248
+ "rustc_version",
249
+ "syn 2.0.119",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "dtoa"
254
+ version = "1.0.11"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
257
+
258
+ [[package]]
259
+ name = "dtoa-short"
260
+ version = "0.3.5"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
263
+ dependencies = [
264
+ "dtoa",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "either"
269
+ version = "1.17.0"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
272
+
273
+ [[package]]
274
+ name = "encoding_rs"
275
+ version = "0.8.35"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
278
+ dependencies = [
279
+ "cfg-if",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "fast-srgb8"
284
+ version = "1.0.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
287
+
288
+ [[package]]
289
+ name = "fastrand"
290
+ version = "2.5.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
293
+
294
+ [[package]]
295
+ name = "fdeflate"
296
+ version = "0.3.7"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
299
+ dependencies = [
300
+ "simd-adler32",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "find-msvc-tools"
305
+ version = "0.1.9"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
308
+
309
+ [[package]]
310
+ name = "flate2"
311
+ version = "1.1.9"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
314
+ dependencies = [
315
+ "crc32fast",
316
+ "miniz_oxide",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "font-types"
321
+ version = "0.12.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "0a7299a780854a6d391be2ae1c8521c9368471b559dbfd6a8dbd9f407eaff100"
324
+ dependencies = [
325
+ "bytemuck",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "fontconfig-parser"
330
+ version = "0.5.8"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
333
+ dependencies = [
334
+ "roxmltree",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "fontdb"
339
+ version = "0.24.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "2660c5e9157bf76d2db1294e4a9feba604ef610819a3b591088d0d8392a3290f"
342
+ dependencies = [
343
+ "fontconfig-parser",
344
+ "log",
345
+ "memmap2",
346
+ "slotmap",
347
+ "tinyvec",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "getrandom"
352
+ version = "0.2.17"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
355
+ dependencies = [
356
+ "cfg-if",
357
+ "libc",
358
+ "wasi",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "glob"
363
+ version = "0.3.4"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
366
+
367
+ [[package]]
368
+ name = "grid"
369
+ version = "1.0.1"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "b40ca9252762c466af32d0b1002e91e4e1bc5398f77455e55474deb466355ff5"
372
+
373
+ [[package]]
374
+ name = "harfrust"
375
+ version = "0.12.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "c03d949a14aa089bbb282f7dd76a498a7f684428e4257202efc119ec010376f9"
378
+ dependencies = [
379
+ "bitflags",
380
+ "bytemuck",
381
+ "read-fonts",
382
+ "smallvec",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "heck"
387
+ version = "0.5.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
390
+
391
+ [[package]]
392
+ name = "html5ever"
393
+ version = "0.39.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
396
+ dependencies = [
397
+ "log",
398
+ "markup5ever",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "http"
403
+ version = "1.4.2"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
406
+ dependencies = [
407
+ "bytes",
408
+ "itoa",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "httparse"
413
+ version = "1.10.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
416
+
417
+ [[package]]
418
+ name = "image"
419
+ version = "0.25.10"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
422
+ dependencies = [
423
+ "bytemuck",
424
+ "byteorder-lite",
425
+ "image-webp",
426
+ "moxcms",
427
+ "num-traits",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "image-webp"
432
+ version = "0.2.4"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
435
+ dependencies = [
436
+ "byteorder-lite",
437
+ "quick-error",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "itertools"
442
+ version = "0.13.0"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
445
+ dependencies = [
446
+ "either",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "itoa"
451
+ version = "1.0.18"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
454
+
455
+ [[package]]
456
+ name = "lazy_static"
457
+ version = "1.5.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
460
+
461
+ [[package]]
462
+ name = "libc"
463
+ version = "0.2.189"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
466
+
467
+ [[package]]
468
+ name = "libloading"
469
+ version = "0.8.9"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
472
+ dependencies = [
473
+ "cfg-if",
474
+ "windows-link",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "lock_api"
479
+ version = "0.4.14"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
482
+ dependencies = [
483
+ "scopeguard",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "log"
488
+ version = "0.4.33"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
491
+
492
+ [[package]]
493
+ name = "magnus"
494
+ version = "0.8.2"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
497
+ dependencies = [
498
+ "magnus-macros",
499
+ "rb-sys",
500
+ "rb-sys-env",
501
+ "seq-macro",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "magnus-macros"
506
+ version = "0.8.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
509
+ dependencies = [
510
+ "proc-macro2",
511
+ "quote",
512
+ "syn 2.0.119",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "markup5ever"
517
+ version = "0.39.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
520
+ dependencies = [
521
+ "log",
522
+ "tendril",
523
+ "web_atoms",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "memchr"
528
+ version = "2.8.3"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
531
+
532
+ [[package]]
533
+ name = "memmap2"
534
+ version = "0.9.11"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
537
+ dependencies = [
538
+ "libc",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "minimal-lexical"
543
+ version = "0.2.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
546
+
547
+ [[package]]
548
+ name = "miniz_oxide"
549
+ version = "0.8.9"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
552
+ dependencies = [
553
+ "adler2",
554
+ "simd-adler32",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "moxcms"
559
+ version = "0.8.1"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
562
+ dependencies = [
563
+ "num-traits",
564
+ "pxfm",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "new_debug_unreachable"
569
+ version = "1.0.6"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
572
+
573
+ [[package]]
574
+ name = "nom"
575
+ version = "7.1.3"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
578
+ dependencies = [
579
+ "memchr",
580
+ "minimal-lexical",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "num-traits"
585
+ version = "0.2.19"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
588
+ dependencies = [
589
+ "autocfg",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "once_cell"
594
+ version = "1.21.4"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
597
+
598
+ [[package]]
599
+ name = "palette"
600
+ version = "0.7.6"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
603
+ dependencies = [
604
+ "approx",
605
+ "fast-srgb8",
606
+ "palette_derive",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "palette_derive"
611
+ version = "0.7.6"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
614
+ dependencies = [
615
+ "by_address",
616
+ "proc-macro2",
617
+ "quote",
618
+ "syn 2.0.119",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "parking_lot"
623
+ version = "0.12.5"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
626
+ dependencies = [
627
+ "lock_api",
628
+ "parking_lot_core",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "parking_lot_core"
633
+ version = "0.9.12"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
636
+ dependencies = [
637
+ "cfg-if",
638
+ "libc",
639
+ "redox_syscall",
640
+ "smallvec",
641
+ "windows-link",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "pdf-writer"
646
+ version = "0.15.0"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "f5e456864a7a304047bff84977dc6fb162bd956475d40ba50b2dcecaada7f753"
649
+ dependencies = [
650
+ "bitflags",
651
+ "itoa",
652
+ "memchr",
653
+ "ryu",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "percent-encoding"
658
+ version = "2.3.2"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
661
+
662
+ [[package]]
663
+ name = "phf"
664
+ version = "0.13.1"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
667
+ dependencies = [
668
+ "phf_macros",
669
+ "phf_shared",
670
+ "serde",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "phf_codegen"
675
+ version = "0.13.1"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
678
+ dependencies = [
679
+ "phf_generator",
680
+ "phf_shared",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "phf_generator"
685
+ version = "0.13.1"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
688
+ dependencies = [
689
+ "fastrand",
690
+ "phf_shared",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "phf_macros"
695
+ version = "0.13.1"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
698
+ dependencies = [
699
+ "phf_generator",
700
+ "phf_shared",
701
+ "proc-macro2",
702
+ "quote",
703
+ "syn 2.0.119",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "phf_shared"
708
+ version = "0.13.1"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
711
+ dependencies = [
712
+ "siphasher",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "png"
717
+ version = "0.18.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
720
+ dependencies = [
721
+ "bitflags",
722
+ "crc32fast",
723
+ "fdeflate",
724
+ "flate2",
725
+ "miniz_oxide",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "precomputed-hash"
730
+ version = "0.1.1"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
733
+
734
+ [[package]]
735
+ name = "proc-macro2"
736
+ version = "1.0.107"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
739
+ dependencies = [
740
+ "unicode-ident",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "pxfm"
745
+ version = "0.1.30"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
748
+
749
+ [[package]]
750
+ name = "quick-error"
751
+ version = "2.0.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
754
+
755
+ [[package]]
756
+ name = "quote"
757
+ version = "1.0.47"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
760
+ dependencies = [
761
+ "proc-macro2",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "rb-sys"
766
+ version = "0.9.128"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
769
+ dependencies = [
770
+ "rb-sys-build",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "rb-sys-build"
775
+ version = "0.9.128"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
778
+ dependencies = [
779
+ "bindgen",
780
+ "lazy_static",
781
+ "proc-macro2",
782
+ "quote",
783
+ "regex",
784
+ "shell-words",
785
+ "syn 2.0.119",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "rb-sys-env"
790
+ version = "0.2.3"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
793
+
794
+ [[package]]
795
+ name = "read-fonts"
796
+ version = "0.41.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "046a7d674daf459825b32f5062056d6882db0d2f5a479fbd76ccfc870ac18709"
799
+ dependencies = [
800
+ "bytemuck",
801
+ "font-types",
802
+ "once_cell",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "redox_syscall"
807
+ version = "0.5.18"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
810
+ dependencies = [
811
+ "bitflags",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "regex"
816
+ version = "1.13.1"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
819
+ dependencies = [
820
+ "aho-corasick",
821
+ "memchr",
822
+ "regex-automata",
823
+ "regex-syntax",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "regex-automata"
828
+ version = "0.4.16"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
831
+ dependencies = [
832
+ "aho-corasick",
833
+ "memchr",
834
+ "regex-syntax",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "regex-syntax"
839
+ version = "0.8.11"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
842
+
843
+ [[package]]
844
+ name = "ring"
845
+ version = "0.17.14"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
848
+ dependencies = [
849
+ "cc",
850
+ "cfg-if",
851
+ "getrandom",
852
+ "libc",
853
+ "untrusted",
854
+ "windows-sys",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "roxmltree"
859
+ version = "0.20.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
862
+
863
+ [[package]]
864
+ name = "rustc-hash"
865
+ version = "2.1.3"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
868
+
869
+ [[package]]
870
+ name = "rustc_version"
871
+ version = "0.4.1"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
874
+ dependencies = [
875
+ "semver",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "rustls"
880
+ version = "0.23.42"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
883
+ dependencies = [
884
+ "log",
885
+ "once_cell",
886
+ "ring",
887
+ "rustls-pki-types",
888
+ "rustls-webpki",
889
+ "subtle",
890
+ "zeroize",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "rustls-pki-types"
895
+ version = "1.15.1"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
898
+ dependencies = [
899
+ "zeroize",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "rustls-webpki"
904
+ version = "0.103.13"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
907
+ dependencies = [
908
+ "ring",
909
+ "rustls-pki-types",
910
+ "untrusted",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "ryu"
915
+ version = "1.0.23"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
918
+
919
+ [[package]]
920
+ name = "scopeguard"
921
+ version = "1.2.0"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
924
+
925
+ [[package]]
926
+ name = "selectors"
927
+ version = "0.39.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "bad7c25c97cc59c4858df8724a3789caa6ee509b628dfe6df34e8a8084c8a84e"
930
+ dependencies = [
931
+ "bitflags",
932
+ "cssparser",
933
+ "derive_more",
934
+ "log",
935
+ "new_debug_unreachable",
936
+ "phf",
937
+ "phf_codegen",
938
+ "precomputed-hash",
939
+ "rustc-hash",
940
+ "servo_arc",
941
+ "smallvec",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "self_cell"
946
+ version = "1.3.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
949
+
950
+ [[package]]
951
+ name = "semver"
952
+ version = "1.0.28"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
955
+
956
+ [[package]]
957
+ name = "seq-macro"
958
+ version = "0.3.6"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
961
+
962
+ [[package]]
963
+ name = "serde"
964
+ version = "1.0.229"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
967
+ dependencies = [
968
+ "serde_core",
969
+ "serde_derive",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "serde_core"
974
+ version = "1.0.229"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
977
+ dependencies = [
978
+ "serde_derive",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "serde_derive"
983
+ version = "1.0.229"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
986
+ dependencies = [
987
+ "proc-macro2",
988
+ "quote",
989
+ "syn 3.0.3",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "servo_arc"
994
+ version = "0.4.3"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
997
+ dependencies = [
998
+ "stable_deref_trait",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "sghtmltopdf"
1003
+ version = "0.1.0"
1004
+ dependencies = [
1005
+ "magnus",
1006
+ "rb-sys",
1007
+ "sghtmltopdf-core",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "sghtmltopdf-core"
1012
+ version = "0.1.0"
1013
+ dependencies = [
1014
+ "base64",
1015
+ "clap",
1016
+ "cssparser",
1017
+ "cssparser-color",
1018
+ "encoding_rs",
1019
+ "flate2",
1020
+ "fontdb",
1021
+ "harfrust",
1022
+ "html5ever",
1023
+ "image",
1024
+ "palette",
1025
+ "pdf-writer",
1026
+ "png",
1027
+ "precomputed-hash",
1028
+ "selectors",
1029
+ "self_cell",
1030
+ "skrifa",
1031
+ "subsetter",
1032
+ "taffy",
1033
+ "ureq",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "shell-words"
1038
+ version = "1.1.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1041
+
1042
+ [[package]]
1043
+ name = "shlex"
1044
+ version = "1.3.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1047
+
1048
+ [[package]]
1049
+ name = "shlex"
1050
+ version = "2.0.1"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1053
+
1054
+ [[package]]
1055
+ name = "simd-adler32"
1056
+ version = "0.3.10"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1059
+
1060
+ [[package]]
1061
+ name = "siphasher"
1062
+ version = "1.0.3"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1065
+
1066
+ [[package]]
1067
+ name = "skrifa"
1068
+ version = "0.44.0"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "819ab7d62b1d3e72d9d9dea5650bac30424f9111364bb94928dbf5ecad1baa68"
1071
+ dependencies = [
1072
+ "bytemuck",
1073
+ "read-fonts",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "slotmap"
1078
+ version = "1.1.1"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1081
+ dependencies = [
1082
+ "version_check",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "smallvec"
1087
+ version = "1.15.2"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1090
+
1091
+ [[package]]
1092
+ name = "stable_deref_trait"
1093
+ version = "1.2.1"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1096
+
1097
+ [[package]]
1098
+ name = "string_cache"
1099
+ version = "0.9.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
1102
+ dependencies = [
1103
+ "new_debug_unreachable",
1104
+ "parking_lot",
1105
+ "phf_shared",
1106
+ "precomputed-hash",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "string_cache_codegen"
1111
+ version = "0.6.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
1114
+ dependencies = [
1115
+ "phf_generator",
1116
+ "phf_shared",
1117
+ "proc-macro2",
1118
+ "quote",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "strsim"
1123
+ version = "0.11.1"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1126
+
1127
+ [[package]]
1128
+ name = "subsetter"
1129
+ version = "0.2.6"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "38803281d1c23166c5ebcb455439a5d2afe711cc909cf88af72448c297756ad6"
1132
+ dependencies = [
1133
+ "rustc-hash",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "subtle"
1138
+ version = "2.6.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1141
+
1142
+ [[package]]
1143
+ name = "syn"
1144
+ version = "2.0.119"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1147
+ dependencies = [
1148
+ "proc-macro2",
1149
+ "quote",
1150
+ "unicode-ident",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "syn"
1155
+ version = "3.0.3"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1158
+ dependencies = [
1159
+ "proc-macro2",
1160
+ "quote",
1161
+ "unicode-ident",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "taffy"
1166
+ version = "0.12.2"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "340a09581f29809fc0df82a3955501dc7f2a21f887e5d1c13dbe288fe1c0bef4"
1169
+ dependencies = [
1170
+ "arrayvec",
1171
+ "grid",
1172
+ "serde",
1173
+ "slotmap",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "tendril"
1178
+ version = "0.5.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "5fed54709c5b3a53d09bb1c113ea4f5ceafd1e772ddcb0030a82e1d56c087b08"
1181
+ dependencies = [
1182
+ "new_debug_unreachable",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "tinyvec"
1187
+ version = "1.12.0"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
1190
+ dependencies = [
1191
+ "tinyvec_macros",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "tinyvec_macros"
1196
+ version = "0.1.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1199
+
1200
+ [[package]]
1201
+ name = "unicode-ident"
1202
+ version = "1.0.24"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1205
+
1206
+ [[package]]
1207
+ name = "untrusted"
1208
+ version = "0.9.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1211
+
1212
+ [[package]]
1213
+ name = "ureq"
1214
+ version = "3.3.0"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
1217
+ dependencies = [
1218
+ "base64",
1219
+ "flate2",
1220
+ "log",
1221
+ "percent-encoding",
1222
+ "rustls",
1223
+ "rustls-pki-types",
1224
+ "ureq-proto",
1225
+ "utf8-zero",
1226
+ "webpki-roots",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "ureq-proto"
1231
+ version = "0.6.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
1234
+ dependencies = [
1235
+ "base64",
1236
+ "http",
1237
+ "httparse",
1238
+ "log",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "utf8-zero"
1243
+ version = "0.8.1"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
1246
+
1247
+ [[package]]
1248
+ name = "version_check"
1249
+ version = "0.9.5"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1252
+
1253
+ [[package]]
1254
+ name = "wasi"
1255
+ version = "0.11.1+wasi-snapshot-preview1"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1258
+
1259
+ [[package]]
1260
+ name = "web_atoms"
1261
+ version = "0.2.5"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "075474b12bcb3d2e3d4546580e9de478eeeead668a1761e2a8860c836b7ef297"
1264
+ dependencies = [
1265
+ "phf",
1266
+ "phf_codegen",
1267
+ "string_cache",
1268
+ "string_cache_codegen",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "webpki-roots"
1273
+ version = "1.0.9"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
1276
+ dependencies = [
1277
+ "rustls-pki-types",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "windows-link"
1282
+ version = "0.2.1"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1285
+
1286
+ [[package]]
1287
+ name = "windows-sys"
1288
+ version = "0.52.0"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1291
+ dependencies = [
1292
+ "windows-targets",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "windows-targets"
1297
+ version = "0.52.6"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1300
+ dependencies = [
1301
+ "windows_aarch64_gnullvm",
1302
+ "windows_aarch64_msvc",
1303
+ "windows_i686_gnu",
1304
+ "windows_i686_gnullvm",
1305
+ "windows_i686_msvc",
1306
+ "windows_x86_64_gnu",
1307
+ "windows_x86_64_gnullvm",
1308
+ "windows_x86_64_msvc",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "windows_aarch64_gnullvm"
1313
+ version = "0.52.6"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1316
+
1317
+ [[package]]
1318
+ name = "windows_aarch64_msvc"
1319
+ version = "0.52.6"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1322
+
1323
+ [[package]]
1324
+ name = "windows_i686_gnu"
1325
+ version = "0.52.6"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1328
+
1329
+ [[package]]
1330
+ name = "windows_i686_gnullvm"
1331
+ version = "0.52.6"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1334
+
1335
+ [[package]]
1336
+ name = "windows_i686_msvc"
1337
+ version = "0.52.6"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1340
+
1341
+ [[package]]
1342
+ name = "windows_x86_64_gnu"
1343
+ version = "0.52.6"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1346
+
1347
+ [[package]]
1348
+ name = "windows_x86_64_gnullvm"
1349
+ version = "0.52.6"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1352
+
1353
+ [[package]]
1354
+ name = "windows_x86_64_msvc"
1355
+ version = "0.52.6"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1358
+
1359
+ [[package]]
1360
+ name = "zeroize"
1361
+ version = "1.9.0"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"