code-split 0.1.0a11__tar.gz → 1.0.0a1__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 (79) hide show
  1. code_split-1.0.0a1/Cargo.lock +1434 -0
  2. {code_split-0.1.0a11 → code_split-1.0.0a1}/Cargo.toml +6 -15
  3. code_split-1.0.0a1/PKG-INFO +139 -0
  4. code_split-1.0.0a1/README.md +115 -0
  5. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/Cargo.toml +3 -2
  6. code_split-1.0.0a1/crates/code-split-cli/src/assets/app.js +508 -0
  7. code_split-1.0.0a1/crates/code-split-cli/src/assets/diagram.js +802 -0
  8. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/diff.js +9 -5
  9. code_split-1.0.0a1/crates/code-split-cli/src/assets/export-popup.js +680 -0
  10. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/index.css +221 -46
  11. code_split-1.0.0a1/crates/code-split-cli/src/assets/index.html +101 -0
  12. code_split-1.0.0a1/crates/code-split-cli/src/assets/layout.js +0 -0
  13. code_split-1.0.0a1/crates/code-split-cli/src/assets/modal.js +174 -0
  14. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/nav.js +25 -23
  15. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/node-table.js +136 -32
  16. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/panzoom.js +8 -5
  17. code_split-1.0.0a1/crates/code-split-cli/src/assets/snarkdown.umd.js +2 -0
  18. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/state.js +1 -1
  19. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/summary.js +87 -25
  20. code_split-1.0.0a1/crates/code-split-cli/src/assets/ui.js +4 -0
  21. code_split-1.0.0a1/crates/code-split-cli/src/config.rs +1584 -0
  22. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/git.rs +4 -1
  23. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/logger.rs +6 -1
  24. code_split-1.0.0a1/crates/code-split-cli/src/main.rs +1250 -0
  25. code_split-1.0.0a1/crates/code-split-cli/src/plugin/finalize.rs +51 -0
  26. code_split-1.0.0a1/crates/code-split-cli/src/plugin/javascript.rs +529 -0
  27. code_split-1.0.0a1/crates/code-split-cli/src/plugin/mod.rs +21 -0
  28. code_split-1.0.0a1/crates/code-split-cli/src/plugin/python.rs +562 -0
  29. code_split-1.0.0a1/crates/code-split-cli/src/plugin/rust.rs +281 -0
  30. code_split-1.0.0a1/crates/code-split-cli/tests/e2e.rs +236 -0
  31. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-complexity/examples/bench.rs +1 -1
  32. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-complexity/examples/debug_spaces.rs +1 -1
  33. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-complexity/src/lib.rs +8 -44
  34. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-core/src/builder.rs +6 -24
  35. code_split-1.0.0a1/crates/code-split-core/src/cycles.rs +414 -0
  36. code_split-1.0.0a1/crates/code-split-core/src/diff.rs +383 -0
  37. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-core/src/graph.rs +24 -8
  38. code_split-1.0.0a1/crates/code-split-core/src/hk.rs +211 -0
  39. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-core/src/lib.rs +4 -3
  40. code_split-1.0.0a1/crates/code-split-core/src/snapshot.rs +599 -0
  41. code_split-1.0.0a1/crates/code-split-core/src/stats.rs +343 -0
  42. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-syn/examples/bench_complexity.rs +1 -1
  43. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-syn/src/crate_graph.rs +2 -1
  44. code_split-1.0.0a1/crates/code-split-syn/src/ids.rs +8 -0
  45. code_split-1.0.0a1/crates/code-split-syn/src/lib.rs +20 -0
  46. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-syn/src/module_graph.rs +110 -206
  47. {code_split-0.1.0a11 → code_split-1.0.0a1}/pyproject.toml +1 -1
  48. code_split-0.1.0a11/Cargo.lock +0 -3626
  49. code_split-0.1.0a11/PKG-INFO +0 -119
  50. code_split-0.1.0a11/README.md +0 -95
  51. code_split-0.1.0a11/crates/code-split-cli/src/assets/app.js +0 -365
  52. code_split-0.1.0a11/crates/code-split-cli/src/assets/diagram.js +0 -447
  53. code_split-0.1.0a11/crates/code-split-cli/src/assets/export-popup.js +0 -352
  54. code_split-0.1.0a11/crates/code-split-cli/src/assets/index.html +0 -205
  55. code_split-0.1.0a11/crates/code-split-cli/src/assets/layout.js +0 -116
  56. code_split-0.1.0a11/crates/code-split-cli/src/assets/modal.js +0 -86
  57. code_split-0.1.0a11/crates/code-split-cli/src/assets/ui.js +0 -164
  58. code_split-0.1.0a11/crates/code-split-cli/src/config.rs +0 -620
  59. code_split-0.1.0a11/crates/code-split-cli/src/main.rs +0 -877
  60. code_split-0.1.0a11/crates/code-split-cli/src/plugin/javascript.rs +0 -991
  61. code_split-0.1.0a11/crates/code-split-cli/src/plugin/mod.rs +0 -82
  62. code_split-0.1.0a11/crates/code-split-cli/src/plugin/python.rs +0 -831
  63. code_split-0.1.0a11/crates/code-split-cli/src/plugin/rust.rs +0 -149
  64. code_split-0.1.0a11/crates/code-split-core/src/cycles.rs +0 -160
  65. code_split-0.1.0a11/crates/code-split-core/src/diff.rs +0 -204
  66. code_split-0.1.0a11/crates/code-split-core/src/hk.rs +0 -50
  67. code_split-0.1.0a11/crates/code-split-core/src/semantic.rs +0 -10
  68. code_split-0.1.0a11/crates/code-split-core/src/snapshot.rs +0 -321
  69. code_split-0.1.0a11/crates/code-split-core/src/stats.rs +0 -150
  70. code_split-0.1.0a11/crates/code-split-sema/Cargo.toml +0 -23
  71. code_split-0.1.0a11/crates/code-split-sema/src/lib.rs +0 -311
  72. code_split-0.1.0a11/crates/code-split-syn/src/lib.rs +0 -44
  73. {code_split-0.1.0a11 → code_split-1.0.0a1}/LICENSE +0 -0
  74. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/dagre.min.js +0 -0
  75. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/graphviz.umd.js +0 -0
  76. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-cli/src/assets/utils.js +0 -0
  77. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-complexity/Cargo.toml +0 -0
  78. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-core/Cargo.toml +0 -0
  79. {code_split-0.1.0a11 → code_split-1.0.0a1}/crates/code-split-syn/Cargo.toml +0 -0
