codefold 0.6.0__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 (44) hide show
  1. codefold-0.6.0/Cargo.lock +1631 -0
  2. codefold-0.6.0/Cargo.toml +31 -0
  3. codefold-0.6.0/LICENSE +21 -0
  4. codefold-0.6.0/PKG-INFO +16 -0
  5. codefold-0.6.0/bindings/python/Cargo.toml +17 -0
  6. codefold-0.6.0/bindings/python/LICENSE +21 -0
  7. codefold-0.6.0/bindings/python/src/lib.rs +147 -0
  8. codefold-0.6.0/bindings/python/tests/test_codefold.py +137 -0
  9. codefold-0.6.0/crates/codefold-core/Cargo.toml +32 -0
  10. codefold-0.6.0/crates/codefold-core/README.md +126 -0
  11. codefold-0.6.0/crates/codefold-core/benches/render.rs +47 -0
  12. codefold-0.6.0/crates/codefold-core/src/error.rs +18 -0
  13. codefold-0.6.0/crates/codefold-core/src/go.rs +271 -0
  14. codefold-0.6.0/crates/codefold-core/src/language.rs +34 -0
  15. codefold-0.6.0/crates/codefold-core/src/level.rs +17 -0
  16. codefold-0.6.0/crates/codefold-core/src/lib.rs +81 -0
  17. codefold-0.6.0/crates/codefold-core/src/options.rs +29 -0
  18. codefold-0.6.0/crates/codefold-core/src/parse.rs +21 -0
  19. codefold-0.6.0/crates/codefold-core/src/python.rs +530 -0
  20. codefold-0.6.0/crates/codefold-core/src/result.rs +34 -0
  21. codefold-0.6.0/crates/codefold-core/src/rust.rs +345 -0
  22. codefold-0.6.0/crates/codefold-core/src/tokens.rs +19 -0
  23. codefold-0.6.0/crates/codefold-core/src/typescript.rs +406 -0
  24. codefold-0.6.0/crates/codefold-core/tests/fixtures/go/auth.go +78 -0
  25. codefold-0.6.0/crates/codefold-core/tests/fixtures/python/auth.py +75 -0
  26. codefold-0.6.0/crates/codefold-core/tests/fixtures/python/heavy.py +98 -0
  27. codefold-0.6.0/crates/codefold-core/tests/fixtures/rust/auth.rs +112 -0
  28. codefold-0.6.0/crates/codefold-core/tests/fixtures/typescript/auth.ts +75 -0
  29. codefold-0.6.0/crates/codefold-core/tests/focus.rs +85 -0
  30. codefold-0.6.0/crates/codefold-core/tests/full_level.rs +40 -0
  31. codefold-0.6.0/crates/codefold-core/tests/go_bodies.rs +31 -0
  32. codefold-0.6.0/crates/codefold-core/tests/go_public.rs +69 -0
  33. codefold-0.6.0/crates/codefold-core/tests/go_signatures.rs +139 -0
  34. codefold-0.6.0/crates/codefold-core/tests/python_bodies.rs +97 -0
  35. codefold-0.6.0/crates/codefold-core/tests/python_public.rs +86 -0
  36. codefold-0.6.0/crates/codefold-core/tests/python_signatures.rs +212 -0
  37. codefold-0.6.0/crates/codefold-core/tests/rust_bodies.rs +57 -0
  38. codefold-0.6.0/crates/codefold-core/tests/rust_public.rs +77 -0
  39. codefold-0.6.0/crates/codefold-core/tests/rust_signatures.rs +134 -0
  40. codefold-0.6.0/crates/codefold-core/tests/tokens.rs +61 -0
  41. codefold-0.6.0/crates/codefold-core/tests/typescript_bodies.rs +58 -0
  42. codefold-0.6.0/crates/codefold-core/tests/typescript_public.rs +75 -0
  43. codefold-0.6.0/crates/codefold-core/tests/typescript_signatures.rs +118 -0
  44. codefold-0.6.0/pyproject.toml +31 -0
