cfasim 0.3.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. cfasim-0.3.9/Cargo.lock +2756 -0
  2. cfasim-0.3.9/Cargo.toml +9 -0
  3. cfasim-0.3.9/LICENSE +201 -0
  4. cfasim-0.3.9/PKG-INFO +103 -0
  5. cfasim-0.3.9/README.md +92 -0
  6. cfasim-0.3.9/cfasim/Cargo.toml +25 -0
  7. cfasim-0.3.9/cfasim/init.spec.ts +135 -0
  8. cfasim-0.3.9/cfasim/playwright.config.ts +7 -0
  9. cfasim-0.3.9/cfasim/src/init.rs +296 -0
  10. cfasim-0.3.9/cfasim/src/main.rs +67 -0
  11. cfasim-0.3.9/cfasim/src/settings.rs +115 -0
  12. cfasim-0.3.9/cfasim/src/templates/python/.gitignore +6 -0
  13. cfasim-0.3.9/cfasim/src/templates/python/index.html +16 -0
  14. cfasim-0.3.9/cfasim/src/templates/python/model/pyproject.toml +9 -0
  15. cfasim-0.3.9/cfasim/src/templates/python/model/src/%%module_name%%/__init__.py +15 -0
  16. cfasim-0.3.9/cfasim/src/templates/python/package.json +18 -0
  17. cfasim-0.3.9/cfasim/src/templates/python/src/App.vue +34 -0
  18. cfasim-0.3.9/cfasim/src/templates/python/src/env.d.ts +10 -0
  19. cfasim-0.3.9/cfasim/src/templates/python/src/main.ts +5 -0
  20. cfasim-0.3.9/cfasim/src/templates/python/tsconfig.json +17 -0
  21. cfasim-0.3.9/cfasim/src/templates/python/vite.config.ts +7 -0
  22. cfasim-0.3.9/cfasim/src/templates/rust/.gitignore +3 -0
  23. cfasim-0.3.9/cfasim/src/templates/rust/index.html +16 -0
  24. cfasim-0.3.9/cfasim/src/templates/rust/package.json +18 -0
  25. cfasim-0.3.9/cfasim/src/templates/rust/src/App.vue +34 -0
  26. cfasim-0.3.9/cfasim/src/templates/rust/src/env.d.ts +5 -0
  27. cfasim-0.3.9/cfasim/src/templates/rust/src/main.ts +5 -0
  28. cfasim-0.3.9/cfasim/src/templates/rust/tsconfig.json +17 -0
  29. cfasim-0.3.9/cfasim/src/templates/rust/vite.config.ts +7 -0
  30. cfasim-0.3.9/cfasim/src/update.rs +65 -0
  31. cfasim-0.3.9/cfasim/src/update_check.rs +162 -0
  32. cfasim-0.3.9/pyproject.toml +24 -0
