@ape-egg/vibe 1.0.3 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +121 -0
  2. package/README.md +228 -23
  3. package/compiler/bin/vibe-compile.js +109 -0
  4. package/compiler/native/.gitkeep +0 -0
  5. package/compiler/native/vibe-compiler-darwin-arm64 +0 -0
  6. package/compiler/src/Cargo.lock +1885 -0
  7. package/compiler/src/Cargo.toml +29 -0
  8. package/compiler/src/compiler/compile.rs +1209 -0
  9. package/compiler/src/compiler/mod.rs +5 -0
  10. package/compiler/src/config.rs +184 -0
  11. package/compiler/src/main.rs +284 -0
  12. package/compiler/src/parser/element.rs +96 -0
  13. package/compiler/src/parser/html.rs +339 -0
  14. package/compiler/src/parser/mod.rs +8 -0
  15. package/index.js +2 -233
  16. package/package.json +26 -3
  17. package/{affected.js → runtime/affected.js} +66 -14
  18. package/runtime/cleanup.js +59 -0
  19. package/runtime/component.js +116 -0
  20. package/{conditionals.js → runtime/conditionals.js} +27 -23
  21. package/{constants.js → runtime/constants.js} +23 -3
  22. package/runtime/debug.js +91 -0
  23. package/{hydrate.js → runtime/hydrate.js} +58 -20
  24. package/runtime/index.js +614 -0
  25. package/{iterate.js → runtime/iterate.js} +53 -45
  26. package/{iteration-utils.js → runtime/iteration-utils.js} +11 -1
  27. package/{parse.js → runtime/parse.js} +37 -7
  28. package/runtime/state.js +52 -0
  29. package/{utils.js → runtime/utils.js} +13 -0
  30. package/llms.txt +0 -279
  31. package/state.js +0 -26
  32. /package/{_vibe-compiled-iteration-batch.js → runtime/_vibe-compiled-iteration-batch.js} +0 -0
  33. /package/{link.js → runtime/manifest.js} +0 -0
  34. /package/{vibe.css → runtime/vibe.css} +0 -0
