code-split 0.1.0a8__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 (53) hide show
  1. code_split-0.1.0a8/Cargo.lock +3626 -0
  2. code_split-0.1.0a8/Cargo.toml +53 -0
  3. code_split-0.1.0a8/LICENSE +201 -0
  4. code_split-0.1.0a8/PKG-INFO +85 -0
  5. code_split-0.1.0a8/README.md +61 -0
  6. code_split-0.1.0a8/crates/code-split-cli/Cargo.toml +34 -0
  7. code_split-0.1.0a8/crates/code-split-cli/src/assets/app.js +365 -0
  8. code_split-0.1.0a8/crates/code-split-cli/src/assets/dagre.min.js +3809 -0
  9. code_split-0.1.0a8/crates/code-split-cli/src/assets/diagram.js +447 -0
  10. code_split-0.1.0a8/crates/code-split-cli/src/assets/diff.js +153 -0
  11. code_split-0.1.0a8/crates/code-split-cli/src/assets/export-popup.js +352 -0
  12. code_split-0.1.0a8/crates/code-split-cli/src/assets/graphviz.umd.js +7 -0
  13. code_split-0.1.0a8/crates/code-split-cli/src/assets/index.css +453 -0
  14. code_split-0.1.0a8/crates/code-split-cli/src/assets/index.html +205 -0
  15. code_split-0.1.0a8/crates/code-split-cli/src/assets/layout.js +116 -0
  16. code_split-0.1.0a8/crates/code-split-cli/src/assets/modal.js +86 -0
  17. code_split-0.1.0a8/crates/code-split-cli/src/assets/nav.js +51 -0
  18. code_split-0.1.0a8/crates/code-split-cli/src/assets/node-table.js +385 -0
  19. code_split-0.1.0a8/crates/code-split-cli/src/assets/panzoom.js +176 -0
  20. code_split-0.1.0a8/crates/code-split-cli/src/assets/state.js +15 -0
  21. code_split-0.1.0a8/crates/code-split-cli/src/assets/summary.js +197 -0
  22. code_split-0.1.0a8/crates/code-split-cli/src/assets/ui.js +164 -0
  23. code_split-0.1.0a8/crates/code-split-cli/src/assets/utils.js +42 -0
  24. code_split-0.1.0a8/crates/code-split-cli/src/config.rs +620 -0
  25. code_split-0.1.0a8/crates/code-split-cli/src/git.rs +41 -0
  26. code_split-0.1.0a8/crates/code-split-cli/src/logger.rs +45 -0
  27. code_split-0.1.0a8/crates/code-split-cli/src/main.rs +877 -0
  28. code_split-0.1.0a8/crates/code-split-cli/src/plugin/javascript.rs +991 -0
  29. code_split-0.1.0a8/crates/code-split-cli/src/plugin/mod.rs +82 -0
  30. code_split-0.1.0a8/crates/code-split-cli/src/plugin/python.rs +831 -0
  31. code_split-0.1.0a8/crates/code-split-cli/src/plugin/rust.rs +149 -0
  32. code_split-0.1.0a8/crates/code-split-complexity/Cargo.toml +19 -0
  33. code_split-0.1.0a8/crates/code-split-complexity/examples/bench.rs +288 -0
  34. code_split-0.1.0a8/crates/code-split-complexity/examples/debug_spaces.rs +47 -0
  35. code_split-0.1.0a8/crates/code-split-complexity/src/lib.rs +178 -0
  36. code_split-0.1.0a8/crates/code-split-core/Cargo.toml +16 -0
  37. code_split-0.1.0a8/crates/code-split-core/src/builder.rs +114 -0
  38. code_split-0.1.0a8/crates/code-split-core/src/cycles.rs +160 -0
  39. code_split-0.1.0a8/crates/code-split-core/src/diff.rs +204 -0
  40. code_split-0.1.0a8/crates/code-split-core/src/graph.rs +552 -0
  41. code_split-0.1.0a8/crates/code-split-core/src/hk.rs +50 -0
  42. code_split-0.1.0a8/crates/code-split-core/src/lib.rs +20 -0
  43. code_split-0.1.0a8/crates/code-split-core/src/semantic.rs +10 -0
  44. code_split-0.1.0a8/crates/code-split-core/src/snapshot.rs +321 -0
  45. code_split-0.1.0a8/crates/code-split-core/src/stats.rs +150 -0
  46. code_split-0.1.0a8/crates/code-split-sema/Cargo.toml +23 -0
  47. code_split-0.1.0a8/crates/code-split-sema/src/lib.rs +311 -0
  48. code_split-0.1.0a8/crates/code-split-syn/Cargo.toml +20 -0
  49. code_split-0.1.0a8/crates/code-split-syn/examples/bench_complexity.rs +147 -0
  50. code_split-0.1.0a8/crates/code-split-syn/src/crate_graph.rs +48 -0
  51. code_split-0.1.0a8/crates/code-split-syn/src/lib.rs +44 -0
  52. code_split-0.1.0a8/crates/code-split-syn/src/module_graph.rs +851 -0
  53. code_split-0.1.0a8/pyproject.toml +35 -0