@@ -0,0 +1,1631 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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 = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "assert_cmd"
78
+ version = "2.2.2"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
81
+ dependencies = [
82
+ "anstyle",
83
+ "bstr",
84
+ "libc",
85
+ "predicates",
86
+ "predicates-core",
87
+ "predicates-tree",
88
+ "wait-timeout",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "autocfg"
93
+ version = "1.5.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
96
+
97
+ [[package]]
98
+ name = "base64"
99
+ version = "0.21.7"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
102
+
103
+ [[package]]
104
+ name = "bit-set"
105
+ version = "0.5.3"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
108
+ dependencies = [
109
+ "bit-vec",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "bit-vec"
114
+ version = "0.6.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
117
+
118
+ [[package]]
119
+ name = "bitflags"
120
+ version = "2.11.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
123
+
124
+ [[package]]
125
+ name = "bstr"
126
+ version = "1.12.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
129
+ dependencies = [
130
+ "memchr",
131
+ "regex-automata",
132
+ "serde",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "bumpalo"
137
+ version = "3.20.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
140
+
141
+ [[package]]
142
+ name = "cast"
143
+ version = "0.3.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
146
+
147
+ [[package]]
148
+ name = "cc"
149
+ version = "1.2.62"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
152
+ dependencies = [
153
+ "find-msvc-tools",
154
+ "shlex",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "cfg-if"
159
+ version = "1.0.4"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
162
+
163
+ [[package]]
164
+ name = "ciborium"
165
+ version = "0.2.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
168
+ dependencies = [
169
+ "ciborium-io",
170
+ "ciborium-ll",
171
+ "serde",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "ciborium-io"
176
+ version = "0.2.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
179
+
180
+ [[package]]
181
+ name = "ciborium-ll"
182
+ version = "0.2.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
185
+ dependencies = [
186
+ "ciborium-io",
187
+ "half",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "clap"
192
+ version = "4.6.1"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
195
+ dependencies = [
196
+ "clap_builder",
197
+ "clap_derive",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "clap_builder"
202
+ version = "4.6.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
205
+ dependencies = [
206
+ "anstream",
207
+ "anstyle",
208
+ "clap_lex",
209
+ "strsim",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "clap_derive"
214
+ version = "4.6.1"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
217
+ dependencies = [
218
+ "heck",
219
+ "proc-macro2",
220
+ "quote",
221
+ "syn",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "clap_lex"
226
+ version = "1.1.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
229
+
230
+ [[package]]
231
+ name = "codefold-cli"
232
+ version = "0.6.0"
233
+ dependencies = [
234
+ "assert_cmd",
235
+ "clap",
236
+ "codefold-core",
237
+ "predicates",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "codefold-core"
242
+ version = "0.6.0"
243
+ dependencies = [
244
+ "criterion",
245
+ "insta",
246
+ "once_cell",
247
+ "thiserror",
248
+ "tiktoken-rs",
249
+ "tree-sitter",
250
+ "tree-sitter-go",
251
+ "tree-sitter-python",
252
+ "tree-sitter-rust",
253
+ "tree-sitter-typescript",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "codefold-node"
258
+ version = "0.6.0"
259
+ dependencies = [
260
+ "codefold-core",
261
+ "napi",
262
+ "napi-build",
263
+ "napi-derive",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "codefold-py"
268
+ version = "0.6.0"
269
+ dependencies = [
270
+ "codefold-core",
271
+ "pyo3",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "colorchoice"
276
+ version = "1.0.5"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
279
+
280
+ [[package]]
281
+ name = "console"
282
+ version = "0.16.3"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
285
+ dependencies = [
286
+ "encode_unicode",
287
+ "libc",
288
+ "windows-sys",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "convert_case"
293
+ version = "0.11.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
296
+ dependencies = [
297
+ "unicode-segmentation",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "criterion"
302
+ version = "0.5.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
305
+ dependencies = [
306
+ "anes",
307
+ "cast",
308
+ "ciborium",
309
+ "clap",
310
+ "criterion-plot",
311
+ "is-terminal",
312
+ "itertools",
313
+ "num-traits",
314
+ "once_cell",
315
+ "oorandom",
316
+ "plotters",
317
+ "rayon",
318
+ "regex",
319
+ "serde",
320
+ "serde_derive",
321
+ "serde_json",
322
+ "tinytemplate",
323
+ "walkdir",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "criterion-plot"
328
+ version = "0.5.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
331
+ dependencies = [
332
+ "cast",
333
+ "itertools",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "crossbeam-deque"
338
+ version = "0.8.6"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
341
+ dependencies = [
342
+ "crossbeam-epoch",
343
+ "crossbeam-utils",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "crossbeam-epoch"
348
+ version = "0.9.18"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
351
+ dependencies = [
352
+ "crossbeam-utils",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "crossbeam-utils"
357
+ version = "0.8.21"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
360
+
361
+ [[package]]
362
+ name = "crunchy"
363
+ version = "0.2.4"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
366
+
367
+ [[package]]
368
+ name = "ctor"
369
+ version = "1.0.5"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "378f0974ae2468eaf63aa036dbe9c926b0dc7ea64c156f2ea618bc2f75b934f0"
372
+
373
+ [[package]]
374
+ name = "difflib"
375
+ version = "0.4.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
378
+
379
+ [[package]]
380
+ name = "either"
381
+ version = "1.15.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
384
+
385
+ [[package]]
386
+ name = "encode_unicode"
387
+ version = "1.0.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
390
+
391
+ [[package]]
392
+ name = "equivalent"
393
+ version = "1.0.2"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
396
+
397
+ [[package]]
398
+ name = "errno"
399
+ version = "0.3.14"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
402
+ dependencies = [
403
+ "libc",
404
+ "windows-sys",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "fancy-regex"
409
+ version = "0.13.0"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
412
+ dependencies = [
413
+ "bit-set",
414
+ "regex-automata",
415
+ "regex-syntax",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "fastrand"
420
+ version = "2.4.1"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
423
+
424
+ [[package]]
425
+ name = "find-msvc-tools"
426
+ version = "0.1.9"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
429
+
430
+ [[package]]
431
+ name = "float-cmp"
432
+ version = "0.10.0"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
435
+ dependencies = [
436
+ "num-traits",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "foldhash"
441
+ version = "0.1.5"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
444
+
445
+ [[package]]
446
+ name = "futures"
447
+ version = "0.3.32"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
450
+ dependencies = [
451
+ "futures-channel",
452
+ "futures-core",
453
+ "futures-executor",
454
+ "futures-io",
455
+ "futures-sink",
456
+ "futures-task",
457
+ "futures-util",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "futures-channel"
462
+ version = "0.3.32"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
465
+ dependencies = [
466
+ "futures-core",
467
+ "futures-sink",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "futures-core"
472
+ version = "0.3.32"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
475
+
476
+ [[package]]
477
+ name = "futures-executor"
478
+ version = "0.3.32"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
481
+ dependencies = [
482
+ "futures-core",
483
+ "futures-task",
484
+ "futures-util",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "futures-io"
489
+ version = "0.3.32"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
492
+
493
+ [[package]]
494
+ name = "futures-macro"
495
+ version = "0.3.32"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
498
+ dependencies = [
499
+ "proc-macro2",
500
+ "quote",
501
+ "syn",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "futures-sink"
506
+ version = "0.3.32"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
509
+
510
+ [[package]]
511
+ name = "futures-task"
512
+ version = "0.3.32"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
515
+
516
+ [[package]]
517
+ name = "futures-util"
518
+ version = "0.3.32"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
521
+ dependencies = [
522
+ "futures-channel",
523
+ "futures-core",
524
+ "futures-io",
525
+ "futures-macro",
526
+ "futures-sink",
527
+ "futures-task",
528
+ "memchr",
529
+ "pin-project-lite",
530
+ "slab",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "getrandom"
535
+ version = "0.4.2"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
538
+ dependencies = [
539
+ "cfg-if",
540
+ "libc",
541
+ "r-efi",
542
+ "wasip2",
543
+ "wasip3",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "half"
548
+ version = "2.7.1"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
551
+ dependencies = [
552
+ "cfg-if",
553
+ "crunchy",
554
+ "zerocopy",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "hashbrown"
559
+ version = "0.15.5"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
562
+ dependencies = [
563
+ "foldhash",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "hashbrown"
568
+ version = "0.17.1"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
571
+
572
+ [[package]]
573
+ name = "heck"
574
+ version = "0.5.0"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
577
+
578
+ [[package]]
579
+ name = "hermit-abi"
580
+ version = "0.5.2"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
583
+
584
+ [[package]]
585
+ name = "id-arena"
586
+ version = "2.3.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
589
+
590
+ [[package]]
591
+ name = "indexmap"
592
+ version = "2.14.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
595
+ dependencies = [
596
+ "equivalent",
597
+ "hashbrown 0.17.1",
598
+ "serde",
599
+ "serde_core",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "indoc"
604
+ version = "2.0.7"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
607
+ dependencies = [
608
+ "rustversion",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "insta"
613
+ version = "1.47.2"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
616
+ dependencies = [
617
+ "console",
618
+ "once_cell",
619
+ "serde",
620
+ "similar",
621
+ "tempfile",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "is-terminal"
626
+ version = "0.4.17"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
629
+ dependencies = [
630
+ "hermit-abi",
631
+ "libc",
632
+ "windows-sys",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "is_terminal_polyfill"
637
+ version = "1.70.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
640
+
641
+ [[package]]
642
+ name = "itertools"
643
+ version = "0.10.5"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
646
+ dependencies = [
647
+ "either",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "itoa"
652
+ version = "1.0.18"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
655
+
656
+ [[package]]
657
+ name = "js-sys"
658
+ version = "0.3.98"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
661
+ dependencies = [
662
+ "cfg-if",
663
+ "futures-util",
664
+ "once_cell",
665
+ "wasm-bindgen",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "lazy_static"
670
+ version = "1.5.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
673
+
674
+ [[package]]
675
+ name = "leb128fmt"
676
+ version = "0.1.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
679
+
680
+ [[package]]
681
+ name = "libc"
682
+ version = "0.2.186"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
685
+
686
+ [[package]]
687
+ name = "libloading"
688
+ version = "0.9.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
691
+ dependencies = [
692
+ "cfg-if",
693
+ "windows-link",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "linux-raw-sys"
698
+ version = "0.12.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
701
+
702
+ [[package]]
703
+ name = "lock_api"
704
+ version = "0.4.14"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
707
+ dependencies = [
708
+ "scopeguard",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "log"
713
+ version = "0.4.29"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
716
+
717
+ [[package]]
718
+ name = "memchr"
719
+ version = "2.8.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
722
+
723
+ [[package]]
724
+ name = "memoffset"
725
+ version = "0.9.1"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
728
+ dependencies = [
729
+ "autocfg",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "napi"
734
+ version = "3.9.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "f1d395473824516f38dd1071a1a37bc57daa7be65b293ebba4ead5f7abb017a2"
737
+ dependencies = [
738
+ "bitflags",
739
+ "ctor",
740
+ "futures",
741
+ "napi-build",
742
+ "napi-sys",
743
+ "nohash-hasher",
744
+ "rustc-hash 2.1.2",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "napi-build"
749
+ version = "2.3.2"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
752
+
753
+ [[package]]
754
+ name = "napi-derive"
755
+ version = "3.5.6"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "89b3f766e04667e6da0e181e2da4f85475d5a6513b7cf6a80bea184e224a5b42"
758
+ dependencies = [
759
+ "convert_case",
760
+ "ctor",
761
+ "napi-derive-backend",
762
+ "proc-macro2",
763
+ "quote",
764
+ "syn",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "napi-derive-backend"
769
+ version = "5.0.4"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
772
+ dependencies = [
773
+ "convert_case",
774
+ "proc-macro2",
775
+ "quote",
776
+ "semver",
777
+ "syn",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "napi-sys"
782
+ version = "3.2.1"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
785
+ dependencies = [
786
+ "libloading",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "nohash-hasher"
791
+ version = "0.2.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
794
+
795
+ [[package]]
796
+ name = "normalize-line-endings"
797
+ version = "0.3.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
800
+
801
+ [[package]]
802
+ name = "num-traits"
803
+ version = "0.2.19"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
806
+ dependencies = [
807
+ "autocfg",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "once_cell"
812
+ version = "1.21.4"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
815
+
816
+ [[package]]
817
+ name = "once_cell_polyfill"
818
+ version = "1.70.2"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
821
+
822
+ [[package]]
823
+ name = "oorandom"
824
+ version = "11.1.5"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
827
+
828
+ [[package]]
829
+ name = "parking_lot"
830
+ version = "0.12.5"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
833
+ dependencies = [
834
+ "lock_api",
835
+ "parking_lot_core",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "parking_lot_core"
840
+ version = "0.9.12"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
843
+ dependencies = [
844
+ "cfg-if",
845
+ "libc",
846
+ "redox_syscall",
847
+ "smallvec",
848
+ "windows-link",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "pin-project-lite"
853
+ version = "0.2.17"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
856
+
857
+ [[package]]
858
+ name = "plotters"
859
+ version = "0.3.7"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
862
+ dependencies = [
863
+ "num-traits",
864
+ "plotters-backend",
865
+ "plotters-svg",
866
+ "wasm-bindgen",
867
+ "web-sys",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "plotters-backend"
872
+ version = "0.3.7"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
875
+
876
+ [[package]]
877
+ name = "plotters-svg"
878
+ version = "0.3.7"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
881
+ dependencies = [
882
+ "plotters-backend",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "portable-atomic"
887
+ version = "1.13.1"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
890
+
891
+ [[package]]
892
+ name = "predicates"
893
+ version = "3.1.4"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
896
+ dependencies = [
897
+ "anstyle",
898
+ "difflib",
899
+ "float-cmp",
900
+ "normalize-line-endings",
901
+ "predicates-core",
902
+ "regex",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "predicates-core"
907
+ version = "1.0.10"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
910
+
911
+ [[package]]
912
+ name = "predicates-tree"
913
+ version = "1.0.13"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
916
+ dependencies = [
917
+ "predicates-core",
918
+ "termtree",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "prettyplease"
923
+ version = "0.2.37"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
926
+ dependencies = [
927
+ "proc-macro2",
928
+ "syn",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "proc-macro2"
933
+ version = "1.0.106"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
936
+ dependencies = [
937
+ "unicode-ident",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "pyo3"
942
+ version = "0.23.5"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
945
+ dependencies = [
946
+ "cfg-if",
947
+ "indoc",
948
+ "libc",
949
+ "memoffset",
950
+ "once_cell",
951
+ "portable-atomic",
952
+ "pyo3-build-config",
953
+ "pyo3-ffi",
954
+ "pyo3-macros",
955
+ "unindent",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "pyo3-build-config"
960
+ version = "0.23.5"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
963
+ dependencies = [
964
+ "once_cell",
965
+ "target-lexicon",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "pyo3-ffi"
970
+ version = "0.23.5"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
973
+ dependencies = [
974
+ "libc",
975
+ "pyo3-build-config",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "pyo3-macros"
980
+ version = "0.23.5"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
983
+ dependencies = [
984
+ "proc-macro2",
985
+ "pyo3-macros-backend",
986
+ "quote",
987
+ "syn",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "pyo3-macros-backend"
992
+ version = "0.23.5"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
995
+ dependencies = [
996
+ "heck",
997
+ "proc-macro2",
998
+ "pyo3-build-config",
999
+ "quote",
1000
+ "syn",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "quote"
1005
+ version = "1.0.45"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1008
+ dependencies = [
1009
+ "proc-macro2",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "r-efi"
1014
+ version = "6.0.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1017
+
1018
+ [[package]]
1019
+ name = "rayon"
1020
+ version = "1.12.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1023
+ dependencies = [
1024
+ "either",
1025
+ "rayon-core",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "rayon-core"
1030
+ version = "1.13.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1033
+ dependencies = [
1034
+ "crossbeam-deque",
1035
+ "crossbeam-utils",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "redox_syscall"
1040
+ version = "0.5.18"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1043
+ dependencies = [
1044
+ "bitflags",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "regex"
1049
+ version = "1.12.3"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1052
+ dependencies = [
1053
+ "aho-corasick",
1054
+ "memchr",
1055
+ "regex-automata",
1056
+ "regex-syntax",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "regex-automata"
1061
+ version = "0.4.14"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1064
+ dependencies = [
1065
+ "aho-corasick",
1066
+ "memchr",
1067
+ "regex-syntax",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "regex-syntax"
1072
+ version = "0.8.10"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1075
+
1076
+ [[package]]
1077
+ name = "rustc-hash"
1078
+ version = "1.1.0"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1081
+
1082
+ [[package]]
1083
+ name = "rustc-hash"
1084
+ version = "2.1.2"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1087
+
1088
+ [[package]]
1089
+ name = "rustix"
1090
+ version = "1.1.4"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1093
+ dependencies = [
1094
+ "bitflags",
1095
+ "errno",
1096
+ "libc",
1097
+ "linux-raw-sys",
1098
+ "windows-sys",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "rustversion"
1103
+ version = "1.0.22"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1106
+
1107
+ [[package]]
1108
+ name = "same-file"
1109
+ version = "1.0.6"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1112
+ dependencies = [
1113
+ "winapi-util",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "scopeguard"
1118
+ version = "1.2.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1121
+
1122
+ [[package]]
1123
+ name = "semver"
1124
+ version = "1.0.28"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1127
+
1128
+ [[package]]
1129
+ name = "serde"
1130
+ version = "1.0.228"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1133
+ dependencies = [
1134
+ "serde_core",
1135
+ "serde_derive",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "serde_core"
1140
+ version = "1.0.228"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1143
+ dependencies = [
1144
+ "serde_derive",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "serde_derive"
1149
+ version = "1.0.228"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1152
+ dependencies = [
1153
+ "proc-macro2",
1154
+ "quote",
1155
+ "syn",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "serde_json"
1160
+ version = "1.0.149"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1163
+ dependencies = [
1164
+ "itoa",
1165
+ "memchr",
1166
+ "serde",
1167
+ "serde_core",
1168
+ "zmij",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "shlex"
1173
+ version = "1.3.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1176
+
1177
+ [[package]]
1178
+ name = "similar"
1179
+ version = "2.7.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1182
+
1183
+ [[package]]
1184
+ name = "slab"
1185
+ version = "0.4.12"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1188
+
1189
+ [[package]]
1190
+ name = "smallvec"
1191
+ version = "1.15.1"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1194
+
1195
+ [[package]]
1196
+ name = "strsim"
1197
+ version = "0.11.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1200
+
1201
+ [[package]]
1202
+ name = "syn"
1203
+ version = "2.0.117"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1206
+ dependencies = [
1207
+ "proc-macro2",
1208
+ "quote",
1209
+ "unicode-ident",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "target-lexicon"
1214
+ version = "0.12.16"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1217
+
1218
+ [[package]]
1219
+ name = "tempfile"
1220
+ version = "3.27.0"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1223
+ dependencies = [
1224
+ "fastrand",
1225
+ "getrandom",
1226
+ "once_cell",
1227
+ "rustix",
1228
+ "windows-sys",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "termtree"
1233
+ version = "0.5.1"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1236
+
1237
+ [[package]]
1238
+ name = "thiserror"
1239
+ version = "1.0.69"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1242
+ dependencies = [
1243
+ "thiserror-impl",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "thiserror-impl"
1248
+ version = "1.0.69"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1251
+ dependencies = [
1252
+ "proc-macro2",
1253
+ "quote",
1254
+ "syn",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "tiktoken-rs"
1259
+ version = "0.6.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "44075987ee2486402f0808505dd65692163d243a337fc54363d49afac41087f6"
1262
+ dependencies = [
1263
+ "anyhow",
1264
+ "base64",
1265
+ "bstr",
1266
+ "fancy-regex",
1267
+ "lazy_static",
1268
+ "parking_lot",
1269
+ "regex",
1270
+ "rustc-hash 1.1.0",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "tinytemplate"
1275
+ version = "1.2.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1278
+ dependencies = [
1279
+ "serde",
1280
+ "serde_json",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "tree-sitter"
1285
+ version = "0.22.6"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "df7cc499ceadd4dcdf7ec6d4cbc34ece92c3fa07821e287aedecd4416c516dca"
1288
+ dependencies = [
1289
+ "cc",
1290
+ "regex",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "tree-sitter-go"
1295
+ version = "0.21.2"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "b8d702a98d3c7e70e466456e58ff2b1ac550bf1e29b97e5770676d2fdabec00d"
1298
+ dependencies = [
1299
+ "cc",
1300
+ "tree-sitter",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "tree-sitter-python"
1305
+ version = "0.21.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "b4066c6cf678f962f8c2c4561f205945c84834cce73d981e71392624fdc390a9"
1308
+ dependencies = [
1309
+ "cc",
1310
+ "tree-sitter",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "tree-sitter-rust"
1315
+ version = "0.21.2"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "277690f420bf90741dea984f3da038ace46c4fe6047cba57a66822226cde1c93"
1318
+ dependencies = [
1319
+ "cc",
1320
+ "tree-sitter",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "tree-sitter-typescript"
1325
+ version = "0.21.2"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "ecb35d98a688378e56c18c9c159824fd16f730ccbea19aacf4f206e5d5438ed9"
1328
+ dependencies = [
1329
+ "cc",
1330
+ "tree-sitter",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "unicode-ident"
1335
+ version = "1.0.24"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1338
+
1339
+ [[package]]
1340
+ name = "unicode-segmentation"
1341
+ version = "1.13.2"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1344
+
1345
+ [[package]]
1346
+ name = "unicode-xid"
1347
+ version = "0.2.6"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1350
+
1351
+ [[package]]
1352
+ name = "unindent"
1353
+ version = "0.2.4"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1356
+
1357
+ [[package]]
1358
+ name = "utf8parse"
1359
+ version = "0.2.2"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1362
+
1363
+ [[package]]
1364
+ name = "wait-timeout"
1365
+ version = "0.2.1"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1368
+ dependencies = [
1369
+ "libc",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "walkdir"
1374
+ version = "2.5.0"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1377
+ dependencies = [
1378
+ "same-file",
1379
+ "winapi-util",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "wasip2"
1384
+ version = "1.0.3+wasi-0.2.9"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1387
+ dependencies = [
1388
+ "wit-bindgen 0.57.1",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "wasip3"
1393
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1396
+ dependencies = [
1397
+ "wit-bindgen 0.51.0",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "wasm-bindgen"
1402
+ version = "0.2.121"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1405
+ dependencies = [
1406
+ "cfg-if",
1407
+ "once_cell",
1408
+ "rustversion",
1409
+ "wasm-bindgen-macro",
1410
+ "wasm-bindgen-shared",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "wasm-bindgen-macro"
1415
+ version = "0.2.121"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1418
+ dependencies = [
1419
+ "quote",
1420
+ "wasm-bindgen-macro-support",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "wasm-bindgen-macro-support"
1425
+ version = "0.2.121"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1428
+ dependencies = [
1429
+ "bumpalo",
1430
+ "proc-macro2",
1431
+ "quote",
1432
+ "syn",
1433
+ "wasm-bindgen-shared",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "wasm-bindgen-shared"
1438
+ version = "0.2.121"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1441
+ dependencies = [
1442
+ "unicode-ident",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "wasm-encoder"
1447
+ version = "0.244.0"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1450
+ dependencies = [
1451
+ "leb128fmt",
1452
+ "wasmparser",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "wasm-metadata"
1457
+ version = "0.244.0"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1460
+ dependencies = [
1461
+ "anyhow",
1462
+ "indexmap",
1463
+ "wasm-encoder",
1464
+ "wasmparser",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "wasmparser"
1469
+ version = "0.244.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1472
+ dependencies = [
1473
+ "bitflags",
1474
+ "hashbrown 0.15.5",
1475
+ "indexmap",
1476
+ "semver",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "web-sys"
1481
+ version = "0.3.98"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1484
+ dependencies = [
1485
+ "js-sys",
1486
+ "wasm-bindgen",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "winapi-util"
1491
+ version = "0.1.11"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1494
+ dependencies = [
1495
+ "windows-sys",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "windows-link"
1500
+ version = "0.2.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1503
+
1504
+ [[package]]
1505
+ name = "windows-sys"
1506
+ version = "0.61.2"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1509
+ dependencies = [
1510
+ "windows-link",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "wit-bindgen"
1515
+ version = "0.51.0"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1518
+ dependencies = [
1519
+ "wit-bindgen-rust-macro",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "wit-bindgen"
1524
+ version = "0.57.1"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1527
+
1528
+ [[package]]
1529
+ name = "wit-bindgen-core"
1530
+ version = "0.51.0"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1533
+ dependencies = [
1534
+ "anyhow",
1535
+ "heck",
1536
+ "wit-parser",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "wit-bindgen-rust"
1541
+ version = "0.51.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1544
+ dependencies = [
1545
+ "anyhow",
1546
+ "heck",
1547
+ "indexmap",
1548
+ "prettyplease",
1549
+ "syn",
1550
+ "wasm-metadata",
1551
+ "wit-bindgen-core",
1552
+ "wit-component",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "wit-bindgen-rust-macro"
1557
+ version = "0.51.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1560
+ dependencies = [
1561
+ "anyhow",
1562
+ "prettyplease",
1563
+ "proc-macro2",
1564
+ "quote",
1565
+ "syn",
1566
+ "wit-bindgen-core",
1567
+ "wit-bindgen-rust",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "wit-component"
1572
+ version = "0.244.0"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1575
+ dependencies = [
1576
+ "anyhow",
1577
+ "bitflags",
1578
+ "indexmap",
1579
+ "log",
1580
+ "serde",
1581
+ "serde_derive",
1582
+ "serde_json",
1583
+ "wasm-encoder",
1584
+ "wasm-metadata",
1585
+ "wasmparser",
1586
+ "wit-parser",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "wit-parser"
1591
+ version = "0.244.0"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1594
+ dependencies = [
1595
+ "anyhow",
1596
+ "id-arena",
1597
+ "indexmap",
1598
+ "log",
1599
+ "semver",
1600
+ "serde",
1601
+ "serde_derive",
1602
+ "serde_json",
1603
+ "unicode-xid",
1604
+ "wasmparser",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "zerocopy"
1609
+ version = "0.8.48"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1612
+ dependencies = [
1613
+ "zerocopy-derive",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "zerocopy-derive"
1618
+ version = "0.8.48"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1621
+ dependencies = [
1622
+ "proc-macro2",
1623
+ "quote",
1624
+ "syn",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "zmij"
1629
+ version = "1.0.21"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"