rdra-ish 0.1.3__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 (50) hide show
  1. rdra_ish-0.1.3/Cargo.lock +2355 -0
  2. rdra_ish-0.1.3/Cargo.toml +37 -0
  3. rdra_ish-0.1.3/LICENSE +21 -0
  4. rdra_ish-0.1.3/PKG-INFO +131 -0
  5. rdra_ish-0.1.3/README.md +110 -0
  6. rdra_ish-0.1.3/crates/rdra-ish-cli/Cargo.toml +23 -0
  7. rdra_ish-0.1.3/crates/rdra-ish-cli/src/cli.rs +236 -0
  8. rdra_ish-0.1.3/crates/rdra-ish-cli/src/main.rs +1322 -0
  9. rdra_ish-0.1.3/crates/rdra-ish-core/Cargo.toml +22 -0
  10. rdra_ish-0.1.3/crates/rdra-ish-core/src/access.rs +1149 -0
  11. rdra_ish-0.1.3/crates/rdra-ish-core/src/analysis.rs +3137 -0
  12. rdra_ish-0.1.3/crates/rdra-ish-core/src/diagnostics.rs +202 -0
  13. rdra_ish-0.1.3/crates/rdra-ish-core/src/event_flow.rs +245 -0
  14. rdra_ish-0.1.3/crates/rdra-ish-core/src/lib.rs +35 -0
  15. rdra_ish-0.1.3/crates/rdra-ish-core/src/model.rs +712 -0
  16. rdra_ish-0.1.3/crates/rdra-ish-core/src/resolver.rs +534 -0
  17. rdra_ish-0.1.3/crates/rdra-ish-core/src/state_pattern.rs +2964 -0
  18. rdra_ish-0.1.3/crates/rdra-ish-core/src/system.rs +431 -0
  19. rdra_ish-0.1.3/crates/rdra-ish-core/src/tx.rs +736 -0
  20. rdra_ish-0.1.3/crates/rdra-ish-core/tests/integration_test.rs +448 -0
  21. rdra_ish-0.1.3/crates/rdra-ish-core/tests/snapshots/integration_test__purchase_fixture_entity_csv_snapshot.snap +25 -0
  22. rdra_ish-0.1.3/crates/rdra-ish-core/tests/snapshots/integration_test__purchase_fixture_er_snapshot.snap +48 -0
  23. rdra_ish-0.1.3/crates/rdra-ish-emit/Cargo.toml +18 -0
  24. rdra_ish-0.1.3/crates/rdra-ish-emit/src/csv.rs +805 -0
  25. rdra_ish-0.1.3/crates/rdra-ish-emit/src/lib.rs +487 -0
  26. rdra_ish-0.1.3/crates/rdra-ish-emit/src/mermaid.rs +1907 -0
  27. rdra_ish-0.1.3/crates/rdra-ish-emit/src/plantuml.rs +2031 -0
  28. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__csv__tests__entity_csv_snapshot.snap +12 -0
  29. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__mermaid__tests__er_mermaid_snapshot.snap +16 -0
  30. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__plantuml__tests__er_plantuml_snapshot.snap +22 -0
  31. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__plantuml__tests__sequence_fk_group_and_singleton.snap +34 -0
  32. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__state_pattern__tests__order_states_csv_snapshot.snap +15 -0
  33. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__state_pattern__tests__order_states_json_snapshot.snap +102 -0
  34. rdra_ish-0.1.3/crates/rdra-ish-emit/src/snapshots/rdra_ish_emit__state_pattern__tests__order_states_table_snapshot.snap +16 -0
  35. rdra_ish-0.1.3/crates/rdra-ish-emit/src/state_pattern.rs +589 -0
  36. rdra_ish-0.1.3/crates/rdra-ish-render/Cargo.toml +22 -0
  37. rdra_ish-0.1.3/crates/rdra-ish-render/src/lib.rs +271 -0
  38. rdra_ish-0.1.3/crates/rdra-ish-syntax/Cargo.toml +16 -0
  39. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/ast.rs +283 -0
  40. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/lib.rs +8 -0
  41. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/parser.rs +943 -0
  42. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_entity.snap +76 -0
  43. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_full_snippet.snap +139 -0
  44. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_import.snap +82 -0
  45. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_instance_decl.snap +22 -0
  46. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_module.snap +18 -0
  47. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_predicate.snap +36 -0
  48. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/snapshots/rdra_ish_syntax__parser__tests__parse_relate.snap +39 -0
  49. rdra_ish-0.1.3/crates/rdra-ish-syntax/src/token.rs +139 -0
  50. rdra_ish-0.1.3/pyproject.toml +39 -0