@@ -0,0 +1,1885 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "0.6.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.13"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "0.2.7"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys 0.61.2",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys 0.61.2",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "base64"
66
+ version = "0.21.7"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
69
+
70
+ [[package]]
71
+ name = "bitflags"
72
+ version = "1.3.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
75
+
76
+ [[package]]
77
+ name = "bitflags"
78
+ version = "2.10.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
81
+
82
+ [[package]]
83
+ name = "bumpalo"
84
+ version = "3.19.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
87
+
88
+ [[package]]
89
+ name = "bytes"
90
+ version = "1.11.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
93
+
94
+ [[package]]
95
+ name = "cc"
96
+ version = "1.2.55"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
99
+ dependencies = [
100
+ "find-msvc-tools",
101
+ "shlex",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "cfg-if"
106
+ version = "1.0.4"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
109
+
110
+ [[package]]
111
+ name = "clap"
112
+ version = "4.5.54"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
115
+ dependencies = [
116
+ "clap_builder",
117
+ "clap_derive",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "clap_builder"
122
+ version = "4.5.54"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
125
+ dependencies = [
126
+ "anstream",
127
+ "anstyle",
128
+ "clap_lex",
129
+ "strsim",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "clap_derive"
134
+ version = "4.5.49"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
137
+ dependencies = [
138
+ "heck",
139
+ "proc-macro2",
140
+ "quote",
141
+ "syn",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap_lex"
146
+ version = "0.7.7"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
149
+
150
+ [[package]]
151
+ name = "colorchoice"
152
+ version = "1.0.4"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
155
+
156
+ [[package]]
157
+ name = "colored"
158
+ version = "2.2.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
161
+ dependencies = [
162
+ "lazy_static",
163
+ "windows-sys 0.59.0",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "core-foundation"
168
+ version = "0.9.4"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
171
+ dependencies = [
172
+ "core-foundation-sys",
173
+ "libc",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "core-foundation-sys"
178
+ version = "0.8.7"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
181
+
182
+ [[package]]
183
+ name = "displaydoc"
184
+ version = "0.2.5"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
187
+ dependencies = [
188
+ "proc-macro2",
189
+ "quote",
190
+ "syn",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "encoding_rs"
195
+ version = "0.8.35"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
198
+ dependencies = [
199
+ "cfg-if",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "equivalent"
204
+ version = "1.0.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
207
+
208
+ [[package]]
209
+ name = "errno"
210
+ version = "0.3.14"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
213
+ dependencies = [
214
+ "libc",
215
+ "windows-sys 0.61.2",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "fastrand"
220
+ version = "2.3.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
223
+
224
+ [[package]]
225
+ name = "find-msvc-tools"
226
+ version = "0.1.9"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
229
+
230
+ [[package]]
231
+ name = "fnv"
232
+ version = "1.0.7"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
235
+
236
+ [[package]]
237
+ name = "foreign-types"
238
+ version = "0.3.2"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
241
+ dependencies = [
242
+ "foreign-types-shared",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "foreign-types-shared"
247
+ version = "0.1.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
250
+
251
+ [[package]]
252
+ name = "form_urlencoded"
253
+ version = "1.2.2"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
256
+ dependencies = [
257
+ "percent-encoding",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "futf"
262
+ version = "0.1.5"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
265
+ dependencies = [
266
+ "mac",
267
+ "new_debug_unreachable",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "futures-channel"
272
+ version = "0.3.31"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
275
+ dependencies = [
276
+ "futures-core",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "futures-core"
281
+ version = "0.3.31"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
284
+
285
+ [[package]]
286
+ name = "futures-io"
287
+ version = "0.3.31"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
290
+
291
+ [[package]]
292
+ name = "futures-sink"
293
+ version = "0.3.31"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
296
+
297
+ [[package]]
298
+ name = "futures-task"
299
+ version = "0.3.31"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
302
+
303
+ [[package]]
304
+ name = "futures-util"
305
+ version = "0.3.31"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
308
+ dependencies = [
309
+ "futures-core",
310
+ "futures-io",
311
+ "futures-task",
312
+ "memchr",
313
+ "pin-project-lite",
314
+ "pin-utils",
315
+ "slab",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "getrandom"
320
+ version = "0.3.4"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
323
+ dependencies = [
324
+ "cfg-if",
325
+ "libc",
326
+ "r-efi",
327
+ "wasip2",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "h2"
332
+ version = "0.3.27"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
335
+ dependencies = [
336
+ "bytes",
337
+ "fnv",
338
+ "futures-core",
339
+ "futures-sink",
340
+ "futures-util",
341
+ "http",
342
+ "indexmap",
343
+ "slab",
344
+ "tokio",
345
+ "tokio-util",
346
+ "tracing",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "hashbrown"
351
+ version = "0.16.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
354
+
355
+ [[package]]
356
+ name = "heck"
357
+ version = "0.5.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
360
+
361
+ [[package]]
362
+ name = "html5ever"
363
+ version = "0.27.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
366
+ dependencies = [
367
+ "log",
368
+ "mac",
369
+ "markup5ever",
370
+ "proc-macro2",
371
+ "quote",
372
+ "syn",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "http"
377
+ version = "0.2.12"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
380
+ dependencies = [
381
+ "bytes",
382
+ "fnv",
383
+ "itoa",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "http-body"
388
+ version = "0.4.6"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
391
+ dependencies = [
392
+ "bytes",
393
+ "http",
394
+ "pin-project-lite",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "httparse"
399
+ version = "1.10.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
402
+
403
+ [[package]]
404
+ name = "httpdate"
405
+ version = "1.0.3"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
408
+
409
+ [[package]]
410
+ name = "hyper"
411
+ version = "0.14.32"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
414
+ dependencies = [
415
+ "bytes",
416
+ "futures-channel",
417
+ "futures-core",
418
+ "futures-util",
419
+ "h2",
420
+ "http",
421
+ "http-body",
422
+ "httparse",
423
+ "httpdate",
424
+ "itoa",
425
+ "pin-project-lite",
426
+ "socket2 0.5.10",
427
+ "tokio",
428
+ "tower-service",
429
+ "tracing",
430
+ "want",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "hyper-tls"
435
+ version = "0.5.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
438
+ dependencies = [
439
+ "bytes",
440
+ "hyper",
441
+ "native-tls",
442
+ "tokio",
443
+ "tokio-native-tls",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "icu_collections"
448
+ version = "2.1.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
451
+ dependencies = [
452
+ "displaydoc",
453
+ "potential_utf",
454
+ "yoke",
455
+ "zerofrom",
456
+ "zerovec",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "icu_locale_core"
461
+ version = "2.1.1"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
464
+ dependencies = [
465
+ "displaydoc",
466
+ "litemap",
467
+ "tinystr",
468
+ "writeable",
469
+ "zerovec",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "icu_normalizer"
474
+ version = "2.1.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
477
+ dependencies = [
478
+ "icu_collections",
479
+ "icu_normalizer_data",
480
+ "icu_properties",
481
+ "icu_provider",
482
+ "smallvec",
483
+ "zerovec",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "icu_normalizer_data"
488
+ version = "2.1.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
491
+
492
+ [[package]]
493
+ name = "icu_properties"
494
+ version = "2.1.2"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
497
+ dependencies = [
498
+ "icu_collections",
499
+ "icu_locale_core",
500
+ "icu_properties_data",
501
+ "icu_provider",
502
+ "zerotrie",
503
+ "zerovec",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "icu_properties_data"
508
+ version = "2.1.2"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
511
+
512
+ [[package]]
513
+ name = "icu_provider"
514
+ version = "2.1.1"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
517
+ dependencies = [
518
+ "displaydoc",
519
+ "icu_locale_core",
520
+ "writeable",
521
+ "yoke",
522
+ "zerofrom",
523
+ "zerotrie",
524
+ "zerovec",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "idna"
529
+ version = "1.1.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
532
+ dependencies = [
533
+ "idna_adapter",
534
+ "smallvec",
535
+ "utf8_iter",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "idna_adapter"
540
+ version = "1.2.1"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
543
+ dependencies = [
544
+ "icu_normalizer",
545
+ "icu_properties",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "indexmap"
550
+ version = "2.13.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
553
+ dependencies = [
554
+ "equivalent",
555
+ "hashbrown",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "ipnet"
560
+ version = "2.11.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
563
+
564
+ [[package]]
565
+ name = "is_terminal_polyfill"
566
+ version = "1.70.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
569
+
570
+ [[package]]
571
+ name = "itoa"
572
+ version = "1.0.17"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
575
+
576
+ [[package]]
577
+ name = "js-sys"
578
+ version = "0.3.85"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
581
+ dependencies = [
582
+ "once_cell",
583
+ "wasm-bindgen",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "lazy_static"
588
+ version = "1.5.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
591
+
592
+ [[package]]
593
+ name = "libc"
594
+ version = "0.2.180"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
597
+
598
+ [[package]]
599
+ name = "linux-raw-sys"
600
+ version = "0.11.0"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
603
+
604
+ [[package]]
605
+ name = "litemap"
606
+ version = "0.8.1"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
609
+
610
+ [[package]]
611
+ name = "lock_api"
612
+ version = "0.4.14"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
615
+ dependencies = [
616
+ "scopeguard",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "log"
621
+ version = "0.4.29"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
624
+
625
+ [[package]]
626
+ name = "mac"
627
+ version = "0.1.1"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
630
+
631
+ [[package]]
632
+ name = "markup5ever"
633
+ version = "0.12.1"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
636
+ dependencies = [
637
+ "log",
638
+ "phf",
639
+ "phf_codegen",
640
+ "string_cache",
641
+ "string_cache_codegen",
642
+ "tendril",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "markup5ever_rcdom"
647
+ version = "0.3.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18"
650
+ dependencies = [
651
+ "html5ever",
652
+ "markup5ever",
653
+ "tendril",
654
+ "xml5ever",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "memchr"
659
+ version = "2.7.6"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
662
+
663
+ [[package]]
664
+ name = "mime"
665
+ version = "0.3.17"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
668
+
669
+ [[package]]
670
+ name = "mio"
671
+ version = "1.1.1"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
674
+ dependencies = [
675
+ "libc",
676
+ "wasi",
677
+ "windows-sys 0.61.2",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "native-tls"
682
+ version = "0.2.14"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
685
+ dependencies = [
686
+ "libc",
687
+ "log",
688
+ "openssl",
689
+ "openssl-probe",
690
+ "openssl-sys",
691
+ "schannel",
692
+ "security-framework",
693
+ "security-framework-sys",
694
+ "tempfile",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "new_debug_unreachable"
699
+ version = "1.0.6"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
702
+
703
+ [[package]]
704
+ name = "once_cell"
705
+ version = "1.21.3"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
708
+
709
+ [[package]]
710
+ name = "once_cell_polyfill"
711
+ version = "1.70.2"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
714
+
715
+ [[package]]
716
+ name = "openssl"
717
+ version = "0.10.75"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
720
+ dependencies = [
721
+ "bitflags 2.10.0",
722
+ "cfg-if",
723
+ "foreign-types",
724
+ "libc",
725
+ "once_cell",
726
+ "openssl-macros",
727
+ "openssl-sys",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "openssl-macros"
732
+ version = "0.1.1"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
735
+ dependencies = [
736
+ "proc-macro2",
737
+ "quote",
738
+ "syn",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "openssl-probe"
743
+ version = "0.1.6"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
746
+
747
+ [[package]]
748
+ name = "openssl-sys"
749
+ version = "0.9.111"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
752
+ dependencies = [
753
+ "cc",
754
+ "libc",
755
+ "pkg-config",
756
+ "vcpkg",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "parking_lot"
761
+ version = "0.12.5"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
764
+ dependencies = [
765
+ "lock_api",
766
+ "parking_lot_core",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "parking_lot_core"
771
+ version = "0.9.12"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
774
+ dependencies = [
775
+ "cfg-if",
776
+ "libc",
777
+ "redox_syscall",
778
+ "smallvec",
779
+ "windows-link",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "percent-encoding"
784
+ version = "2.3.2"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
787
+
788
+ [[package]]
789
+ name = "phf"
790
+ version = "0.11.3"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
793
+ dependencies = [
794
+ "phf_shared",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "phf_codegen"
799
+ version = "0.11.3"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
802
+ dependencies = [
803
+ "phf_generator",
804
+ "phf_shared",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "phf_generator"
809
+ version = "0.11.3"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
812
+ dependencies = [
813
+ "phf_shared",
814
+ "rand",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "phf_shared"
819
+ version = "0.11.3"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
822
+ dependencies = [
823
+ "siphasher",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "pin-project-lite"
828
+ version = "0.2.16"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
831
+
832
+ [[package]]
833
+ name = "pin-utils"
834
+ version = "0.1.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
837
+
838
+ [[package]]
839
+ name = "pkg-config"
840
+ version = "0.3.32"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
843
+
844
+ [[package]]
845
+ name = "potential_utf"
846
+ version = "0.1.4"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
849
+ dependencies = [
850
+ "zerovec",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "precomputed-hash"
855
+ version = "0.1.1"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
858
+
859
+ [[package]]
860
+ name = "proc-macro2"
861
+ version = "1.0.106"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
864
+ dependencies = [
865
+ "unicode-ident",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "quote"
870
+ version = "1.0.44"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
873
+ dependencies = [
874
+ "proc-macro2",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "r-efi"
879
+ version = "5.3.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
882
+
883
+ [[package]]
884
+ name = "rand"
885
+ version = "0.8.5"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
888
+ dependencies = [
889
+ "rand_core",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "rand_core"
894
+ version = "0.6.4"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
897
+
898
+ [[package]]
899
+ name = "redox_syscall"
900
+ version = "0.5.18"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
903
+ dependencies = [
904
+ "bitflags 2.10.0",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "regex"
909
+ version = "1.12.2"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
912
+ dependencies = [
913
+ "aho-corasick",
914
+ "memchr",
915
+ "regex-automata",
916
+ "regex-syntax",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "regex-automata"
921
+ version = "0.4.13"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
924
+ dependencies = [
925
+ "aho-corasick",
926
+ "memchr",
927
+ "regex-syntax",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "regex-syntax"
932
+ version = "0.8.8"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
935
+
936
+ [[package]]
937
+ name = "reqwest"
938
+ version = "0.11.27"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
941
+ dependencies = [
942
+ "base64",
943
+ "bytes",
944
+ "encoding_rs",
945
+ "futures-core",
946
+ "futures-util",
947
+ "h2",
948
+ "http",
949
+ "http-body",
950
+ "hyper",
951
+ "hyper-tls",
952
+ "ipnet",
953
+ "js-sys",
954
+ "log",
955
+ "mime",
956
+ "native-tls",
957
+ "once_cell",
958
+ "percent-encoding",
959
+ "pin-project-lite",
960
+ "rustls-pemfile",
961
+ "serde",
962
+ "serde_json",
963
+ "serde_urlencoded",
964
+ "sync_wrapper",
965
+ "system-configuration",
966
+ "tokio",
967
+ "tokio-native-tls",
968
+ "tower-service",
969
+ "url",
970
+ "wasm-bindgen",
971
+ "wasm-bindgen-futures",
972
+ "web-sys",
973
+ "winreg",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "rustix"
978
+ version = "1.1.3"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
981
+ dependencies = [
982
+ "bitflags 2.10.0",
983
+ "errno",
984
+ "libc",
985
+ "linux-raw-sys",
986
+ "windows-sys 0.61.2",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "rustls-pemfile"
991
+ version = "1.0.4"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
994
+ dependencies = [
995
+ "base64",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "rustversion"
1000
+ version = "1.0.22"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1003
+
1004
+ [[package]]
1005
+ name = "ryu"
1006
+ version = "1.0.22"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
1009
+
1010
+ [[package]]
1011
+ name = "same-file"
1012
+ version = "1.0.6"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1015
+ dependencies = [
1016
+ "winapi-util",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "schannel"
1021
+ version = "0.1.28"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1024
+ dependencies = [
1025
+ "windows-sys 0.61.2",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "scopeguard"
1030
+ version = "1.2.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1033
+
1034
+ [[package]]
1035
+ name = "security-framework"
1036
+ version = "2.11.1"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1039
+ dependencies = [
1040
+ "bitflags 2.10.0",
1041
+ "core-foundation",
1042
+ "core-foundation-sys",
1043
+ "libc",
1044
+ "security-framework-sys",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "security-framework-sys"
1049
+ version = "2.15.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1052
+ dependencies = [
1053
+ "core-foundation-sys",
1054
+ "libc",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "serde"
1059
+ version = "1.0.228"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1062
+ dependencies = [
1063
+ "serde_core",
1064
+ "serde_derive",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "serde_core"
1069
+ version = "1.0.228"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1072
+ dependencies = [
1073
+ "serde_derive",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "serde_derive"
1078
+ version = "1.0.228"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1081
+ dependencies = [
1082
+ "proc-macro2",
1083
+ "quote",
1084
+ "syn",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "serde_json"
1089
+ version = "1.0.149"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1092
+ dependencies = [
1093
+ "itoa",
1094
+ "memchr",
1095
+ "serde",
1096
+ "serde_core",
1097
+ "zmij",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "serde_urlencoded"
1102
+ version = "0.7.1"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1105
+ dependencies = [
1106
+ "form_urlencoded",
1107
+ "itoa",
1108
+ "ryu",
1109
+ "serde",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "shlex"
1114
+ version = "1.3.0"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1117
+
1118
+ [[package]]
1119
+ name = "siphasher"
1120
+ version = "1.0.1"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1123
+
1124
+ [[package]]
1125
+ name = "slab"
1126
+ version = "0.4.12"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1129
+
1130
+ [[package]]
1131
+ name = "smallvec"
1132
+ version = "1.15.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1135
+
1136
+ [[package]]
1137
+ name = "socket2"
1138
+ version = "0.5.10"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1141
+ dependencies = [
1142
+ "libc",
1143
+ "windows-sys 0.52.0",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "socket2"
1148
+ version = "0.6.2"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1151
+ dependencies = [
1152
+ "libc",
1153
+ "windows-sys 0.60.2",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "stable_deref_trait"
1158
+ version = "1.2.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1161
+
1162
+ [[package]]
1163
+ name = "string_cache"
1164
+ version = "0.8.9"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1167
+ dependencies = [
1168
+ "new_debug_unreachable",
1169
+ "parking_lot",
1170
+ "phf_shared",
1171
+ "precomputed-hash",
1172
+ "serde",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "string_cache_codegen"
1177
+ version = "0.5.4"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
1180
+ dependencies = [
1181
+ "phf_generator",
1182
+ "phf_shared",
1183
+ "proc-macro2",
1184
+ "quote",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "strsim"
1189
+ version = "0.11.1"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1192
+
1193
+ [[package]]
1194
+ name = "syn"
1195
+ version = "2.0.114"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1198
+ dependencies = [
1199
+ "proc-macro2",
1200
+ "quote",
1201
+ "unicode-ident",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "sync_wrapper"
1206
+ version = "0.1.2"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
1209
+
1210
+ [[package]]
1211
+ name = "synstructure"
1212
+ version = "0.13.2"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1215
+ dependencies = [
1216
+ "proc-macro2",
1217
+ "quote",
1218
+ "syn",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "system-configuration"
1223
+ version = "0.5.1"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
1226
+ dependencies = [
1227
+ "bitflags 1.3.2",
1228
+ "core-foundation",
1229
+ "system-configuration-sys",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "system-configuration-sys"
1234
+ version = "0.5.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
1237
+ dependencies = [
1238
+ "core-foundation-sys",
1239
+ "libc",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "tempfile"
1244
+ version = "3.24.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1247
+ dependencies = [
1248
+ "fastrand",
1249
+ "getrandom",
1250
+ "once_cell",
1251
+ "rustix",
1252
+ "windows-sys 0.61.2",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "tendril"
1257
+ version = "0.4.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
1260
+ dependencies = [
1261
+ "futf",
1262
+ "mac",
1263
+ "utf-8",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "thiserror"
1268
+ version = "1.0.69"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1271
+ dependencies = [
1272
+ "thiserror-impl",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "thiserror-impl"
1277
+ version = "1.0.69"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1280
+ dependencies = [
1281
+ "proc-macro2",
1282
+ "quote",
1283
+ "syn",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "tinystr"
1288
+ version = "0.8.2"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1291
+ dependencies = [
1292
+ "displaydoc",
1293
+ "zerovec",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "tokio"
1298
+ version = "1.49.0"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1301
+ dependencies = [
1302
+ "bytes",
1303
+ "libc",
1304
+ "mio",
1305
+ "pin-project-lite",
1306
+ "socket2 0.6.2",
1307
+ "windows-sys 0.61.2",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "tokio-native-tls"
1312
+ version = "0.3.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1315
+ dependencies = [
1316
+ "native-tls",
1317
+ "tokio",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "tokio-util"
1322
+ version = "0.7.18"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1325
+ dependencies = [
1326
+ "bytes",
1327
+ "futures-core",
1328
+ "futures-sink",
1329
+ "pin-project-lite",
1330
+ "tokio",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "tower-service"
1335
+ version = "0.3.3"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1338
+
1339
+ [[package]]
1340
+ name = "tracing"
1341
+ version = "0.1.44"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1344
+ dependencies = [
1345
+ "pin-project-lite",
1346
+ "tracing-core",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "tracing-core"
1351
+ version = "0.1.36"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1354
+ dependencies = [
1355
+ "once_cell",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "try-lock"
1360
+ version = "0.2.5"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1363
+
1364
+ [[package]]
1365
+ name = "unicode-ident"
1366
+ version = "1.0.22"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1369
+
1370
+ [[package]]
1371
+ name = "url"
1372
+ version = "2.5.8"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1375
+ dependencies = [
1376
+ "form_urlencoded",
1377
+ "idna",
1378
+ "percent-encoding",
1379
+ "serde",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "utf-8"
1384
+ version = "0.7.6"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1387
+
1388
+ [[package]]
1389
+ name = "utf8_iter"
1390
+ version = "1.0.4"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1393
+
1394
+ [[package]]
1395
+ name = "utf8parse"
1396
+ version = "0.2.2"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1399
+
1400
+ [[package]]
1401
+ name = "vcpkg"
1402
+ version = "0.2.15"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1405
+
1406
+ [[package]]
1407
+ name = "vibe-compiler"
1408
+ version = "0.1.0"
1409
+ dependencies = [
1410
+ "clap",
1411
+ "colored",
1412
+ "html5ever",
1413
+ "markup5ever_rcdom",
1414
+ "regex",
1415
+ "reqwest",
1416
+ "serde",
1417
+ "serde_json",
1418
+ "thiserror",
1419
+ "walkdir",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "walkdir"
1424
+ version = "2.5.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1427
+ dependencies = [
1428
+ "same-file",
1429
+ "winapi-util",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "want"
1434
+ version = "0.3.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1437
+ dependencies = [
1438
+ "try-lock",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "wasi"
1443
+ version = "0.11.1+wasi-snapshot-preview1"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1446
+
1447
+ [[package]]
1448
+ name = "wasip2"
1449
+ version = "1.0.2+wasi-0.2.9"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1452
+ dependencies = [
1453
+ "wit-bindgen",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "wasm-bindgen"
1458
+ version = "0.2.108"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1461
+ dependencies = [
1462
+ "cfg-if",
1463
+ "once_cell",
1464
+ "rustversion",
1465
+ "wasm-bindgen-macro",
1466
+ "wasm-bindgen-shared",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "wasm-bindgen-futures"
1471
+ version = "0.4.58"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
1474
+ dependencies = [
1475
+ "cfg-if",
1476
+ "futures-util",
1477
+ "js-sys",
1478
+ "once_cell",
1479
+ "wasm-bindgen",
1480
+ "web-sys",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "wasm-bindgen-macro"
1485
+ version = "0.2.108"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1488
+ dependencies = [
1489
+ "quote",
1490
+ "wasm-bindgen-macro-support",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "wasm-bindgen-macro-support"
1495
+ version = "0.2.108"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1498
+ dependencies = [
1499
+ "bumpalo",
1500
+ "proc-macro2",
1501
+ "quote",
1502
+ "syn",
1503
+ "wasm-bindgen-shared",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "wasm-bindgen-shared"
1508
+ version = "0.2.108"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1511
+ dependencies = [
1512
+ "unicode-ident",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "web-sys"
1517
+ version = "0.3.85"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
1520
+ dependencies = [
1521
+ "js-sys",
1522
+ "wasm-bindgen",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "winapi-util"
1527
+ version = "0.1.11"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1530
+ dependencies = [
1531
+ "windows-sys 0.61.2",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "windows-link"
1536
+ version = "0.2.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1539
+
1540
+ [[package]]
1541
+ name = "windows-sys"
1542
+ version = "0.48.0"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1545
+ dependencies = [
1546
+ "windows-targets 0.48.5",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "windows-sys"
1551
+ version = "0.52.0"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1554
+ dependencies = [
1555
+ "windows-targets 0.52.6",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "windows-sys"
1560
+ version = "0.59.0"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1563
+ dependencies = [
1564
+ "windows-targets 0.52.6",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "windows-sys"
1569
+ version = "0.60.2"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1572
+ dependencies = [
1573
+ "windows-targets 0.53.5",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "windows-sys"
1578
+ version = "0.61.2"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1581
+ dependencies = [
1582
+ "windows-link",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "windows-targets"
1587
+ version = "0.48.5"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1590
+ dependencies = [
1591
+ "windows_aarch64_gnullvm 0.48.5",
1592
+ "windows_aarch64_msvc 0.48.5",
1593
+ "windows_i686_gnu 0.48.5",
1594
+ "windows_i686_msvc 0.48.5",
1595
+ "windows_x86_64_gnu 0.48.5",
1596
+ "windows_x86_64_gnullvm 0.48.5",
1597
+ "windows_x86_64_msvc 0.48.5",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "windows-targets"
1602
+ version = "0.52.6"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1605
+ dependencies = [
1606
+ "windows_aarch64_gnullvm 0.52.6",
1607
+ "windows_aarch64_msvc 0.52.6",
1608
+ "windows_i686_gnu 0.52.6",
1609
+ "windows_i686_gnullvm 0.52.6",
1610
+ "windows_i686_msvc 0.52.6",
1611
+ "windows_x86_64_gnu 0.52.6",
1612
+ "windows_x86_64_gnullvm 0.52.6",
1613
+ "windows_x86_64_msvc 0.52.6",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "windows-targets"
1618
+ version = "0.53.5"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1621
+ dependencies = [
1622
+ "windows-link",
1623
+ "windows_aarch64_gnullvm 0.53.1",
1624
+ "windows_aarch64_msvc 0.53.1",
1625
+ "windows_i686_gnu 0.53.1",
1626
+ "windows_i686_gnullvm 0.53.1",
1627
+ "windows_i686_msvc 0.53.1",
1628
+ "windows_x86_64_gnu 0.53.1",
1629
+ "windows_x86_64_gnullvm 0.53.1",
1630
+ "windows_x86_64_msvc 0.53.1",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "windows_aarch64_gnullvm"
1635
+ version = "0.48.5"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1638
+
1639
+ [[package]]
1640
+ name = "windows_aarch64_gnullvm"
1641
+ version = "0.52.6"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1644
+
1645
+ [[package]]
1646
+ name = "windows_aarch64_gnullvm"
1647
+ version = "0.53.1"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1650
+
1651
+ [[package]]
1652
+ name = "windows_aarch64_msvc"
1653
+ version = "0.48.5"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1656
+
1657
+ [[package]]
1658
+ name = "windows_aarch64_msvc"
1659
+ version = "0.52.6"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1662
+
1663
+ [[package]]
1664
+ name = "windows_aarch64_msvc"
1665
+ version = "0.53.1"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1668
+
1669
+ [[package]]
1670
+ name = "windows_i686_gnu"
1671
+ version = "0.48.5"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1674
+
1675
+ [[package]]
1676
+ name = "windows_i686_gnu"
1677
+ version = "0.52.6"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1680
+
1681
+ [[package]]
1682
+ name = "windows_i686_gnu"
1683
+ version = "0.53.1"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1686
+
1687
+ [[package]]
1688
+ name = "windows_i686_gnullvm"
1689
+ version = "0.52.6"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1692
+
1693
+ [[package]]
1694
+ name = "windows_i686_gnullvm"
1695
+ version = "0.53.1"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1698
+
1699
+ [[package]]
1700
+ name = "windows_i686_msvc"
1701
+ version = "0.48.5"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1704
+
1705
+ [[package]]
1706
+ name = "windows_i686_msvc"
1707
+ version = "0.52.6"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1710
+
1711
+ [[package]]
1712
+ name = "windows_i686_msvc"
1713
+ version = "0.53.1"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1716
+
1717
+ [[package]]
1718
+ name = "windows_x86_64_gnu"
1719
+ version = "0.48.5"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1722
+
1723
+ [[package]]
1724
+ name = "windows_x86_64_gnu"
1725
+ version = "0.52.6"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1728
+
1729
+ [[package]]
1730
+ name = "windows_x86_64_gnu"
1731
+ version = "0.53.1"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1734
+
1735
+ [[package]]
1736
+ name = "windows_x86_64_gnullvm"
1737
+ version = "0.48.5"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1740
+
1741
+ [[package]]
1742
+ name = "windows_x86_64_gnullvm"
1743
+ version = "0.52.6"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1746
+
1747
+ [[package]]
1748
+ name = "windows_x86_64_gnullvm"
1749
+ version = "0.53.1"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1752
+
1753
+ [[package]]
1754
+ name = "windows_x86_64_msvc"
1755
+ version = "0.48.5"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1758
+
1759
+ [[package]]
1760
+ name = "windows_x86_64_msvc"
1761
+ version = "0.52.6"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1764
+
1765
+ [[package]]
1766
+ name = "windows_x86_64_msvc"
1767
+ version = "0.53.1"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1770
+
1771
+ [[package]]
1772
+ name = "winreg"
1773
+ version = "0.50.0"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
1776
+ dependencies = [
1777
+ "cfg-if",
1778
+ "windows-sys 0.48.0",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "wit-bindgen"
1783
+ version = "0.51.0"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1786
+
1787
+ [[package]]
1788
+ name = "writeable"
1789
+ version = "0.6.2"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1792
+
1793
+ [[package]]
1794
+ name = "xml5ever"
1795
+ version = "0.18.1"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69"
1798
+ dependencies = [
1799
+ "log",
1800
+ "mac",
1801
+ "markup5ever",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "yoke"
1806
+ version = "0.8.1"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1809
+ dependencies = [
1810
+ "stable_deref_trait",
1811
+ "yoke-derive",
1812
+ "zerofrom",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "yoke-derive"
1817
+ version = "0.8.1"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1820
+ dependencies = [
1821
+ "proc-macro2",
1822
+ "quote",
1823
+ "syn",
1824
+ "synstructure",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "zerofrom"
1829
+ version = "0.1.6"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1832
+ dependencies = [
1833
+ "zerofrom-derive",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "zerofrom-derive"
1838
+ version = "0.1.6"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1841
+ dependencies = [
1842
+ "proc-macro2",
1843
+ "quote",
1844
+ "syn",
1845
+ "synstructure",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "zerotrie"
1850
+ version = "0.2.3"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1853
+ dependencies = [
1854
+ "displaydoc",
1855
+ "yoke",
1856
+ "zerofrom",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "zerovec"
1861
+ version = "0.11.5"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
1864
+ dependencies = [
1865
+ "yoke",
1866
+ "zerofrom",
1867
+ "zerovec-derive",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "zerovec-derive"
1872
+ version = "0.11.2"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
1875
+ dependencies = [
1876
+ "proc-macro2",
1877
+ "quote",
1878
+ "syn",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "zmij"
1883
+ version = "1.0.17"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"