@@ -0,0 +1,3626 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "1.0.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.14"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "1.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys 0.61.2",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys 0.61.2",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anyhow"
81
+ version = "1.0.102"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
84
+
85
+ [[package]]
86
+ name = "arrayvec"
87
+ version = "0.7.6"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
90
+
91
+ [[package]]
92
+ name = "atomic-polyfill"
93
+ version = "1.0.3"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
96
+ dependencies = [
97
+ "critical-section",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "autocfg"
102
+ version = "1.5.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
105
+
106
+ [[package]]
107
+ name = "bitflags"
108
+ version = "2.11.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
111
+
112
+ [[package]]
113
+ name = "borsh"
114
+ version = "1.6.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
117
+ dependencies = [
118
+ "bytes",
119
+ "cfg_aliases",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "boxcar"
124
+ version = "0.2.14"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
127
+
128
+ [[package]]
129
+ name = "bstr"
130
+ version = "1.12.1"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
133
+ dependencies = [
134
+ "memchr",
135
+ "serde",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "bumpalo"
140
+ version = "3.20.2"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
143
+
144
+ [[package]]
145
+ name = "byteorder"
146
+ version = "1.5.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
149
+
150
+ [[package]]
151
+ name = "bytes"
152
+ version = "1.11.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
155
+
156
+ [[package]]
157
+ name = "camino"
158
+ version = "1.2.2"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
161
+ dependencies = [
162
+ "serde_core",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "cargo-platform"
167
+ version = "0.1.9"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
170
+ dependencies = [
171
+ "serde",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "cargo-platform"
176
+ version = "0.3.3"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
179
+ dependencies = [
180
+ "serde",
181
+ "serde_core",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "cargo_metadata"
186
+ version = "0.18.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
189
+ dependencies = [
190
+ "camino",
191
+ "cargo-platform 0.1.9",
192
+ "semver",
193
+ "serde",
194
+ "serde_json",
195
+ "thiserror 1.0.69",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "cargo_metadata"
200
+ version = "0.23.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
203
+ dependencies = [
204
+ "camino",
205
+ "cargo-platform 0.3.3",
206
+ "semver",
207
+ "serde",
208
+ "serde_json",
209
+ "thiserror 2.0.18",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "cc"
214
+ version = "1.2.62"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
217
+ dependencies = [
218
+ "find-msvc-tools",
219
+ "shlex",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "cfg-if"
224
+ version = "1.0.4"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
227
+
228
+ [[package]]
229
+ name = "cfg_aliases"
230
+ version = "0.2.1"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
233
+
234
+ [[package]]
235
+ name = "chrono"
236
+ version = "0.4.44"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
239
+ dependencies = [
240
+ "iana-time-zone",
241
+ "js-sys",
242
+ "num-traits",
243
+ "serde",
244
+ "wasm-bindgen",
245
+ "windows-link",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "clap"
250
+ version = "4.6.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
253
+ dependencies = [
254
+ "clap_builder",
255
+ "clap_derive",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "clap_builder"
260
+ version = "4.6.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
263
+ dependencies = [
264
+ "anstream",
265
+ "anstyle",
266
+ "clap_lex",
267
+ "strsim",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "clap_derive"
272
+ version = "4.6.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
275
+ dependencies = [
276
+ "heck",
277
+ "proc-macro2",
278
+ "quote",
279
+ "syn",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "clap_lex"
284
+ version = "1.1.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
287
+
288
+ [[package]]
289
+ name = "cobs"
290
+ version = "0.3.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
293
+ dependencies = [
294
+ "thiserror 2.0.18",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "code-split"
299
+ version = "0.1.0-alpha.8"
300
+ dependencies = [
301
+ "anyhow",
302
+ "chrono",
303
+ "clap",
304
+ "code-split-complexity",
305
+ "code-split-core",
306
+ "code-split-sema",
307
+ "code-split-syn",
308
+ "globset",
309
+ "serde",
310
+ "serde_json",
311
+ "tempfile",
312
+ "toml 0.8.23",
313
+ "tree-sitter",
314
+ "tree-sitter-javascript",
315
+ "tree-sitter-python",
316
+ "tree-sitter-typescript",
317
+ "walkdir",
318
+ "which",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "code-split-complexity"
323
+ version = "0.1.0-alpha.8"
324
+ dependencies = [
325
+ "anyhow",
326
+ "code-split-core",
327
+ "rust-code-analysis-code-split",
328
+ "syn",
329
+ "walkdir",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "code-split-core"
334
+ version = "0.1.0-alpha.8"
335
+ dependencies = [
336
+ "chrono",
337
+ "petgraph 0.6.5",
338
+ "serde",
339
+ "serde_json",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "code-split-sema"
344
+ version = "0.1.0-alpha.8"
345
+ dependencies = [
346
+ "anyhow",
347
+ "code-split-core",
348
+ "ra_ap_hir",
349
+ "ra_ap_ide",
350
+ "ra_ap_ide_db",
351
+ "ra_ap_load-cargo",
352
+ "ra_ap_project_model",
353
+ "ra_ap_syntax",
354
+ "ra_ap_vfs",
355
+ "thiserror 1.0.69",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "code-split-syn"
360
+ version = "0.1.0-alpha.8"
361
+ dependencies = [
362
+ "anyhow",
363
+ "cargo_metadata 0.18.1",
364
+ "code-split-core",
365
+ "proc-macro2",
366
+ "syn",
367
+ "walkdir",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "colorchoice"
372
+ version = "1.0.5"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
375
+
376
+ [[package]]
377
+ name = "core-foundation-sys"
378
+ version = "0.8.7"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
381
+
382
+ [[package]]
383
+ name = "countme"
384
+ version = "3.0.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
387
+
388
+ [[package]]
389
+ name = "cov-mark"
390
+ version = "2.2.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "90863d8442510cddf7f46618c4f92413774635771a3e80830c8b30d183420b14"
393
+
394
+ [[package]]
395
+ name = "critical-section"
396
+ version = "1.2.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
399
+
400
+ [[package]]
401
+ name = "crossbeam"
402
+ version = "0.8.4"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
405
+ dependencies = [
406
+ "crossbeam-channel",
407
+ "crossbeam-deque",
408
+ "crossbeam-epoch",
409
+ "crossbeam-queue",
410
+ "crossbeam-utils",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "crossbeam-channel"
415
+ version = "0.5.15"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
418
+ dependencies = [
419
+ "crossbeam-utils",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "crossbeam-deque"
424
+ version = "0.8.6"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
427
+ dependencies = [
428
+ "crossbeam-epoch",
429
+ "crossbeam-utils",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "crossbeam-epoch"
434
+ version = "0.9.18"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
437
+ dependencies = [
438
+ "crossbeam-utils",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "crossbeam-queue"
443
+ version = "0.3.12"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
446
+ dependencies = [
447
+ "crossbeam-utils",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "crossbeam-utils"
452
+ version = "0.8.21"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
455
+
456
+ [[package]]
457
+ name = "dashmap"
458
+ version = "6.1.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
461
+ dependencies = [
462
+ "cfg-if",
463
+ "crossbeam-utils",
464
+ "hashbrown 0.14.5",
465
+ "lock_api",
466
+ "once_cell",
467
+ "parking_lot_core",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "deranged"
472
+ version = "0.5.8"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
475
+ dependencies = [
476
+ "powerfmt",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "derive-where"
481
+ version = "1.6.1"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
484
+ dependencies = [
485
+ "proc-macro2",
486
+ "quote",
487
+ "syn",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "displaydoc"
492
+ version = "0.2.5"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
495
+ dependencies = [
496
+ "proc-macro2",
497
+ "quote",
498
+ "syn",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "dissimilar"
503
+ version = "1.0.11"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "aeda16ab4059c5fd2a83f2b9c9e9c981327b18aa8e3b313f7e6563799d4f093e"
506
+
507
+ [[package]]
508
+ name = "dot"
509
+ version = "0.1.4"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "a74b6c4d4a1cff5f454164363c16b72fa12463ca6b31f4b5f2035a65fa3d5906"
512
+
513
+ [[package]]
514
+ name = "drop_bomb"
515
+ version = "0.1.5"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
518
+
519
+ [[package]]
520
+ name = "either"
521
+ version = "1.15.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
524
+
525
+ [[package]]
526
+ name = "embedded-io"
527
+ version = "0.4.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
530
+
531
+ [[package]]
532
+ name = "embedded-io"
533
+ version = "0.6.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
536
+
537
+ [[package]]
538
+ name = "ena"
539
+ version = "0.14.4"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1"
542
+ dependencies = [
543
+ "log",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "equivalent"
548
+ version = "1.0.2"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
551
+
552
+ [[package]]
553
+ name = "errno"
554
+ version = "0.3.14"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
557
+ dependencies = [
558
+ "libc",
559
+ "windows-sys 0.61.2",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "fastrand"
564
+ version = "2.4.1"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
567
+
568
+ [[package]]
569
+ name = "find-msvc-tools"
570
+ version = "0.1.9"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
573
+
574
+ [[package]]
575
+ name = "fixedbitset"
576
+ version = "0.4.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
579
+
580
+ [[package]]
581
+ name = "fixedbitset"
582
+ version = "0.5.7"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
585
+
586
+ [[package]]
587
+ name = "foldhash"
588
+ version = "0.1.5"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
591
+
592
+ [[package]]
593
+ name = "foldhash"
594
+ version = "0.2.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
597
+
598
+ [[package]]
599
+ name = "form_urlencoded"
600
+ version = "1.2.2"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
603
+ dependencies = [
604
+ "percent-encoding",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "fsevent-sys"
609
+ version = "4.1.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
612
+ dependencies = [
613
+ "libc",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "fst"
618
+ version = "0.4.7"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
621
+
622
+ [[package]]
623
+ name = "futures-core"
624
+ version = "0.3.32"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
627
+
628
+ [[package]]
629
+ name = "futures-task"
630
+ version = "0.3.32"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
633
+
634
+ [[package]]
635
+ name = "futures-util"
636
+ version = "0.3.32"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
639
+ dependencies = [
640
+ "futures-core",
641
+ "futures-task",
642
+ "pin-project-lite",
643
+ "slab",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "getrandom"
648
+ version = "0.4.2"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
651
+ dependencies = [
652
+ "cfg-if",
653
+ "libc",
654
+ "r-efi",
655
+ "wasip2",
656
+ "wasip3",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "globset"
661
+ version = "0.4.18"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
664
+ dependencies = [
665
+ "aho-corasick",
666
+ "bstr",
667
+ "log",
668
+ "regex-automata",
669
+ "regex-syntax",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "hash32"
674
+ version = "0.2.1"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
677
+ dependencies = [
678
+ "byteorder",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "hashbrown"
683
+ version = "0.14.5"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
686
+
687
+ [[package]]
688
+ name = "hashbrown"
689
+ version = "0.15.5"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
692
+ dependencies = [
693
+ "foldhash 0.1.5",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "hashbrown"
698
+ version = "0.17.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
701
+ dependencies = [
702
+ "allocator-api2",
703
+ "equivalent",
704
+ "foldhash 0.2.0",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "hashlink"
709
+ version = "0.10.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
712
+ dependencies = [
713
+ "hashbrown 0.15.5",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "heapless"
718
+ version = "0.7.17"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
721
+ dependencies = [
722
+ "atomic-polyfill",
723
+ "hash32",
724
+ "rustc_version",
725
+ "serde",
726
+ "spin",
727
+ "stable_deref_trait",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "heck"
732
+ version = "0.5.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
735
+
736
+ [[package]]
737
+ name = "home"
738
+ version = "0.5.12"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
741
+ dependencies = [
742
+ "windows-sys 0.61.2",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "iana-time-zone"
747
+ version = "0.1.65"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
750
+ dependencies = [
751
+ "android_system_properties",
752
+ "core-foundation-sys",
753
+ "iana-time-zone-haiku",
754
+ "js-sys",
755
+ "log",
756
+ "wasm-bindgen",
757
+ "windows-core",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "iana-time-zone-haiku"
762
+ version = "0.1.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
765
+ dependencies = [
766
+ "cc",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "icu_collections"
771
+ version = "2.2.0"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
774
+ dependencies = [
775
+ "displaydoc",
776
+ "potential_utf",
777
+ "utf8_iter",
778
+ "yoke",
779
+ "zerofrom",
780
+ "zerovec",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "icu_locale_core"
785
+ version = "2.2.0"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
788
+ dependencies = [
789
+ "displaydoc",
790
+ "litemap",
791
+ "tinystr",
792
+ "writeable",
793
+ "zerovec",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "icu_normalizer"
798
+ version = "2.2.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
801
+ dependencies = [
802
+ "icu_collections",
803
+ "icu_normalizer_data",
804
+ "icu_properties",
805
+ "icu_provider",
806
+ "smallvec",
807
+ "zerovec",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "icu_normalizer_data"
812
+ version = "2.2.0"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
815
+
816
+ [[package]]
817
+ name = "icu_properties"
818
+ version = "2.2.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
821
+ dependencies = [
822
+ "icu_collections",
823
+ "icu_locale_core",
824
+ "icu_properties_data",
825
+ "icu_provider",
826
+ "zerotrie",
827
+ "zerovec",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "icu_properties_data"
832
+ version = "2.2.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
835
+
836
+ [[package]]
837
+ name = "icu_provider"
838
+ version = "2.2.0"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
841
+ dependencies = [
842
+ "displaydoc",
843
+ "icu_locale_core",
844
+ "writeable",
845
+ "yoke",
846
+ "zerofrom",
847
+ "zerotrie",
848
+ "zerovec",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "id-arena"
853
+ version = "2.3.0"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
856
+
857
+ [[package]]
858
+ name = "idna"
859
+ version = "1.1.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
862
+ dependencies = [
863
+ "idna_adapter",
864
+ "smallvec",
865
+ "utf8_iter",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "idna_adapter"
870
+ version = "1.2.2"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
873
+ dependencies = [
874
+ "icu_normalizer",
875
+ "icu_properties",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "indexmap"
880
+ version = "2.14.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
883
+ dependencies = [
884
+ "equivalent",
885
+ "hashbrown 0.17.1",
886
+ "serde",
887
+ "serde_core",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "inotify"
892
+ version = "0.11.1"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199"
895
+ dependencies = [
896
+ "bitflags",
897
+ "inotify-sys",
898
+ "libc",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "inotify-sys"
903
+ version = "0.1.5"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
906
+ dependencies = [
907
+ "libc",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "intrusive-collections"
912
+ version = "0.9.7"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
915
+ dependencies = [
916
+ "memoffset",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "inventory"
921
+ version = "0.3.24"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
924
+ dependencies = [
925
+ "rustversion",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "is_terminal_polyfill"
930
+ version = "1.70.2"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
933
+
934
+ [[package]]
935
+ name = "itertools"
936
+ version = "0.14.0"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
939
+ dependencies = [
940
+ "either",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "itoa"
945
+ version = "1.0.18"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
948
+
949
+ [[package]]
950
+ name = "jod-thread"
951
+ version = "1.0.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "a037eddb7d28de1d0fc42411f501b53b75838d313908078d6698d064f3029b24"
954
+
955
+ [[package]]
956
+ name = "js-sys"
957
+ version = "0.3.98"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
960
+ dependencies = [
961
+ "cfg-if",
962
+ "futures-util",
963
+ "once_cell",
964
+ "wasm-bindgen",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "kqueue"
969
+ version = "1.1.1"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
972
+ dependencies = [
973
+ "kqueue-sys",
974
+ "libc",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "kqueue-sys"
979
+ version = "1.1.2"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
982
+ dependencies = [
983
+ "bitflags",
984
+ "libc",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "la-arena"
989
+ version = "0.3.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "3752f229dcc5a481d60f385fa479ff46818033d881d2d801aa27dffcfb5e8306"
992
+
993
+ [[package]]
994
+ name = "lazy_static"
995
+ version = "1.5.0"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
998
+
999
+ [[package]]
1000
+ name = "leb128fmt"
1001
+ version = "0.1.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1004
+
1005
+ [[package]]
1006
+ name = "libc"
1007
+ version = "0.2.186"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1010
+
1011
+ [[package]]
1012
+ name = "line-index"
1013
+ version = "0.1.2"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
1016
+ dependencies = [
1017
+ "nohash-hasher",
1018
+ "text-size",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "linux-raw-sys"
1023
+ version = "0.4.15"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1026
+
1027
+ [[package]]
1028
+ name = "linux-raw-sys"
1029
+ version = "0.12.1"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1032
+
1033
+ [[package]]
1034
+ name = "litemap"
1035
+ version = "0.8.2"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1038
+
1039
+ [[package]]
1040
+ name = "lock_api"
1041
+ version = "0.4.14"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1044
+ dependencies = [
1045
+ "scopeguard",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "log"
1050
+ version = "0.4.29"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1053
+
1054
+ [[package]]
1055
+ name = "memchr"
1056
+ version = "2.8.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1059
+
1060
+ [[package]]
1061
+ name = "memoffset"
1062
+ version = "0.9.1"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1065
+ dependencies = [
1066
+ "autocfg",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "mio"
1071
+ version = "1.2.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1074
+ dependencies = [
1075
+ "libc",
1076
+ "log",
1077
+ "wasi",
1078
+ "windows-sys 0.61.2",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "miow"
1083
+ version = "0.6.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "536bfad37a309d62069485248eeaba1e8d9853aaf951caaeaed0585a95346f08"
1086
+ dependencies = [
1087
+ "windows-sys 0.61.2",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "nohash-hasher"
1092
+ version = "0.2.0"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1095
+
1096
+ [[package]]
1097
+ name = "notify"
1098
+ version = "8.2.0"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
1101
+ dependencies = [
1102
+ "bitflags",
1103
+ "fsevent-sys",
1104
+ "inotify",
1105
+ "kqueue",
1106
+ "libc",
1107
+ "log",
1108
+ "mio",
1109
+ "notify-types",
1110
+ "walkdir",
1111
+ "windows-sys 0.60.2",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "notify-types"
1116
+ version = "2.1.0"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
1119
+ dependencies = [
1120
+ "bitflags",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "nu-ansi-term"
1125
+ version = "0.50.3"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1128
+ dependencies = [
1129
+ "windows-sys 0.61.2",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "num"
1134
+ version = "0.4.3"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1137
+ dependencies = [
1138
+ "num-bigint",
1139
+ "num-complex",
1140
+ "num-integer",
1141
+ "num-iter",
1142
+ "num-rational",
1143
+ "num-traits",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "num-bigint"
1148
+ version = "0.4.6"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1151
+ dependencies = [
1152
+ "num-integer",
1153
+ "num-traits",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "num-complex"
1158
+ version = "0.4.6"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1161
+ dependencies = [
1162
+ "num-traits",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "num-conv"
1167
+ version = "0.2.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1170
+
1171
+ [[package]]
1172
+ name = "num-derive"
1173
+ version = "0.4.2"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1176
+ dependencies = [
1177
+ "proc-macro2",
1178
+ "quote",
1179
+ "syn",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "num-format"
1184
+ version = "0.4.4"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
1187
+ dependencies = [
1188
+ "arrayvec",
1189
+ "itoa",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "num-integer"
1194
+ version = "0.1.46"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1197
+ dependencies = [
1198
+ "num-traits",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "num-iter"
1203
+ version = "0.1.45"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1206
+ dependencies = [
1207
+ "autocfg",
1208
+ "num-integer",
1209
+ "num-traits",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "num-rational"
1214
+ version = "0.4.2"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1217
+ dependencies = [
1218
+ "num-bigint",
1219
+ "num-integer",
1220
+ "num-traits",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "num-traits"
1225
+ version = "0.2.19"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1228
+ dependencies = [
1229
+ "autocfg",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "num_threads"
1234
+ version = "0.1.7"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1237
+ dependencies = [
1238
+ "libc",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "once_cell"
1243
+ version = "1.21.4"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1246
+
1247
+ [[package]]
1248
+ name = "once_cell_polyfill"
1249
+ version = "1.70.2"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1252
+
1253
+ [[package]]
1254
+ name = "oorandom"
1255
+ version = "11.1.5"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1258
+
1259
+ [[package]]
1260
+ name = "parking_lot"
1261
+ version = "0.12.5"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1264
+ dependencies = [
1265
+ "lock_api",
1266
+ "parking_lot_core",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "parking_lot_core"
1271
+ version = "0.9.12"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1274
+ dependencies = [
1275
+ "cfg-if",
1276
+ "libc",
1277
+ "redox_syscall",
1278
+ "smallvec",
1279
+ "windows-link",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "percent-encoding"
1284
+ version = "2.3.2"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1287
+
1288
+ [[package]]
1289
+ name = "perf-event"
1290
+ version = "0.4.8"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "b4d6393d9238342159080d79b78cb59c67399a8e7ecfa5d410bd614169e4e823"
1293
+ dependencies = [
1294
+ "libc",
1295
+ "perf-event-open-sys",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "perf-event-open-sys"
1300
+ version = "4.0.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "7c44fb1c7651a45a3652c4afc6e754e40b3d6e6556f1487e2b230bfc4f33c2a8"
1303
+ dependencies = [
1304
+ "libc",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "petgraph"
1309
+ version = "0.6.5"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
1312
+ dependencies = [
1313
+ "fixedbitset 0.4.2",
1314
+ "indexmap",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "petgraph"
1319
+ version = "0.8.3"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
1322
+ dependencies = [
1323
+ "fixedbitset 0.5.7",
1324
+ "hashbrown 0.15.5",
1325
+ "indexmap",
1326
+ "serde",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "pin-project-lite"
1331
+ version = "0.2.17"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1334
+
1335
+ [[package]]
1336
+ name = "portable-atomic"
1337
+ version = "1.13.1"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1340
+
1341
+ [[package]]
1342
+ name = "postcard"
1343
+ version = "1.1.3"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
1346
+ dependencies = [
1347
+ "cobs",
1348
+ "embedded-io 0.4.0",
1349
+ "embedded-io 0.6.1",
1350
+ "heapless",
1351
+ "serde",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "potential_utf"
1356
+ version = "0.1.5"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1359
+ dependencies = [
1360
+ "zerovec",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "powerfmt"
1365
+ version = "0.2.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1368
+
1369
+ [[package]]
1370
+ name = "prettyplease"
1371
+ version = "0.2.37"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1374
+ dependencies = [
1375
+ "proc-macro2",
1376
+ "syn",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "proc-macro2"
1381
+ version = "1.0.106"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1384
+ dependencies = [
1385
+ "unicode-ident",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "pulldown-cmark"
1390
+ version = "0.9.6"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
1393
+ dependencies = [
1394
+ "bitflags",
1395
+ "memchr",
1396
+ "unicase",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "pulldown-cmark-to-cmark"
1401
+ version = "10.0.4"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "0194e6e1966c23cc5fd988714f85b18d548d773e81965413555d96569931833d"
1404
+ dependencies = [
1405
+ "pulldown-cmark",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "quote"
1410
+ version = "1.0.45"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1413
+ dependencies = [
1414
+ "proc-macro2",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "r-efi"
1419
+ version = "6.0.0"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1422
+
1423
+ [[package]]
1424
+ name = "ra-ap-rustc_abi"
1425
+ version = "0.165.0"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "2f25a779e21ca3bba6795193b16508c8ab159f96ee4b07349893fd272065b525"
1428
+ dependencies = [
1429
+ "bitflags",
1430
+ "ra-ap-rustc_hashes",
1431
+ "ra-ap-rustc_index",
1432
+ "tracing",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "ra-ap-rustc_ast_ir"
1437
+ version = "0.165.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "0218ca6c7b096466e85a497e6150c39be5b7bc36637fe62c1cd20370a9d9aac7"
1440
+
1441
+ [[package]]
1442
+ name = "ra-ap-rustc_hashes"
1443
+ version = "0.165.0"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "d6b410bacf1a7c8038f376fa6283003784d568ac012e35fc0aeefa9a5ab11a2e"
1446
+ dependencies = [
1447
+ "rustc-stable-hash",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "ra-ap-rustc_index"
1452
+ version = "0.165.0"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "2271b55e4a5d0cc0cbe9bdf8056c07ac69e32919a48ce66722ed0526d62588c3"
1455
+ dependencies = [
1456
+ "ra-ap-rustc_index_macros",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "ra-ap-rustc_index_macros"
1461
+ version = "0.165.0"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "b6a89e743fb881a1e13544e3395a5ad9ad9280d56384256a121066119abd7af2"
1464
+ dependencies = [
1465
+ "proc-macro2",
1466
+ "quote",
1467
+ "syn",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "ra-ap-rustc_lexer"
1472
+ version = "0.165.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "a6d7c9cc05e0e6b72a214a455a106d9b22b0494164d50a657b17bd319534c218"
1475
+ dependencies = [
1476
+ "memchr",
1477
+ "unicode-ident",
1478
+ "unicode-properties",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "ra-ap-rustc_next_trait_solver"
1483
+ version = "0.165.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "cb3017c2f0ace80b8e6068b9c613aa56ed50e0374bf44a891447511f1264e40d"
1486
+ dependencies = [
1487
+ "derive-where",
1488
+ "ra-ap-rustc_index",
1489
+ "ra-ap-rustc_type_ir",
1490
+ "ra-ap-rustc_type_ir_macros",
1491
+ "tracing",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "ra-ap-rustc_parse_format"
1496
+ version = "0.165.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "4a737f844bdef8ac5ab54dadf2f34704b4d06beef9236d71080bb34db697220b"
1499
+ dependencies = [
1500
+ "ra-ap-rustc_lexer",
1501
+ "rustc-literal-escaper 0.0.7",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "ra-ap-rustc_pattern_analysis"
1506
+ version = "0.165.0"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "6de3d4c7d6078cce3c40c55717b8b15002a80b9fa8849faea496a365324861b4"
1509
+ dependencies = [
1510
+ "ra-ap-rustc_index",
1511
+ "rustc-hash 2.1.2",
1512
+ "rustc_apfloat",
1513
+ "smallvec",
1514
+ "tracing",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "ra-ap-rustc_type_ir"
1519
+ version = "0.165.0"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "8c5d9a4d3e7bee7313599bc6d794037247ac0165f03857379cf4fc3097199e05"
1522
+ dependencies = [
1523
+ "arrayvec",
1524
+ "bitflags",
1525
+ "derive-where",
1526
+ "ena",
1527
+ "indexmap",
1528
+ "ra-ap-rustc_abi",
1529
+ "ra-ap-rustc_ast_ir",
1530
+ "ra-ap-rustc_index",
1531
+ "ra-ap-rustc_type_ir_macros",
1532
+ "rustc-hash 2.1.2",
1533
+ "smallvec",
1534
+ "thin-vec",
1535
+ "tracing",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "ra-ap-rustc_type_ir_macros"
1540
+ version = "0.165.0"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "024598d1f54272acd83d28c121f8a2e82e216dd7be1e40158b66b2d12fa214c0"
1543
+ dependencies = [
1544
+ "proc-macro2",
1545
+ "quote",
1546
+ "syn",
1547
+ "synstructure",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "ra_ap_base_db"
1552
+ version = "0.0.333"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "60dc21a24a67c58f8e2e2dd39f65028b6b2fd24e2037bb093f2ab583ec9a8857"
1555
+ dependencies = [
1556
+ "dashmap",
1557
+ "indexmap",
1558
+ "la-arena",
1559
+ "ra_ap_cfg",
1560
+ "ra_ap_intern",
1561
+ "ra_ap_query-group-macro",
1562
+ "ra_ap_span",
1563
+ "ra_ap_syntax",
1564
+ "ra_ap_vfs",
1565
+ "rustc-hash 2.1.2",
1566
+ "salsa",
1567
+ "salsa-macros",
1568
+ "semver",
1569
+ "tracing",
1570
+ "triomphe",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "ra_ap_cfg"
1575
+ version = "0.0.333"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "d383fff7804813d2b98672580703f7fceb73dcee2218419a1ce26b971be1aadb"
1578
+ dependencies = [
1579
+ "ra_ap_intern",
1580
+ "ra_ap_syntax",
1581
+ "ra_ap_tt",
1582
+ "rustc-hash 2.1.2",
1583
+ "tracing",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "ra_ap_edition"
1588
+ version = "0.0.333"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "8977f8a5c807f0ce139223db8a639fb1e344e0a9ee6237062fe5a8b91f8e4d30"
1591
+
1592
+ [[package]]
1593
+ name = "ra_ap_hir"
1594
+ version = "0.0.333"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "ee97329692eb7b7132e16b58ae1ef6e88d724097153da4dba43a22be79abc32c"
1597
+ dependencies = [
1598
+ "arrayvec",
1599
+ "either",
1600
+ "itertools",
1601
+ "la-arena",
1602
+ "ra-ap-rustc_type_ir",
1603
+ "ra_ap_base_db",
1604
+ "ra_ap_cfg",
1605
+ "ra_ap_hir_def",
1606
+ "ra_ap_hir_expand",
1607
+ "ra_ap_hir_ty",
1608
+ "ra_ap_intern",
1609
+ "ra_ap_span",
1610
+ "ra_ap_stdx",
1611
+ "ra_ap_syntax",
1612
+ "ra_ap_tt",
1613
+ "rustc-hash 2.1.2",
1614
+ "serde_json",
1615
+ "smallvec",
1616
+ "tracing",
1617
+ "triomphe",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "ra_ap_hir_def"
1622
+ version = "0.0.333"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "7768ccbfe1fff2f8703ee238e3edf2587cab1a63901933672f958743ec750567"
1625
+ dependencies = [
1626
+ "arrayvec",
1627
+ "bitflags",
1628
+ "cov-mark",
1629
+ "drop_bomb",
1630
+ "either",
1631
+ "fst",
1632
+ "indexmap",
1633
+ "itertools",
1634
+ "la-arena",
1635
+ "ra-ap-rustc_abi",
1636
+ "ra-ap-rustc_parse_format",
1637
+ "ra_ap_base_db",
1638
+ "ra_ap_cfg",
1639
+ "ra_ap_hir_expand",
1640
+ "ra_ap_intern",
1641
+ "ra_ap_query-group-macro",
1642
+ "ra_ap_span",
1643
+ "ra_ap_stdx",
1644
+ "ra_ap_syntax",
1645
+ "ra_ap_syntax-bridge",
1646
+ "ra_ap_tt",
1647
+ "rustc-hash 2.1.2",
1648
+ "rustc_apfloat",
1649
+ "salsa",
1650
+ "salsa-macros",
1651
+ "smallvec",
1652
+ "thin-vec",
1653
+ "tracing",
1654
+ "triomphe",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "ra_ap_hir_expand"
1659
+ version = "0.0.333"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "c4246ed1105cb939376835357fc145ee032922bf3ae39fa1f1e2f9c35bc09ec3"
1662
+ dependencies = [
1663
+ "cov-mark",
1664
+ "either",
1665
+ "itertools",
1666
+ "ra_ap_base_db",
1667
+ "ra_ap_cfg",
1668
+ "ra_ap_intern",
1669
+ "ra_ap_mbe",
1670
+ "ra_ap_parser",
1671
+ "ra_ap_query-group-macro",
1672
+ "ra_ap_span",
1673
+ "ra_ap_stdx",
1674
+ "ra_ap_syntax",
1675
+ "ra_ap_syntax-bridge",
1676
+ "ra_ap_tt",
1677
+ "rustc-hash 2.1.2",
1678
+ "salsa",
1679
+ "salsa-macros",
1680
+ "smallvec",
1681
+ "thin-vec",
1682
+ "tracing",
1683
+ "triomphe",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "ra_ap_hir_ty"
1688
+ version = "0.0.333"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "fe91ae46d340625f576b2cdaec31a945f211c38d964e0cb83c96fbb6c0a51e05"
1691
+ dependencies = [
1692
+ "arrayvec",
1693
+ "bitflags",
1694
+ "cov-mark",
1695
+ "either",
1696
+ "ena",
1697
+ "indexmap",
1698
+ "itertools",
1699
+ "la-arena",
1700
+ "oorandom",
1701
+ "petgraph 0.8.3",
1702
+ "ra-ap-rustc_abi",
1703
+ "ra-ap-rustc_ast_ir",
1704
+ "ra-ap-rustc_index",
1705
+ "ra-ap-rustc_next_trait_solver",
1706
+ "ra-ap-rustc_pattern_analysis",
1707
+ "ra-ap-rustc_type_ir",
1708
+ "ra_ap_base_db",
1709
+ "ra_ap_hir_def",
1710
+ "ra_ap_hir_expand",
1711
+ "ra_ap_intern",
1712
+ "ra_ap_macros",
1713
+ "ra_ap_query-group-macro",
1714
+ "ra_ap_span",
1715
+ "ra_ap_stdx",
1716
+ "ra_ap_syntax",
1717
+ "rustc-hash 2.1.2",
1718
+ "rustc_apfloat",
1719
+ "salsa",
1720
+ "salsa-macros",
1721
+ "serde",
1722
+ "serde_derive",
1723
+ "smallvec",
1724
+ "thin-vec",
1725
+ "tracing",
1726
+ "tracing-subscriber",
1727
+ "tracing-tree",
1728
+ "triomphe",
1729
+ "typed-arena",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "ra_ap_ide"
1734
+ version = "0.0.333"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "0dc9c8b90f3a759914b0de215f35aa2da241292c5be900aa17d61125e9ac3d48"
1737
+ dependencies = [
1738
+ "arrayvec",
1739
+ "cov-mark",
1740
+ "dot",
1741
+ "either",
1742
+ "itertools",
1743
+ "nohash-hasher",
1744
+ "oorandom",
1745
+ "pulldown-cmark",
1746
+ "pulldown-cmark-to-cmark",
1747
+ "ra_ap_cfg",
1748
+ "ra_ap_hir",
1749
+ "ra_ap_ide_assists",
1750
+ "ra_ap_ide_completion",
1751
+ "ra_ap_ide_db",
1752
+ "ra_ap_ide_diagnostics",
1753
+ "ra_ap_ide_ssr",
1754
+ "ra_ap_macros",
1755
+ "ra_ap_profile",
1756
+ "ra_ap_span",
1757
+ "ra_ap_stdx",
1758
+ "ra_ap_syntax",
1759
+ "ra_ap_toolchain",
1760
+ "rustc_apfloat",
1761
+ "smallvec",
1762
+ "tracing",
1763
+ "triomphe",
1764
+ "url",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "ra_ap_ide_assists"
1769
+ version = "0.0.333"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "0c997154489aa7a7b55bb22298f805ffefdc60e4ab01ab28dcbab43894f04d78"
1772
+ dependencies = [
1773
+ "cov-mark",
1774
+ "either",
1775
+ "itertools",
1776
+ "ra_ap_hir",
1777
+ "ra_ap_ide_db",
1778
+ "ra_ap_stdx",
1779
+ "ra_ap_syntax",
1780
+ "smallvec",
1781
+ "tracing",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "ra_ap_ide_completion"
1786
+ version = "0.0.333"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "5b7fb3baea7dcdde87cf62f8695017f859a73695b8fc1277f48e20b56adab40d"
1789
+ dependencies = [
1790
+ "cov-mark",
1791
+ "itertools",
1792
+ "ra_ap_base_db",
1793
+ "ra_ap_hir",
1794
+ "ra_ap_ide_db",
1795
+ "ra_ap_macros",
1796
+ "ra_ap_stdx",
1797
+ "ra_ap_syntax",
1798
+ "smallvec",
1799
+ "tracing",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "ra_ap_ide_db"
1804
+ version = "0.0.333"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "6743c12f3ad00fd62c9e5d21f7d25187040fb17e9b89847bebd1bd6808cc81d5"
1807
+ dependencies = [
1808
+ "arrayvec",
1809
+ "bitflags",
1810
+ "cov-mark",
1811
+ "crossbeam-channel",
1812
+ "either",
1813
+ "fst",
1814
+ "itertools",
1815
+ "line-index",
1816
+ "memchr",
1817
+ "nohash-hasher",
1818
+ "ra_ap_base_db",
1819
+ "ra_ap_hir",
1820
+ "ra_ap_macros",
1821
+ "ra_ap_parser",
1822
+ "ra_ap_profile",
1823
+ "ra_ap_span",
1824
+ "ra_ap_stdx",
1825
+ "ra_ap_syntax",
1826
+ "ra_ap_test_fixture",
1827
+ "ra_ap_test_utils",
1828
+ "ra_ap_vfs",
1829
+ "rayon",
1830
+ "rustc-hash 2.1.2",
1831
+ "salsa",
1832
+ "salsa-macros",
1833
+ "smallvec",
1834
+ "tracing",
1835
+ "triomphe",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "ra_ap_ide_diagnostics"
1840
+ version = "0.0.333"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "6bcc3e7721c6cc91941db473feca1bde5c6eeb2d549c81c164bb3d77fd1b9547"
1843
+ dependencies = [
1844
+ "cov-mark",
1845
+ "either",
1846
+ "itertools",
1847
+ "ra_ap_cfg",
1848
+ "ra_ap_hir",
1849
+ "ra_ap_ide_db",
1850
+ "ra_ap_paths",
1851
+ "ra_ap_stdx",
1852
+ "ra_ap_syntax",
1853
+ "serde_json",
1854
+ "tracing",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "ra_ap_ide_ssr"
1859
+ version = "0.0.333"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "acead702a37655e52aad64c8a9562e1b53f454cb6c2ed8184c35c6e78731997c"
1862
+ dependencies = [
1863
+ "cov-mark",
1864
+ "itertools",
1865
+ "ra_ap_hir",
1866
+ "ra_ap_ide_db",
1867
+ "ra_ap_parser",
1868
+ "ra_ap_syntax",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "ra_ap_intern"
1873
+ version = "0.0.333"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "c6e88754bb027830a33c6bb2fc75f00aee065b73fd2896c290b5db064bb73d85"
1876
+ dependencies = [
1877
+ "arrayvec",
1878
+ "dashmap",
1879
+ "hashbrown 0.14.5",
1880
+ "rayon",
1881
+ "rustc-hash 2.1.2",
1882
+ "triomphe",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "ra_ap_load-cargo"
1887
+ version = "0.0.333"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "fc8d4f3dabfa6495f9b4a560b74d9ec1fd53579182508874423f547edb366fcb"
1890
+ dependencies = [
1891
+ "anyhow",
1892
+ "crossbeam-channel",
1893
+ "itertools",
1894
+ "ra_ap_hir_expand",
1895
+ "ra_ap_ide_db",
1896
+ "ra_ap_intern",
1897
+ "ra_ap_proc_macro_api",
1898
+ "ra_ap_project_model",
1899
+ "ra_ap_span",
1900
+ "ra_ap_tt",
1901
+ "ra_ap_vfs",
1902
+ "ra_ap_vfs-notify",
1903
+ "tracing",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "ra_ap_macros"
1908
+ version = "0.0.333"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "e6986732bc2b6eb2badf188bd624baf396e699aa9633b55d420b354dbd22283e"
1911
+ dependencies = [
1912
+ "proc-macro2",
1913
+ "quote",
1914
+ "syn",
1915
+ "synstructure",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "ra_ap_mbe"
1920
+ version = "0.0.333"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "3c91c8eb80a8650fddfb53950e43f83a018229c67ef13839bb9fb92a4d7fcbd9"
1923
+ dependencies = [
1924
+ "arrayvec",
1925
+ "bitflags",
1926
+ "cov-mark",
1927
+ "ra-ap-rustc_lexer",
1928
+ "ra_ap_intern",
1929
+ "ra_ap_parser",
1930
+ "ra_ap_span",
1931
+ "ra_ap_stdx",
1932
+ "ra_ap_syntax-bridge",
1933
+ "ra_ap_tt",
1934
+ "rustc-hash 2.1.2",
1935
+ "salsa",
1936
+ "smallvec",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "ra_ap_parser"
1941
+ version = "0.0.333"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "b04b67813de1973e21b1352ccc2d1f8c9d4f1c029899ed9e46b24599d9b8c877"
1944
+ dependencies = [
1945
+ "drop_bomb",
1946
+ "ra-ap-rustc_lexer",
1947
+ "ra_ap_edition",
1948
+ "rustc-literal-escaper 0.0.4",
1949
+ "tracing",
1950
+ "winnow 0.7.15",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "ra_ap_paths"
1955
+ version = "0.0.333"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "71405deb72116d3a2e72f273961a0f14927ad199dabf7893c5fcee0177dc91f8"
1958
+ dependencies = [
1959
+ "camino",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "ra_ap_proc_macro_api"
1964
+ version = "0.0.333"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "747f9bb591d2d8744e2716b246b4b8dd2102eaa7ac497ccaf58346b097157f20"
1967
+ dependencies = [
1968
+ "indexmap",
1969
+ "postcard",
1970
+ "ra_ap_intern",
1971
+ "ra_ap_paths",
1972
+ "ra_ap_span",
1973
+ "ra_ap_stdx",
1974
+ "ra_ap_tt",
1975
+ "rayon",
1976
+ "rustc-hash 2.1.2",
1977
+ "semver",
1978
+ "serde",
1979
+ "serde_derive",
1980
+ "serde_json",
1981
+ "tracing",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "ra_ap_profile"
1986
+ version = "0.0.333"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "b0fd7caa807e728e6797a8013beedb215323b7d4fd8fe171ebbb5131fa1e4ba8"
1989
+ dependencies = [
1990
+ "libc",
1991
+ "perf-event",
1992
+ "windows-sys 0.61.2",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "ra_ap_project_model"
1997
+ version = "0.0.333"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "687c040607c0a1ba86d803e30f7bc89214ac1674f328e55ccf83aaf8cf6f79d6"
2000
+ dependencies = [
2001
+ "anyhow",
2002
+ "cargo_metadata 0.23.1",
2003
+ "itertools",
2004
+ "la-arena",
2005
+ "ra_ap_base_db",
2006
+ "ra_ap_cfg",
2007
+ "ra_ap_intern",
2008
+ "ra_ap_paths",
2009
+ "ra_ap_span",
2010
+ "ra_ap_stdx",
2011
+ "ra_ap_toolchain",
2012
+ "rustc-hash 2.1.2",
2013
+ "semver",
2014
+ "serde",
2015
+ "serde_derive",
2016
+ "serde_json",
2017
+ "temp-dir",
2018
+ "toml 0.9.12+spec-1.1.0",
2019
+ "tracing",
2020
+ "triomphe",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "ra_ap_query-group-macro"
2025
+ version = "0.0.333"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "db632841b5aad35de146ca3cc5e4ca772933a796d00af31ae88c251e77e2f2ee"
2028
+ dependencies = [
2029
+ "proc-macro2",
2030
+ "quote",
2031
+ "syn",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "ra_ap_span"
2036
+ version = "0.0.333"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "919d2f6f040e1b6af3ee45a55e0db3d4d42b887cd98a3d862eca00696adfdaf2"
2039
+ dependencies = [
2040
+ "hashbrown 0.14.5",
2041
+ "la-arena",
2042
+ "ra_ap_stdx",
2043
+ "ra_ap_syntax",
2044
+ "ra_ap_vfs",
2045
+ "rustc-hash 2.1.2",
2046
+ "salsa",
2047
+ "text-size",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "ra_ap_stdx"
2052
+ version = "0.0.333"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "954f944ee11cc5a571b7368b9534c328ad88027ceada2ce1b833890b1166f62d"
2055
+ dependencies = [
2056
+ "crossbeam-channel",
2057
+ "crossbeam-utils",
2058
+ "itertools",
2059
+ "jod-thread",
2060
+ "libc",
2061
+ "miow",
2062
+ "tracing",
2063
+ "windows-sys 0.61.2",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "ra_ap_syntax"
2068
+ version = "0.0.333"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "7565fc61811cd59b6e0f5c80305f68020259e1bf39d41a02b86331bd2e9e53b1"
2071
+ dependencies = [
2072
+ "either",
2073
+ "itertools",
2074
+ "ra_ap_parser",
2075
+ "ra_ap_stdx",
2076
+ "rowan",
2077
+ "rustc-hash 2.1.2",
2078
+ "rustc-literal-escaper 0.0.4",
2079
+ "smallvec",
2080
+ "smol_str",
2081
+ "tracing",
2082
+ "triomphe",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "ra_ap_syntax-bridge"
2087
+ version = "0.0.333"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "e16875f5ad82c3999b3009cddf6f9238f0d15344f0e41128fd58cccf0635c543"
2090
+ dependencies = [
2091
+ "ra_ap_intern",
2092
+ "ra_ap_parser",
2093
+ "ra_ap_span",
2094
+ "ra_ap_stdx",
2095
+ "ra_ap_syntax",
2096
+ "ra_ap_tt",
2097
+ "rustc-hash 2.1.2",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "ra_ap_test_fixture"
2102
+ version = "0.0.333"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "9f91e2642d3101cdc31bb5729f72bf87a3faae77a4e87b6f9a4d0bbb79081f66"
2105
+ dependencies = [
2106
+ "ra_ap_base_db",
2107
+ "ra_ap_cfg",
2108
+ "ra_ap_hir_expand",
2109
+ "ra_ap_intern",
2110
+ "ra_ap_paths",
2111
+ "ra_ap_span",
2112
+ "ra_ap_stdx",
2113
+ "ra_ap_test_utils",
2114
+ "ra_ap_tt",
2115
+ "triomphe",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "ra_ap_test_utils"
2120
+ version = "0.0.333"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "0d3327c4786230639047c747386cedce689c2a045ff4a4e28b8c5256903e4a2c"
2123
+ dependencies = [
2124
+ "dissimilar",
2125
+ "ra_ap_paths",
2126
+ "ra_ap_profile",
2127
+ "ra_ap_stdx",
2128
+ "rustc-hash 2.1.2",
2129
+ "text-size",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "ra_ap_toolchain"
2134
+ version = "0.0.333"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "846eb34edaf1bc34b303c987a6ea677e35b9c28c8443c2e3034b42bd6badea37"
2137
+ dependencies = [
2138
+ "camino",
2139
+ "home",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "ra_ap_tt"
2144
+ version = "0.0.333"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "fd80db0793c63efdefcd4b6c93ff93be823292ca12e19e15a8382ee57b8b2ed0"
2147
+ dependencies = [
2148
+ "arrayvec",
2149
+ "indexmap",
2150
+ "ra-ap-rustc_lexer",
2151
+ "ra_ap_intern",
2152
+ "ra_ap_span",
2153
+ "ra_ap_stdx",
2154
+ "rustc-hash 2.1.2",
2155
+ "text-size",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "ra_ap_vfs"
2160
+ version = "0.0.333"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "e2f6fa24be6b3d26c0da1c8abf7549d374b721a1ac9849f01cf48c0dc5a2a257"
2163
+ dependencies = [
2164
+ "crossbeam-channel",
2165
+ "fst",
2166
+ "indexmap",
2167
+ "nohash-hasher",
2168
+ "ra_ap_paths",
2169
+ "ra_ap_stdx",
2170
+ "rustc-hash 2.1.2",
2171
+ "tracing",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "ra_ap_vfs-notify"
2176
+ version = "0.0.333"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "e8d633624fe6b3a046b4263e1f4c54acc6ca063e172f5d4037e2d61786e65468"
2179
+ dependencies = [
2180
+ "crossbeam-channel",
2181
+ "notify",
2182
+ "ra_ap_paths",
2183
+ "ra_ap_stdx",
2184
+ "ra_ap_vfs",
2185
+ "rayon",
2186
+ "rustc-hash 2.1.2",
2187
+ "tracing",
2188
+ "walkdir",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "rayon"
2193
+ version = "1.12.0"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2196
+ dependencies = [
2197
+ "either",
2198
+ "rayon-core",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "rayon-core"
2203
+ version = "1.13.0"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2206
+ dependencies = [
2207
+ "crossbeam-deque",
2208
+ "crossbeam-utils",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "redox_syscall"
2213
+ version = "0.5.18"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2216
+ dependencies = [
2217
+ "bitflags",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "regex"
2222
+ version = "1.12.3"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2225
+ dependencies = [
2226
+ "aho-corasick",
2227
+ "memchr",
2228
+ "regex-automata",
2229
+ "regex-syntax",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "regex-automata"
2234
+ version = "0.4.14"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2237
+ dependencies = [
2238
+ "aho-corasick",
2239
+ "memchr",
2240
+ "regex-syntax",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "regex-syntax"
2245
+ version = "0.8.10"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2248
+
2249
+ [[package]]
2250
+ name = "rowan"
2251
+ version = "0.15.18"
2252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2253
+ checksum = "62f509095fc8cc0c8c8564016771d458079c11a8d857e65861f045145c0d3208"
2254
+ dependencies = [
2255
+ "countme",
2256
+ "hashbrown 0.14.5",
2257
+ "memoffset",
2258
+ "rustc-hash 1.1.0",
2259
+ "text-size",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "rust-code-analysis-code-split"
2264
+ version = "0.0.26-cs.0"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "a3b9324bd5110e3d03aa2a301ff9615a802ca8169dd01507e2adf1232e57d341"
2267
+ dependencies = [
2268
+ "aho-corasick",
2269
+ "crossbeam",
2270
+ "globset",
2271
+ "num",
2272
+ "num-derive",
2273
+ "num-format",
2274
+ "num-traits",
2275
+ "petgraph 0.8.3",
2276
+ "regex",
2277
+ "serde",
2278
+ "termcolor",
2279
+ "tree-sitter",
2280
+ "tree-sitter-ccomment-code-split",
2281
+ "tree-sitter-java",
2282
+ "tree-sitter-javascript",
2283
+ "tree-sitter-kotlin-ng",
2284
+ "tree-sitter-mozcpp-code-split",
2285
+ "tree-sitter-mozjs-code-split",
2286
+ "tree-sitter-preproc-code-split",
2287
+ "tree-sitter-python",
2288
+ "tree-sitter-rust",
2289
+ "tree-sitter-typescript",
2290
+ "walkdir",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "rustc-hash"
2295
+ version = "1.1.0"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2298
+
2299
+ [[package]]
2300
+ name = "rustc-hash"
2301
+ version = "2.1.2"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2304
+
2305
+ [[package]]
2306
+ name = "rustc-literal-escaper"
2307
+ version = "0.0.4"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "ab03008eb631b703dd16978282ae36c73282e7922fe101a4bd072a40ecea7b8b"
2310
+
2311
+ [[package]]
2312
+ name = "rustc-literal-escaper"
2313
+ version = "0.0.7"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "8be87abb9e40db7466e0681dc8ecd9dcfd40360cb10b4c8fe24a7c4c3669b198"
2316
+
2317
+ [[package]]
2318
+ name = "rustc-stable-hash"
2319
+ version = "0.1.2"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "781442f29170c5c93b7185ad559492601acdc71d5bb0706f5868094f45cfcd08"
2322
+
2323
+ [[package]]
2324
+ name = "rustc_apfloat"
2325
+ version = "0.2.3+llvm-462a31f5a5ab"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "486c2179b4796f65bfe2ee33679acf0927ac83ecf583ad6c91c3b4570911b9ad"
2328
+ dependencies = [
2329
+ "bitflags",
2330
+ "smallvec",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "rustc_version"
2335
+ version = "0.4.1"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2338
+ dependencies = [
2339
+ "semver",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "rustix"
2344
+ version = "0.38.44"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2347
+ dependencies = [
2348
+ "bitflags",
2349
+ "errno",
2350
+ "libc",
2351
+ "linux-raw-sys 0.4.15",
2352
+ "windows-sys 0.59.0",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "rustix"
2357
+ version = "1.1.4"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2360
+ dependencies = [
2361
+ "bitflags",
2362
+ "errno",
2363
+ "libc",
2364
+ "linux-raw-sys 0.12.1",
2365
+ "windows-sys 0.61.2",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "rustversion"
2370
+ version = "1.0.22"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2373
+
2374
+ [[package]]
2375
+ name = "salsa"
2376
+ version = "0.26.2"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "4612ff789805e65c87e9b38cb749a293212a615af065bed8a2001086801498c3"
2379
+ dependencies = [
2380
+ "boxcar",
2381
+ "crossbeam-queue",
2382
+ "crossbeam-utils",
2383
+ "hashbrown 0.17.1",
2384
+ "hashlink",
2385
+ "indexmap",
2386
+ "intrusive-collections",
2387
+ "inventory",
2388
+ "parking_lot",
2389
+ "portable-atomic",
2390
+ "rayon",
2391
+ "rustc-hash 2.1.2",
2392
+ "salsa-macro-rules",
2393
+ "salsa-macros",
2394
+ "smallvec",
2395
+ "thin-vec",
2396
+ "tracing",
2397
+ "typeid",
2398
+ ]
2399
+
2400
+ [[package]]
2401
+ name = "salsa-macro-rules"
2402
+ version = "0.26.2"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "58e354cbac6939b9b09cd9c11fb419a53e64b4a0f755d929f56a09f4cc752e41"
2405
+
2406
+ [[package]]
2407
+ name = "salsa-macros"
2408
+ version = "0.26.2"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "3067861075c2b80608f84ad49fb88f2c7610b94cdf8b4201e79ddee87f8980c8"
2411
+ dependencies = [
2412
+ "proc-macro2",
2413
+ "quote",
2414
+ "syn",
2415
+ "synstructure",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "same-file"
2420
+ version = "1.0.6"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2423
+ dependencies = [
2424
+ "winapi-util",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "scopeguard"
2429
+ version = "1.2.0"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2432
+
2433
+ [[package]]
2434
+ name = "semver"
2435
+ version = "1.0.28"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2438
+ dependencies = [
2439
+ "serde",
2440
+ "serde_core",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "serde"
2445
+ version = "1.0.228"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2448
+ dependencies = [
2449
+ "serde_core",
2450
+ "serde_derive",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "serde_core"
2455
+ version = "1.0.228"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2458
+ dependencies = [
2459
+ "serde_derive",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "serde_derive"
2464
+ version = "1.0.228"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2467
+ dependencies = [
2468
+ "proc-macro2",
2469
+ "quote",
2470
+ "syn",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "serde_json"
2475
+ version = "1.0.149"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2478
+ dependencies = [
2479
+ "indexmap",
2480
+ "itoa",
2481
+ "memchr",
2482
+ "serde",
2483
+ "serde_core",
2484
+ "zmij",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "serde_spanned"
2489
+ version = "0.6.9"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2492
+ dependencies = [
2493
+ "serde",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "serde_spanned"
2498
+ version = "1.1.1"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2501
+ dependencies = [
2502
+ "serde_core",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "sharded-slab"
2507
+ version = "0.1.7"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2510
+ dependencies = [
2511
+ "lazy_static",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "shlex"
2516
+ version = "1.3.0"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2519
+
2520
+ [[package]]
2521
+ name = "slab"
2522
+ version = "0.4.12"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2525
+
2526
+ [[package]]
2527
+ name = "smallvec"
2528
+ version = "1.15.1"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2531
+
2532
+ [[package]]
2533
+ name = "smol_str"
2534
+ version = "0.3.6"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523"
2537
+ dependencies = [
2538
+ "borsh",
2539
+ "serde_core",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "spin"
2544
+ version = "0.9.8"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2547
+ dependencies = [
2548
+ "lock_api",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "stable_deref_trait"
2553
+ version = "1.2.1"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2556
+
2557
+ [[package]]
2558
+ name = "streaming-iterator"
2559
+ version = "0.1.9"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
2562
+
2563
+ [[package]]
2564
+ name = "strsim"
2565
+ version = "0.11.1"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2568
+
2569
+ [[package]]
2570
+ name = "syn"
2571
+ version = "2.0.117"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2574
+ dependencies = [
2575
+ "proc-macro2",
2576
+ "quote",
2577
+ "unicode-ident",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "synstructure"
2582
+ version = "0.13.2"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2585
+ dependencies = [
2586
+ "proc-macro2",
2587
+ "quote",
2588
+ "syn",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "temp-dir"
2593
+ version = "0.1.16"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964"
2596
+
2597
+ [[package]]
2598
+ name = "tempfile"
2599
+ version = "3.27.0"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2602
+ dependencies = [
2603
+ "fastrand",
2604
+ "getrandom",
2605
+ "once_cell",
2606
+ "rustix 1.1.4",
2607
+ "windows-sys 0.61.2",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "termcolor"
2612
+ version = "1.4.1"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2615
+ dependencies = [
2616
+ "winapi-util",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "text-size"
2621
+ version = "1.1.1"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2624
+
2625
+ [[package]]
2626
+ name = "thin-vec"
2627
+ version = "0.2.18"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
2630
+
2631
+ [[package]]
2632
+ name = "thiserror"
2633
+ version = "1.0.69"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2636
+ dependencies = [
2637
+ "thiserror-impl 1.0.69",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "thiserror"
2642
+ version = "2.0.18"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2645
+ dependencies = [
2646
+ "thiserror-impl 2.0.18",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "thiserror-impl"
2651
+ version = "1.0.69"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2654
+ dependencies = [
2655
+ "proc-macro2",
2656
+ "quote",
2657
+ "syn",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "thiserror-impl"
2662
+ version = "2.0.18"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2665
+ dependencies = [
2666
+ "proc-macro2",
2667
+ "quote",
2668
+ "syn",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "thread_local"
2673
+ version = "1.1.9"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2676
+ dependencies = [
2677
+ "cfg-if",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "time"
2682
+ version = "0.3.47"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2685
+ dependencies = [
2686
+ "deranged",
2687
+ "itoa",
2688
+ "libc",
2689
+ "num-conv",
2690
+ "num_threads",
2691
+ "powerfmt",
2692
+ "serde_core",
2693
+ "time-core",
2694
+ "time-macros",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "time-core"
2699
+ version = "0.1.8"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2702
+
2703
+ [[package]]
2704
+ name = "time-macros"
2705
+ version = "0.2.27"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2708
+ dependencies = [
2709
+ "num-conv",
2710
+ "time-core",
2711
+ ]
2712
+
2713
+ [[package]]
2714
+ name = "tinystr"
2715
+ version = "0.8.3"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2718
+ dependencies = [
2719
+ "displaydoc",
2720
+ "zerovec",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "toml"
2725
+ version = "0.8.23"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2728
+ dependencies = [
2729
+ "serde",
2730
+ "serde_spanned 0.6.9",
2731
+ "toml_datetime 0.6.11",
2732
+ "toml_edit",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "toml"
2737
+ version = "0.9.12+spec-1.1.0"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2740
+ dependencies = [
2741
+ "indexmap",
2742
+ "serde_core",
2743
+ "serde_spanned 1.1.1",
2744
+ "toml_datetime 0.7.5+spec-1.1.0",
2745
+ "toml_parser",
2746
+ "toml_writer",
2747
+ "winnow 0.7.15",
2748
+ ]
2749
+
2750
+ [[package]]
2751
+ name = "toml_datetime"
2752
+ version = "0.6.11"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2755
+ dependencies = [
2756
+ "serde",
2757
+ ]
2758
+
2759
+ [[package]]
2760
+ name = "toml_datetime"
2761
+ version = "0.7.5+spec-1.1.0"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2764
+ dependencies = [
2765
+ "serde_core",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "toml_edit"
2770
+ version = "0.22.27"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2773
+ dependencies = [
2774
+ "indexmap",
2775
+ "serde",
2776
+ "serde_spanned 0.6.9",
2777
+ "toml_datetime 0.6.11",
2778
+ "toml_write",
2779
+ "winnow 0.7.15",
2780
+ ]
2781
+
2782
+ [[package]]
2783
+ name = "toml_parser"
2784
+ version = "1.1.2+spec-1.1.0"
2785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2786
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2787
+ dependencies = [
2788
+ "winnow 1.0.3",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "toml_write"
2793
+ version = "0.1.2"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2796
+
2797
+ [[package]]
2798
+ name = "toml_writer"
2799
+ version = "1.1.1+spec-1.1.0"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2802
+
2803
+ [[package]]
2804
+ name = "tracing"
2805
+ version = "0.1.44"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2808
+ dependencies = [
2809
+ "pin-project-lite",
2810
+ "tracing-attributes",
2811
+ "tracing-core",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "tracing-attributes"
2816
+ version = "0.1.31"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2819
+ dependencies = [
2820
+ "proc-macro2",
2821
+ "quote",
2822
+ "syn",
2823
+ ]
2824
+
2825
+ [[package]]
2826
+ name = "tracing-core"
2827
+ version = "0.1.36"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2830
+ dependencies = [
2831
+ "once_cell",
2832
+ "valuable",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "tracing-log"
2837
+ version = "0.2.0"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2840
+ dependencies = [
2841
+ "log",
2842
+ "once_cell",
2843
+ "tracing-core",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "tracing-subscriber"
2848
+ version = "0.3.23"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2851
+ dependencies = [
2852
+ "sharded-slab",
2853
+ "thread_local",
2854
+ "time",
2855
+ "tracing-core",
2856
+ "tracing-log",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "tracing-tree"
2861
+ version = "0.4.1"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "ac87aa03b6a4d5a7e4810d1a80c19601dbe0f8a837e9177f23af721c7ba7beec"
2864
+ dependencies = [
2865
+ "nu-ansi-term",
2866
+ "tracing-core",
2867
+ "tracing-log",
2868
+ "tracing-subscriber",
2869
+ ]
2870
+
2871
+ [[package]]
2872
+ name = "tree-sitter"
2873
+ version = "0.26.9"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "4dab76d0b724ba557954125188cf0633a1ca43199ced82d95c7b9c32cc3de1f3"
2876
+ dependencies = [
2877
+ "cc",
2878
+ "regex",
2879
+ "regex-syntax",
2880
+ "serde_json",
2881
+ "streaming-iterator",
2882
+ "tree-sitter-language",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "tree-sitter-ccomment-code-split"
2887
+ version = "0.20.3"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "83235cd394d3a46206566faf6524b46f2aeb8e8d910ee0d9a1ea5804365c7ca4"
2890
+ dependencies = [
2891
+ "cc",
2892
+ "tree-sitter-language",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "tree-sitter-cpp"
2897
+ version = "0.23.4"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "df2196ea9d47b4ab4a31b9297eaa5a5d19a0b121dceb9f118f6790ad0ab94743"
2900
+ dependencies = [
2901
+ "cc",
2902
+ "tree-sitter-language",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "tree-sitter-java"
2907
+ version = "0.23.5"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "0aa6cbcdc8c679b214e616fd3300da67da0e492e066df01bcf5a5921a71e90d6"
2910
+ dependencies = [
2911
+ "cc",
2912
+ "tree-sitter-language",
2913
+ ]
2914
+
2915
+ [[package]]
2916
+ name = "tree-sitter-javascript"
2917
+ version = "0.25.0"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "68204f2abc0627a90bdf06e605f5c470aa26fdcb2081ea553a04bdad756693f5"
2920
+ dependencies = [
2921
+ "cc",
2922
+ "tree-sitter-language",
2923
+ ]
2924
+
2925
+ [[package]]
2926
+ name = "tree-sitter-kotlin-ng"
2927
+ version = "1.1.0"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "e800ebbda938acfbf224f4d2c34947a31994b1295ee6e819b65226c7b51b4450"
2930
+ dependencies = [
2931
+ "cc",
2932
+ "tree-sitter-language",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "tree-sitter-language"
2937
+ version = "0.1.7"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
2940
+
2941
+ [[package]]
2942
+ name = "tree-sitter-mozcpp-code-split"
2943
+ version = "0.20.4"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "c5bfceb330f0fd6327cb2d9647e46c92c193628962dca4186a3c74ee15e01ddf"
2946
+ dependencies = [
2947
+ "cc",
2948
+ "tree-sitter-cpp",
2949
+ "tree-sitter-language",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "tree-sitter-mozjs-code-split"
2954
+ version = "0.20.3"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "24f0056e599a6f8a9459a6bf5d83c39c143cb4bec97f3a88ad7dad4b3865d40d"
2957
+ dependencies = [
2958
+ "cc",
2959
+ "tree-sitter-javascript",
2960
+ "tree-sitter-language",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "tree-sitter-preproc-code-split"
2965
+ version = "0.20.3"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "7e374ddbdf97fd8910995c6b2e4d50bd15d9741aa078b9e70bc195c723767b9e"
2968
+ dependencies = [
2969
+ "cc",
2970
+ "tree-sitter-language",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "tree-sitter-python"
2975
+ version = "0.25.0"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c"
2978
+ dependencies = [
2979
+ "cc",
2980
+ "tree-sitter-language",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "tree-sitter-rust"
2985
+ version = "0.23.2"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "a4d64d449ca63e683c562c7743946a646671ca23947b9c925c0cfbe65051a4af"
2988
+ dependencies = [
2989
+ "cc",
2990
+ "tree-sitter-language",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "tree-sitter-typescript"
2995
+ version = "0.23.2"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "6c5f76ed8d947a75cc446d5fccd8b602ebf0cde64ccf2ffa434d873d7a575eff"
2998
+ dependencies = [
2999
+ "cc",
3000
+ "tree-sitter-language",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "triomphe"
3005
+ version = "0.1.15"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
3008
+
3009
+ [[package]]
3010
+ name = "typed-arena"
3011
+ version = "2.0.2"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
3014
+
3015
+ [[package]]
3016
+ name = "typeid"
3017
+ version = "1.0.3"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3020
+
3021
+ [[package]]
3022
+ name = "unicase"
3023
+ version = "2.9.0"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
3026
+
3027
+ [[package]]
3028
+ name = "unicode-ident"
3029
+ version = "1.0.24"
3030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3031
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3032
+
3033
+ [[package]]
3034
+ name = "unicode-properties"
3035
+ version = "0.1.4"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3038
+
3039
+ [[package]]
3040
+ name = "unicode-xid"
3041
+ version = "0.2.6"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3044
+
3045
+ [[package]]
3046
+ name = "url"
3047
+ version = "2.5.8"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3050
+ dependencies = [
3051
+ "form_urlencoded",
3052
+ "idna",
3053
+ "percent-encoding",
3054
+ "serde",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "utf8_iter"
3059
+ version = "1.0.4"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3062
+
3063
+ [[package]]
3064
+ name = "utf8parse"
3065
+ version = "0.2.2"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3068
+
3069
+ [[package]]
3070
+ name = "valuable"
3071
+ version = "0.1.1"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3074
+
3075
+ [[package]]
3076
+ name = "walkdir"
3077
+ version = "2.5.0"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3080
+ dependencies = [
3081
+ "same-file",
3082
+ "winapi-util",
3083
+ ]
3084
+
3085
+ [[package]]
3086
+ name = "wasi"
3087
+ version = "0.11.1+wasi-snapshot-preview1"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3090
+
3091
+ [[package]]
3092
+ name = "wasip2"
3093
+ version = "1.0.3+wasi-0.2.9"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3096
+ dependencies = [
3097
+ "wit-bindgen 0.57.1",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "wasip3"
3102
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3105
+ dependencies = [
3106
+ "wit-bindgen 0.51.0",
3107
+ ]
3108
+
3109
+ [[package]]
3110
+ name = "wasm-bindgen"
3111
+ version = "0.2.121"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
3114
+ dependencies = [
3115
+ "cfg-if",
3116
+ "once_cell",
3117
+ "rustversion",
3118
+ "wasm-bindgen-macro",
3119
+ "wasm-bindgen-shared",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "wasm-bindgen-macro"
3124
+ version = "0.2.121"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
3127
+ dependencies = [
3128
+ "quote",
3129
+ "wasm-bindgen-macro-support",
3130
+ ]
3131
+
3132
+ [[package]]
3133
+ name = "wasm-bindgen-macro-support"
3134
+ version = "0.2.121"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
3137
+ dependencies = [
3138
+ "bumpalo",
3139
+ "proc-macro2",
3140
+ "quote",
3141
+ "syn",
3142
+ "wasm-bindgen-shared",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "wasm-bindgen-shared"
3147
+ version = "0.2.121"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
3150
+ dependencies = [
3151
+ "unicode-ident",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "wasm-encoder"
3156
+ version = "0.244.0"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3159
+ dependencies = [
3160
+ "leb128fmt",
3161
+ "wasmparser",
3162
+ ]
3163
+
3164
+ [[package]]
3165
+ name = "wasm-metadata"
3166
+ version = "0.244.0"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3169
+ dependencies = [
3170
+ "anyhow",
3171
+ "indexmap",
3172
+ "wasm-encoder",
3173
+ "wasmparser",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "wasmparser"
3178
+ version = "0.244.0"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3181
+ dependencies = [
3182
+ "bitflags",
3183
+ "hashbrown 0.15.5",
3184
+ "indexmap",
3185
+ "semver",
3186
+ ]
3187
+
3188
+ [[package]]
3189
+ name = "which"
3190
+ version = "6.0.3"
3191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3192
+ checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
3193
+ dependencies = [
3194
+ "either",
3195
+ "home",
3196
+ "rustix 0.38.44",
3197
+ "winsafe",
3198
+ ]
3199
+
3200
+ [[package]]
3201
+ name = "winapi-util"
3202
+ version = "0.1.11"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3205
+ dependencies = [
3206
+ "windows-sys 0.61.2",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "windows-core"
3211
+ version = "0.62.2"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3214
+ dependencies = [
3215
+ "windows-implement",
3216
+ "windows-interface",
3217
+ "windows-link",
3218
+ "windows-result",
3219
+ "windows-strings",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "windows-implement"
3224
+ version = "0.60.2"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3227
+ dependencies = [
3228
+ "proc-macro2",
3229
+ "quote",
3230
+ "syn",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "windows-interface"
3235
+ version = "0.59.3"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3238
+ dependencies = [
3239
+ "proc-macro2",
3240
+ "quote",
3241
+ "syn",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "windows-link"
3246
+ version = "0.2.1"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3249
+
3250
+ [[package]]
3251
+ name = "windows-result"
3252
+ version = "0.4.1"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3255
+ dependencies = [
3256
+ "windows-link",
3257
+ ]
3258
+
3259
+ [[package]]
3260
+ name = "windows-strings"
3261
+ version = "0.5.1"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3264
+ dependencies = [
3265
+ "windows-link",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "windows-sys"
3270
+ version = "0.59.0"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3273
+ dependencies = [
3274
+ "windows-targets 0.52.6",
3275
+ ]
3276
+
3277
+ [[package]]
3278
+ name = "windows-sys"
3279
+ version = "0.60.2"
3280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3281
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3282
+ dependencies = [
3283
+ "windows-targets 0.53.5",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "windows-sys"
3288
+ version = "0.61.2"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3291
+ dependencies = [
3292
+ "windows-link",
3293
+ ]
3294
+
3295
+ [[package]]
3296
+ name = "windows-targets"
3297
+ version = "0.52.6"
3298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3299
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3300
+ dependencies = [
3301
+ "windows_aarch64_gnullvm 0.52.6",
3302
+ "windows_aarch64_msvc 0.52.6",
3303
+ "windows_i686_gnu 0.52.6",
3304
+ "windows_i686_gnullvm 0.52.6",
3305
+ "windows_i686_msvc 0.52.6",
3306
+ "windows_x86_64_gnu 0.52.6",
3307
+ "windows_x86_64_gnullvm 0.52.6",
3308
+ "windows_x86_64_msvc 0.52.6",
3309
+ ]
3310
+
3311
+ [[package]]
3312
+ name = "windows-targets"
3313
+ version = "0.53.5"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3316
+ dependencies = [
3317
+ "windows-link",
3318
+ "windows_aarch64_gnullvm 0.53.1",
3319
+ "windows_aarch64_msvc 0.53.1",
3320
+ "windows_i686_gnu 0.53.1",
3321
+ "windows_i686_gnullvm 0.53.1",
3322
+ "windows_i686_msvc 0.53.1",
3323
+ "windows_x86_64_gnu 0.53.1",
3324
+ "windows_x86_64_gnullvm 0.53.1",
3325
+ "windows_x86_64_msvc 0.53.1",
3326
+ ]
3327
+
3328
+ [[package]]
3329
+ name = "windows_aarch64_gnullvm"
3330
+ version = "0.52.6"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3333
+
3334
+ [[package]]
3335
+ name = "windows_aarch64_gnullvm"
3336
+ version = "0.53.1"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3339
+
3340
+ [[package]]
3341
+ name = "windows_aarch64_msvc"
3342
+ version = "0.52.6"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3345
+
3346
+ [[package]]
3347
+ name = "windows_aarch64_msvc"
3348
+ version = "0.53.1"
3349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3350
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3351
+
3352
+ [[package]]
3353
+ name = "windows_i686_gnu"
3354
+ version = "0.52.6"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3357
+
3358
+ [[package]]
3359
+ name = "windows_i686_gnu"
3360
+ version = "0.53.1"
3361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3362
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3363
+
3364
+ [[package]]
3365
+ name = "windows_i686_gnullvm"
3366
+ version = "0.52.6"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3369
+
3370
+ [[package]]
3371
+ name = "windows_i686_gnullvm"
3372
+ version = "0.53.1"
3373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3374
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3375
+
3376
+ [[package]]
3377
+ name = "windows_i686_msvc"
3378
+ version = "0.52.6"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3381
+
3382
+ [[package]]
3383
+ name = "windows_i686_msvc"
3384
+ version = "0.53.1"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3387
+
3388
+ [[package]]
3389
+ name = "windows_x86_64_gnu"
3390
+ version = "0.52.6"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3393
+
3394
+ [[package]]
3395
+ name = "windows_x86_64_gnu"
3396
+ version = "0.53.1"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3399
+
3400
+ [[package]]
3401
+ name = "windows_x86_64_gnullvm"
3402
+ version = "0.52.6"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3405
+
3406
+ [[package]]
3407
+ name = "windows_x86_64_gnullvm"
3408
+ version = "0.53.1"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3411
+
3412
+ [[package]]
3413
+ name = "windows_x86_64_msvc"
3414
+ version = "0.52.6"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3417
+
3418
+ [[package]]
3419
+ name = "windows_x86_64_msvc"
3420
+ version = "0.53.1"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3423
+
3424
+ [[package]]
3425
+ name = "winnow"
3426
+ version = "0.7.15"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
3429
+ dependencies = [
3430
+ "memchr",
3431
+ ]
3432
+
3433
+ [[package]]
3434
+ name = "winnow"
3435
+ version = "1.0.3"
3436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3437
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
3438
+
3439
+ [[package]]
3440
+ name = "winsafe"
3441
+ version = "0.0.19"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
3444
+
3445
+ [[package]]
3446
+ name = "wit-bindgen"
3447
+ version = "0.51.0"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3450
+ dependencies = [
3451
+ "wit-bindgen-rust-macro",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "wit-bindgen"
3456
+ version = "0.57.1"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3459
+
3460
+ [[package]]
3461
+ name = "wit-bindgen-core"
3462
+ version = "0.51.0"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3465
+ dependencies = [
3466
+ "anyhow",
3467
+ "heck",
3468
+ "wit-parser",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "wit-bindgen-rust"
3473
+ version = "0.51.0"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3476
+ dependencies = [
3477
+ "anyhow",
3478
+ "heck",
3479
+ "indexmap",
3480
+ "prettyplease",
3481
+ "syn",
3482
+ "wasm-metadata",
3483
+ "wit-bindgen-core",
3484
+ "wit-component",
3485
+ ]
3486
+
3487
+ [[package]]
3488
+ name = "wit-bindgen-rust-macro"
3489
+ version = "0.51.0"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3492
+ dependencies = [
3493
+ "anyhow",
3494
+ "prettyplease",
3495
+ "proc-macro2",
3496
+ "quote",
3497
+ "syn",
3498
+ "wit-bindgen-core",
3499
+ "wit-bindgen-rust",
3500
+ ]
3501
+
3502
+ [[package]]
3503
+ name = "wit-component"
3504
+ version = "0.244.0"
3505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3506
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3507
+ dependencies = [
3508
+ "anyhow",
3509
+ "bitflags",
3510
+ "indexmap",
3511
+ "log",
3512
+ "serde",
3513
+ "serde_derive",
3514
+ "serde_json",
3515
+ "wasm-encoder",
3516
+ "wasm-metadata",
3517
+ "wasmparser",
3518
+ "wit-parser",
3519
+ ]
3520
+
3521
+ [[package]]
3522
+ name = "wit-parser"
3523
+ version = "0.244.0"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3526
+ dependencies = [
3527
+ "anyhow",
3528
+ "id-arena",
3529
+ "indexmap",
3530
+ "log",
3531
+ "semver",
3532
+ "serde",
3533
+ "serde_derive",
3534
+ "serde_json",
3535
+ "unicode-xid",
3536
+ "wasmparser",
3537
+ ]
3538
+
3539
+ [[package]]
3540
+ name = "writeable"
3541
+ version = "0.6.3"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3544
+
3545
+ [[package]]
3546
+ name = "yoke"
3547
+ version = "0.8.2"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3550
+ dependencies = [
3551
+ "stable_deref_trait",
3552
+ "yoke-derive",
3553
+ "zerofrom",
3554
+ ]
3555
+
3556
+ [[package]]
3557
+ name = "yoke-derive"
3558
+ version = "0.8.2"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3561
+ dependencies = [
3562
+ "proc-macro2",
3563
+ "quote",
3564
+ "syn",
3565
+ "synstructure",
3566
+ ]
3567
+
3568
+ [[package]]
3569
+ name = "zerofrom"
3570
+ version = "0.1.8"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3573
+ dependencies = [
3574
+ "zerofrom-derive",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "zerofrom-derive"
3579
+ version = "0.1.7"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3582
+ dependencies = [
3583
+ "proc-macro2",
3584
+ "quote",
3585
+ "syn",
3586
+ "synstructure",
3587
+ ]
3588
+
3589
+ [[package]]
3590
+ name = "zerotrie"
3591
+ version = "0.2.4"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3594
+ dependencies = [
3595
+ "displaydoc",
3596
+ "yoke",
3597
+ "zerofrom",
3598
+ ]
3599
+
3600
+ [[package]]
3601
+ name = "zerovec"
3602
+ version = "0.11.6"
3603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3604
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3605
+ dependencies = [
3606
+ "yoke",
3607
+ "zerofrom",
3608
+ "zerovec-derive",
3609
+ ]
3610
+
3611
+ [[package]]
3612
+ name = "zerovec-derive"
3613
+ version = "0.11.3"
3614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3615
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3616
+ dependencies = [
3617
+ "proc-macro2",
3618
+ "quote",
3619
+ "syn",
3620
+ ]
3621
+
3622
+ [[package]]
3623
+ name = "zmij"
3624
+ version = "1.0.21"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"