@@ -0,0 +1,2756 @@
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 = "anstream"
13
+ version = "1.0.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
16
+ dependencies = [
17
+ "anstyle",
18
+ "anstyle-parse",
19
+ "anstyle-query",
20
+ "anstyle-wincon",
21
+ "colorchoice",
22
+ "is_terminal_polyfill",
23
+ "utf8parse",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.14"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
31
+
32
+ [[package]]
33
+ name = "anstyle-parse"
34
+ version = "1.0.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
37
+ dependencies = [
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle-query"
43
+ version = "1.1.5"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
46
+ dependencies = [
47
+ "windows-sys 0.61.2",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-wincon"
52
+ version = "3.0.11"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
55
+ dependencies = [
56
+ "anstyle",
57
+ "once_cell_polyfill",
58
+ "windows-sys 0.61.2",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anyhow"
63
+ version = "1.0.102"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
66
+
67
+ [[package]]
68
+ name = "atomic-waker"
69
+ version = "1.1.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
72
+
73
+ [[package]]
74
+ name = "autocfg"
75
+ version = "1.5.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
78
+
79
+ [[package]]
80
+ name = "aws-lc-rs"
81
+ version = "1.16.3"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "0ec6fb3fe69024a75fa7e1bfb48aa6cf59706a101658ea01bfd33b2b248a038f"
84
+ dependencies = [
85
+ "aws-lc-sys",
86
+ "zeroize",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "aws-lc-sys"
91
+ version = "0.40.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "f50037ee5e1e41e7b8f9d161680a725bd1626cb6f8c7e901f91f942850852fe7"
94
+ dependencies = [
95
+ "cc",
96
+ "cmake",
97
+ "dunce",
98
+ "fs_extra",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "axoasset"
103
+ version = "2.0.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "1be1b9c2739b635e04c7bbcde9e89dd5e874b9e86e28f1b41c44eb830635d83e"
106
+ dependencies = [
107
+ "camino",
108
+ "image",
109
+ "lazy_static",
110
+ "miette",
111
+ "mime",
112
+ "reqwest",
113
+ "serde",
114
+ "serde_json",
115
+ "thiserror 2.0.18",
116
+ "url",
117
+ "walkdir",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "axoprocess"
122
+ version = "0.2.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "8a4b4798a6c02e91378537c63cd6e91726900b595450daa5d487bc3c11e95e1b"
125
+ dependencies = [
126
+ "miette",
127
+ "thiserror 2.0.18",
128
+ "tracing",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "axotag"
133
+ version = "0.3.0"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "dc923121fbc4cc72e9008436b5650b98e56f94b5799df59a1b4f572b5c6a7e6b"
136
+ dependencies = [
137
+ "miette",
138
+ "semver",
139
+ "thiserror 2.0.18",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "axoupdater"
144
+ version = "0.10.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "0ab66f118bab79524a27139b7341cdf1c4f839c6274ef89a6d8fb4365cb218cf"
147
+ dependencies = [
148
+ "axoasset",
149
+ "axoprocess",
150
+ "axotag",
151
+ "camino",
152
+ "homedir",
153
+ "miette",
154
+ "self-replace",
155
+ "serde",
156
+ "tempfile",
157
+ "thiserror 2.0.18",
158
+ "tokio",
159
+ "url",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "base64"
164
+ version = "0.22.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
167
+
168
+ [[package]]
169
+ name = "bitflags"
170
+ version = "2.11.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
173
+
174
+ [[package]]
175
+ name = "bumpalo"
176
+ version = "3.20.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
179
+
180
+ [[package]]
181
+ name = "bytemuck"
182
+ version = "1.25.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
185
+
186
+ [[package]]
187
+ name = "byteorder-lite"
188
+ version = "0.1.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
191
+
192
+ [[package]]
193
+ name = "bytes"
194
+ version = "1.11.1"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
197
+
198
+ [[package]]
199
+ name = "camino"
200
+ version = "1.2.2"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
203
+ dependencies = [
204
+ "serde_core",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "cc"
209
+ version = "1.2.57"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
212
+ dependencies = [
213
+ "find-msvc-tools",
214
+ "jobserver",
215
+ "libc",
216
+ "shlex",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "cesu8"
221
+ version = "1.1.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
224
+
225
+ [[package]]
226
+ name = "cfasim"
227
+ version = "0.3.9"
228
+ dependencies = [
229
+ "anyhow",
230
+ "axoupdater",
231
+ "clap",
232
+ "cliclack",
233
+ "flate2",
234
+ "home",
235
+ "include_dir",
236
+ "is_ci",
237
+ "pollster",
238
+ "semver",
239
+ "tar",
240
+ "tempfile",
241
+ "toml_edit",
242
+ "ureq",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "cfasim-model"
247
+ version = "0.3.9"
248
+ dependencies = [
249
+ "js-sys",
250
+ "wasm-bindgen",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "cfg-if"
255
+ version = "1.0.4"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
258
+
259
+ [[package]]
260
+ name = "cfg_aliases"
261
+ version = "0.2.1"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
264
+
265
+ [[package]]
266
+ name = "clap"
267
+ version = "4.6.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
270
+ dependencies = [
271
+ "clap_builder",
272
+ "clap_derive",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "clap_builder"
277
+ version = "4.6.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
280
+ dependencies = [
281
+ "anstream",
282
+ "anstyle",
283
+ "clap_lex",
284
+ "strsim",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "clap_derive"
289
+ version = "4.6.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
292
+ dependencies = [
293
+ "heck",
294
+ "proc-macro2",
295
+ "quote",
296
+ "syn",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "clap_lex"
301
+ version = "1.1.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
304
+
305
+ [[package]]
306
+ name = "cliclack"
307
+ version = "0.3.8"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "aa510b739c618c679375ea9c5af44ce9f591289546e874ad5910e7ce7df79844"
310
+ dependencies = [
311
+ "console 0.15.11",
312
+ "indicatif",
313
+ "once_cell",
314
+ "strsim",
315
+ "textwrap",
316
+ "zeroize",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "cmake"
321
+ version = "0.1.58"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
324
+ dependencies = [
325
+ "cc",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "colorchoice"
330
+ version = "1.0.5"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
333
+
334
+ [[package]]
335
+ name = "combine"
336
+ version = "4.6.7"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
339
+ dependencies = [
340
+ "bytes",
341
+ "memchr",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "console"
346
+ version = "0.15.11"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
349
+ dependencies = [
350
+ "encode_unicode",
351
+ "libc",
352
+ "once_cell",
353
+ "unicode-width 0.2.2",
354
+ "windows-sys 0.59.0",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "console"
359
+ version = "0.16.3"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
362
+ dependencies = [
363
+ "encode_unicode",
364
+ "libc",
365
+ "unicode-width 0.2.2",
366
+ "windows-sys 0.61.2",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "core-foundation"
371
+ version = "0.10.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
374
+ dependencies = [
375
+ "core-foundation-sys",
376
+ "libc",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "core-foundation-sys"
381
+ version = "0.8.7"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
384
+
385
+ [[package]]
386
+ name = "crc32fast"
387
+ version = "1.5.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
390
+ dependencies = [
391
+ "cfg-if",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "displaydoc"
396
+ version = "0.2.5"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
399
+ dependencies = [
400
+ "proc-macro2",
401
+ "quote",
402
+ "syn",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "dunce"
407
+ version = "1.0.5"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
410
+
411
+ [[package]]
412
+ name = "encode_unicode"
413
+ version = "1.0.0"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
416
+
417
+ [[package]]
418
+ name = "equivalent"
419
+ version = "1.0.2"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
422
+
423
+ [[package]]
424
+ name = "errno"
425
+ version = "0.3.14"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
428
+ dependencies = [
429
+ "libc",
430
+ "windows-sys 0.61.2",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "fastrand"
435
+ version = "2.4.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
438
+
439
+ [[package]]
440
+ name = "filetime"
441
+ version = "0.2.27"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
444
+ dependencies = [
445
+ "cfg-if",
446
+ "libc",
447
+ "libredox",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "find-msvc-tools"
452
+ version = "0.1.9"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
455
+
456
+ [[package]]
457
+ name = "flate2"
458
+ version = "1.1.9"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
461
+ dependencies = [
462
+ "crc32fast",
463
+ "miniz_oxide",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "foldhash"
468
+ version = "0.1.5"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
471
+
472
+ [[package]]
473
+ name = "form_urlencoded"
474
+ version = "1.2.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
477
+ dependencies = [
478
+ "percent-encoding",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "fs_extra"
483
+ version = "1.3.0"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
486
+
487
+ [[package]]
488
+ name = "futures-channel"
489
+ version = "0.3.32"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
492
+ dependencies = [
493
+ "futures-core",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "futures-core"
498
+ version = "0.3.32"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
501
+
502
+ [[package]]
503
+ name = "futures-task"
504
+ version = "0.3.32"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
507
+
508
+ [[package]]
509
+ name = "futures-util"
510
+ version = "0.3.32"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
513
+ dependencies = [
514
+ "futures-core",
515
+ "futures-task",
516
+ "pin-project-lite",
517
+ "slab",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "getrandom"
522
+ version = "0.2.17"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
525
+ dependencies = [
526
+ "cfg-if",
527
+ "js-sys",
528
+ "libc",
529
+ "wasi",
530
+ "wasm-bindgen",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "getrandom"
535
+ version = "0.3.4"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
538
+ dependencies = [
539
+ "cfg-if",
540
+ "js-sys",
541
+ "libc",
542
+ "r-efi 5.3.0",
543
+ "wasip2",
544
+ "wasm-bindgen",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "getrandom"
549
+ version = "0.4.2"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
552
+ dependencies = [
553
+ "cfg-if",
554
+ "libc",
555
+ "r-efi 6.0.0",
556
+ "wasip2",
557
+ "wasip3",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "hashbrown"
562
+ version = "0.15.5"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
565
+ dependencies = [
566
+ "foldhash",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "hashbrown"
571
+ version = "0.17.0"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
574
+
575
+ [[package]]
576
+ name = "heck"
577
+ version = "0.5.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
580
+
581
+ [[package]]
582
+ name = "home"
583
+ version = "0.5.12"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
586
+ dependencies = [
587
+ "windows-sys 0.61.2",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "homedir"
592
+ version = "0.3.6"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "68df315d2857b2d8d2898be54a85e1d001bbbe0dbb5f8ef847b48dd3a23c4527"
595
+ dependencies = [
596
+ "cfg-if",
597
+ "nix",
598
+ "widestring",
599
+ "windows",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "http"
604
+ version = "1.4.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
607
+ dependencies = [
608
+ "bytes",
609
+ "itoa",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "http-body"
614
+ version = "1.0.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
617
+ dependencies = [
618
+ "bytes",
619
+ "http",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "http-body-util"
624
+ version = "0.1.3"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
627
+ dependencies = [
628
+ "bytes",
629
+ "futures-core",
630
+ "http",
631
+ "http-body",
632
+ "pin-project-lite",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "httparse"
637
+ version = "1.10.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
640
+
641
+ [[package]]
642
+ name = "hyper"
643
+ version = "1.9.0"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
646
+ dependencies = [
647
+ "atomic-waker",
648
+ "bytes",
649
+ "futures-channel",
650
+ "futures-core",
651
+ "http",
652
+ "http-body",
653
+ "httparse",
654
+ "itoa",
655
+ "pin-project-lite",
656
+ "smallvec",
657
+ "tokio",
658
+ "want",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "hyper-rustls"
663
+ version = "0.27.9"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
666
+ dependencies = [
667
+ "http",
668
+ "hyper",
669
+ "hyper-util",
670
+ "rustls",
671
+ "tokio",
672
+ "tokio-rustls",
673
+ "tower-service",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "hyper-util"
678
+ version = "0.1.20"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
681
+ dependencies = [
682
+ "base64",
683
+ "bytes",
684
+ "futures-channel",
685
+ "futures-util",
686
+ "http",
687
+ "http-body",
688
+ "hyper",
689
+ "ipnet",
690
+ "libc",
691
+ "percent-encoding",
692
+ "pin-project-lite",
693
+ "socket2",
694
+ "tokio",
695
+ "tower-service",
696
+ "tracing",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "icu_collections"
701
+ version = "2.2.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
704
+ dependencies = [
705
+ "displaydoc",
706
+ "potential_utf",
707
+ "utf8_iter",
708
+ "yoke",
709
+ "zerofrom",
710
+ "zerovec",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "icu_locale_core"
715
+ version = "2.2.0"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
718
+ dependencies = [
719
+ "displaydoc",
720
+ "litemap",
721
+ "tinystr",
722
+ "writeable",
723
+ "zerovec",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "icu_normalizer"
728
+ version = "2.2.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
731
+ dependencies = [
732
+ "icu_collections",
733
+ "icu_normalizer_data",
734
+ "icu_properties",
735
+ "icu_provider",
736
+ "smallvec",
737
+ "zerovec",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "icu_normalizer_data"
742
+ version = "2.2.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
745
+
746
+ [[package]]
747
+ name = "icu_properties"
748
+ version = "2.2.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
751
+ dependencies = [
752
+ "icu_collections",
753
+ "icu_locale_core",
754
+ "icu_properties_data",
755
+ "icu_provider",
756
+ "zerotrie",
757
+ "zerovec",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "icu_properties_data"
762
+ version = "2.2.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
765
+
766
+ [[package]]
767
+ name = "icu_provider"
768
+ version = "2.2.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
771
+ dependencies = [
772
+ "displaydoc",
773
+ "icu_locale_core",
774
+ "writeable",
775
+ "yoke",
776
+ "zerofrom",
777
+ "zerotrie",
778
+ "zerovec",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "id-arena"
783
+ version = "2.3.0"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
786
+
787
+ [[package]]
788
+ name = "idna"
789
+ version = "1.1.0"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
792
+ dependencies = [
793
+ "idna_adapter",
794
+ "smallvec",
795
+ "utf8_iter",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "idna_adapter"
800
+ version = "1.2.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
803
+ dependencies = [
804
+ "icu_normalizer",
805
+ "icu_properties",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "image"
810
+ version = "0.25.10"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
813
+ dependencies = [
814
+ "bytemuck",
815
+ "byteorder-lite",
816
+ "moxcms",
817
+ "num-traits",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "include_dir"
822
+ version = "0.7.4"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
825
+ dependencies = [
826
+ "include_dir_macros",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "include_dir_macros"
831
+ version = "0.7.4"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
834
+ dependencies = [
835
+ "proc-macro2",
836
+ "quote",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "indexmap"
841
+ version = "2.14.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
844
+ dependencies = [
845
+ "equivalent",
846
+ "hashbrown 0.17.0",
847
+ "serde",
848
+ "serde_core",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "indicatif"
853
+ version = "0.18.4"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
856
+ dependencies = [
857
+ "console 0.16.3",
858
+ "portable-atomic",
859
+ "unicode-width 0.2.2",
860
+ "unit-prefix",
861
+ "web-time",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "ipnet"
866
+ version = "2.12.0"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
869
+
870
+ [[package]]
871
+ name = "iri-string"
872
+ version = "0.7.12"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
875
+ dependencies = [
876
+ "memchr",
877
+ "serde",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "is_ci"
882
+ version = "1.2.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
885
+
886
+ [[package]]
887
+ name = "is_terminal_polyfill"
888
+ version = "1.70.2"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
891
+
892
+ [[package]]
893
+ name = "itoa"
894
+ version = "1.0.18"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
897
+
898
+ [[package]]
899
+ name = "jni"
900
+ version = "0.21.1"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
903
+ dependencies = [
904
+ "cesu8",
905
+ "cfg-if",
906
+ "combine",
907
+ "jni-sys 0.3.1",
908
+ "log",
909
+ "thiserror 1.0.69",
910
+ "walkdir",
911
+ "windows-sys 0.45.0",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "jni-sys"
916
+ version = "0.3.1"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
919
+ dependencies = [
920
+ "jni-sys 0.4.1",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "jni-sys"
925
+ version = "0.4.1"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
928
+ dependencies = [
929
+ "jni-sys-macros",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "jni-sys-macros"
934
+ version = "0.4.1"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
937
+ dependencies = [
938
+ "quote",
939
+ "syn",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "jobserver"
944
+ version = "0.1.34"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
947
+ dependencies = [
948
+ "getrandom 0.3.4",
949
+ "libc",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "js-sys"
954
+ version = "0.3.91"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
957
+ dependencies = [
958
+ "once_cell",
959
+ "wasm-bindgen",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "lazy_static"
964
+ version = "1.5.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
967
+
968
+ [[package]]
969
+ name = "leb128fmt"
970
+ version = "0.1.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
973
+
974
+ [[package]]
975
+ name = "libc"
976
+ version = "0.2.183"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
979
+
980
+ [[package]]
981
+ name = "libredox"
982
+ version = "0.1.14"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
985
+ dependencies = [
986
+ "bitflags",
987
+ "libc",
988
+ "plain",
989
+ "redox_syscall 0.7.3",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "linux-raw-sys"
994
+ version = "0.12.1"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
997
+
998
+ [[package]]
999
+ name = "litemap"
1000
+ version = "0.8.2"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1003
+
1004
+ [[package]]
1005
+ name = "lock_api"
1006
+ version = "0.4.14"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1009
+ dependencies = [
1010
+ "scopeguard",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "log"
1015
+ version = "0.4.29"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1018
+
1019
+ [[package]]
1020
+ name = "lru-slab"
1021
+ version = "0.1.2"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1024
+
1025
+ [[package]]
1026
+ name = "memchr"
1027
+ version = "2.8.0"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1030
+
1031
+ [[package]]
1032
+ name = "miette"
1033
+ version = "7.6.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1036
+ dependencies = [
1037
+ "cfg-if",
1038
+ "miette-derive",
1039
+ "unicode-width 0.1.14",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "miette-derive"
1044
+ version = "7.6.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
1047
+ dependencies = [
1048
+ "proc-macro2",
1049
+ "quote",
1050
+ "syn",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "mime"
1055
+ version = "0.3.17"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1058
+
1059
+ [[package]]
1060
+ name = "miniz_oxide"
1061
+ version = "0.8.9"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1064
+ dependencies = [
1065
+ "adler2",
1066
+ "simd-adler32",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "mio"
1071
+ version = "1.2.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1074
+ dependencies = [
1075
+ "libc",
1076
+ "wasi",
1077
+ "windows-sys 0.61.2",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "moxcms"
1082
+ version = "0.8.1"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1085
+ dependencies = [
1086
+ "num-traits",
1087
+ "pxfm",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "nix"
1092
+ version = "0.30.1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1095
+ dependencies = [
1096
+ "bitflags",
1097
+ "cfg-if",
1098
+ "cfg_aliases",
1099
+ "libc",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "num-traits"
1104
+ version = "0.2.19"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1107
+ dependencies = [
1108
+ "autocfg",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "once_cell"
1113
+ version = "1.21.4"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1116
+
1117
+ [[package]]
1118
+ name = "once_cell_polyfill"
1119
+ version = "1.70.2"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1122
+
1123
+ [[package]]
1124
+ name = "openssl-probe"
1125
+ version = "0.2.1"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1128
+
1129
+ [[package]]
1130
+ name = "parking_lot"
1131
+ version = "0.12.5"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1134
+ dependencies = [
1135
+ "lock_api",
1136
+ "parking_lot_core",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "parking_lot_core"
1141
+ version = "0.9.12"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1144
+ dependencies = [
1145
+ "cfg-if",
1146
+ "libc",
1147
+ "redox_syscall 0.5.18",
1148
+ "smallvec",
1149
+ "windows-link 0.2.1",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "percent-encoding"
1154
+ version = "2.3.2"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1157
+
1158
+ [[package]]
1159
+ name = "pin-project-lite"
1160
+ version = "0.2.17"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1163
+
1164
+ [[package]]
1165
+ name = "plain"
1166
+ version = "0.2.3"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1169
+
1170
+ [[package]]
1171
+ name = "pollster"
1172
+ version = "0.4.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
1175
+
1176
+ [[package]]
1177
+ name = "portable-atomic"
1178
+ version = "1.13.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1181
+
1182
+ [[package]]
1183
+ name = "potential_utf"
1184
+ version = "0.1.5"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1187
+ dependencies = [
1188
+ "zerovec",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "ppv-lite86"
1193
+ version = "0.2.21"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1196
+ dependencies = [
1197
+ "zerocopy",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "prettyplease"
1202
+ version = "0.2.37"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1205
+ dependencies = [
1206
+ "proc-macro2",
1207
+ "syn",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "proc-macro2"
1212
+ version = "1.0.106"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1215
+ dependencies = [
1216
+ "unicode-ident",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "pxfm"
1221
+ version = "0.1.29"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
1224
+
1225
+ [[package]]
1226
+ name = "quinn"
1227
+ version = "0.11.9"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1230
+ dependencies = [
1231
+ "bytes",
1232
+ "cfg_aliases",
1233
+ "pin-project-lite",
1234
+ "quinn-proto",
1235
+ "quinn-udp",
1236
+ "rustc-hash",
1237
+ "rustls",
1238
+ "socket2",
1239
+ "thiserror 2.0.18",
1240
+ "tokio",
1241
+ "tracing",
1242
+ "web-time",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "quinn-proto"
1247
+ version = "0.11.14"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1250
+ dependencies = [
1251
+ "aws-lc-rs",
1252
+ "bytes",
1253
+ "getrandom 0.3.4",
1254
+ "lru-slab",
1255
+ "rand",
1256
+ "ring",
1257
+ "rustc-hash",
1258
+ "rustls",
1259
+ "rustls-pki-types",
1260
+ "slab",
1261
+ "thiserror 2.0.18",
1262
+ "tinyvec",
1263
+ "tracing",
1264
+ "web-time",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "quinn-udp"
1269
+ version = "0.5.14"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1272
+ dependencies = [
1273
+ "cfg_aliases",
1274
+ "libc",
1275
+ "once_cell",
1276
+ "socket2",
1277
+ "tracing",
1278
+ "windows-sys 0.59.0",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "quote"
1283
+ version = "1.0.45"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1286
+ dependencies = [
1287
+ "proc-macro2",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "r-efi"
1292
+ version = "5.3.0"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1295
+
1296
+ [[package]]
1297
+ name = "r-efi"
1298
+ version = "6.0.0"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1301
+
1302
+ [[package]]
1303
+ name = "rand"
1304
+ version = "0.9.4"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1307
+ dependencies = [
1308
+ "rand_chacha",
1309
+ "rand_core",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "rand_chacha"
1314
+ version = "0.9.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1317
+ dependencies = [
1318
+ "ppv-lite86",
1319
+ "rand_core",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "rand_core"
1324
+ version = "0.9.5"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1327
+ dependencies = [
1328
+ "getrandom 0.3.4",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "redox_syscall"
1333
+ version = "0.5.18"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1336
+ dependencies = [
1337
+ "bitflags",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "redox_syscall"
1342
+ version = "0.7.3"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
1345
+ dependencies = [
1346
+ "bitflags",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "reqwest"
1351
+ version = "0.13.2"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
1354
+ dependencies = [
1355
+ "base64",
1356
+ "bytes",
1357
+ "futures-core",
1358
+ "http",
1359
+ "http-body",
1360
+ "http-body-util",
1361
+ "hyper",
1362
+ "hyper-rustls",
1363
+ "hyper-util",
1364
+ "js-sys",
1365
+ "log",
1366
+ "percent-encoding",
1367
+ "pin-project-lite",
1368
+ "quinn",
1369
+ "rustls",
1370
+ "rustls-pki-types",
1371
+ "rustls-platform-verifier",
1372
+ "serde",
1373
+ "serde_json",
1374
+ "sync_wrapper",
1375
+ "tokio",
1376
+ "tokio-rustls",
1377
+ "tower",
1378
+ "tower-http",
1379
+ "tower-service",
1380
+ "url",
1381
+ "wasm-bindgen",
1382
+ "wasm-bindgen-futures",
1383
+ "web-sys",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "ring"
1388
+ version = "0.17.14"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1391
+ dependencies = [
1392
+ "cc",
1393
+ "cfg-if",
1394
+ "getrandom 0.2.17",
1395
+ "libc",
1396
+ "untrusted",
1397
+ "windows-sys 0.52.0",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "rustc-hash"
1402
+ version = "2.1.2"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1405
+
1406
+ [[package]]
1407
+ name = "rustix"
1408
+ version = "1.1.4"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1411
+ dependencies = [
1412
+ "bitflags",
1413
+ "errno",
1414
+ "libc",
1415
+ "linux-raw-sys",
1416
+ "windows-sys 0.61.2",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "rustls"
1421
+ version = "0.23.37"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1424
+ dependencies = [
1425
+ "aws-lc-rs",
1426
+ "log",
1427
+ "once_cell",
1428
+ "ring",
1429
+ "rustls-pki-types",
1430
+ "rustls-webpki",
1431
+ "subtle",
1432
+ "zeroize",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "rustls-native-certs"
1437
+ version = "0.8.3"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1440
+ dependencies = [
1441
+ "openssl-probe",
1442
+ "rustls-pki-types",
1443
+ "schannel",
1444
+ "security-framework",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "rustls-pki-types"
1449
+ version = "1.14.0"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1452
+ dependencies = [
1453
+ "web-time",
1454
+ "zeroize",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "rustls-platform-verifier"
1459
+ version = "0.6.2"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
1462
+ dependencies = [
1463
+ "core-foundation",
1464
+ "core-foundation-sys",
1465
+ "jni",
1466
+ "log",
1467
+ "once_cell",
1468
+ "rustls",
1469
+ "rustls-native-certs",
1470
+ "rustls-platform-verifier-android",
1471
+ "rustls-webpki",
1472
+ "security-framework",
1473
+ "security-framework-sys",
1474
+ "webpki-root-certs",
1475
+ "windows-sys 0.61.2",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "rustls-platform-verifier-android"
1480
+ version = "0.1.1"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1483
+
1484
+ [[package]]
1485
+ name = "rustls-webpki"
1486
+ version = "0.103.12"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
1489
+ dependencies = [
1490
+ "aws-lc-rs",
1491
+ "ring",
1492
+ "rustls-pki-types",
1493
+ "untrusted",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "rustversion"
1498
+ version = "1.0.22"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1501
+
1502
+ [[package]]
1503
+ name = "same-file"
1504
+ version = "1.0.6"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1507
+ dependencies = [
1508
+ "winapi-util",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "schannel"
1513
+ version = "0.1.29"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1516
+ dependencies = [
1517
+ "windows-sys 0.61.2",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "scopeguard"
1522
+ version = "1.2.0"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1525
+
1526
+ [[package]]
1527
+ name = "security-framework"
1528
+ version = "3.7.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1531
+ dependencies = [
1532
+ "bitflags",
1533
+ "core-foundation",
1534
+ "core-foundation-sys",
1535
+ "libc",
1536
+ "security-framework-sys",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "security-framework-sys"
1541
+ version = "2.17.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1544
+ dependencies = [
1545
+ "core-foundation-sys",
1546
+ "libc",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "self-replace"
1551
+ version = "1.5.0"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "03ec815b5eab420ab893f63393878d89c90fdd94c0bcc44c07abb8ad95552fb7"
1554
+ dependencies = [
1555
+ "fastrand",
1556
+ "tempfile",
1557
+ "windows-sys 0.52.0",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "semver"
1562
+ version = "1.0.28"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1565
+
1566
+ [[package]]
1567
+ name = "serde"
1568
+ version = "1.0.228"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1571
+ dependencies = [
1572
+ "serde_core",
1573
+ "serde_derive",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "serde_core"
1578
+ version = "1.0.228"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1581
+ dependencies = [
1582
+ "serde_derive",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "serde_derive"
1587
+ version = "1.0.228"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1590
+ dependencies = [
1591
+ "proc-macro2",
1592
+ "quote",
1593
+ "syn",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "serde_json"
1598
+ version = "1.0.149"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1601
+ dependencies = [
1602
+ "itoa",
1603
+ "memchr",
1604
+ "serde",
1605
+ "serde_core",
1606
+ "zmij",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "shlex"
1611
+ version = "1.3.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1614
+
1615
+ [[package]]
1616
+ name = "signal-hook-registry"
1617
+ version = "1.4.8"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1620
+ dependencies = [
1621
+ "errno",
1622
+ "libc",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "simd-adler32"
1627
+ version = "0.3.8"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1630
+
1631
+ [[package]]
1632
+ name = "slab"
1633
+ version = "0.4.12"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1636
+
1637
+ [[package]]
1638
+ name = "smallvec"
1639
+ version = "1.15.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1642
+
1643
+ [[package]]
1644
+ name = "smawk"
1645
+ version = "0.3.2"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1648
+
1649
+ [[package]]
1650
+ name = "socket2"
1651
+ version = "0.6.3"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1654
+ dependencies = [
1655
+ "libc",
1656
+ "windows-sys 0.61.2",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "stable_deref_trait"
1661
+ version = "1.2.1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1664
+
1665
+ [[package]]
1666
+ name = "strsim"
1667
+ version = "0.11.1"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1670
+
1671
+ [[package]]
1672
+ name = "subtle"
1673
+ version = "2.6.1"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1676
+
1677
+ [[package]]
1678
+ name = "syn"
1679
+ version = "2.0.117"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1682
+ dependencies = [
1683
+ "proc-macro2",
1684
+ "quote",
1685
+ "unicode-ident",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "sync_wrapper"
1690
+ version = "1.0.2"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1693
+ dependencies = [
1694
+ "futures-core",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "synstructure"
1699
+ version = "0.13.2"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1702
+ dependencies = [
1703
+ "proc-macro2",
1704
+ "quote",
1705
+ "syn",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "tar"
1710
+ version = "0.4.45"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
1713
+ dependencies = [
1714
+ "filetime",
1715
+ "libc",
1716
+ "xattr",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "tempfile"
1721
+ version = "3.27.0"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1724
+ dependencies = [
1725
+ "fastrand",
1726
+ "getrandom 0.4.2",
1727
+ "once_cell",
1728
+ "rustix",
1729
+ "windows-sys 0.61.2",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "textwrap"
1734
+ version = "0.16.2"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1737
+ dependencies = [
1738
+ "smawk",
1739
+ "unicode-linebreak",
1740
+ "unicode-width 0.2.2",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "thiserror"
1745
+ version = "1.0.69"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1748
+ dependencies = [
1749
+ "thiserror-impl 1.0.69",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "thiserror"
1754
+ version = "2.0.18"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1757
+ dependencies = [
1758
+ "thiserror-impl 2.0.18",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "thiserror-impl"
1763
+ version = "1.0.69"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1766
+ dependencies = [
1767
+ "proc-macro2",
1768
+ "quote",
1769
+ "syn",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "thiserror-impl"
1774
+ version = "2.0.18"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1777
+ dependencies = [
1778
+ "proc-macro2",
1779
+ "quote",
1780
+ "syn",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "tinystr"
1785
+ version = "0.8.3"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1788
+ dependencies = [
1789
+ "displaydoc",
1790
+ "zerovec",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "tinyvec"
1795
+ version = "1.11.0"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1798
+ dependencies = [
1799
+ "tinyvec_macros",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "tinyvec_macros"
1804
+ version = "0.1.1"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1807
+
1808
+ [[package]]
1809
+ name = "tokio"
1810
+ version = "1.52.1"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
1813
+ dependencies = [
1814
+ "bytes",
1815
+ "libc",
1816
+ "mio",
1817
+ "parking_lot",
1818
+ "pin-project-lite",
1819
+ "signal-hook-registry",
1820
+ "socket2",
1821
+ "tokio-macros",
1822
+ "windows-sys 0.61.2",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "tokio-macros"
1827
+ version = "2.7.0"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1830
+ dependencies = [
1831
+ "proc-macro2",
1832
+ "quote",
1833
+ "syn",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "tokio-rustls"
1838
+ version = "0.26.4"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1841
+ dependencies = [
1842
+ "rustls",
1843
+ "tokio",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "toml_datetime"
1848
+ version = "0.6.11"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1851
+
1852
+ [[package]]
1853
+ name = "toml_edit"
1854
+ version = "0.22.27"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1857
+ dependencies = [
1858
+ "indexmap",
1859
+ "toml_datetime",
1860
+ "toml_write",
1861
+ "winnow",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "toml_write"
1866
+ version = "0.1.2"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1869
+
1870
+ [[package]]
1871
+ name = "tower"
1872
+ version = "0.5.3"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1875
+ dependencies = [
1876
+ "futures-core",
1877
+ "futures-util",
1878
+ "pin-project-lite",
1879
+ "sync_wrapper",
1880
+ "tokio",
1881
+ "tower-layer",
1882
+ "tower-service",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "tower-http"
1887
+ version = "0.6.8"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1890
+ dependencies = [
1891
+ "bitflags",
1892
+ "bytes",
1893
+ "futures-util",
1894
+ "http",
1895
+ "http-body",
1896
+ "iri-string",
1897
+ "pin-project-lite",
1898
+ "tower",
1899
+ "tower-layer",
1900
+ "tower-service",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "tower-layer"
1905
+ version = "0.3.3"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1908
+
1909
+ [[package]]
1910
+ name = "tower-service"
1911
+ version = "0.3.3"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1914
+
1915
+ [[package]]
1916
+ name = "tracing"
1917
+ version = "0.1.44"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1920
+ dependencies = [
1921
+ "pin-project-lite",
1922
+ "tracing-attributes",
1923
+ "tracing-core",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "tracing-attributes"
1928
+ version = "0.1.31"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1931
+ dependencies = [
1932
+ "proc-macro2",
1933
+ "quote",
1934
+ "syn",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "tracing-core"
1939
+ version = "0.1.36"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1942
+ dependencies = [
1943
+ "once_cell",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "try-lock"
1948
+ version = "0.2.5"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1951
+
1952
+ [[package]]
1953
+ name = "unicode-ident"
1954
+ version = "1.0.24"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1957
+
1958
+ [[package]]
1959
+ name = "unicode-linebreak"
1960
+ version = "0.1.5"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1963
+
1964
+ [[package]]
1965
+ name = "unicode-width"
1966
+ version = "0.1.14"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1969
+
1970
+ [[package]]
1971
+ name = "unicode-width"
1972
+ version = "0.2.2"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1975
+
1976
+ [[package]]
1977
+ name = "unicode-xid"
1978
+ version = "0.2.6"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1981
+
1982
+ [[package]]
1983
+ name = "unit-prefix"
1984
+ version = "0.5.2"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
1987
+
1988
+ [[package]]
1989
+ name = "untrusted"
1990
+ version = "0.9.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1993
+
1994
+ [[package]]
1995
+ name = "ureq"
1996
+ version = "3.3.0"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
1999
+ dependencies = [
2000
+ "base64",
2001
+ "flate2",
2002
+ "log",
2003
+ "percent-encoding",
2004
+ "rustls",
2005
+ "rustls-pki-types",
2006
+ "ureq-proto",
2007
+ "utf8-zero",
2008
+ "webpki-roots",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "ureq-proto"
2013
+ version = "0.6.0"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
2016
+ dependencies = [
2017
+ "base64",
2018
+ "http",
2019
+ "httparse",
2020
+ "log",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "url"
2025
+ version = "2.5.8"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2028
+ dependencies = [
2029
+ "form_urlencoded",
2030
+ "idna",
2031
+ "percent-encoding",
2032
+ "serde",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "utf8-zero"
2037
+ version = "0.8.1"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2040
+
2041
+ [[package]]
2042
+ name = "utf8_iter"
2043
+ version = "1.0.4"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2046
+
2047
+ [[package]]
2048
+ name = "utf8parse"
2049
+ version = "0.2.2"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2052
+
2053
+ [[package]]
2054
+ name = "walkdir"
2055
+ version = "2.5.0"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2058
+ dependencies = [
2059
+ "same-file",
2060
+ "winapi-util",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "want"
2065
+ version = "0.3.1"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2068
+ dependencies = [
2069
+ "try-lock",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "wasi"
2074
+ version = "0.11.1+wasi-snapshot-preview1"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2077
+
2078
+ [[package]]
2079
+ name = "wasip2"
2080
+ version = "1.0.3+wasi-0.2.9"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2083
+ dependencies = [
2084
+ "wit-bindgen 0.57.1",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "wasip3"
2089
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2092
+ dependencies = [
2093
+ "wit-bindgen 0.51.0",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "wasm-bindgen"
2098
+ version = "0.2.114"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
2101
+ dependencies = [
2102
+ "cfg-if",
2103
+ "once_cell",
2104
+ "rustversion",
2105
+ "wasm-bindgen-macro",
2106
+ "wasm-bindgen-shared",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "wasm-bindgen-futures"
2111
+ version = "0.4.64"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
2114
+ dependencies = [
2115
+ "cfg-if",
2116
+ "futures-util",
2117
+ "js-sys",
2118
+ "once_cell",
2119
+ "wasm-bindgen",
2120
+ "web-sys",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "wasm-bindgen-macro"
2125
+ version = "0.2.114"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2128
+ dependencies = [
2129
+ "quote",
2130
+ "wasm-bindgen-macro-support",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "wasm-bindgen-macro-support"
2135
+ version = "0.2.114"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2138
+ dependencies = [
2139
+ "bumpalo",
2140
+ "proc-macro2",
2141
+ "quote",
2142
+ "syn",
2143
+ "wasm-bindgen-shared",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "wasm-bindgen-shared"
2148
+ version = "0.2.114"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2151
+ dependencies = [
2152
+ "unicode-ident",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "wasm-encoder"
2157
+ version = "0.244.0"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2160
+ dependencies = [
2161
+ "leb128fmt",
2162
+ "wasmparser",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "wasm-metadata"
2167
+ version = "0.244.0"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2170
+ dependencies = [
2171
+ "anyhow",
2172
+ "indexmap",
2173
+ "wasm-encoder",
2174
+ "wasmparser",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "wasmparser"
2179
+ version = "0.244.0"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2182
+ dependencies = [
2183
+ "bitflags",
2184
+ "hashbrown 0.15.5",
2185
+ "indexmap",
2186
+ "semver",
2187
+ ]
2188
+
2189
+ [[package]]
2190
+ name = "web-sys"
2191
+ version = "0.3.91"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
2194
+ dependencies = [
2195
+ "js-sys",
2196
+ "wasm-bindgen",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "web-time"
2201
+ version = "1.1.0"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2204
+ dependencies = [
2205
+ "js-sys",
2206
+ "wasm-bindgen",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "webpki-root-certs"
2211
+ version = "1.0.7"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
2214
+ dependencies = [
2215
+ "rustls-pki-types",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "webpki-roots"
2220
+ version = "1.0.6"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
2223
+ dependencies = [
2224
+ "rustls-pki-types",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "widestring"
2229
+ version = "1.2.1"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
2232
+
2233
+ [[package]]
2234
+ name = "winapi-util"
2235
+ version = "0.1.11"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2238
+ dependencies = [
2239
+ "windows-sys 0.61.2",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "windows"
2244
+ version = "0.61.3"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2247
+ dependencies = [
2248
+ "windows-collections",
2249
+ "windows-core",
2250
+ "windows-future",
2251
+ "windows-link 0.1.3",
2252
+ "windows-numerics",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "windows-collections"
2257
+ version = "0.2.0"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2260
+ dependencies = [
2261
+ "windows-core",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "windows-core"
2266
+ version = "0.61.2"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2269
+ dependencies = [
2270
+ "windows-implement",
2271
+ "windows-interface",
2272
+ "windows-link 0.1.3",
2273
+ "windows-result",
2274
+ "windows-strings",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "windows-future"
2279
+ version = "0.2.1"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2282
+ dependencies = [
2283
+ "windows-core",
2284
+ "windows-link 0.1.3",
2285
+ "windows-threading",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "windows-implement"
2290
+ version = "0.60.2"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2293
+ dependencies = [
2294
+ "proc-macro2",
2295
+ "quote",
2296
+ "syn",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "windows-interface"
2301
+ version = "0.59.3"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2304
+ dependencies = [
2305
+ "proc-macro2",
2306
+ "quote",
2307
+ "syn",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "windows-link"
2312
+ version = "0.1.3"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2315
+
2316
+ [[package]]
2317
+ name = "windows-link"
2318
+ version = "0.2.1"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2321
+
2322
+ [[package]]
2323
+ name = "windows-numerics"
2324
+ version = "0.2.0"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2327
+ dependencies = [
2328
+ "windows-core",
2329
+ "windows-link 0.1.3",
2330
+ ]
2331
+
2332
+ [[package]]
2333
+ name = "windows-result"
2334
+ version = "0.3.4"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2337
+ dependencies = [
2338
+ "windows-link 0.1.3",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "windows-strings"
2343
+ version = "0.4.2"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2346
+ dependencies = [
2347
+ "windows-link 0.1.3",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "windows-sys"
2352
+ version = "0.45.0"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2355
+ dependencies = [
2356
+ "windows-targets 0.42.2",
2357
+ ]
2358
+
2359
+ [[package]]
2360
+ name = "windows-sys"
2361
+ version = "0.52.0"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2364
+ dependencies = [
2365
+ "windows-targets 0.52.6",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "windows-sys"
2370
+ version = "0.59.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2373
+ dependencies = [
2374
+ "windows-targets 0.52.6",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "windows-sys"
2379
+ version = "0.61.2"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2382
+ dependencies = [
2383
+ "windows-link 0.2.1",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "windows-targets"
2388
+ version = "0.42.2"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2391
+ dependencies = [
2392
+ "windows_aarch64_gnullvm 0.42.2",
2393
+ "windows_aarch64_msvc 0.42.2",
2394
+ "windows_i686_gnu 0.42.2",
2395
+ "windows_i686_msvc 0.42.2",
2396
+ "windows_x86_64_gnu 0.42.2",
2397
+ "windows_x86_64_gnullvm 0.42.2",
2398
+ "windows_x86_64_msvc 0.42.2",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "windows-targets"
2403
+ version = "0.52.6"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2406
+ dependencies = [
2407
+ "windows_aarch64_gnullvm 0.52.6",
2408
+ "windows_aarch64_msvc 0.52.6",
2409
+ "windows_i686_gnu 0.52.6",
2410
+ "windows_i686_gnullvm",
2411
+ "windows_i686_msvc 0.52.6",
2412
+ "windows_x86_64_gnu 0.52.6",
2413
+ "windows_x86_64_gnullvm 0.52.6",
2414
+ "windows_x86_64_msvc 0.52.6",
2415
+ ]
2416
+
2417
+ [[package]]
2418
+ name = "windows-threading"
2419
+ version = "0.1.0"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2422
+ dependencies = [
2423
+ "windows-link 0.1.3",
2424
+ ]
2425
+
2426
+ [[package]]
2427
+ name = "windows_aarch64_gnullvm"
2428
+ version = "0.42.2"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2431
+
2432
+ [[package]]
2433
+ name = "windows_aarch64_gnullvm"
2434
+ version = "0.52.6"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2437
+
2438
+ [[package]]
2439
+ name = "windows_aarch64_msvc"
2440
+ version = "0.42.2"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2443
+
2444
+ [[package]]
2445
+ name = "windows_aarch64_msvc"
2446
+ version = "0.52.6"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2449
+
2450
+ [[package]]
2451
+ name = "windows_i686_gnu"
2452
+ version = "0.42.2"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2455
+
2456
+ [[package]]
2457
+ name = "windows_i686_gnu"
2458
+ version = "0.52.6"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2461
+
2462
+ [[package]]
2463
+ name = "windows_i686_gnullvm"
2464
+ version = "0.52.6"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2467
+
2468
+ [[package]]
2469
+ name = "windows_i686_msvc"
2470
+ version = "0.42.2"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2473
+
2474
+ [[package]]
2475
+ name = "windows_i686_msvc"
2476
+ version = "0.52.6"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2479
+
2480
+ [[package]]
2481
+ name = "windows_x86_64_gnu"
2482
+ version = "0.42.2"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2485
+
2486
+ [[package]]
2487
+ name = "windows_x86_64_gnu"
2488
+ version = "0.52.6"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2491
+
2492
+ [[package]]
2493
+ name = "windows_x86_64_gnullvm"
2494
+ version = "0.42.2"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2497
+
2498
+ [[package]]
2499
+ name = "windows_x86_64_gnullvm"
2500
+ version = "0.52.6"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2503
+
2504
+ [[package]]
2505
+ name = "windows_x86_64_msvc"
2506
+ version = "0.42.2"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2509
+
2510
+ [[package]]
2511
+ name = "windows_x86_64_msvc"
2512
+ version = "0.52.6"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2515
+
2516
+ [[package]]
2517
+ name = "winnow"
2518
+ version = "0.7.15"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2521
+ dependencies = [
2522
+ "memchr",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "wit-bindgen"
2527
+ version = "0.51.0"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2530
+ dependencies = [
2531
+ "wit-bindgen-rust-macro",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "wit-bindgen"
2536
+ version = "0.57.1"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2539
+
2540
+ [[package]]
2541
+ name = "wit-bindgen-core"
2542
+ version = "0.51.0"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2545
+ dependencies = [
2546
+ "anyhow",
2547
+ "heck",
2548
+ "wit-parser",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "wit-bindgen-rust"
2553
+ version = "0.51.0"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2556
+ dependencies = [
2557
+ "anyhow",
2558
+ "heck",
2559
+ "indexmap",
2560
+ "prettyplease",
2561
+ "syn",
2562
+ "wasm-metadata",
2563
+ "wit-bindgen-core",
2564
+ "wit-component",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "wit-bindgen-rust-macro"
2569
+ version = "0.51.0"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2572
+ dependencies = [
2573
+ "anyhow",
2574
+ "prettyplease",
2575
+ "proc-macro2",
2576
+ "quote",
2577
+ "syn",
2578
+ "wit-bindgen-core",
2579
+ "wit-bindgen-rust",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "wit-component"
2584
+ version = "0.244.0"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2587
+ dependencies = [
2588
+ "anyhow",
2589
+ "bitflags",
2590
+ "indexmap",
2591
+ "log",
2592
+ "serde",
2593
+ "serde_derive",
2594
+ "serde_json",
2595
+ "wasm-encoder",
2596
+ "wasm-metadata",
2597
+ "wasmparser",
2598
+ "wit-parser",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "wit-parser"
2603
+ version = "0.244.0"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2606
+ dependencies = [
2607
+ "anyhow",
2608
+ "id-arena",
2609
+ "indexmap",
2610
+ "log",
2611
+ "semver",
2612
+ "serde",
2613
+ "serde_derive",
2614
+ "serde_json",
2615
+ "unicode-xid",
2616
+ "wasmparser",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "writeable"
2621
+ version = "0.6.3"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2624
+
2625
+ [[package]]
2626
+ name = "xattr"
2627
+ version = "1.6.1"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
2630
+ dependencies = [
2631
+ "libc",
2632
+ "rustix",
2633
+ ]
2634
+
2635
+ [[package]]
2636
+ name = "yoke"
2637
+ version = "0.8.2"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2640
+ dependencies = [
2641
+ "stable_deref_trait",
2642
+ "yoke-derive",
2643
+ "zerofrom",
2644
+ ]
2645
+
2646
+ [[package]]
2647
+ name = "yoke-derive"
2648
+ version = "0.8.2"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2651
+ dependencies = [
2652
+ "proc-macro2",
2653
+ "quote",
2654
+ "syn",
2655
+ "synstructure",
2656
+ ]
2657
+
2658
+ [[package]]
2659
+ name = "zerocopy"
2660
+ version = "0.8.48"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2663
+ dependencies = [
2664
+ "zerocopy-derive",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "zerocopy-derive"
2669
+ version = "0.8.48"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2672
+ dependencies = [
2673
+ "proc-macro2",
2674
+ "quote",
2675
+ "syn",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "zerofrom"
2680
+ version = "0.1.7"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
2683
+ dependencies = [
2684
+ "zerofrom-derive",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "zerofrom-derive"
2689
+ version = "0.1.7"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2692
+ dependencies = [
2693
+ "proc-macro2",
2694
+ "quote",
2695
+ "syn",
2696
+ "synstructure",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "zeroize"
2701
+ version = "1.8.2"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2704
+ dependencies = [
2705
+ "zeroize_derive",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "zeroize_derive"
2710
+ version = "1.4.3"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
2713
+ dependencies = [
2714
+ "proc-macro2",
2715
+ "quote",
2716
+ "syn",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "zerotrie"
2721
+ version = "0.2.4"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2724
+ dependencies = [
2725
+ "displaydoc",
2726
+ "yoke",
2727
+ "zerofrom",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "zerovec"
2732
+ version = "0.11.6"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2735
+ dependencies = [
2736
+ "yoke",
2737
+ "zerofrom",
2738
+ "zerovec-derive",
2739
+ ]
2740
+
2741
+ [[package]]
2742
+ name = "zerovec-derive"
2743
+ version = "0.11.3"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2746
+ dependencies = [
2747
+ "proc-macro2",
2748
+ "quote",
2749
+ "syn",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "zmij"
2754
+ version = "1.0.21"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"