@@ -0,0 +1,1434 @@
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 = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstream"
25
+ version = "1.0.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
28
+ dependencies = [
29
+ "anstyle",
30
+ "anstyle-parse",
31
+ "anstyle-query",
32
+ "anstyle-wincon",
33
+ "colorchoice",
34
+ "is_terminal_polyfill",
35
+ "utf8parse",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.14"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
43
+
44
+ [[package]]
45
+ name = "anstyle-parse"
46
+ version = "1.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
49
+ dependencies = [
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-query"
55
+ version = "1.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
58
+ dependencies = [
59
+ "windows-sys",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-wincon"
64
+ version = "3.0.11"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
67
+ dependencies = [
68
+ "anstyle",
69
+ "once_cell_polyfill",
70
+ "windows-sys",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "anyhow"
75
+ version = "1.0.102"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
78
+
79
+ [[package]]
80
+ name = "arrayvec"
81
+ version = "0.7.6"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
90
+
91
+ [[package]]
92
+ name = "bitflags"
93
+ version = "2.11.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
96
+
97
+ [[package]]
98
+ name = "bstr"
99
+ version = "1.12.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
102
+ dependencies = [
103
+ "memchr",
104
+ "serde",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "bumpalo"
109
+ version = "3.20.2"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
112
+
113
+ [[package]]
114
+ name = "camino"
115
+ version = "1.2.2"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
118
+ dependencies = [
119
+ "serde_core",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "cargo-platform"
124
+ version = "0.1.9"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
127
+ dependencies = [
128
+ "serde",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "cargo_metadata"
133
+ version = "0.18.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
136
+ dependencies = [
137
+ "camino",
138
+ "cargo-platform",
139
+ "semver",
140
+ "serde",
141
+ "serde_json",
142
+ "thiserror",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "cc"
147
+ version = "1.2.62"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
150
+ dependencies = [
151
+ "find-msvc-tools",
152
+ "shlex",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "cfg-if"
157
+ version = "1.0.4"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
160
+
161
+ [[package]]
162
+ name = "chrono"
163
+ version = "0.4.44"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
166
+ dependencies = [
167
+ "iana-time-zone",
168
+ "js-sys",
169
+ "num-traits",
170
+ "serde",
171
+ "wasm-bindgen",
172
+ "windows-link",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "clap"
177
+ version = "4.6.1"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
180
+ dependencies = [
181
+ "clap_builder",
182
+ "clap_derive",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "clap_builder"
187
+ version = "4.6.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
190
+ dependencies = [
191
+ "anstream",
192
+ "anstyle",
193
+ "clap_lex",
194
+ "strsim",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "clap_derive"
199
+ version = "4.6.1"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
202
+ dependencies = [
203
+ "heck",
204
+ "proc-macro2",
205
+ "quote",
206
+ "syn",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "clap_lex"
211
+ version = "1.1.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
214
+
215
+ [[package]]
216
+ name = "code-split"
217
+ version = "1.0.0-alpha.1"
218
+ dependencies = [
219
+ "anyhow",
220
+ "chrono",
221
+ "clap",
222
+ "code-split-complexity",
223
+ "code-split-core",
224
+ "code-split-syn",
225
+ "globset",
226
+ "serde",
227
+ "serde_json",
228
+ "tempfile",
229
+ "toml",
230
+ "tree-sitter",
231
+ "tree-sitter-javascript",
232
+ "tree-sitter-python",
233
+ "tree-sitter-typescript",
234
+ "walkdir",
235
+ "which",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "code-split-complexity"
240
+ version = "1.0.0-alpha.1"
241
+ dependencies = [
242
+ "anyhow",
243
+ "code-split-core",
244
+ "rust-code-analysis-code-split",
245
+ "syn",
246
+ "walkdir",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "code-split-core"
251
+ version = "1.0.0-alpha.1"
252
+ dependencies = [
253
+ "chrono",
254
+ "petgraph 0.6.5",
255
+ "serde",
256
+ "serde_json",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "code-split-syn"
261
+ version = "1.0.0-alpha.1"
262
+ dependencies = [
263
+ "anyhow",
264
+ "cargo_metadata",
265
+ "code-split-core",
266
+ "proc-macro2",
267
+ "syn",
268
+ "walkdir",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "colorchoice"
273
+ version = "1.0.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
276
+
277
+ [[package]]
278
+ name = "core-foundation-sys"
279
+ version = "0.8.7"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
282
+
283
+ [[package]]
284
+ name = "crossbeam"
285
+ version = "0.8.4"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
288
+ dependencies = [
289
+ "crossbeam-channel",
290
+ "crossbeam-deque",
291
+ "crossbeam-epoch",
292
+ "crossbeam-queue",
293
+ "crossbeam-utils",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "crossbeam-channel"
298
+ version = "0.5.15"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
301
+ dependencies = [
302
+ "crossbeam-utils",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "crossbeam-deque"
307
+ version = "0.8.6"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
310
+ dependencies = [
311
+ "crossbeam-epoch",
312
+ "crossbeam-utils",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "crossbeam-epoch"
317
+ version = "0.9.18"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
320
+ dependencies = [
321
+ "crossbeam-utils",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "crossbeam-queue"
326
+ version = "0.3.12"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
329
+ dependencies = [
330
+ "crossbeam-utils",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "crossbeam-utils"
335
+ version = "0.8.21"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
338
+
339
+ [[package]]
340
+ name = "equivalent"
341
+ version = "1.0.2"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
344
+
345
+ [[package]]
346
+ name = "errno"
347
+ version = "0.3.14"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
350
+ dependencies = [
351
+ "libc",
352
+ "windows-sys",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "fastrand"
357
+ version = "2.4.1"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
360
+
361
+ [[package]]
362
+ name = "find-msvc-tools"
363
+ version = "0.1.9"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
366
+
367
+ [[package]]
368
+ name = "fixedbitset"
369
+ version = "0.4.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
372
+
373
+ [[package]]
374
+ name = "fixedbitset"
375
+ version = "0.5.7"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
378
+
379
+ [[package]]
380
+ name = "foldhash"
381
+ version = "0.1.5"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
384
+
385
+ [[package]]
386
+ name = "futures-core"
387
+ version = "0.3.32"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
390
+
391
+ [[package]]
392
+ name = "futures-task"
393
+ version = "0.3.32"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
396
+
397
+ [[package]]
398
+ name = "futures-util"
399
+ version = "0.3.32"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
402
+ dependencies = [
403
+ "futures-core",
404
+ "futures-task",
405
+ "pin-project-lite",
406
+ "slab",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "getrandom"
411
+ version = "0.4.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
414
+ dependencies = [
415
+ "cfg-if",
416
+ "libc",
417
+ "r-efi",
418
+ "wasip2",
419
+ "wasip3",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "globset"
424
+ version = "0.4.18"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
427
+ dependencies = [
428
+ "aho-corasick",
429
+ "bstr",
430
+ "log",
431
+ "regex-automata",
432
+ "regex-syntax",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "hashbrown"
437
+ version = "0.15.5"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
440
+ dependencies = [
441
+ "foldhash",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "hashbrown"
446
+ version = "0.17.1"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
449
+
450
+ [[package]]
451
+ name = "heck"
452
+ version = "0.5.0"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
455
+
456
+ [[package]]
457
+ name = "iana-time-zone"
458
+ version = "0.1.65"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
461
+ dependencies = [
462
+ "android_system_properties",
463
+ "core-foundation-sys",
464
+ "iana-time-zone-haiku",
465
+ "js-sys",
466
+ "log",
467
+ "wasm-bindgen",
468
+ "windows-core",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "iana-time-zone-haiku"
473
+ version = "0.1.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
476
+ dependencies = [
477
+ "cc",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "id-arena"
482
+ version = "2.3.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
485
+
486
+ [[package]]
487
+ name = "indexmap"
488
+ version = "2.14.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
491
+ dependencies = [
492
+ "equivalent",
493
+ "hashbrown 0.17.1",
494
+ "serde",
495
+ "serde_core",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "is_terminal_polyfill"
500
+ version = "1.70.2"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
503
+
504
+ [[package]]
505
+ name = "itoa"
506
+ version = "1.0.18"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
509
+
510
+ [[package]]
511
+ name = "js-sys"
512
+ version = "0.3.98"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
515
+ dependencies = [
516
+ "cfg-if",
517
+ "futures-util",
518
+ "once_cell",
519
+ "wasm-bindgen",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "leb128fmt"
524
+ version = "0.1.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
527
+
528
+ [[package]]
529
+ name = "libc"
530
+ version = "0.2.186"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
533
+
534
+ [[package]]
535
+ name = "linux-raw-sys"
536
+ version = "0.12.1"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
539
+
540
+ [[package]]
541
+ name = "log"
542
+ version = "0.4.29"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
545
+
546
+ [[package]]
547
+ name = "memchr"
548
+ version = "2.8.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
551
+
552
+ [[package]]
553
+ name = "num"
554
+ version = "0.4.3"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
557
+ dependencies = [
558
+ "num-bigint",
559
+ "num-complex",
560
+ "num-integer",
561
+ "num-iter",
562
+ "num-rational",
563
+ "num-traits",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "num-bigint"
568
+ version = "0.4.6"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
571
+ dependencies = [
572
+ "num-integer",
573
+ "num-traits",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "num-complex"
578
+ version = "0.4.6"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
581
+ dependencies = [
582
+ "num-traits",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "num-derive"
587
+ version = "0.4.2"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
590
+ dependencies = [
591
+ "proc-macro2",
592
+ "quote",
593
+ "syn",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "num-format"
598
+ version = "0.4.4"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
601
+ dependencies = [
602
+ "arrayvec",
603
+ "itoa",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "num-integer"
608
+ version = "0.1.46"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
611
+ dependencies = [
612
+ "num-traits",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "num-iter"
617
+ version = "0.1.45"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
620
+ dependencies = [
621
+ "autocfg",
622
+ "num-integer",
623
+ "num-traits",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "num-rational"
628
+ version = "0.4.2"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
631
+ dependencies = [
632
+ "num-bigint",
633
+ "num-integer",
634
+ "num-traits",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "num-traits"
639
+ version = "0.2.19"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
642
+ dependencies = [
643
+ "autocfg",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "once_cell"
648
+ version = "1.21.4"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
651
+
652
+ [[package]]
653
+ name = "once_cell_polyfill"
654
+ version = "1.70.2"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
657
+
658
+ [[package]]
659
+ name = "petgraph"
660
+ version = "0.6.5"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
663
+ dependencies = [
664
+ "fixedbitset 0.4.2",
665
+ "indexmap",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "petgraph"
670
+ version = "0.8.3"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
673
+ dependencies = [
674
+ "fixedbitset 0.5.7",
675
+ "hashbrown 0.15.5",
676
+ "indexmap",
677
+ "serde",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "pin-project-lite"
682
+ version = "0.2.17"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
685
+
686
+ [[package]]
687
+ name = "prettyplease"
688
+ version = "0.2.37"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
691
+ dependencies = [
692
+ "proc-macro2",
693
+ "syn",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "proc-macro2"
698
+ version = "1.0.106"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
701
+ dependencies = [
702
+ "unicode-ident",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "quote"
707
+ version = "1.0.45"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
710
+ dependencies = [
711
+ "proc-macro2",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "r-efi"
716
+ version = "6.0.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
719
+
720
+ [[package]]
721
+ name = "regex"
722
+ version = "1.12.3"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
725
+ dependencies = [
726
+ "aho-corasick",
727
+ "memchr",
728
+ "regex-automata",
729
+ "regex-syntax",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "regex-automata"
734
+ version = "0.4.14"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
737
+ dependencies = [
738
+ "aho-corasick",
739
+ "memchr",
740
+ "regex-syntax",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "regex-syntax"
745
+ version = "0.8.10"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
748
+
749
+ [[package]]
750
+ name = "rust-code-analysis-code-split"
751
+ version = "0.0.26-cs.0"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "a3b9324bd5110e3d03aa2a301ff9615a802ca8169dd01507e2adf1232e57d341"
754
+ dependencies = [
755
+ "aho-corasick",
756
+ "crossbeam",
757
+ "globset",
758
+ "num",
759
+ "num-derive",
760
+ "num-format",
761
+ "num-traits",
762
+ "petgraph 0.8.3",
763
+ "regex",
764
+ "serde",
765
+ "termcolor",
766
+ "tree-sitter",
767
+ "tree-sitter-ccomment-code-split",
768
+ "tree-sitter-java",
769
+ "tree-sitter-javascript",
770
+ "tree-sitter-kotlin-ng",
771
+ "tree-sitter-mozcpp-code-split",
772
+ "tree-sitter-mozjs-code-split",
773
+ "tree-sitter-preproc-code-split",
774
+ "tree-sitter-python",
775
+ "tree-sitter-rust",
776
+ "tree-sitter-typescript",
777
+ "walkdir",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "rustix"
782
+ version = "1.1.4"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
785
+ dependencies = [
786
+ "bitflags",
787
+ "errno",
788
+ "libc",
789
+ "linux-raw-sys",
790
+ "windows-sys",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "rustversion"
795
+ version = "1.0.22"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
798
+
799
+ [[package]]
800
+ name = "same-file"
801
+ version = "1.0.6"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
804
+ dependencies = [
805
+ "winapi-util",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "semver"
810
+ version = "1.0.28"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
813
+ dependencies = [
814
+ "serde",
815
+ "serde_core",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "serde"
820
+ version = "1.0.228"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
823
+ dependencies = [
824
+ "serde_core",
825
+ "serde_derive",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "serde_core"
830
+ version = "1.0.228"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
833
+ dependencies = [
834
+ "serde_derive",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "serde_derive"
839
+ version = "1.0.228"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
842
+ dependencies = [
843
+ "proc-macro2",
844
+ "quote",
845
+ "syn",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "serde_json"
850
+ version = "1.0.149"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
853
+ dependencies = [
854
+ "indexmap",
855
+ "itoa",
856
+ "memchr",
857
+ "serde",
858
+ "serde_core",
859
+ "zmij",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "serde_spanned"
864
+ version = "1.1.1"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
867
+ dependencies = [
868
+ "serde_core",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "shlex"
873
+ version = "1.3.0"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
876
+
877
+ [[package]]
878
+ name = "slab"
879
+ version = "0.4.12"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
882
+
883
+ [[package]]
884
+ name = "streaming-iterator"
885
+ version = "0.1.9"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
888
+
889
+ [[package]]
890
+ name = "strsim"
891
+ version = "0.11.1"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
894
+
895
+ [[package]]
896
+ name = "syn"
897
+ version = "2.0.117"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
900
+ dependencies = [
901
+ "proc-macro2",
902
+ "quote",
903
+ "unicode-ident",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "tempfile"
908
+ version = "3.27.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
911
+ dependencies = [
912
+ "fastrand",
913
+ "getrandom",
914
+ "once_cell",
915
+ "rustix",
916
+ "windows-sys",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "termcolor"
921
+ version = "1.4.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
924
+ dependencies = [
925
+ "winapi-util",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "thiserror"
930
+ version = "1.0.69"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
933
+ dependencies = [
934
+ "thiserror-impl",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "thiserror-impl"
939
+ version = "1.0.69"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
942
+ dependencies = [
943
+ "proc-macro2",
944
+ "quote",
945
+ "syn",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "toml"
950
+ version = "1.1.2+spec-1.1.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
953
+ dependencies = [
954
+ "indexmap",
955
+ "serde_core",
956
+ "serde_spanned",
957
+ "toml_datetime",
958
+ "toml_parser",
959
+ "toml_writer",
960
+ "winnow",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "toml_datetime"
965
+ version = "1.1.1+spec-1.1.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
968
+ dependencies = [
969
+ "serde_core",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "toml_parser"
974
+ version = "1.1.2+spec-1.1.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
977
+ dependencies = [
978
+ "winnow",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "toml_writer"
983
+ version = "1.1.1+spec-1.1.0"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
986
+
987
+ [[package]]
988
+ name = "tree-sitter"
989
+ version = "0.26.9"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "4dab76d0b724ba557954125188cf0633a1ca43199ced82d95c7b9c32cc3de1f3"
992
+ dependencies = [
993
+ "cc",
994
+ "regex",
995
+ "regex-syntax",
996
+ "serde_json",
997
+ "streaming-iterator",
998
+ "tree-sitter-language",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "tree-sitter-ccomment-code-split"
1003
+ version = "0.20.3"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "83235cd394d3a46206566faf6524b46f2aeb8e8d910ee0d9a1ea5804365c7ca4"
1006
+ dependencies = [
1007
+ "cc",
1008
+ "tree-sitter-language",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "tree-sitter-cpp"
1013
+ version = "0.23.4"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "df2196ea9d47b4ab4a31b9297eaa5a5d19a0b121dceb9f118f6790ad0ab94743"
1016
+ dependencies = [
1017
+ "cc",
1018
+ "tree-sitter-language",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "tree-sitter-java"
1023
+ version = "0.23.5"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "0aa6cbcdc8c679b214e616fd3300da67da0e492e066df01bcf5a5921a71e90d6"
1026
+ dependencies = [
1027
+ "cc",
1028
+ "tree-sitter-language",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "tree-sitter-javascript"
1033
+ version = "0.25.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "68204f2abc0627a90bdf06e605f5c470aa26fdcb2081ea553a04bdad756693f5"
1036
+ dependencies = [
1037
+ "cc",
1038
+ "tree-sitter-language",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "tree-sitter-kotlin-ng"
1043
+ version = "1.1.0"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "e800ebbda938acfbf224f4d2c34947a31994b1295ee6e819b65226c7b51b4450"
1046
+ dependencies = [
1047
+ "cc",
1048
+ "tree-sitter-language",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "tree-sitter-language"
1053
+ version = "0.1.7"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
1056
+
1057
+ [[package]]
1058
+ name = "tree-sitter-mozcpp-code-split"
1059
+ version = "0.20.4"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "c5bfceb330f0fd6327cb2d9647e46c92c193628962dca4186a3c74ee15e01ddf"
1062
+ dependencies = [
1063
+ "cc",
1064
+ "tree-sitter-cpp",
1065
+ "tree-sitter-language",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "tree-sitter-mozjs-code-split"
1070
+ version = "0.20.3"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "24f0056e599a6f8a9459a6bf5d83c39c143cb4bec97f3a88ad7dad4b3865d40d"
1073
+ dependencies = [
1074
+ "cc",
1075
+ "tree-sitter-javascript",
1076
+ "tree-sitter-language",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "tree-sitter-preproc-code-split"
1081
+ version = "0.20.3"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "7e374ddbdf97fd8910995c6b2e4d50bd15d9741aa078b9e70bc195c723767b9e"
1084
+ dependencies = [
1085
+ "cc",
1086
+ "tree-sitter-language",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "tree-sitter-python"
1091
+ version = "0.25.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c"
1094
+ dependencies = [
1095
+ "cc",
1096
+ "tree-sitter-language",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "tree-sitter-rust"
1101
+ version = "0.23.2"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "a4d64d449ca63e683c562c7743946a646671ca23947b9c925c0cfbe65051a4af"
1104
+ dependencies = [
1105
+ "cc",
1106
+ "tree-sitter-language",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "tree-sitter-typescript"
1111
+ version = "0.23.2"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "6c5f76ed8d947a75cc446d5fccd8b602ebf0cde64ccf2ffa434d873d7a575eff"
1114
+ dependencies = [
1115
+ "cc",
1116
+ "tree-sitter-language",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "unicode-ident"
1121
+ version = "1.0.24"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1124
+
1125
+ [[package]]
1126
+ name = "unicode-xid"
1127
+ version = "0.2.6"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1130
+
1131
+ [[package]]
1132
+ name = "utf8parse"
1133
+ version = "0.2.2"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1136
+
1137
+ [[package]]
1138
+ name = "walkdir"
1139
+ version = "2.5.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1142
+ dependencies = [
1143
+ "same-file",
1144
+ "winapi-util",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "wasip2"
1149
+ version = "1.0.3+wasi-0.2.9"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1152
+ dependencies = [
1153
+ "wit-bindgen 0.57.1",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "wasip3"
1158
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1161
+ dependencies = [
1162
+ "wit-bindgen 0.51.0",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "wasm-bindgen"
1167
+ version = "0.2.121"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1170
+ dependencies = [
1171
+ "cfg-if",
1172
+ "once_cell",
1173
+ "rustversion",
1174
+ "wasm-bindgen-macro",
1175
+ "wasm-bindgen-shared",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "wasm-bindgen-macro"
1180
+ version = "0.2.121"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1183
+ dependencies = [
1184
+ "quote",
1185
+ "wasm-bindgen-macro-support",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "wasm-bindgen-macro-support"
1190
+ version = "0.2.121"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1193
+ dependencies = [
1194
+ "bumpalo",
1195
+ "proc-macro2",
1196
+ "quote",
1197
+ "syn",
1198
+ "wasm-bindgen-shared",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "wasm-bindgen-shared"
1203
+ version = "0.2.121"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1206
+ dependencies = [
1207
+ "unicode-ident",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "wasm-encoder"
1212
+ version = "0.244.0"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1215
+ dependencies = [
1216
+ "leb128fmt",
1217
+ "wasmparser",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "wasm-metadata"
1222
+ version = "0.244.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1225
+ dependencies = [
1226
+ "anyhow",
1227
+ "indexmap",
1228
+ "wasm-encoder",
1229
+ "wasmparser",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "wasmparser"
1234
+ version = "0.244.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1237
+ dependencies = [
1238
+ "bitflags",
1239
+ "hashbrown 0.15.5",
1240
+ "indexmap",
1241
+ "semver",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "which"
1246
+ version = "8.0.2"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459"
1249
+ dependencies = [
1250
+ "libc",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "winapi-util"
1255
+ version = "0.1.11"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1258
+ dependencies = [
1259
+ "windows-sys",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "windows-core"
1264
+ version = "0.62.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1267
+ dependencies = [
1268
+ "windows-implement",
1269
+ "windows-interface",
1270
+ "windows-link",
1271
+ "windows-result",
1272
+ "windows-strings",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "windows-implement"
1277
+ version = "0.60.2"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1280
+ dependencies = [
1281
+ "proc-macro2",
1282
+ "quote",
1283
+ "syn",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "windows-interface"
1288
+ version = "0.59.3"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1291
+ dependencies = [
1292
+ "proc-macro2",
1293
+ "quote",
1294
+ "syn",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "windows-link"
1299
+ version = "0.2.1"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1302
+
1303
+ [[package]]
1304
+ name = "windows-result"
1305
+ version = "0.4.1"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1308
+ dependencies = [
1309
+ "windows-link",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "windows-strings"
1314
+ version = "0.5.1"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1317
+ dependencies = [
1318
+ "windows-link",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "windows-sys"
1323
+ version = "0.61.2"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1326
+ dependencies = [
1327
+ "windows-link",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "winnow"
1332
+ version = "1.0.3"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
1335
+
1336
+ [[package]]
1337
+ name = "wit-bindgen"
1338
+ version = "0.51.0"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1341
+ dependencies = [
1342
+ "wit-bindgen-rust-macro",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "wit-bindgen"
1347
+ version = "0.57.1"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1350
+
1351
+ [[package]]
1352
+ name = "wit-bindgen-core"
1353
+ version = "0.51.0"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1356
+ dependencies = [
1357
+ "anyhow",
1358
+ "heck",
1359
+ "wit-parser",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "wit-bindgen-rust"
1364
+ version = "0.51.0"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1367
+ dependencies = [
1368
+ "anyhow",
1369
+ "heck",
1370
+ "indexmap",
1371
+ "prettyplease",
1372
+ "syn",
1373
+ "wasm-metadata",
1374
+ "wit-bindgen-core",
1375
+ "wit-component",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "wit-bindgen-rust-macro"
1380
+ version = "0.51.0"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1383
+ dependencies = [
1384
+ "anyhow",
1385
+ "prettyplease",
1386
+ "proc-macro2",
1387
+ "quote",
1388
+ "syn",
1389
+ "wit-bindgen-core",
1390
+ "wit-bindgen-rust",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "wit-component"
1395
+ version = "0.244.0"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1398
+ dependencies = [
1399
+ "anyhow",
1400
+ "bitflags",
1401
+ "indexmap",
1402
+ "log",
1403
+ "serde",
1404
+ "serde_derive",
1405
+ "serde_json",
1406
+ "wasm-encoder",
1407
+ "wasm-metadata",
1408
+ "wasmparser",
1409
+ "wit-parser",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "wit-parser"
1414
+ version = "0.244.0"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1417
+ dependencies = [
1418
+ "anyhow",
1419
+ "id-arena",
1420
+ "indexmap",
1421
+ "log",
1422
+ "semver",
1423
+ "serde",
1424
+ "serde_derive",
1425
+ "serde_json",
1426
+ "unicode-xid",
1427
+ "wasmparser",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "zmij"
1432
+ version = "1.0.21"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"