runtime-checker 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Cargo.lock ADDED
@@ -0,0 +1,1972 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "0.6.21"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse 0.2.7",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstream"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
46
+ dependencies = [
47
+ "anstyle",
48
+ "anstyle-parse 1.0.0",
49
+ "anstyle-query",
50
+ "anstyle-wincon",
51
+ "colorchoice",
52
+ "is_terminal_polyfill",
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle"
58
+ version = "1.0.14"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
61
+
62
+ [[package]]
63
+ name = "anstyle-parse"
64
+ version = "0.2.7"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
67
+ dependencies = [
68
+ "utf8parse",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle-parse"
73
+ version = "1.0.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
76
+ dependencies = [
77
+ "utf8parse",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-query"
82
+ version = "1.1.5"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
85
+ dependencies = [
86
+ "windows-sys 0.61.2",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anstyle-wincon"
91
+ version = "3.0.11"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
94
+ dependencies = [
95
+ "anstyle",
96
+ "once_cell_polyfill",
97
+ "windows-sys 0.61.2",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "anyhow"
102
+ version = "1.0.102"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
105
+
106
+ [[package]]
107
+ name = "assert_cmd"
108
+ version = "2.2.2"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
111
+ dependencies = [
112
+ "anstyle",
113
+ "bstr",
114
+ "libc",
115
+ "predicates",
116
+ "predicates-core",
117
+ "predicates-tree",
118
+ "wait-timeout",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "autocfg"
123
+ version = "1.5.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
126
+
127
+ [[package]]
128
+ name = "base64"
129
+ version = "0.22.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
132
+
133
+ [[package]]
134
+ name = "bitflags"
135
+ version = "2.13.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
138
+ dependencies = [
139
+ "serde_core",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "bstr"
144
+ version = "1.12.1"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
147
+ dependencies = [
148
+ "memchr",
149
+ "regex-automata",
150
+ "serde",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "bytecount"
155
+ version = "0.6.9"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
158
+
159
+ [[package]]
160
+ name = "castaway"
161
+ version = "0.2.4"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
164
+ dependencies = [
165
+ "rustversion",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "cc"
170
+ version = "1.2.63"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
173
+ dependencies = [
174
+ "find-msvc-tools",
175
+ "shlex",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "cfg-if"
180
+ version = "1.0.4"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
183
+
184
+ [[package]]
185
+ name = "clap"
186
+ version = "4.6.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
189
+ dependencies = [
190
+ "clap_builder",
191
+ "clap_derive",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "clap_builder"
196
+ version = "4.6.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
199
+ dependencies = [
200
+ "anstream 1.0.0",
201
+ "anstyle",
202
+ "clap_lex",
203
+ "strsim",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "clap_derive"
208
+ version = "4.6.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
211
+ dependencies = [
212
+ "heck",
213
+ "proc-macro2",
214
+ "quote",
215
+ "syn",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "clap_lex"
220
+ version = "1.1.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
223
+
224
+ [[package]]
225
+ name = "colorchoice"
226
+ version = "1.0.5"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
229
+
230
+ [[package]]
231
+ name = "compact_str"
232
+ version = "0.9.1"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
235
+ dependencies = [
236
+ "castaway",
237
+ "cfg-if",
238
+ "itoa",
239
+ "rustversion",
240
+ "ryu",
241
+ "static_assertions",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "cow-utils"
246
+ version = "0.1.3"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
249
+
250
+ [[package]]
251
+ name = "crc32fast"
252
+ version = "1.5.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
255
+ dependencies = [
256
+ "cfg-if",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "crossbeam-deque"
261
+ version = "0.8.6"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
264
+ dependencies = [
265
+ "crossbeam-epoch",
266
+ "crossbeam-utils",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "crossbeam-epoch"
271
+ version = "0.9.18"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
274
+ dependencies = [
275
+ "crossbeam-utils",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "crossbeam-utils"
280
+ version = "0.8.21"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
283
+
284
+ [[package]]
285
+ name = "difflib"
286
+ version = "0.4.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
289
+
290
+ [[package]]
291
+ name = "displaydoc"
292
+ version = "0.2.6"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
295
+ dependencies = [
296
+ "proc-macro2",
297
+ "quote",
298
+ "syn",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "dragonbox_ecma"
303
+ version = "0.1.12"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
306
+
307
+ [[package]]
308
+ name = "either"
309
+ version = "1.16.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
312
+
313
+ [[package]]
314
+ name = "equivalent"
315
+ version = "1.0.2"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
318
+
319
+ [[package]]
320
+ name = "errno"
321
+ version = "0.3.14"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
324
+ dependencies = [
325
+ "libc",
326
+ "windows-sys 0.61.2",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "fastrand"
331
+ version = "2.4.1"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
334
+
335
+ [[package]]
336
+ name = "fff-grep"
337
+ version = "0.9.5-nightly.7d7910b"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "619c9c811060dd2df6300c6adeff2026ce2ea473c8afe108865fcefdd1d1c2ef"
340
+ dependencies = [
341
+ "bstr",
342
+ "memchr",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "find-msvc-tools"
347
+ version = "0.1.9"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
350
+
351
+ [[package]]
352
+ name = "flate2"
353
+ version = "1.1.9"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
356
+ dependencies = [
357
+ "crc32fast",
358
+ "miniz_oxide",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "foldhash"
363
+ version = "0.1.5"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
366
+
367
+ [[package]]
368
+ name = "form_urlencoded"
369
+ version = "1.2.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
372
+ dependencies = [
373
+ "percent-encoding",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "getrandom"
378
+ version = "0.2.17"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
381
+ dependencies = [
382
+ "cfg-if",
383
+ "libc",
384
+ "wasi",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "getrandom"
389
+ version = "0.4.2"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
392
+ dependencies = [
393
+ "cfg-if",
394
+ "libc",
395
+ "r-efi",
396
+ "wasip2",
397
+ "wasip3",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "globset"
402
+ version = "0.4.18"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
405
+ dependencies = [
406
+ "aho-corasick",
407
+ "bstr",
408
+ "log",
409
+ "regex-automata",
410
+ "regex-syntax",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "hashbrown"
415
+ version = "0.15.5"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
418
+ dependencies = [
419
+ "foldhash",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "hashbrown"
424
+ version = "0.17.1"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
427
+ dependencies = [
428
+ "allocator-api2",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "heck"
433
+ version = "0.5.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
436
+
437
+ [[package]]
438
+ name = "icu_collections"
439
+ version = "2.2.0"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
442
+ dependencies = [
443
+ "displaydoc",
444
+ "potential_utf",
445
+ "utf8_iter",
446
+ "yoke",
447
+ "zerofrom",
448
+ "zerovec",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "icu_locale_core"
453
+ version = "2.2.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
456
+ dependencies = [
457
+ "displaydoc",
458
+ "litemap",
459
+ "tinystr",
460
+ "writeable",
461
+ "zerovec",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "icu_normalizer"
466
+ version = "2.2.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
469
+ dependencies = [
470
+ "icu_collections",
471
+ "icu_normalizer_data",
472
+ "icu_properties",
473
+ "icu_provider",
474
+ "smallvec",
475
+ "zerovec",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "icu_normalizer_data"
480
+ version = "2.2.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
483
+
484
+ [[package]]
485
+ name = "icu_properties"
486
+ version = "2.2.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
489
+ dependencies = [
490
+ "icu_collections",
491
+ "icu_locale_core",
492
+ "icu_properties_data",
493
+ "icu_provider",
494
+ "zerotrie",
495
+ "zerovec",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "icu_properties_data"
500
+ version = "2.2.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
503
+
504
+ [[package]]
505
+ name = "icu_provider"
506
+ version = "2.2.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
509
+ dependencies = [
510
+ "displaydoc",
511
+ "icu_locale_core",
512
+ "writeable",
513
+ "yoke",
514
+ "zerofrom",
515
+ "zerotrie",
516
+ "zerovec",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "id-arena"
521
+ version = "2.3.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
524
+
525
+ [[package]]
526
+ name = "idna"
527
+ version = "1.1.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
530
+ dependencies = [
531
+ "idna_adapter",
532
+ "smallvec",
533
+ "utf8_iter",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "idna_adapter"
538
+ version = "1.2.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
541
+ dependencies = [
542
+ "icu_normalizer",
543
+ "icu_properties",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "ignore"
548
+ version = "0.4.26"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
551
+ dependencies = [
552
+ "crossbeam-deque",
553
+ "globset",
554
+ "log",
555
+ "memchr",
556
+ "regex-automata",
557
+ "same-file",
558
+ "walkdir",
559
+ "winapi-util",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "indexmap"
564
+ version = "2.14.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
567
+ dependencies = [
568
+ "equivalent",
569
+ "hashbrown 0.17.1",
570
+ "serde",
571
+ "serde_core",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "is_terminal_polyfill"
576
+ version = "1.70.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
579
+
580
+ [[package]]
581
+ name = "itertools"
582
+ version = "0.14.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
585
+ dependencies = [
586
+ "either",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "itoa"
591
+ version = "1.0.18"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
594
+
595
+ [[package]]
596
+ name = "leb128fmt"
597
+ version = "0.1.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
600
+
601
+ [[package]]
602
+ name = "libc"
603
+ version = "0.2.186"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
606
+
607
+ [[package]]
608
+ name = "libmimalloc-sys"
609
+ version = "0.1.49"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
612
+ dependencies = [
613
+ "cc",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "linux-raw-sys"
618
+ version = "0.12.1"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
621
+
622
+ [[package]]
623
+ name = "litemap"
624
+ version = "0.8.2"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
627
+
628
+ [[package]]
629
+ name = "log"
630
+ version = "0.4.32"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
633
+
634
+ [[package]]
635
+ name = "memchr"
636
+ version = "2.8.1"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
639
+
640
+ [[package]]
641
+ name = "miette"
642
+ version = "7.6.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
645
+ dependencies = [
646
+ "cfg-if",
647
+ "miette-derive",
648
+ "unicode-width 0.1.14",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "miette-derive"
653
+ version = "7.6.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
656
+ dependencies = [
657
+ "proc-macro2",
658
+ "quote",
659
+ "syn",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "mimalloc"
664
+ version = "0.1.52"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
667
+ dependencies = [
668
+ "libmimalloc-sys",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "minimal-lexical"
673
+ version = "0.2.1"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
676
+
677
+ [[package]]
678
+ name = "miniz_oxide"
679
+ version = "0.8.9"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
682
+ dependencies = [
683
+ "adler2",
684
+ "simd-adler32",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "node-semver"
689
+ version = "2.2.0"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "3b1a233ea5dc37d2cfba31cfc87a5a56cc2a9c04e3672c15d179ca118dae40a7"
692
+ dependencies = [
693
+ "bytecount",
694
+ "miette",
695
+ "nom",
696
+ "serde",
697
+ "thiserror 1.0.69",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "nom"
702
+ version = "7.1.3"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
705
+ dependencies = [
706
+ "memchr",
707
+ "minimal-lexical",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "nonmax"
712
+ version = "0.5.5"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
715
+
716
+ [[package]]
717
+ name = "num-bigint"
718
+ version = "0.4.6"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
721
+ dependencies = [
722
+ "num-integer",
723
+ "num-traits",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "num-integer"
728
+ version = "0.1.46"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
731
+ dependencies = [
732
+ "num-traits",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "num-traits"
737
+ version = "0.2.19"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
740
+ dependencies = [
741
+ "autocfg",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "once_cell"
746
+ version = "1.21.4"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
749
+
750
+ [[package]]
751
+ name = "once_cell_polyfill"
752
+ version = "1.70.2"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
755
+
756
+ [[package]]
757
+ name = "owo-colors"
758
+ version = "4.3.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
761
+
762
+ [[package]]
763
+ name = "oxc-miette"
764
+ version = "2.7.1"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
767
+ dependencies = [
768
+ "cfg-if",
769
+ "owo-colors",
770
+ "oxc-miette-derive",
771
+ "textwrap",
772
+ "thiserror 2.0.18",
773
+ "unicode-segmentation",
774
+ "unicode-width 0.2.2",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "oxc-miette-derive"
779
+ version = "2.7.1"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
782
+ dependencies = [
783
+ "proc-macro2",
784
+ "quote",
785
+ "syn",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "oxc_allocator"
790
+ version = "0.135.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "3d732c2d8df8067a8d7417be81a8a4631e3201ad420ae70aa2426aebf7bc0326"
793
+ dependencies = [
794
+ "allocator-api2",
795
+ "hashbrown 0.17.1",
796
+ "oxc_data_structures",
797
+ "rustc-hash",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "oxc_ast"
802
+ version = "0.135.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "29512a9acf168a734cbead68ae798c07102b9ecb897cdbe17a40d327b5fff2ec"
805
+ dependencies = [
806
+ "bitflags",
807
+ "oxc_allocator",
808
+ "oxc_ast_macros",
809
+ "oxc_data_structures",
810
+ "oxc_diagnostics",
811
+ "oxc_estree",
812
+ "oxc_regular_expression",
813
+ "oxc_span",
814
+ "oxc_str",
815
+ "oxc_syntax",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "oxc_ast_macros"
820
+ version = "0.135.0"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "06186227ab1f27f214d824030ef8d7abd604fb24cd647d2acfebfe6bbe378dc6"
823
+ dependencies = [
824
+ "phf",
825
+ "proc-macro2",
826
+ "quote",
827
+ "syn",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "oxc_ast_visit"
832
+ version = "0.135.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "af8a8771bbedc5904b6536822fb719f76291d00ab2bccbf5f98950d666f0154f"
835
+ dependencies = [
836
+ "oxc_allocator",
837
+ "oxc_ast",
838
+ "oxc_span",
839
+ "oxc_syntax",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "oxc_data_structures"
844
+ version = "0.135.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "46270ed833a7d2e5f5fbf0c51f970c2d7e1ef09356d40798cf4702f7d2dae30d"
847
+
848
+ [[package]]
849
+ name = "oxc_diagnostics"
850
+ version = "0.135.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "1b0ebb338486583af9e603f4d20be123ad3ae52a5415265454995020386d8afe"
853
+ dependencies = [
854
+ "cow-utils",
855
+ "oxc-miette",
856
+ "percent-encoding",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "oxc_ecmascript"
861
+ version = "0.135.0"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "eef5f3e346539b48dbda9d0b618021ba6bb781f7a192476e4bf9b18df7ccaab4"
864
+ dependencies = [
865
+ "cow-utils",
866
+ "num-bigint",
867
+ "num-traits",
868
+ "oxc_allocator",
869
+ "oxc_ast",
870
+ "oxc_regular_expression",
871
+ "oxc_span",
872
+ "oxc_syntax",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "oxc_estree"
877
+ version = "0.135.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "816dfd17df8b02a45b122a1f7bb3c1486d4392e0163aea0e6334ad3894a7ea6b"
880
+
881
+ [[package]]
882
+ name = "oxc_index"
883
+ version = "5.0.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "191884bee6c3744909a51acc7d78d4ae370d817b25875b10642f632327b6296e"
886
+ dependencies = [
887
+ "nonmax",
888
+ "serde",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "oxc_parser"
893
+ version = "0.135.0"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "43cb9af99a1d02989ed53780e3b2b67757226d4501365e65781ae4519be150b6"
896
+ dependencies = [
897
+ "bitflags",
898
+ "cow-utils",
899
+ "memchr",
900
+ "num-bigint",
901
+ "num-traits",
902
+ "oxc_allocator",
903
+ "oxc_ast",
904
+ "oxc_data_structures",
905
+ "oxc_diagnostics",
906
+ "oxc_ecmascript",
907
+ "oxc_regular_expression",
908
+ "oxc_span",
909
+ "oxc_str",
910
+ "oxc_syntax",
911
+ "rustc-hash",
912
+ "seq-macro",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "oxc_regular_expression"
917
+ version = "0.135.0"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "ecfe28ec0ffa88784155900d5b7ea1f8383f69d80659ed86f1c4a18a6f117488"
920
+ dependencies = [
921
+ "bitflags",
922
+ "oxc_allocator",
923
+ "oxc_ast_macros",
924
+ "oxc_diagnostics",
925
+ "oxc_span",
926
+ "oxc_str",
927
+ "phf",
928
+ "rustc-hash",
929
+ "unicode-id-start",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "oxc_semantic"
934
+ version = "0.135.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "6735efd98d54e0f5e8c30a6b17df921085373d54b2b1e10e42d7f4ec8d2597bc"
937
+ dependencies = [
938
+ "itertools",
939
+ "memchr",
940
+ "oxc_allocator",
941
+ "oxc_ast",
942
+ "oxc_ast_visit",
943
+ "oxc_diagnostics",
944
+ "oxc_ecmascript",
945
+ "oxc_index",
946
+ "oxc_span",
947
+ "oxc_str",
948
+ "oxc_syntax",
949
+ "rustc-hash",
950
+ "self_cell",
951
+ "smallvec",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "oxc_span"
956
+ version = "0.135.0"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "d2fbd1667674fd9c25e079a0ab84a87b26e2946d1ce86ad6c5827afa0518c493"
959
+ dependencies = [
960
+ "compact_str",
961
+ "oxc-miette",
962
+ "oxc_allocator",
963
+ "oxc_ast_macros",
964
+ "oxc_estree",
965
+ "oxc_str",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "oxc_str"
970
+ version = "0.135.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "887823468316c2b4798275976857edeb0574201a944810f2f94f3d79aaf6187e"
973
+ dependencies = [
974
+ "compact_str",
975
+ "hashbrown 0.17.1",
976
+ "oxc_allocator",
977
+ "oxc_estree",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "oxc_syntax"
982
+ version = "0.135.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "cad8963ea5ad880d3185db2f8a50809e3a10772c2762500518229bca5347be04"
985
+ dependencies = [
986
+ "bitflags",
987
+ "cow-utils",
988
+ "dragonbox_ecma",
989
+ "nonmax",
990
+ "oxc_allocator",
991
+ "oxc_ast_macros",
992
+ "oxc_estree",
993
+ "oxc_index",
994
+ "oxc_span",
995
+ "oxc_str",
996
+ "phf",
997
+ "unicode-id-start",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "percent-encoding"
1002
+ version = "2.3.2"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1005
+
1006
+ [[package]]
1007
+ name = "phf"
1008
+ version = "0.13.1"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1011
+ dependencies = [
1012
+ "phf_macros",
1013
+ "phf_shared",
1014
+ "serde",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "phf_generator"
1019
+ version = "0.13.1"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1022
+ dependencies = [
1023
+ "fastrand",
1024
+ "phf_shared",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "phf_macros"
1029
+ version = "0.13.1"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
1032
+ dependencies = [
1033
+ "phf_generator",
1034
+ "phf_shared",
1035
+ "proc-macro2",
1036
+ "quote",
1037
+ "syn",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "phf_shared"
1042
+ version = "0.13.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1045
+ dependencies = [
1046
+ "siphasher",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "potential_utf"
1051
+ version = "0.1.5"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1054
+ dependencies = [
1055
+ "zerovec",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "predicates"
1060
+ version = "3.1.4"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1063
+ dependencies = [
1064
+ "anstyle",
1065
+ "difflib",
1066
+ "predicates-core",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "predicates-core"
1071
+ version = "1.0.10"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1074
+
1075
+ [[package]]
1076
+ name = "predicates-tree"
1077
+ version = "1.0.13"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1080
+ dependencies = [
1081
+ "predicates-core",
1082
+ "termtree",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "prettyplease"
1087
+ version = "0.2.37"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1090
+ dependencies = [
1091
+ "proc-macro2",
1092
+ "syn",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "proc-macro2"
1097
+ version = "1.0.106"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1100
+ dependencies = [
1101
+ "unicode-ident",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "quote"
1106
+ version = "1.0.45"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1109
+ dependencies = [
1110
+ "proc-macro2",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "r-efi"
1115
+ version = "6.0.0"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1118
+
1119
+ [[package]]
1120
+ name = "regex-automata"
1121
+ version = "0.4.14"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1124
+ dependencies = [
1125
+ "aho-corasick",
1126
+ "memchr",
1127
+ "regex-syntax",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "regex-syntax"
1132
+ version = "0.8.11"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1135
+
1136
+ [[package]]
1137
+ name = "ring"
1138
+ version = "0.17.14"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1141
+ dependencies = [
1142
+ "cc",
1143
+ "cfg-if",
1144
+ "getrandom 0.2.17",
1145
+ "libc",
1146
+ "untrusted",
1147
+ "windows-sys 0.52.0",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "ron"
1152
+ version = "0.12.1"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "4147b952f3f819eca0e99527022f7d6a8d05f111aeb0a62960c74eb283bec8fc"
1155
+ dependencies = [
1156
+ "bitflags",
1157
+ "once_cell",
1158
+ "serde",
1159
+ "serde_derive",
1160
+ "typeid",
1161
+ "unicode-ident",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "runtime-checker"
1166
+ version = "1.0.0"
1167
+ dependencies = [
1168
+ "aho-corasick",
1169
+ "anstream 0.6.21",
1170
+ "anstyle",
1171
+ "anyhow",
1172
+ "assert_cmd",
1173
+ "clap",
1174
+ "fff-grep",
1175
+ "ignore",
1176
+ "mimalloc",
1177
+ "node-semver",
1178
+ "oxc_allocator",
1179
+ "oxc_ast",
1180
+ "oxc_ast_visit",
1181
+ "oxc_parser",
1182
+ "oxc_semantic",
1183
+ "oxc_span",
1184
+ "oxc_syntax",
1185
+ "ron",
1186
+ "serde",
1187
+ "serde_json",
1188
+ "tempfile",
1189
+ "terminal_size",
1190
+ "thiserror 2.0.18",
1191
+ "ureq",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "rustc-hash"
1196
+ version = "2.1.2"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1199
+
1200
+ [[package]]
1201
+ name = "rustix"
1202
+ version = "1.1.4"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1205
+ dependencies = [
1206
+ "bitflags",
1207
+ "errno",
1208
+ "libc",
1209
+ "linux-raw-sys",
1210
+ "windows-sys 0.61.2",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "rustls"
1215
+ version = "0.23.40"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1218
+ dependencies = [
1219
+ "log",
1220
+ "once_cell",
1221
+ "ring",
1222
+ "rustls-pki-types",
1223
+ "rustls-webpki",
1224
+ "subtle",
1225
+ "zeroize",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "rustls-pki-types"
1230
+ version = "1.14.1"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1233
+ dependencies = [
1234
+ "zeroize",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "rustls-webpki"
1239
+ version = "0.103.13"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1242
+ dependencies = [
1243
+ "ring",
1244
+ "rustls-pki-types",
1245
+ "untrusted",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "rustversion"
1250
+ version = "1.0.22"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1253
+
1254
+ [[package]]
1255
+ name = "ryu"
1256
+ version = "1.0.23"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1259
+
1260
+ [[package]]
1261
+ name = "same-file"
1262
+ version = "1.0.6"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1265
+ dependencies = [
1266
+ "winapi-util",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "self_cell"
1271
+ version = "1.2.2"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
1274
+
1275
+ [[package]]
1276
+ name = "semver"
1277
+ version = "1.0.28"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1280
+
1281
+ [[package]]
1282
+ name = "seq-macro"
1283
+ version = "0.3.6"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1286
+
1287
+ [[package]]
1288
+ name = "serde"
1289
+ version = "1.0.228"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1292
+ dependencies = [
1293
+ "serde_core",
1294
+ "serde_derive",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "serde_core"
1299
+ version = "1.0.228"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1302
+ dependencies = [
1303
+ "serde_derive",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "serde_derive"
1308
+ version = "1.0.228"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1311
+ dependencies = [
1312
+ "proc-macro2",
1313
+ "quote",
1314
+ "syn",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "serde_json"
1319
+ version = "1.0.150"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1322
+ dependencies = [
1323
+ "itoa",
1324
+ "memchr",
1325
+ "serde",
1326
+ "serde_core",
1327
+ "zmij",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "shlex"
1332
+ version = "2.0.1"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1335
+
1336
+ [[package]]
1337
+ name = "simd-adler32"
1338
+ version = "0.3.9"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1341
+
1342
+ [[package]]
1343
+ name = "siphasher"
1344
+ version = "1.0.3"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1347
+
1348
+ [[package]]
1349
+ name = "smallvec"
1350
+ version = "1.15.1"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1353
+ dependencies = [
1354
+ "serde",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "smawk"
1359
+ version = "0.3.2"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1362
+
1363
+ [[package]]
1364
+ name = "stable_deref_trait"
1365
+ version = "1.2.1"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1368
+
1369
+ [[package]]
1370
+ name = "static_assertions"
1371
+ version = "1.1.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1374
+
1375
+ [[package]]
1376
+ name = "strsim"
1377
+ version = "0.11.1"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1380
+
1381
+ [[package]]
1382
+ name = "subtle"
1383
+ version = "2.6.1"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1386
+
1387
+ [[package]]
1388
+ name = "syn"
1389
+ version = "2.0.117"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1392
+ dependencies = [
1393
+ "proc-macro2",
1394
+ "quote",
1395
+ "unicode-ident",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "synstructure"
1400
+ version = "0.13.2"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1403
+ dependencies = [
1404
+ "proc-macro2",
1405
+ "quote",
1406
+ "syn",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "tempfile"
1411
+ version = "3.27.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1414
+ dependencies = [
1415
+ "fastrand",
1416
+ "getrandom 0.4.2",
1417
+ "once_cell",
1418
+ "rustix",
1419
+ "windows-sys 0.61.2",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "terminal_size"
1424
+ version = "0.4.4"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
1427
+ dependencies = [
1428
+ "rustix",
1429
+ "windows-sys 0.61.2",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "termtree"
1434
+ version = "0.5.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1437
+
1438
+ [[package]]
1439
+ name = "textwrap"
1440
+ version = "0.16.2"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1443
+ dependencies = [
1444
+ "smawk",
1445
+ "unicode-linebreak",
1446
+ "unicode-width 0.2.2",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "thiserror"
1451
+ version = "1.0.69"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1454
+ dependencies = [
1455
+ "thiserror-impl 1.0.69",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "thiserror"
1460
+ version = "2.0.18"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1463
+ dependencies = [
1464
+ "thiserror-impl 2.0.18",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "thiserror-impl"
1469
+ version = "1.0.69"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1472
+ dependencies = [
1473
+ "proc-macro2",
1474
+ "quote",
1475
+ "syn",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "thiserror-impl"
1480
+ version = "2.0.18"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1483
+ dependencies = [
1484
+ "proc-macro2",
1485
+ "quote",
1486
+ "syn",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "tinystr"
1491
+ version = "0.8.3"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1494
+ dependencies = [
1495
+ "displaydoc",
1496
+ "zerovec",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "typeid"
1501
+ version = "1.0.3"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
1504
+
1505
+ [[package]]
1506
+ name = "unicode-id-start"
1507
+ version = "1.4.0"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
1510
+
1511
+ [[package]]
1512
+ name = "unicode-ident"
1513
+ version = "1.0.24"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1516
+
1517
+ [[package]]
1518
+ name = "unicode-linebreak"
1519
+ version = "0.1.5"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1522
+
1523
+ [[package]]
1524
+ name = "unicode-segmentation"
1525
+ version = "1.13.3"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1528
+
1529
+ [[package]]
1530
+ name = "unicode-width"
1531
+ version = "0.1.14"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1534
+
1535
+ [[package]]
1536
+ name = "unicode-width"
1537
+ version = "0.2.2"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1540
+
1541
+ [[package]]
1542
+ name = "unicode-xid"
1543
+ version = "0.2.6"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1546
+
1547
+ [[package]]
1548
+ name = "untrusted"
1549
+ version = "0.9.0"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1552
+
1553
+ [[package]]
1554
+ name = "ureq"
1555
+ version = "2.12.1"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1558
+ dependencies = [
1559
+ "base64",
1560
+ "flate2",
1561
+ "log",
1562
+ "once_cell",
1563
+ "rustls",
1564
+ "rustls-pki-types",
1565
+ "url",
1566
+ "webpki-roots 0.26.11",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "url"
1571
+ version = "2.5.8"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1574
+ dependencies = [
1575
+ "form_urlencoded",
1576
+ "idna",
1577
+ "percent-encoding",
1578
+ "serde",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "utf8_iter"
1583
+ version = "1.0.4"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1586
+
1587
+ [[package]]
1588
+ name = "utf8parse"
1589
+ version = "0.2.2"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1592
+
1593
+ [[package]]
1594
+ name = "wait-timeout"
1595
+ version = "0.2.1"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1598
+ dependencies = [
1599
+ "libc",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "walkdir"
1604
+ version = "2.5.0"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1607
+ dependencies = [
1608
+ "same-file",
1609
+ "winapi-util",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "wasi"
1614
+ version = "0.11.1+wasi-snapshot-preview1"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1617
+
1618
+ [[package]]
1619
+ name = "wasip2"
1620
+ version = "1.0.3+wasi-0.2.9"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1623
+ dependencies = [
1624
+ "wit-bindgen 0.57.1",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "wasip3"
1629
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1632
+ dependencies = [
1633
+ "wit-bindgen 0.51.0",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "wasm-encoder"
1638
+ version = "0.244.0"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1641
+ dependencies = [
1642
+ "leb128fmt",
1643
+ "wasmparser",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "wasm-metadata"
1648
+ version = "0.244.0"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1651
+ dependencies = [
1652
+ "anyhow",
1653
+ "indexmap",
1654
+ "wasm-encoder",
1655
+ "wasmparser",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "wasmparser"
1660
+ version = "0.244.0"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1663
+ dependencies = [
1664
+ "bitflags",
1665
+ "hashbrown 0.15.5",
1666
+ "indexmap",
1667
+ "semver",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "webpki-roots"
1672
+ version = "0.26.11"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1675
+ dependencies = [
1676
+ "webpki-roots 1.0.7",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "webpki-roots"
1681
+ version = "1.0.7"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
1684
+ dependencies = [
1685
+ "rustls-pki-types",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "winapi-util"
1690
+ version = "0.1.11"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1693
+ dependencies = [
1694
+ "windows-sys 0.61.2",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "windows-link"
1699
+ version = "0.2.1"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1702
+
1703
+ [[package]]
1704
+ name = "windows-sys"
1705
+ version = "0.52.0"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1708
+ dependencies = [
1709
+ "windows-targets",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "windows-sys"
1714
+ version = "0.61.2"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1717
+ dependencies = [
1718
+ "windows-link",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "windows-targets"
1723
+ version = "0.52.6"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1726
+ dependencies = [
1727
+ "windows_aarch64_gnullvm",
1728
+ "windows_aarch64_msvc",
1729
+ "windows_i686_gnu",
1730
+ "windows_i686_gnullvm",
1731
+ "windows_i686_msvc",
1732
+ "windows_x86_64_gnu",
1733
+ "windows_x86_64_gnullvm",
1734
+ "windows_x86_64_msvc",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "windows_aarch64_gnullvm"
1739
+ version = "0.52.6"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1742
+
1743
+ [[package]]
1744
+ name = "windows_aarch64_msvc"
1745
+ version = "0.52.6"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1748
+
1749
+ [[package]]
1750
+ name = "windows_i686_gnu"
1751
+ version = "0.52.6"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1754
+
1755
+ [[package]]
1756
+ name = "windows_i686_gnullvm"
1757
+ version = "0.52.6"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1760
+
1761
+ [[package]]
1762
+ name = "windows_i686_msvc"
1763
+ version = "0.52.6"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1766
+
1767
+ [[package]]
1768
+ name = "windows_x86_64_gnu"
1769
+ version = "0.52.6"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1772
+
1773
+ [[package]]
1774
+ name = "windows_x86_64_gnullvm"
1775
+ version = "0.52.6"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1778
+
1779
+ [[package]]
1780
+ name = "windows_x86_64_msvc"
1781
+ version = "0.52.6"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1784
+
1785
+ [[package]]
1786
+ name = "wit-bindgen"
1787
+ version = "0.51.0"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1790
+ dependencies = [
1791
+ "wit-bindgen-rust-macro",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "wit-bindgen"
1796
+ version = "0.57.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1799
+
1800
+ [[package]]
1801
+ name = "wit-bindgen-core"
1802
+ version = "0.51.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1805
+ dependencies = [
1806
+ "anyhow",
1807
+ "heck",
1808
+ "wit-parser",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "wit-bindgen-rust"
1813
+ version = "0.51.0"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1816
+ dependencies = [
1817
+ "anyhow",
1818
+ "heck",
1819
+ "indexmap",
1820
+ "prettyplease",
1821
+ "syn",
1822
+ "wasm-metadata",
1823
+ "wit-bindgen-core",
1824
+ "wit-component",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "wit-bindgen-rust-macro"
1829
+ version = "0.51.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1832
+ dependencies = [
1833
+ "anyhow",
1834
+ "prettyplease",
1835
+ "proc-macro2",
1836
+ "quote",
1837
+ "syn",
1838
+ "wit-bindgen-core",
1839
+ "wit-bindgen-rust",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "wit-component"
1844
+ version = "0.244.0"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1847
+ dependencies = [
1848
+ "anyhow",
1849
+ "bitflags",
1850
+ "indexmap",
1851
+ "log",
1852
+ "serde",
1853
+ "serde_derive",
1854
+ "serde_json",
1855
+ "wasm-encoder",
1856
+ "wasm-metadata",
1857
+ "wasmparser",
1858
+ "wit-parser",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "wit-parser"
1863
+ version = "0.244.0"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1866
+ dependencies = [
1867
+ "anyhow",
1868
+ "id-arena",
1869
+ "indexmap",
1870
+ "log",
1871
+ "semver",
1872
+ "serde",
1873
+ "serde_derive",
1874
+ "serde_json",
1875
+ "unicode-xid",
1876
+ "wasmparser",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "writeable"
1881
+ version = "0.6.3"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1884
+
1885
+ [[package]]
1886
+ name = "yoke"
1887
+ version = "0.8.3"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1890
+ dependencies = [
1891
+ "stable_deref_trait",
1892
+ "yoke-derive",
1893
+ "zerofrom",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "yoke-derive"
1898
+ version = "0.8.2"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1901
+ dependencies = [
1902
+ "proc-macro2",
1903
+ "quote",
1904
+ "syn",
1905
+ "synstructure",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "zerofrom"
1910
+ version = "0.1.8"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1913
+ dependencies = [
1914
+ "zerofrom-derive",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "zerofrom-derive"
1919
+ version = "0.1.7"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1922
+ dependencies = [
1923
+ "proc-macro2",
1924
+ "quote",
1925
+ "syn",
1926
+ "synstructure",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "zeroize"
1931
+ version = "1.8.2"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1934
+
1935
+ [[package]]
1936
+ name = "zerotrie"
1937
+ version = "0.2.4"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1940
+ dependencies = [
1941
+ "displaydoc",
1942
+ "yoke",
1943
+ "zerofrom",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "zerovec"
1948
+ version = "0.11.6"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1951
+ dependencies = [
1952
+ "yoke",
1953
+ "zerofrom",
1954
+ "zerovec-derive",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "zerovec-derive"
1959
+ version = "0.11.3"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1962
+ dependencies = [
1963
+ "proc-macro2",
1964
+ "quote",
1965
+ "syn",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "zmij"
1970
+ version = "1.0.21"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"