@@ -0,0 +1,2355 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "once_cell",
28
+ "version_check",
29
+ "zerocopy",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "allocator-api2"
34
+ version = "0.2.21"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
37
+
38
+ [[package]]
39
+ name = "anstream"
40
+ version = "1.0.0"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
43
+ dependencies = [
44
+ "anstyle",
45
+ "anstyle-parse",
46
+ "anstyle-query",
47
+ "anstyle-wincon",
48
+ "colorchoice",
49
+ "is_terminal_polyfill",
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle"
55
+ version = "1.0.14"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
58
+
59
+ [[package]]
60
+ name = "anstyle-parse"
61
+ version = "1.0.0"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
64
+ dependencies = [
65
+ "utf8parse",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-query"
70
+ version = "1.1.5"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
73
+ dependencies = [
74
+ "windows-sys 0.61.2",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "anstyle-wincon"
79
+ version = "3.0.11"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
82
+ dependencies = [
83
+ "anstyle",
84
+ "once_cell_polyfill",
85
+ "windows-sys 0.61.2",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anyhow"
90
+ version = "1.0.102"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
93
+
94
+ [[package]]
95
+ name = "ar_archive_writer"
96
+ version = "0.5.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
99
+ dependencies = [
100
+ "object",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "atomic-waker"
105
+ version = "1.1.2"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
108
+
109
+ [[package]]
110
+ name = "backtrace"
111
+ version = "0.3.76"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
114
+ dependencies = [
115
+ "addr2line",
116
+ "cfg-if",
117
+ "libc",
118
+ "miniz_oxide",
119
+ "object",
120
+ "rustc-demangle",
121
+ "windows-link",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "backtrace-ext"
126
+ version = "0.2.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
129
+ dependencies = [
130
+ "backtrace",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "base64"
135
+ version = "0.22.1"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
138
+
139
+ [[package]]
140
+ name = "beef"
141
+ version = "0.5.2"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
144
+
145
+ [[package]]
146
+ name = "bitflags"
147
+ version = "2.11.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
150
+
151
+ [[package]]
152
+ name = "bumpalo"
153
+ version = "3.20.3"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
156
+
157
+ [[package]]
158
+ name = "bytes"
159
+ version = "1.11.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
162
+
163
+ [[package]]
164
+ name = "cc"
165
+ version = "1.2.63"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
168
+ dependencies = [
169
+ "find-msvc-tools",
170
+ "shlex",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "cfg-if"
175
+ version = "1.0.4"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
178
+
179
+ [[package]]
180
+ name = "chumsky"
181
+ version = "0.9.3"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9"
184
+ dependencies = [
185
+ "hashbrown 0.14.5",
186
+ "stacker",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "clap"
191
+ version = "4.6.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
194
+ dependencies = [
195
+ "clap_builder",
196
+ "clap_derive",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "clap_builder"
201
+ version = "4.6.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
204
+ dependencies = [
205
+ "anstream",
206
+ "anstyle",
207
+ "clap_lex",
208
+ "strsim",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "clap_derive"
213
+ version = "4.6.1"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
216
+ dependencies = [
217
+ "heck",
218
+ "proc-macro2",
219
+ "quote",
220
+ "syn",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "clap_lex"
225
+ version = "1.1.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
228
+
229
+ [[package]]
230
+ name = "colorchoice"
231
+ version = "1.0.5"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
234
+
235
+ [[package]]
236
+ name = "console"
237
+ version = "0.16.3"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
240
+ dependencies = [
241
+ "encode_unicode",
242
+ "libc",
243
+ "windows-sys 0.61.2",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "core-foundation"
248
+ version = "0.9.4"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
251
+ dependencies = [
252
+ "core-foundation-sys",
253
+ "libc",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "core-foundation"
258
+ version = "0.10.1"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
261
+ dependencies = [
262
+ "core-foundation-sys",
263
+ "libc",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "core-foundation-sys"
268
+ version = "0.8.7"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
271
+
272
+ [[package]]
273
+ name = "crc32fast"
274
+ version = "1.5.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
277
+ dependencies = [
278
+ "cfg-if",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "csv"
283
+ version = "1.4.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
286
+ dependencies = [
287
+ "csv-core",
288
+ "itoa",
289
+ "ryu",
290
+ "serde_core",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "csv-core"
295
+ version = "0.1.13"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
298
+ dependencies = [
299
+ "memchr",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "displaydoc"
304
+ version = "0.2.6"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
307
+ dependencies = [
308
+ "proc-macro2",
309
+ "quote",
310
+ "syn",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "encode_unicode"
315
+ version = "1.0.0"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
318
+
319
+ [[package]]
320
+ name = "encoding_rs"
321
+ version = "0.8.35"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
324
+ dependencies = [
325
+ "cfg-if",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "equivalent"
330
+ version = "1.0.2"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
333
+
334
+ [[package]]
335
+ name = "errno"
336
+ version = "0.3.14"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
339
+ dependencies = [
340
+ "libc",
341
+ "windows-sys 0.61.2",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "fastrand"
346
+ version = "2.4.1"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
349
+
350
+ [[package]]
351
+ name = "find-msvc-tools"
352
+ version = "0.1.9"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
355
+
356
+ [[package]]
357
+ name = "fixedbitset"
358
+ version = "0.4.2"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
361
+
362
+ [[package]]
363
+ name = "flate2"
364
+ version = "1.1.9"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
367
+ dependencies = [
368
+ "crc32fast",
369
+ "miniz_oxide",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "fnv"
374
+ version = "1.0.7"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
377
+
378
+ [[package]]
379
+ name = "foldhash"
380
+ version = "0.1.5"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
383
+
384
+ [[package]]
385
+ name = "foreign-types"
386
+ version = "0.3.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
389
+ dependencies = [
390
+ "foreign-types-shared",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "foreign-types-shared"
395
+ version = "0.1.1"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
398
+
399
+ [[package]]
400
+ name = "form_urlencoded"
401
+ version = "1.2.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
404
+ dependencies = [
405
+ "percent-encoding",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "futures-channel"
410
+ version = "0.3.32"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
413
+ dependencies = [
414
+ "futures-core",
415
+ "futures-sink",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "futures-core"
420
+ version = "0.3.32"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
423
+
424
+ [[package]]
425
+ name = "futures-io"
426
+ version = "0.3.32"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
429
+
430
+ [[package]]
431
+ name = "futures-sink"
432
+ version = "0.3.32"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
435
+
436
+ [[package]]
437
+ name = "futures-task"
438
+ version = "0.3.32"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
441
+
442
+ [[package]]
443
+ name = "futures-util"
444
+ version = "0.3.32"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
447
+ dependencies = [
448
+ "futures-core",
449
+ "futures-io",
450
+ "futures-sink",
451
+ "futures-task",
452
+ "memchr",
453
+ "pin-project-lite",
454
+ "slab",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "getrandom"
459
+ version = "0.2.17"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
462
+ dependencies = [
463
+ "cfg-if",
464
+ "libc",
465
+ "wasi",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "getrandom"
470
+ version = "0.4.2"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
473
+ dependencies = [
474
+ "cfg-if",
475
+ "libc",
476
+ "r-efi",
477
+ "wasip2",
478
+ "wasip3",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "gimli"
483
+ version = "0.32.3"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
486
+
487
+ [[package]]
488
+ name = "h2"
489
+ version = "0.4.14"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
492
+ dependencies = [
493
+ "atomic-waker",
494
+ "bytes",
495
+ "fnv",
496
+ "futures-core",
497
+ "futures-sink",
498
+ "http",
499
+ "indexmap",
500
+ "slab",
501
+ "tokio",
502
+ "tokio-util",
503
+ "tracing",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "hashbrown"
508
+ version = "0.14.5"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
511
+ dependencies = [
512
+ "ahash",
513
+ "allocator-api2",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "hashbrown"
518
+ version = "0.15.5"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
521
+ dependencies = [
522
+ "foldhash",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "hashbrown"
527
+ version = "0.17.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
530
+
531
+ [[package]]
532
+ name = "heck"
533
+ version = "0.5.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
536
+
537
+ [[package]]
538
+ name = "http"
539
+ version = "1.4.1"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
542
+ dependencies = [
543
+ "bytes",
544
+ "itoa",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "http-body"
549
+ version = "1.0.1"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
552
+ dependencies = [
553
+ "bytes",
554
+ "http",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "http-body-util"
559
+ version = "0.1.3"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
562
+ dependencies = [
563
+ "bytes",
564
+ "futures-core",
565
+ "http",
566
+ "http-body",
567
+ "pin-project-lite",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "httparse"
572
+ version = "1.10.1"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
575
+
576
+ [[package]]
577
+ name = "hyper"
578
+ version = "1.10.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "eb92f162bf56536459fc83c79b974bb12837acfed43d6bc370a7916d0ae15ecc"
581
+ dependencies = [
582
+ "atomic-waker",
583
+ "bytes",
584
+ "futures-channel",
585
+ "futures-core",
586
+ "h2",
587
+ "http",
588
+ "http-body",
589
+ "httparse",
590
+ "itoa",
591
+ "pin-project-lite",
592
+ "smallvec",
593
+ "tokio",
594
+ "want",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "hyper-rustls"
599
+ version = "0.27.9"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
602
+ dependencies = [
603
+ "http",
604
+ "hyper",
605
+ "hyper-util",
606
+ "rustls",
607
+ "tokio",
608
+ "tokio-rustls",
609
+ "tower-service",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "hyper-tls"
614
+ version = "0.6.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
617
+ dependencies = [
618
+ "bytes",
619
+ "http-body-util",
620
+ "hyper",
621
+ "hyper-util",
622
+ "native-tls",
623
+ "tokio",
624
+ "tokio-native-tls",
625
+ "tower-service",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "hyper-util"
630
+ version = "0.1.20"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
633
+ dependencies = [
634
+ "base64",
635
+ "bytes",
636
+ "futures-channel",
637
+ "futures-util",
638
+ "http",
639
+ "http-body",
640
+ "hyper",
641
+ "ipnet",
642
+ "libc",
643
+ "percent-encoding",
644
+ "pin-project-lite",
645
+ "socket2",
646
+ "system-configuration",
647
+ "tokio",
648
+ "tower-service",
649
+ "tracing",
650
+ "windows-registry",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "icu_collections"
655
+ version = "2.2.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
658
+ dependencies = [
659
+ "displaydoc",
660
+ "potential_utf",
661
+ "utf8_iter",
662
+ "yoke",
663
+ "zerofrom",
664
+ "zerovec",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "icu_locale_core"
669
+ version = "2.2.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
672
+ dependencies = [
673
+ "displaydoc",
674
+ "litemap",
675
+ "tinystr",
676
+ "writeable",
677
+ "zerovec",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "icu_normalizer"
682
+ version = "2.2.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
685
+ dependencies = [
686
+ "icu_collections",
687
+ "icu_normalizer_data",
688
+ "icu_properties",
689
+ "icu_provider",
690
+ "smallvec",
691
+ "zerovec",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "icu_normalizer_data"
696
+ version = "2.2.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
699
+
700
+ [[package]]
701
+ name = "icu_properties"
702
+ version = "2.2.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
705
+ dependencies = [
706
+ "icu_collections",
707
+ "icu_locale_core",
708
+ "icu_properties_data",
709
+ "icu_provider",
710
+ "zerotrie",
711
+ "zerovec",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "icu_properties_data"
716
+ version = "2.2.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
719
+
720
+ [[package]]
721
+ name = "icu_provider"
722
+ version = "2.2.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
725
+ dependencies = [
726
+ "displaydoc",
727
+ "icu_locale_core",
728
+ "writeable",
729
+ "yoke",
730
+ "zerofrom",
731
+ "zerotrie",
732
+ "zerovec",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "id-arena"
737
+ version = "2.3.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
740
+
741
+ [[package]]
742
+ name = "idna"
743
+ version = "1.1.0"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
746
+ dependencies = [
747
+ "idna_adapter",
748
+ "smallvec",
749
+ "utf8_iter",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "idna_adapter"
754
+ version = "1.2.2"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
757
+ dependencies = [
758
+ "icu_normalizer",
759
+ "icu_properties",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "indexmap"
764
+ version = "2.14.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
767
+ dependencies = [
768
+ "equivalent",
769
+ "hashbrown 0.17.1",
770
+ "serde",
771
+ "serde_core",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "insta"
776
+ version = "1.47.2"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
779
+ dependencies = [
780
+ "console",
781
+ "once_cell",
782
+ "serde",
783
+ "similar",
784
+ "tempfile",
785
+ "toml_edit",
786
+ "toml_writer",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "ipnet"
791
+ version = "2.12.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
794
+
795
+ [[package]]
796
+ name = "is_ci"
797
+ version = "1.2.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
800
+
801
+ [[package]]
802
+ name = "is_terminal_polyfill"
803
+ version = "1.70.2"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
806
+
807
+ [[package]]
808
+ name = "itoa"
809
+ version = "1.0.18"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
812
+
813
+ [[package]]
814
+ name = "js-sys"
815
+ version = "0.3.99"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
818
+ dependencies = [
819
+ "cfg-if",
820
+ "futures-util",
821
+ "once_cell",
822
+ "wasm-bindgen",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "lazy_static"
827
+ version = "1.5.0"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
830
+
831
+ [[package]]
832
+ name = "leb128fmt"
833
+ version = "0.1.0"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
836
+
837
+ [[package]]
838
+ name = "libc"
839
+ version = "0.2.186"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
842
+
843
+ [[package]]
844
+ name = "linux-raw-sys"
845
+ version = "0.12.1"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
848
+
849
+ [[package]]
850
+ name = "litemap"
851
+ version = "0.8.2"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
854
+
855
+ [[package]]
856
+ name = "log"
857
+ version = "0.4.30"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
860
+
861
+ [[package]]
862
+ name = "logos"
863
+ version = "0.14.4"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "7251356ef8cb7aec833ddf598c6cb24d17b689d20b993f9d11a3d764e34e6458"
866
+ dependencies = [
867
+ "logos-derive",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "logos-codegen"
872
+ version = "0.14.4"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "59f80069600c0d66734f5ff52cc42f2dabd6b29d205f333d61fd7832e9e9963f"
875
+ dependencies = [
876
+ "beef",
877
+ "fnv",
878
+ "lazy_static",
879
+ "proc-macro2",
880
+ "quote",
881
+ "regex-syntax",
882
+ "syn",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "logos-derive"
887
+ version = "0.14.4"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "24fb722b06a9dc12adb0963ed585f19fc61dc5413e6a9be9422ef92c091e731d"
890
+ dependencies = [
891
+ "logos-codegen",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "memchr"
896
+ version = "2.8.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
899
+
900
+ [[package]]
901
+ name = "miette"
902
+ version = "7.6.0"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
905
+ dependencies = [
906
+ "backtrace",
907
+ "backtrace-ext",
908
+ "cfg-if",
909
+ "miette-derive",
910
+ "owo-colors",
911
+ "supports-color",
912
+ "supports-hyperlinks",
913
+ "supports-unicode",
914
+ "terminal_size",
915
+ "textwrap",
916
+ "unicode-width 0.1.14",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "miette-derive"
921
+ version = "7.6.0"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
924
+ dependencies = [
925
+ "proc-macro2",
926
+ "quote",
927
+ "syn",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "mime"
932
+ version = "0.3.17"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
935
+
936
+ [[package]]
937
+ name = "miniz_oxide"
938
+ version = "0.8.9"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
941
+ dependencies = [
942
+ "adler2",
943
+ "simd-adler32",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "mio"
948
+ version = "1.2.1"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
951
+ dependencies = [
952
+ "libc",
953
+ "wasi",
954
+ "windows-sys 0.61.2",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "native-tls"
959
+ version = "0.2.18"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
962
+ dependencies = [
963
+ "libc",
964
+ "log",
965
+ "openssl",
966
+ "openssl-probe",
967
+ "openssl-sys",
968
+ "schannel",
969
+ "security-framework",
970
+ "security-framework-sys",
971
+ "tempfile",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "object"
976
+ version = "0.37.3"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
979
+ dependencies = [
980
+ "memchr",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "once_cell"
985
+ version = "1.21.4"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
988
+
989
+ [[package]]
990
+ name = "once_cell_polyfill"
991
+ version = "1.70.2"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
994
+
995
+ [[package]]
996
+ name = "openssl"
997
+ version = "0.10.80"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
1000
+ dependencies = [
1001
+ "bitflags",
1002
+ "cfg-if",
1003
+ "foreign-types",
1004
+ "libc",
1005
+ "openssl-macros",
1006
+ "openssl-sys",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "openssl-macros"
1011
+ version = "0.1.1"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1014
+ dependencies = [
1015
+ "proc-macro2",
1016
+ "quote",
1017
+ "syn",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "openssl-probe"
1022
+ version = "0.2.1"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1025
+
1026
+ [[package]]
1027
+ name = "openssl-sys"
1028
+ version = "0.9.116"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
1031
+ dependencies = [
1032
+ "cc",
1033
+ "libc",
1034
+ "pkg-config",
1035
+ "vcpkg",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "owo-colors"
1040
+ version = "4.3.0"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
1043
+
1044
+ [[package]]
1045
+ name = "percent-encoding"
1046
+ version = "2.3.2"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1049
+
1050
+ [[package]]
1051
+ name = "petgraph"
1052
+ version = "0.6.5"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
1055
+ dependencies = [
1056
+ "fixedbitset",
1057
+ "indexmap",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "pin-project-lite"
1062
+ version = "0.2.17"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1065
+
1066
+ [[package]]
1067
+ name = "pkg-config"
1068
+ version = "0.3.33"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1071
+
1072
+ [[package]]
1073
+ name = "potential_utf"
1074
+ version = "0.1.5"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1077
+ dependencies = [
1078
+ "zerovec",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "prettyplease"
1083
+ version = "0.2.37"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1086
+ dependencies = [
1087
+ "proc-macro2",
1088
+ "syn",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "proc-macro2"
1093
+ version = "1.0.106"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1096
+ dependencies = [
1097
+ "unicode-ident",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "psm"
1102
+ version = "0.1.31"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea"
1105
+ dependencies = [
1106
+ "ar_archive_writer",
1107
+ "cc",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "quote"
1112
+ version = "1.0.45"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1115
+ dependencies = [
1116
+ "proc-macro2",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "r-efi"
1121
+ version = "6.0.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1124
+
1125
+ [[package]]
1126
+ name = "rdra-ish-cli"
1127
+ version = "0.1.3"
1128
+ dependencies = [
1129
+ "anyhow",
1130
+ "clap",
1131
+ "miette",
1132
+ "rdra-ish-core",
1133
+ "rdra-ish-emit",
1134
+ "rdra-ish-render",
1135
+ "rdra-ish-syntax",
1136
+ "serde_json",
1137
+ "walkdir",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "rdra-ish-core"
1142
+ version = "0.1.3"
1143
+ dependencies = [
1144
+ "insta",
1145
+ "miette",
1146
+ "petgraph",
1147
+ "rdra-ish-emit",
1148
+ "rdra-ish-syntax",
1149
+ "serde",
1150
+ "serde_json",
1151
+ "slotmap",
1152
+ "tempfile",
1153
+ "thiserror",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "rdra-ish-emit"
1158
+ version = "0.1.3"
1159
+ dependencies = [
1160
+ "csv",
1161
+ "insta",
1162
+ "rdra-ish-core",
1163
+ "rdra-ish-syntax",
1164
+ "serde_json",
1165
+ "thiserror",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "rdra-ish-render"
1170
+ version = "0.1.3"
1171
+ dependencies = [
1172
+ "base64",
1173
+ "flate2",
1174
+ "insta",
1175
+ "rdra-ish-emit",
1176
+ "reqwest",
1177
+ "thiserror",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "rdra-ish-syntax"
1182
+ version = "0.1.3"
1183
+ dependencies = [
1184
+ "chumsky",
1185
+ "insta",
1186
+ "logos",
1187
+ "miette",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "regex-syntax"
1192
+ version = "0.8.10"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1195
+
1196
+ [[package]]
1197
+ name = "reqwest"
1198
+ version = "0.12.28"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1201
+ dependencies = [
1202
+ "base64",
1203
+ "bytes",
1204
+ "encoding_rs",
1205
+ "futures-channel",
1206
+ "futures-core",
1207
+ "futures-util",
1208
+ "h2",
1209
+ "http",
1210
+ "http-body",
1211
+ "http-body-util",
1212
+ "hyper",
1213
+ "hyper-rustls",
1214
+ "hyper-tls",
1215
+ "hyper-util",
1216
+ "js-sys",
1217
+ "log",
1218
+ "mime",
1219
+ "native-tls",
1220
+ "percent-encoding",
1221
+ "pin-project-lite",
1222
+ "rustls-pki-types",
1223
+ "serde",
1224
+ "serde_json",
1225
+ "serde_urlencoded",
1226
+ "sync_wrapper",
1227
+ "tokio",
1228
+ "tokio-native-tls",
1229
+ "tower",
1230
+ "tower-http",
1231
+ "tower-service",
1232
+ "url",
1233
+ "wasm-bindgen",
1234
+ "wasm-bindgen-futures",
1235
+ "web-sys",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "ring"
1240
+ version = "0.17.14"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1243
+ dependencies = [
1244
+ "cc",
1245
+ "cfg-if",
1246
+ "getrandom 0.2.17",
1247
+ "libc",
1248
+ "untrusted",
1249
+ "windows-sys 0.52.0",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "rustc-demangle"
1254
+ version = "0.1.27"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
1257
+
1258
+ [[package]]
1259
+ name = "rustix"
1260
+ version = "1.1.4"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1263
+ dependencies = [
1264
+ "bitflags",
1265
+ "errno",
1266
+ "libc",
1267
+ "linux-raw-sys",
1268
+ "windows-sys 0.61.2",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "rustls"
1273
+ version = "0.23.40"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1276
+ dependencies = [
1277
+ "once_cell",
1278
+ "rustls-pki-types",
1279
+ "rustls-webpki",
1280
+ "subtle",
1281
+ "zeroize",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "rustls-pki-types"
1286
+ version = "1.14.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1289
+ dependencies = [
1290
+ "zeroize",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "rustls-webpki"
1295
+ version = "0.103.13"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1298
+ dependencies = [
1299
+ "ring",
1300
+ "rustls-pki-types",
1301
+ "untrusted",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "rustversion"
1306
+ version = "1.0.22"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1309
+
1310
+ [[package]]
1311
+ name = "ryu"
1312
+ version = "1.0.23"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1315
+
1316
+ [[package]]
1317
+ name = "same-file"
1318
+ version = "1.0.6"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1321
+ dependencies = [
1322
+ "winapi-util",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "schannel"
1327
+ version = "0.1.29"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1330
+ dependencies = [
1331
+ "windows-sys 0.61.2",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "security-framework"
1336
+ version = "3.7.0"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1339
+ dependencies = [
1340
+ "bitflags",
1341
+ "core-foundation 0.10.1",
1342
+ "core-foundation-sys",
1343
+ "libc",
1344
+ "security-framework-sys",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "security-framework-sys"
1349
+ version = "2.17.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1352
+ dependencies = [
1353
+ "core-foundation-sys",
1354
+ "libc",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "semver"
1359
+ version = "1.0.28"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1362
+
1363
+ [[package]]
1364
+ name = "serde"
1365
+ version = "1.0.228"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1368
+ dependencies = [
1369
+ "serde_core",
1370
+ "serde_derive",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "serde_core"
1375
+ version = "1.0.228"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1378
+ dependencies = [
1379
+ "serde_derive",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "serde_derive"
1384
+ version = "1.0.228"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1387
+ dependencies = [
1388
+ "proc-macro2",
1389
+ "quote",
1390
+ "syn",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "serde_json"
1395
+ version = "1.0.150"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1398
+ dependencies = [
1399
+ "itoa",
1400
+ "memchr",
1401
+ "serde",
1402
+ "serde_core",
1403
+ "zmij",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "serde_spanned"
1408
+ version = "1.1.1"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1411
+ dependencies = [
1412
+ "serde_core",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "serde_urlencoded"
1417
+ version = "0.7.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1420
+ dependencies = [
1421
+ "form_urlencoded",
1422
+ "itoa",
1423
+ "ryu",
1424
+ "serde",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "shlex"
1429
+ version = "2.0.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1432
+
1433
+ [[package]]
1434
+ name = "simd-adler32"
1435
+ version = "0.3.9"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1438
+
1439
+ [[package]]
1440
+ name = "similar"
1441
+ version = "2.7.0"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1444
+
1445
+ [[package]]
1446
+ name = "slab"
1447
+ version = "0.4.12"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1450
+
1451
+ [[package]]
1452
+ name = "slotmap"
1453
+ version = "1.1.1"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1456
+ dependencies = [
1457
+ "version_check",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "smallvec"
1462
+ version = "1.15.1"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1465
+
1466
+ [[package]]
1467
+ name = "socket2"
1468
+ version = "0.6.4"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1471
+ dependencies = [
1472
+ "libc",
1473
+ "windows-sys 0.61.2",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "stable_deref_trait"
1478
+ version = "1.2.1"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1481
+
1482
+ [[package]]
1483
+ name = "stacker"
1484
+ version = "0.1.24"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "640c8cdd92b6b12f5bcb1803ca3bbf5ab96e5e6b6b96b9ab77dabe9e880b3190"
1487
+ dependencies = [
1488
+ "cc",
1489
+ "cfg-if",
1490
+ "libc",
1491
+ "psm",
1492
+ "windows-sys 0.61.2",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "strsim"
1497
+ version = "0.11.1"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1500
+
1501
+ [[package]]
1502
+ name = "subtle"
1503
+ version = "2.6.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1506
+
1507
+ [[package]]
1508
+ name = "supports-color"
1509
+ version = "3.0.2"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
1512
+ dependencies = [
1513
+ "is_ci",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "supports-hyperlinks"
1518
+ version = "3.2.0"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
1521
+
1522
+ [[package]]
1523
+ name = "supports-unicode"
1524
+ version = "3.0.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
1527
+
1528
+ [[package]]
1529
+ name = "syn"
1530
+ version = "2.0.117"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1533
+ dependencies = [
1534
+ "proc-macro2",
1535
+ "quote",
1536
+ "unicode-ident",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "sync_wrapper"
1541
+ version = "1.0.2"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1544
+ dependencies = [
1545
+ "futures-core",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "synstructure"
1550
+ version = "0.13.2"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1553
+ dependencies = [
1554
+ "proc-macro2",
1555
+ "quote",
1556
+ "syn",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "system-configuration"
1561
+ version = "0.7.0"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
1564
+ dependencies = [
1565
+ "bitflags",
1566
+ "core-foundation 0.9.4",
1567
+ "system-configuration-sys",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "system-configuration-sys"
1572
+ version = "0.6.0"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1575
+ dependencies = [
1576
+ "core-foundation-sys",
1577
+ "libc",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "tempfile"
1582
+ version = "3.27.0"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1585
+ dependencies = [
1586
+ "fastrand",
1587
+ "getrandom 0.4.2",
1588
+ "once_cell",
1589
+ "rustix",
1590
+ "windows-sys 0.61.2",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "terminal_size"
1595
+ version = "0.4.4"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
1598
+ dependencies = [
1599
+ "rustix",
1600
+ "windows-sys 0.61.2",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "textwrap"
1605
+ version = "0.16.2"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1608
+ dependencies = [
1609
+ "unicode-linebreak",
1610
+ "unicode-width 0.2.2",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "thiserror"
1615
+ version = "2.0.18"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1618
+ dependencies = [
1619
+ "thiserror-impl",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "thiserror-impl"
1624
+ version = "2.0.18"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1627
+ dependencies = [
1628
+ "proc-macro2",
1629
+ "quote",
1630
+ "syn",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "tinystr"
1635
+ version = "0.8.3"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1638
+ dependencies = [
1639
+ "displaydoc",
1640
+ "zerovec",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "tokio"
1645
+ version = "1.52.3"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1648
+ dependencies = [
1649
+ "bytes",
1650
+ "libc",
1651
+ "mio",
1652
+ "pin-project-lite",
1653
+ "socket2",
1654
+ "windows-sys 0.61.2",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "tokio-native-tls"
1659
+ version = "0.3.1"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1662
+ dependencies = [
1663
+ "native-tls",
1664
+ "tokio",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "tokio-rustls"
1669
+ version = "0.26.4"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1672
+ dependencies = [
1673
+ "rustls",
1674
+ "tokio",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "tokio-util"
1679
+ version = "0.7.18"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1682
+ dependencies = [
1683
+ "bytes",
1684
+ "futures-core",
1685
+ "futures-sink",
1686
+ "pin-project-lite",
1687
+ "tokio",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "toml_datetime"
1692
+ version = "1.1.1+spec-1.1.0"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1695
+ dependencies = [
1696
+ "serde_core",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "toml_edit"
1701
+ version = "0.25.12+spec-1.1.0"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
1704
+ dependencies = [
1705
+ "indexmap",
1706
+ "serde_core",
1707
+ "serde_spanned",
1708
+ "toml_datetime",
1709
+ "toml_parser",
1710
+ "toml_writer",
1711
+ "winnow",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "toml_parser"
1716
+ version = "1.1.2+spec-1.1.0"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1719
+ dependencies = [
1720
+ "winnow",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "toml_writer"
1725
+ version = "1.1.1+spec-1.1.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1728
+
1729
+ [[package]]
1730
+ name = "tower"
1731
+ version = "0.5.3"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1734
+ dependencies = [
1735
+ "futures-core",
1736
+ "futures-util",
1737
+ "pin-project-lite",
1738
+ "sync_wrapper",
1739
+ "tokio",
1740
+ "tower-layer",
1741
+ "tower-service",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "tower-http"
1746
+ version = "0.6.11"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1749
+ dependencies = [
1750
+ "bitflags",
1751
+ "bytes",
1752
+ "futures-util",
1753
+ "http",
1754
+ "http-body",
1755
+ "pin-project-lite",
1756
+ "tower",
1757
+ "tower-layer",
1758
+ "tower-service",
1759
+ "url",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "tower-layer"
1764
+ version = "0.3.3"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1767
+
1768
+ [[package]]
1769
+ name = "tower-service"
1770
+ version = "0.3.3"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1773
+
1774
+ [[package]]
1775
+ name = "tracing"
1776
+ version = "0.1.44"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1779
+ dependencies = [
1780
+ "pin-project-lite",
1781
+ "tracing-core",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "tracing-core"
1786
+ version = "0.1.36"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1789
+ dependencies = [
1790
+ "once_cell",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "try-lock"
1795
+ version = "0.2.5"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1798
+
1799
+ [[package]]
1800
+ name = "unicode-ident"
1801
+ version = "1.0.24"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1804
+
1805
+ [[package]]
1806
+ name = "unicode-linebreak"
1807
+ version = "0.1.5"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
1810
+
1811
+ [[package]]
1812
+ name = "unicode-width"
1813
+ version = "0.1.14"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1816
+
1817
+ [[package]]
1818
+ name = "unicode-width"
1819
+ version = "0.2.2"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1822
+
1823
+ [[package]]
1824
+ name = "unicode-xid"
1825
+ version = "0.2.6"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1828
+
1829
+ [[package]]
1830
+ name = "untrusted"
1831
+ version = "0.9.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1834
+
1835
+ [[package]]
1836
+ name = "url"
1837
+ version = "2.5.8"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1840
+ dependencies = [
1841
+ "form_urlencoded",
1842
+ "idna",
1843
+ "percent-encoding",
1844
+ "serde",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "utf8_iter"
1849
+ version = "1.0.4"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1852
+
1853
+ [[package]]
1854
+ name = "utf8parse"
1855
+ version = "0.2.2"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1858
+
1859
+ [[package]]
1860
+ name = "vcpkg"
1861
+ version = "0.2.15"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1864
+
1865
+ [[package]]
1866
+ name = "version_check"
1867
+ version = "0.9.5"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1870
+
1871
+ [[package]]
1872
+ name = "walkdir"
1873
+ version = "2.5.0"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1876
+ dependencies = [
1877
+ "same-file",
1878
+ "winapi-util",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "want"
1883
+ version = "0.3.1"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1886
+ dependencies = [
1887
+ "try-lock",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "wasi"
1892
+ version = "0.11.1+wasi-snapshot-preview1"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1895
+
1896
+ [[package]]
1897
+ name = "wasip2"
1898
+ version = "1.0.3+wasi-0.2.9"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1901
+ dependencies = [
1902
+ "wit-bindgen 0.57.1",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "wasip3"
1907
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1910
+ dependencies = [
1911
+ "wit-bindgen 0.51.0",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "wasm-bindgen"
1916
+ version = "0.2.122"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1919
+ dependencies = [
1920
+ "cfg-if",
1921
+ "once_cell",
1922
+ "rustversion",
1923
+ "wasm-bindgen-macro",
1924
+ "wasm-bindgen-shared",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "wasm-bindgen-futures"
1929
+ version = "0.4.72"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
1932
+ dependencies = [
1933
+ "js-sys",
1934
+ "wasm-bindgen",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "wasm-bindgen-macro"
1939
+ version = "0.2.122"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1942
+ dependencies = [
1943
+ "quote",
1944
+ "wasm-bindgen-macro-support",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "wasm-bindgen-macro-support"
1949
+ version = "0.2.122"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1952
+ dependencies = [
1953
+ "bumpalo",
1954
+ "proc-macro2",
1955
+ "quote",
1956
+ "syn",
1957
+ "wasm-bindgen-shared",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "wasm-bindgen-shared"
1962
+ version = "0.2.122"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1965
+ dependencies = [
1966
+ "unicode-ident",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "wasm-encoder"
1971
+ version = "0.244.0"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1974
+ dependencies = [
1975
+ "leb128fmt",
1976
+ "wasmparser",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "wasm-metadata"
1981
+ version = "0.244.0"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1984
+ dependencies = [
1985
+ "anyhow",
1986
+ "indexmap",
1987
+ "wasm-encoder",
1988
+ "wasmparser",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "wasmparser"
1993
+ version = "0.244.0"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1996
+ dependencies = [
1997
+ "bitflags",
1998
+ "hashbrown 0.15.5",
1999
+ "indexmap",
2000
+ "semver",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "web-sys"
2005
+ version = "0.3.99"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
2008
+ dependencies = [
2009
+ "js-sys",
2010
+ "wasm-bindgen",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "winapi-util"
2015
+ version = "0.1.11"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2018
+ dependencies = [
2019
+ "windows-sys 0.61.2",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "windows-link"
2024
+ version = "0.2.1"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2027
+
2028
+ [[package]]
2029
+ name = "windows-registry"
2030
+ version = "0.6.1"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2033
+ dependencies = [
2034
+ "windows-link",
2035
+ "windows-result",
2036
+ "windows-strings",
2037
+ ]
2038
+
2039
+ [[package]]
2040
+ name = "windows-result"
2041
+ version = "0.4.1"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2044
+ dependencies = [
2045
+ "windows-link",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "windows-strings"
2050
+ version = "0.5.1"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2053
+ dependencies = [
2054
+ "windows-link",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "windows-sys"
2059
+ version = "0.52.0"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2062
+ dependencies = [
2063
+ "windows-targets",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "windows-sys"
2068
+ version = "0.61.2"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2071
+ dependencies = [
2072
+ "windows-link",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "windows-targets"
2077
+ version = "0.52.6"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2080
+ dependencies = [
2081
+ "windows_aarch64_gnullvm",
2082
+ "windows_aarch64_msvc",
2083
+ "windows_i686_gnu",
2084
+ "windows_i686_gnullvm",
2085
+ "windows_i686_msvc",
2086
+ "windows_x86_64_gnu",
2087
+ "windows_x86_64_gnullvm",
2088
+ "windows_x86_64_msvc",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "windows_aarch64_gnullvm"
2093
+ version = "0.52.6"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2096
+
2097
+ [[package]]
2098
+ name = "windows_aarch64_msvc"
2099
+ version = "0.52.6"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2102
+
2103
+ [[package]]
2104
+ name = "windows_i686_gnu"
2105
+ version = "0.52.6"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2108
+
2109
+ [[package]]
2110
+ name = "windows_i686_gnullvm"
2111
+ version = "0.52.6"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2114
+
2115
+ [[package]]
2116
+ name = "windows_i686_msvc"
2117
+ version = "0.52.6"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2120
+
2121
+ [[package]]
2122
+ name = "windows_x86_64_gnu"
2123
+ version = "0.52.6"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2126
+
2127
+ [[package]]
2128
+ name = "windows_x86_64_gnullvm"
2129
+ version = "0.52.6"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2132
+
2133
+ [[package]]
2134
+ name = "windows_x86_64_msvc"
2135
+ version = "0.52.6"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2138
+
2139
+ [[package]]
2140
+ name = "winnow"
2141
+ version = "1.0.3"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2144
+ dependencies = [
2145
+ "memchr",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "wit-bindgen"
2150
+ version = "0.51.0"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2153
+ dependencies = [
2154
+ "wit-bindgen-rust-macro",
2155
+ ]
2156
+
2157
+ [[package]]
2158
+ name = "wit-bindgen"
2159
+ version = "0.57.1"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2162
+
2163
+ [[package]]
2164
+ name = "wit-bindgen-core"
2165
+ version = "0.51.0"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2168
+ dependencies = [
2169
+ "anyhow",
2170
+ "heck",
2171
+ "wit-parser",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "wit-bindgen-rust"
2176
+ version = "0.51.0"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2179
+ dependencies = [
2180
+ "anyhow",
2181
+ "heck",
2182
+ "indexmap",
2183
+ "prettyplease",
2184
+ "syn",
2185
+ "wasm-metadata",
2186
+ "wit-bindgen-core",
2187
+ "wit-component",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "wit-bindgen-rust-macro"
2192
+ version = "0.51.0"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2195
+ dependencies = [
2196
+ "anyhow",
2197
+ "prettyplease",
2198
+ "proc-macro2",
2199
+ "quote",
2200
+ "syn",
2201
+ "wit-bindgen-core",
2202
+ "wit-bindgen-rust",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "wit-component"
2207
+ version = "0.244.0"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2210
+ dependencies = [
2211
+ "anyhow",
2212
+ "bitflags",
2213
+ "indexmap",
2214
+ "log",
2215
+ "serde",
2216
+ "serde_derive",
2217
+ "serde_json",
2218
+ "wasm-encoder",
2219
+ "wasm-metadata",
2220
+ "wasmparser",
2221
+ "wit-parser",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "wit-parser"
2226
+ version = "0.244.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2229
+ dependencies = [
2230
+ "anyhow",
2231
+ "id-arena",
2232
+ "indexmap",
2233
+ "log",
2234
+ "semver",
2235
+ "serde",
2236
+ "serde_derive",
2237
+ "serde_json",
2238
+ "unicode-xid",
2239
+ "wasmparser",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "writeable"
2244
+ version = "0.6.3"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2247
+
2248
+ [[package]]
2249
+ name = "yoke"
2250
+ version = "0.8.2"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2253
+ dependencies = [
2254
+ "stable_deref_trait",
2255
+ "yoke-derive",
2256
+ "zerofrom",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "yoke-derive"
2261
+ version = "0.8.2"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2264
+ dependencies = [
2265
+ "proc-macro2",
2266
+ "quote",
2267
+ "syn",
2268
+ "synstructure",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "zerocopy"
2273
+ version = "0.8.49"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "bce33a6288fa3f072a8c2c7d0f2fdbb90e28298f0135c1f99b96c3db2efcc60b"
2276
+ dependencies = [
2277
+ "zerocopy-derive",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "zerocopy-derive"
2282
+ version = "0.8.49"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "8fd425244944f4ab65ccff928e7323354c5a018c75838362fdce749dfad2ee1e"
2285
+ dependencies = [
2286
+ "proc-macro2",
2287
+ "quote",
2288
+ "syn",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "zerofrom"
2293
+ version = "0.1.8"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2296
+ dependencies = [
2297
+ "zerofrom-derive",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "zerofrom-derive"
2302
+ version = "0.1.7"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2305
+ dependencies = [
2306
+ "proc-macro2",
2307
+ "quote",
2308
+ "syn",
2309
+ "synstructure",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "zeroize"
2314
+ version = "1.8.2"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2317
+
2318
+ [[package]]
2319
+ name = "zerotrie"
2320
+ version = "0.2.4"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2323
+ dependencies = [
2324
+ "displaydoc",
2325
+ "yoke",
2326
+ "zerofrom",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "zerovec"
2331
+ version = "0.11.6"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2334
+ dependencies = [
2335
+ "yoke",
2336
+ "zerofrom",
2337
+ "zerovec-derive",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "zerovec-derive"
2342
+ version = "0.11.3"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2345
+ dependencies = [
2346
+ "proc-macro2",
2347
+ "quote",
2348
+ "syn",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "zmij"
2353
+ version = "1.0.21"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"