cgg-callgraphgenerator 0.6.1__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 (172) hide show
  1. cgg_callgraphgenerator-0.6.1/Cargo.lock +1837 -0
  2. cgg_callgraphgenerator-0.6.1/Cargo.toml +127 -0
  3. cgg_callgraphgenerator-0.6.1/PKG-INFO +175 -0
  4. cgg_callgraphgenerator-0.6.1/README.md +156 -0
  5. cgg_callgraphgenerator-0.6.1/crates/cgg/Cargo.toml +53 -0
  6. cgg_callgraphgenerator-0.6.1/crates/cgg/README.md +72 -0
  7. cgg_callgraphgenerator-0.6.1/crates/cgg/src/cli.rs +439 -0
  8. cgg_callgraphgenerator-0.6.1/crates/cgg/src/deadcode/config.rs +253 -0
  9. cgg_callgraphgenerator-0.6.1/crates/cgg/src/deadcode/mod.rs +8 -0
  10. cgg_callgraphgenerator-0.6.1/crates/cgg/src/deadcode/report.rs +411 -0
  11. cgg_callgraphgenerator-0.6.1/crates/cgg/src/emit.rs +237 -0
  12. cgg_callgraphgenerator-0.6.1/crates/cgg/src/lib.rs +1890 -0
  13. cgg_callgraphgenerator-0.6.1/crates/cgg/src/main.rs +104 -0
  14. cgg_callgraphgenerator-0.6.1/crates/cgg/src/options.rs +239 -0
  15. cgg_callgraphgenerator-0.6.1/crates/cgg/src/outcome.rs +151 -0
  16. cgg_callgraphgenerator-0.6.1/crates/cgg/src/query.rs +543 -0
  17. cgg_callgraphgenerator-0.6.1/crates/cgg/src/since.rs +241 -0
  18. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/cli.rs +209 -0
  19. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/cli_surface.rs +745 -0
  20. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/detect.rs +204 -0
  21. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/detect_prefixes.rs +230 -0
  22. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/determinism.rs +320 -0
  23. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/formats.rs +397 -0
  24. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/frameworks.rs +721 -0
  25. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/lib_api.rs +639 -0
  26. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/link.rs +215 -0
  27. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/resolve.rs +969 -0
  28. cgg_callgraphgenerator-0.6.1/crates/cgg/tests/walker.rs +114 -0
  29. cgg_callgraphgenerator-0.6.1/crates/cgg-core/Cargo.toml +28 -0
  30. cgg_callgraphgenerator-0.6.1/crates/cgg-core/README.md +24 -0
  31. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/audit.rs +663 -0
  32. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/cpu.rs +160 -0
  33. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/deadcode.rs +924 -0
  34. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/external.rs +513 -0
  35. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/facts.rs +388 -0
  36. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/frameworks/rules.rs +8819 -0
  37. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/frameworks.rs +740 -0
  38. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/graph.rs +332 -0
  39. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/ids.rs +146 -0
  40. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/lib.rs +61 -0
  41. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/profile.rs +254 -0
  42. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/bash.txt +170 -0
  43. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/c.txt +278 -0
  44. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/clojure.txt +367 -0
  45. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/cpp.txt +553 -0
  46. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/csharp.txt +380 -0
  47. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/dart.txt +394 -0
  48. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/elixir.txt +252 -0
  49. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/erlang.txt +774 -0
  50. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/fortran.txt +163 -0
  51. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/go.txt +986 -0
  52. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/groovy.txt +339 -0
  53. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/haskell.txt +365 -0
  54. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/hcl.txt +125 -0
  55. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/java.txt +399 -0
  56. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/javascript.txt +569 -0
  57. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/julia.txt +248 -0
  58. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/kotlin.txt +304 -0
  59. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/lua.txt +123 -0
  60. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/objc.txt +408 -0
  61. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/ocaml.txt +116 -0
  62. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/perl.txt +167 -0
  63. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/php.txt +324 -0
  64. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/python.txt +1180 -0
  65. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/r.txt +321 -0
  66. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/ruby.txt +792 -0
  67. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/rust.txt +346 -0
  68. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/scala.txt +248 -0
  69. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/swift.txt +249 -0
  70. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/typescript.txt +594 -0
  71. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib/zig.txt +160 -0
  72. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/stdlib.rs +85 -0
  73. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/testfile.rs +226 -0
  74. cgg_callgraphgenerator-0.6.1/crates/cgg-core/src/version.rs +4 -0
  75. cgg_callgraphgenerator-0.6.1/crates/cgg-format/Cargo.toml +22 -0
  76. cgg_callgraphgenerator-0.6.1/crates/cgg-format/README.md +22 -0
  77. cgg_callgraphgenerator-0.6.1/crates/cgg-format/src/dot.rs +219 -0
  78. cgg_callgraphgenerator-0.6.1/crates/cgg-format/src/graphml.rs +187 -0
  79. cgg_callgraphgenerator-0.6.1/crates/cgg-format/src/json.rs +72 -0
  80. cgg_callgraphgenerator-0.6.1/crates/cgg-format/src/lib.rs +74 -0
  81. cgg_callgraphgenerator-0.6.1/crates/cgg-format/src/mermaid.rs +389 -0
  82. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/Cargo.toml +72 -0
  83. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/README.md +24 -0
  84. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/build.rs +21 -0
  85. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/detect.rs +466 -0
  86. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/lib.rs +298 -0
  87. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/notebook.rs +135 -0
  88. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/parser.rs +132 -0
  89. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/asm.rs +275 -0
  90. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/asyncapi.rs +170 -0
  91. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/attrs.rs +298 -0
  92. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/bash.rs +291 -0
  93. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/c.rs +402 -0
  94. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/cfg.rs +323 -0
  95. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/clojure.rs +727 -0
  96. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/cmake.rs +226 -0
  97. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/cpp.rs +533 -0
  98. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/csharp.rs +530 -0
  99. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/dart.rs +447 -0
  100. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/dynuse.rs +191 -0
  101. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/elixir.rs +715 -0
  102. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/erlang.rs +255 -0
  103. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/fortran.rs +237 -0
  104. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/fsharp.rs +348 -0
  105. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/go.rs +649 -0
  106. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/graphql.rs +235 -0
  107. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/groovy.rs +370 -0
  108. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/haskell.rs +294 -0
  109. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/hcl.rs +188 -0
  110. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/java.rs +531 -0
  111. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/javascript.rs +888 -0
  112. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/julia.rs +361 -0
  113. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/kotlin.rs +473 -0
  114. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/lua.rs +216 -0
  115. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/nix.rs +275 -0
  116. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/objc.rs +256 -0
  117. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/ocaml.rs +239 -0
  118. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/openapi.rs +225 -0
  119. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/perl.rs +705 -0
  120. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/php.rs +322 -0
  121. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/powershell.rs +520 -0
  122. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/proto.rs +294 -0
  123. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/python.rs +907 -0
  124. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/r.rs +255 -0
  125. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/registrar.rs +740 -0
  126. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/ruby.rs +398 -0
  127. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/rust.rs +1773 -0
  128. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/scala.rs +220 -0
  129. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/smithy.rs +372 -0
  130. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/solidity.rs +339 -0
  131. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/starlark.rs +223 -0
  132. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/structured.rs +181 -0
  133. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/swift.rs +286 -0
  134. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/typescript.rs +154 -0
  135. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/verilog.rs +301 -0
  136. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/vhdl.rs +322 -0
  137. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins/zig.rs +184 -0
  138. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/src/plugins.rs +167 -0
  139. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/vendor/smithy/PROVENANCE.md +18 -0
  140. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/vendor/smithy/grammar.js +888 -0
  141. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/vendor/smithy/parser.c +11747 -0
  142. cgg_callgraphgenerator-0.6.1/crates/cgg-lang/vendor/smithy/tree_sitter/parser.h +224 -0
  143. cgg_callgraphgenerator-0.6.1/crates/cgg-py/Cargo.toml +35 -0
  144. cgg_callgraphgenerator-0.6.1/crates/cgg-py/README.md +156 -0
  145. cgg_callgraphgenerator-0.6.1/crates/cgg-py/src/lib.rs +771 -0
  146. cgg_callgraphgenerator-0.6.1/crates/cgg-py/tests/test_analyze.py +492 -0
  147. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/Cargo.toml +27 -0
  148. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/README.md +25 -0
  149. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/cross_file.rs +1548 -0
  150. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/adj.rs +197 -0
  151. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/caps.rs +309 -0
  152. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/evidence.rs +369 -0
  153. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/mod.rs +1278 -0
  154. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/roots.rs +841 -0
  155. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/scc.rs +217 -0
  156. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/deadcode/testutil.rs +88 -0
  157. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/descriptor.rs +206 -0
  158. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/dispatch.rs +157 -0
  159. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/ffi.rs +550 -0
  160. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/frameworks/mod.rs +1939 -0
  161. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/intra_file.rs +467 -0
  162. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/lib.rs +135 -0
  163. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/names.rs +96 -0
  164. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/stack_graphs_resolver.rs +46 -0
  165. cgg_callgraphgenerator-0.6.1/crates/cgg-resolve/src/type_hints.rs +592 -0
  166. cgg_callgraphgenerator-0.6.1/crates/cgg-walk/Cargo.toml +25 -0
  167. cgg_callgraphgenerator-0.6.1/crates/cgg-walk/README.md +24 -0
  168. cgg_callgraphgenerator-0.6.1/crates/cgg-walk/src/lib.rs +467 -0
  169. cgg_callgraphgenerator-0.6.1/pyproject.toml +42 -0
  170. cgg_callgraphgenerator-0.6.1/python/cgg/__init__.py +50 -0
  171. cgg_callgraphgenerator-0.6.1/python/cgg/_cgg.pyi +168 -0
  172. cgg_callgraphgenerator-0.6.1/python/cgg/py.typed +0 -0
@@ -0,0 +1,1837 @@
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 = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.104"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
69
+
70
+ [[package]]
71
+ name = "arrayref"
72
+ version = "0.3.9"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
75
+
76
+ [[package]]
77
+ name = "arrayvec"
78
+ version = "0.7.6"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
81
+
82
+ [[package]]
83
+ name = "assert_cmd"
84
+ version = "2.2.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
87
+ dependencies = [
88
+ "anstyle",
89
+ "bstr",
90
+ "libc",
91
+ "predicates",
92
+ "predicates-core",
93
+ "predicates-tree",
94
+ "wait-timeout",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "autocfg"
99
+ version = "1.5.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
102
+
103
+ [[package]]
104
+ name = "bitflags"
105
+ version = "2.11.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
108
+
109
+ [[package]]
110
+ name = "blake3"
111
+ version = "1.8.5"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
114
+ dependencies = [
115
+ "arrayref",
116
+ "arrayvec",
117
+ "cc",
118
+ "cfg-if",
119
+ "constant_time_eq",
120
+ "cpufeatures",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "bstr"
125
+ version = "1.12.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
128
+ dependencies = [
129
+ "memchr",
130
+ "regex-automata",
131
+ "serde",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "cc"
136
+ version = "1.2.62"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
139
+ dependencies = [
140
+ "find-msvc-tools",
141
+ "shlex",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "cfg-if"
146
+ version = "1.0.4"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
149
+
150
+ [[package]]
151
+ name = "cgg"
152
+ version = "0.6.1"
153
+ dependencies = [
154
+ "anyhow",
155
+ "assert_cmd",
156
+ "blake3",
157
+ "cgg-core",
158
+ "cgg-format",
159
+ "cgg-lang",
160
+ "cgg-resolve",
161
+ "cgg-walk",
162
+ "clap",
163
+ "glob",
164
+ "insta",
165
+ "mimalloc",
166
+ "predicates",
167
+ "rayon",
168
+ "regex",
169
+ "serde",
170
+ "serde_json",
171
+ "tempfile",
172
+ "thiserror",
173
+ "toml",
174
+ "tracing",
175
+ "tracing-subscriber",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "cgg-core"
180
+ version = "0.6.1"
181
+ dependencies = [
182
+ "anyhow",
183
+ "blake3",
184
+ "globset",
185
+ "indexmap",
186
+ "insta",
187
+ "rayon",
188
+ "regex",
189
+ "serde",
190
+ "serde_json",
191
+ "tempfile",
192
+ "thiserror",
193
+ "tracing",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "cgg-ffi"
198
+ version = "0.6.1"
199
+ dependencies = [
200
+ "cgg",
201
+ "cgg-core",
202
+ "cgg-format",
203
+ "mimalloc",
204
+ "serde",
205
+ "serde_json",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "cgg-format"
210
+ version = "0.6.1"
211
+ dependencies = [
212
+ "anyhow",
213
+ "cgg-core",
214
+ "insta",
215
+ "serde",
216
+ "serde_json",
217
+ "thiserror",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "cgg-lang"
222
+ version = "0.6.1"
223
+ dependencies = [
224
+ "anyhow",
225
+ "cc",
226
+ "cgg-core",
227
+ "insta",
228
+ "serde",
229
+ "serde_json",
230
+ "tempfile",
231
+ "thiserror",
232
+ "tracing",
233
+ "tree-sitter",
234
+ "tree-sitter-asm",
235
+ "tree-sitter-bash",
236
+ "tree-sitter-c",
237
+ "tree-sitter-c-sharp",
238
+ "tree-sitter-clojure-orchard",
239
+ "tree-sitter-cmake",
240
+ "tree-sitter-cpp",
241
+ "tree-sitter-dart",
242
+ "tree-sitter-elixir",
243
+ "tree-sitter-erlang",
244
+ "tree-sitter-fortran",
245
+ "tree-sitter-fsharp",
246
+ "tree-sitter-go",
247
+ "tree-sitter-graphql",
248
+ "tree-sitter-groovy",
249
+ "tree-sitter-haskell",
250
+ "tree-sitter-hcl",
251
+ "tree-sitter-java",
252
+ "tree-sitter-javascript",
253
+ "tree-sitter-julia",
254
+ "tree-sitter-kotlin-sg",
255
+ "tree-sitter-language",
256
+ "tree-sitter-lua",
257
+ "tree-sitter-nix",
258
+ "tree-sitter-objc",
259
+ "tree-sitter-ocaml",
260
+ "tree-sitter-perl",
261
+ "tree-sitter-php",
262
+ "tree-sitter-powershell",
263
+ "tree-sitter-proto",
264
+ "tree-sitter-python",
265
+ "tree-sitter-r",
266
+ "tree-sitter-ruby",
267
+ "tree-sitter-rust",
268
+ "tree-sitter-scala",
269
+ "tree-sitter-solidity",
270
+ "tree-sitter-starlark",
271
+ "tree-sitter-swift",
272
+ "tree-sitter-typescript",
273
+ "tree-sitter-verilog",
274
+ "tree-sitter-vhdl",
275
+ "tree-sitter-yaml",
276
+ "tree-sitter-zig",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "cgg-py"
281
+ version = "0.6.1"
282
+ dependencies = [
283
+ "anyhow",
284
+ "cgg",
285
+ "cgg-core",
286
+ "cgg-format",
287
+ "mimalloc",
288
+ "pyo3",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "cgg-resolve"
293
+ version = "0.6.1"
294
+ dependencies = [
295
+ "anyhow",
296
+ "cgg-core",
297
+ "cgg-lang",
298
+ "insta",
299
+ "rayon",
300
+ "serde",
301
+ "tempfile",
302
+ "thiserror",
303
+ "tracing",
304
+ "tree-sitter",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "cgg-walk"
309
+ version = "0.6.1"
310
+ dependencies = [
311
+ "anyhow",
312
+ "cgg-core",
313
+ "ignore",
314
+ "insta",
315
+ "serde",
316
+ "tempfile",
317
+ "thiserror",
318
+ "tracing",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "clap"
323
+ version = "4.6.1"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
326
+ dependencies = [
327
+ "clap_builder",
328
+ "clap_derive",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "clap_builder"
333
+ version = "4.6.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
336
+ dependencies = [
337
+ "anstream",
338
+ "anstyle",
339
+ "clap_lex",
340
+ "strsim",
341
+ "terminal_size",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "clap_derive"
346
+ version = "4.6.1"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
349
+ dependencies = [
350
+ "heck",
351
+ "proc-macro2",
352
+ "quote",
353
+ "syn",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "clap_lex"
358
+ version = "1.1.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
361
+
362
+ [[package]]
363
+ name = "colorchoice"
364
+ version = "1.0.5"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
367
+
368
+ [[package]]
369
+ name = "console"
370
+ version = "0.16.3"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
373
+ dependencies = [
374
+ "encode_unicode",
375
+ "libc",
376
+ "windows-sys",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "constant_time_eq"
381
+ version = "0.4.2"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
384
+
385
+ [[package]]
386
+ name = "cpufeatures"
387
+ version = "0.3.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
390
+ dependencies = [
391
+ "libc",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "crossbeam-deque"
396
+ version = "0.8.6"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
399
+ dependencies = [
400
+ "crossbeam-epoch",
401
+ "crossbeam-utils",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "crossbeam-epoch"
406
+ version = "0.9.20"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
409
+ dependencies = [
410
+ "crossbeam-utils",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "crossbeam-utils"
415
+ version = "0.8.21"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
418
+
419
+ [[package]]
420
+ name = "difflib"
421
+ version = "0.4.0"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
424
+
425
+ [[package]]
426
+ name = "either"
427
+ version = "1.15.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
430
+
431
+ [[package]]
432
+ name = "encode_unicode"
433
+ version = "1.0.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
436
+
437
+ [[package]]
438
+ name = "equivalent"
439
+ version = "1.0.2"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
442
+
443
+ [[package]]
444
+ name = "errno"
445
+ version = "0.3.14"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
448
+ dependencies = [
449
+ "libc",
450
+ "windows-sys",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "fastrand"
455
+ version = "2.4.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
458
+
459
+ [[package]]
460
+ name = "find-msvc-tools"
461
+ version = "0.1.9"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
464
+
465
+ [[package]]
466
+ name = "float-cmp"
467
+ version = "0.10.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
470
+ dependencies = [
471
+ "num-traits",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "foldhash"
476
+ version = "0.1.5"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
479
+
480
+ [[package]]
481
+ name = "getrandom"
482
+ version = "0.4.2"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
485
+ dependencies = [
486
+ "cfg-if",
487
+ "libc",
488
+ "r-efi",
489
+ "wasip2",
490
+ "wasip3",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "glob"
495
+ version = "0.3.3"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
498
+
499
+ [[package]]
500
+ name = "globset"
501
+ version = "0.4.18"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
504
+ dependencies = [
505
+ "aho-corasick",
506
+ "bstr",
507
+ "log",
508
+ "regex-automata",
509
+ "regex-syntax",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "hashbrown"
514
+ version = "0.15.5"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
517
+ dependencies = [
518
+ "foldhash",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "hashbrown"
523
+ version = "0.17.1"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
526
+
527
+ [[package]]
528
+ name = "heck"
529
+ version = "0.5.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
532
+
533
+ [[package]]
534
+ name = "id-arena"
535
+ version = "2.3.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
538
+
539
+ [[package]]
540
+ name = "ignore"
541
+ version = "0.4.25"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
544
+ dependencies = [
545
+ "crossbeam-deque",
546
+ "globset",
547
+ "log",
548
+ "memchr",
549
+ "regex-automata",
550
+ "same-file",
551
+ "walkdir",
552
+ "winapi-util",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "indexmap"
557
+ version = "2.14.0"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
560
+ dependencies = [
561
+ "equivalent",
562
+ "hashbrown 0.17.1",
563
+ "serde",
564
+ "serde_core",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "insta"
569
+ version = "1.47.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
572
+ dependencies = [
573
+ "console",
574
+ "once_cell",
575
+ "serde",
576
+ "similar",
577
+ "tempfile",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "is_terminal_polyfill"
582
+ version = "1.70.2"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
585
+
586
+ [[package]]
587
+ name = "itoa"
588
+ version = "1.0.18"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
591
+
592
+ [[package]]
593
+ name = "lazy_static"
594
+ version = "1.5.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
597
+
598
+ [[package]]
599
+ name = "leb128fmt"
600
+ version = "0.1.0"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
603
+
604
+ [[package]]
605
+ name = "libc"
606
+ version = "0.2.186"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
609
+
610
+ [[package]]
611
+ name = "libmimalloc-sys"
612
+ version = "0.1.49"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
615
+ dependencies = [
616
+ "cc",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "linux-raw-sys"
621
+ version = "0.12.1"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
624
+
625
+ [[package]]
626
+ name = "log"
627
+ version = "0.4.29"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
630
+
631
+ [[package]]
632
+ name = "matchers"
633
+ version = "0.2.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
636
+ dependencies = [
637
+ "regex-automata",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "memchr"
642
+ version = "2.8.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
645
+
646
+ [[package]]
647
+ name = "mimalloc"
648
+ version = "0.1.52"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
651
+ dependencies = [
652
+ "libmimalloc-sys",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "normalize-line-endings"
657
+ version = "0.3.0"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
660
+
661
+ [[package]]
662
+ name = "nu-ansi-term"
663
+ version = "0.50.3"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
666
+ dependencies = [
667
+ "windows-sys",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "num-traits"
672
+ version = "0.2.19"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
675
+ dependencies = [
676
+ "autocfg",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "once_cell"
681
+ version = "1.21.4"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
684
+
685
+ [[package]]
686
+ name = "once_cell_polyfill"
687
+ version = "1.70.2"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
690
+
691
+ [[package]]
692
+ name = "pin-project-lite"
693
+ version = "0.2.17"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
696
+
697
+ [[package]]
698
+ name = "portable-atomic"
699
+ version = "1.15.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
702
+
703
+ [[package]]
704
+ name = "predicates"
705
+ version = "3.1.4"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
708
+ dependencies = [
709
+ "anstyle",
710
+ "difflib",
711
+ "float-cmp",
712
+ "normalize-line-endings",
713
+ "predicates-core",
714
+ "regex",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "predicates-core"
719
+ version = "1.0.10"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
722
+
723
+ [[package]]
724
+ name = "predicates-tree"
725
+ version = "1.0.13"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
728
+ dependencies = [
729
+ "predicates-core",
730
+ "termtree",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "prettyplease"
735
+ version = "0.2.37"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
738
+ dependencies = [
739
+ "proc-macro2",
740
+ "syn",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "proc-macro2"
745
+ version = "1.0.106"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
748
+ dependencies = [
749
+ "unicode-ident",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "pyo3"
754
+ version = "0.29.2"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
757
+ dependencies = [
758
+ "libc",
759
+ "once_cell",
760
+ "portable-atomic",
761
+ "pyo3-build-config",
762
+ "pyo3-ffi",
763
+ "pyo3-macros",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "pyo3-build-config"
768
+ version = "0.29.2"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
771
+ dependencies = [
772
+ "target-lexicon",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "pyo3-ffi"
777
+ version = "0.29.2"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
780
+ dependencies = [
781
+ "libc",
782
+ "pyo3-build-config",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "pyo3-macros"
787
+ version = "0.29.2"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
790
+ dependencies = [
791
+ "proc-macro2",
792
+ "pyo3-macros-backend",
793
+ "quote",
794
+ "syn",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "pyo3-macros-backend"
799
+ version = "0.29.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
802
+ dependencies = [
803
+ "heck",
804
+ "proc-macro2",
805
+ "quote",
806
+ "syn",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "quote"
811
+ version = "1.0.45"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
814
+ dependencies = [
815
+ "proc-macro2",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "r-efi"
820
+ version = "6.0.0"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
823
+
824
+ [[package]]
825
+ name = "rayon"
826
+ version = "1.12.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
829
+ dependencies = [
830
+ "either",
831
+ "rayon-core",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "rayon-core"
836
+ version = "1.13.0"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
839
+ dependencies = [
840
+ "crossbeam-deque",
841
+ "crossbeam-utils",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "regex"
846
+ version = "1.12.3"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
849
+ dependencies = [
850
+ "aho-corasick",
851
+ "memchr",
852
+ "regex-automata",
853
+ "regex-syntax",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "regex-automata"
858
+ version = "0.4.14"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
861
+ dependencies = [
862
+ "aho-corasick",
863
+ "memchr",
864
+ "regex-syntax",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "regex-syntax"
869
+ version = "0.8.10"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
872
+
873
+ [[package]]
874
+ name = "rustix"
875
+ version = "1.1.4"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
878
+ dependencies = [
879
+ "bitflags",
880
+ "errno",
881
+ "libc",
882
+ "linux-raw-sys",
883
+ "windows-sys",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "same-file"
888
+ version = "1.0.6"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
891
+ dependencies = [
892
+ "winapi-util",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "semver"
897
+ version = "1.0.28"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
900
+
901
+ [[package]]
902
+ name = "serde"
903
+ version = "1.0.228"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
906
+ dependencies = [
907
+ "serde_core",
908
+ "serde_derive",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "serde_core"
913
+ version = "1.0.228"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
916
+ dependencies = [
917
+ "serde_derive",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "serde_derive"
922
+ version = "1.0.228"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
925
+ dependencies = [
926
+ "proc-macro2",
927
+ "quote",
928
+ "syn",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "serde_json"
933
+ version = "1.0.149"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
936
+ dependencies = [
937
+ "indexmap",
938
+ "itoa",
939
+ "memchr",
940
+ "serde",
941
+ "serde_core",
942
+ "zmij",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "serde_spanned"
947
+ version = "0.6.9"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
950
+ dependencies = [
951
+ "serde",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "sharded-slab"
956
+ version = "0.1.7"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
959
+ dependencies = [
960
+ "lazy_static",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "shlex"
965
+ version = "1.3.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
968
+
969
+ [[package]]
970
+ name = "similar"
971
+ version = "2.7.0"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
974
+
975
+ [[package]]
976
+ name = "smallvec"
977
+ version = "1.15.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
980
+
981
+ [[package]]
982
+ name = "streaming-iterator"
983
+ version = "0.1.9"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
986
+
987
+ [[package]]
988
+ name = "strsim"
989
+ version = "0.11.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
992
+
993
+ [[package]]
994
+ name = "syn"
995
+ version = "2.0.117"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
998
+ dependencies = [
999
+ "proc-macro2",
1000
+ "quote",
1001
+ "unicode-ident",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "target-lexicon"
1006
+ version = "0.13.5"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1009
+
1010
+ [[package]]
1011
+ name = "tempfile"
1012
+ version = "3.27.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1015
+ dependencies = [
1016
+ "fastrand",
1017
+ "getrandom",
1018
+ "once_cell",
1019
+ "rustix",
1020
+ "windows-sys",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "terminal_size"
1025
+ version = "0.4.4"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
1028
+ dependencies = [
1029
+ "rustix",
1030
+ "windows-sys",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "termtree"
1035
+ version = "0.5.1"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1038
+
1039
+ [[package]]
1040
+ name = "thiserror"
1041
+ version = "1.0.69"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1044
+ dependencies = [
1045
+ "thiserror-impl",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "thiserror-impl"
1050
+ version = "1.0.69"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1053
+ dependencies = [
1054
+ "proc-macro2",
1055
+ "quote",
1056
+ "syn",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "thread_local"
1061
+ version = "1.1.9"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1064
+ dependencies = [
1065
+ "cfg-if",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "toml"
1070
+ version = "0.8.23"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1073
+ dependencies = [
1074
+ "serde",
1075
+ "serde_spanned",
1076
+ "toml_datetime",
1077
+ "toml_edit",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "toml_datetime"
1082
+ version = "0.6.11"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1085
+ dependencies = [
1086
+ "serde",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "toml_edit"
1091
+ version = "0.22.27"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1094
+ dependencies = [
1095
+ "indexmap",
1096
+ "serde",
1097
+ "serde_spanned",
1098
+ "toml_datetime",
1099
+ "toml_write",
1100
+ "winnow",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "toml_write"
1105
+ version = "0.1.2"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1108
+
1109
+ [[package]]
1110
+ name = "tracing"
1111
+ version = "0.1.44"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1114
+ dependencies = [
1115
+ "pin-project-lite",
1116
+ "tracing-attributes",
1117
+ "tracing-core",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "tracing-attributes"
1122
+ version = "0.1.31"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1125
+ dependencies = [
1126
+ "proc-macro2",
1127
+ "quote",
1128
+ "syn",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "tracing-core"
1133
+ version = "0.1.36"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1136
+ dependencies = [
1137
+ "once_cell",
1138
+ "valuable",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "tracing-log"
1143
+ version = "0.2.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1146
+ dependencies = [
1147
+ "log",
1148
+ "once_cell",
1149
+ "tracing-core",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "tracing-subscriber"
1154
+ version = "0.3.23"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1157
+ dependencies = [
1158
+ "matchers",
1159
+ "nu-ansi-term",
1160
+ "once_cell",
1161
+ "regex-automata",
1162
+ "sharded-slab",
1163
+ "smallvec",
1164
+ "thread_local",
1165
+ "tracing",
1166
+ "tracing-core",
1167
+ "tracing-log",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "tree-sitter"
1172
+ version = "0.26.8"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "887bd495d0582c5e3e0d8ece2233666169fa56a9644d172fc22ad179ab2d0538"
1175
+ dependencies = [
1176
+ "cc",
1177
+ "regex",
1178
+ "regex-syntax",
1179
+ "serde_json",
1180
+ "streaming-iterator",
1181
+ "tree-sitter-language",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "tree-sitter-asm"
1186
+ version = "0.24.0"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "743a0377253cd5505841e61ba1093a04b3a949b2b751752ff956040dda14f1bc"
1189
+ dependencies = [
1190
+ "cc",
1191
+ "tree-sitter-language",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "tree-sitter-bash"
1196
+ version = "0.25.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "9e5ec769279cc91b561d3df0d8a5deb26b0ad40d183127f409494d6d8fc53062"
1199
+ dependencies = [
1200
+ "cc",
1201
+ "tree-sitter-language",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "tree-sitter-c"
1206
+ version = "0.24.2"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "a9b2eb57a55fed6b00812912e730b7a275cf4fe98bfd6a5d76263d4438371728"
1209
+ dependencies = [
1210
+ "cc",
1211
+ "tree-sitter-language",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "tree-sitter-c-sharp"
1216
+ version = "0.23.5"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "c1aac67f1ad71de1d6d39708d34811081c26dfa495658de6c14c34200849357c"
1219
+ dependencies = [
1220
+ "cc",
1221
+ "tree-sitter-language",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "tree-sitter-clojure-orchard"
1226
+ version = "0.2.5"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "c3e2db28a1ab22649790656936325bdc69e992c38006258694ea39a7620e784d"
1229
+ dependencies = [
1230
+ "cc",
1231
+ "tree-sitter-language",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "tree-sitter-cmake"
1236
+ version = "0.7.1"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "7c1b35d1dd7396d24b3e826bb0f975b915ec7e9125b989d5e9d24ebb6a08509a"
1239
+ dependencies = [
1240
+ "cc",
1241
+ "tree-sitter-language",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "tree-sitter-cpp"
1246
+ version = "0.23.4"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "df2196ea9d47b4ab4a31b9297eaa5a5d19a0b121dceb9f118f6790ad0ab94743"
1249
+ dependencies = [
1250
+ "cc",
1251
+ "tree-sitter-language",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "tree-sitter-dart"
1256
+ version = "0.2.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "325dd1e24ee9ee21111e9c43680ae7d6010aaa9f282b048a99b9c7163c1cf553"
1259
+ dependencies = [
1260
+ "cc",
1261
+ "tree-sitter-language",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "tree-sitter-elixir"
1266
+ version = "0.3.5"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "66dd064a762ed95bfc29857fa3cb7403bb1e5cb88112de0f6341b7e47284ba40"
1269
+ dependencies = [
1270
+ "cc",
1271
+ "tree-sitter-language",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "tree-sitter-erlang"
1276
+ version = "0.16.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "ceb442e728225d601db0661f60d64e166bd9b9a55c587f71d4e4f27378717cce"
1279
+ dependencies = [
1280
+ "cc",
1281
+ "tree-sitter-language",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "tree-sitter-fortran"
1286
+ version = "0.6.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "ea5fea41363a9b59666001dc26c4b356d4e164da27c6ce31145e00aba6bf9b16"
1289
+ dependencies = [
1290
+ "cc",
1291
+ "tree-sitter-language",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "tree-sitter-fsharp"
1296
+ version = "0.3.0"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "054fba748f8bf3604fc14191b4e7da66d1b887de0e285e32cf6dbd2a3db3fc42"
1299
+ dependencies = [
1300
+ "cc",
1301
+ "tree-sitter-language",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "tree-sitter-go"
1306
+ version = "0.25.0"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "c8560a4d2f835cc0d4d2c2e03cbd0dde2f6114b43bc491164238d333e28b16ea"
1309
+ dependencies = [
1310
+ "cc",
1311
+ "tree-sitter-language",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "tree-sitter-graphql"
1316
+ version = "0.1.0"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "efedc4cac157161cc23a0adc4553a2cedc908e1cd754b6cd033a919bb81ce5d6"
1319
+ dependencies = [
1320
+ "cc",
1321
+ "tree-sitter-language",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "tree-sitter-groovy"
1326
+ version = "0.1.2"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "5a20016017f0865ba902ca50354f92429de5de8df994e64ab7fae087a13c40ed"
1329
+ dependencies = [
1330
+ "cc",
1331
+ "tree-sitter-language",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "tree-sitter-haskell"
1336
+ version = "0.23.1"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "977c51e504548cba13fc27cb5a2edab2124cf6716a1934915d07ab99523b05a4"
1339
+ dependencies = [
1340
+ "cc",
1341
+ "tree-sitter-language",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "tree-sitter-hcl"
1346
+ version = "1.1.0"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "5a7b2cc3d7121553b84309fab9d11b3ff3d420403eef9ae50f9fd1cd9d9cf012"
1349
+ dependencies = [
1350
+ "cc",
1351
+ "tree-sitter-language",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "tree-sitter-java"
1356
+ version = "0.23.5"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "0aa6cbcdc8c679b214e616fd3300da67da0e492e066df01bcf5a5921a71e90d6"
1359
+ dependencies = [
1360
+ "cc",
1361
+ "tree-sitter-language",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "tree-sitter-javascript"
1366
+ version = "0.25.0"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "68204f2abc0627a90bdf06e605f5c470aa26fdcb2081ea553a04bdad756693f5"
1369
+ dependencies = [
1370
+ "cc",
1371
+ "tree-sitter-language",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "tree-sitter-julia"
1376
+ version = "0.23.1"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "4144731a178812ee867619b1e98b3b91e54c1652304b26e5ebe3175b701de323"
1379
+ dependencies = [
1380
+ "cc",
1381
+ "tree-sitter-language",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "tree-sitter-kotlin-sg"
1386
+ version = "0.4.1"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "c06ec43ae3c12165d4ac08afe4e1f5fc6757ffe274fa7bd5af9007ef11ba4319"
1389
+ dependencies = [
1390
+ "cc",
1391
+ "tree-sitter-language",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "tree-sitter-language"
1396
+ version = "0.1.7"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
1399
+
1400
+ [[package]]
1401
+ name = "tree-sitter-lua"
1402
+ version = "0.5.0"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "8daaf5f4235188a58603c39760d5fa5d4b920d36a299c934adddae757f32a10c"
1405
+ dependencies = [
1406
+ "cc",
1407
+ "tree-sitter-language",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "tree-sitter-nix"
1412
+ version = "0.3.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "4952a9733f3a98f6683a0ccd1035d84ab7a52f7e84eeed58548d86765ad92de3"
1415
+ dependencies = [
1416
+ "cc",
1417
+ "tree-sitter-language",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "tree-sitter-objc"
1422
+ version = "3.0.2"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "9ca8bb556423fc176f0535e79d525f783a6684d3c9da81bf9d905303c129e1d2"
1425
+ dependencies = [
1426
+ "cc",
1427
+ "tree-sitter-language",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "tree-sitter-ocaml"
1432
+ version = "0.25.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "0b943275476bac8f73e08bc4050e21d89d61ff68e1751b789ba74917b9147a85"
1435
+ dependencies = [
1436
+ "cc",
1437
+ "tree-sitter-language",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "tree-sitter-perl"
1442
+ version = "1.1.2"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "e79d4ae71b42e595c24c354b59905ade8162bd400ebc53ab916ea8aec54da92d"
1445
+ dependencies = [
1446
+ "cc",
1447
+ "tree-sitter",
1448
+ "tree-sitter-language",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "tree-sitter-php"
1453
+ version = "0.24.2"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "0d8c17c3ab69052c5eeaa7ff5cd972dd1bc25d1b97ee779fec391ad3b5df5592"
1456
+ dependencies = [
1457
+ "cc",
1458
+ "tree-sitter-language",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "tree-sitter-powershell"
1463
+ version = "0.26.4"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "3faf304d44b9ddd4a7d97804bb8de7daf564336dd5a526dc6de5b39238243022"
1466
+ dependencies = [
1467
+ "cc",
1468
+ "tree-sitter-language",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "tree-sitter-proto"
1473
+ version = "0.4.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "2e410ccb5fa3cbd6bf7b8e512ecf7ad9d5254395b822bfe9f751b50fa978f31c"
1476
+ dependencies = [
1477
+ "cc",
1478
+ "tree-sitter-language",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "tree-sitter-python"
1483
+ version = "0.25.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c"
1486
+ dependencies = [
1487
+ "cc",
1488
+ "tree-sitter-language",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "tree-sitter-r"
1493
+ version = "1.2.0"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "429133cbda9f8a46e03ef3aae6abb6c3d22875f8585cad472138101bfd517255"
1496
+ dependencies = [
1497
+ "cc",
1498
+ "tree-sitter-language",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "tree-sitter-ruby"
1503
+ version = "0.23.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "be0484ea4ef6bb9c575b4fdabde7e31340a8d2dbc7d52b321ac83da703249f95"
1506
+ dependencies = [
1507
+ "cc",
1508
+ "tree-sitter-language",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "tree-sitter-rust"
1513
+ version = "0.24.2"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "439e577dbe07423ec2582ac62c7531120dbfccfa6e5f92406f93dd271a120e45"
1516
+ dependencies = [
1517
+ "cc",
1518
+ "tree-sitter-language",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "tree-sitter-scala"
1523
+ version = "0.26.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "de5a4a7ff23a55474ce6a741d52aaeca7a82fe9421bb982b86e98c6ac8629397"
1526
+ dependencies = [
1527
+ "cc",
1528
+ "tree-sitter-language",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "tree-sitter-solidity"
1533
+ version = "1.2.13"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "4eacf8875b70879f0cb670c60b233ad0b68752d9e1474e6c3ef168eea8a90b25"
1536
+ dependencies = [
1537
+ "cc",
1538
+ "tree-sitter-language",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "tree-sitter-starlark"
1543
+ version = "1.3.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "8934f282d085cc4b9ee28aa688aa3fbe8aa3766201c2a6252f411d45b4c3a721"
1546
+ dependencies = [
1547
+ "cc",
1548
+ "tree-sitter-language",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "tree-sitter-swift"
1553
+ version = "0.7.2"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "f3b98fb6bc8e6a6a10023f401aa6a1858115e849dfaf7de57dd8b8ea0f257bd9"
1556
+ dependencies = [
1557
+ "cc",
1558
+ "tree-sitter-language",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "tree-sitter-typescript"
1563
+ version = "0.23.2"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "6c5f76ed8d947a75cc446d5fccd8b602ebf0cde64ccf2ffa434d873d7a575eff"
1566
+ dependencies = [
1567
+ "cc",
1568
+ "tree-sitter-language",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "tree-sitter-verilog"
1573
+ version = "1.0.3"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "d4e7e0360395852f1f6ff5b7b82c72dc6557d181073188df1d60ec469ea69c66"
1576
+ dependencies = [
1577
+ "cc",
1578
+ "tree-sitter-language",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "tree-sitter-vhdl"
1583
+ version = "1.4.0"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "0feb025ddf87c45bb98335ef2a2493cac08ec6b74d33201d1bf75df2be08de23"
1586
+ dependencies = [
1587
+ "cc",
1588
+ "tree-sitter-language",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "tree-sitter-yaml"
1593
+ version = "0.7.2"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "53c223db85f05e34794f065454843b0668ebc15d240ada63e2b5939f43ce7c97"
1596
+ dependencies = [
1597
+ "cc",
1598
+ "tree-sitter-language",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "tree-sitter-zig"
1603
+ version = "1.1.2"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "ab11fc124851b0db4dd5e55983bbd9631192e93238389dcd44521715e5d53e28"
1606
+ dependencies = [
1607
+ "cc",
1608
+ "tree-sitter-language",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "unicode-ident"
1613
+ version = "1.0.24"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1616
+
1617
+ [[package]]
1618
+ name = "unicode-xid"
1619
+ version = "0.2.6"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1622
+
1623
+ [[package]]
1624
+ name = "utf8parse"
1625
+ version = "0.2.2"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1628
+
1629
+ [[package]]
1630
+ name = "valuable"
1631
+ version = "0.1.1"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1634
+
1635
+ [[package]]
1636
+ name = "wait-timeout"
1637
+ version = "0.2.1"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1640
+ dependencies = [
1641
+ "libc",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "walkdir"
1646
+ version = "2.5.0"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1649
+ dependencies = [
1650
+ "same-file",
1651
+ "winapi-util",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "wasip2"
1656
+ version = "1.0.3+wasi-0.2.9"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1659
+ dependencies = [
1660
+ "wit-bindgen 0.57.1",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "wasip3"
1665
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1668
+ dependencies = [
1669
+ "wit-bindgen 0.51.0",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "wasm-encoder"
1674
+ version = "0.244.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1677
+ dependencies = [
1678
+ "leb128fmt",
1679
+ "wasmparser",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "wasm-metadata"
1684
+ version = "0.244.0"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1687
+ dependencies = [
1688
+ "anyhow",
1689
+ "indexmap",
1690
+ "wasm-encoder",
1691
+ "wasmparser",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "wasmparser"
1696
+ version = "0.244.0"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1699
+ dependencies = [
1700
+ "bitflags",
1701
+ "hashbrown 0.15.5",
1702
+ "indexmap",
1703
+ "semver",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "winapi-util"
1708
+ version = "0.1.11"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1711
+ dependencies = [
1712
+ "windows-sys",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "windows-link"
1717
+ version = "0.2.1"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1720
+
1721
+ [[package]]
1722
+ name = "windows-sys"
1723
+ version = "0.61.2"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1726
+ dependencies = [
1727
+ "windows-link",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "winnow"
1732
+ version = "0.7.15"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1735
+ dependencies = [
1736
+ "memchr",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "wit-bindgen"
1741
+ version = "0.51.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1744
+ dependencies = [
1745
+ "wit-bindgen-rust-macro",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "wit-bindgen"
1750
+ version = "0.57.1"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1753
+
1754
+ [[package]]
1755
+ name = "wit-bindgen-core"
1756
+ version = "0.51.0"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1759
+ dependencies = [
1760
+ "anyhow",
1761
+ "heck",
1762
+ "wit-parser",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "wit-bindgen-rust"
1767
+ version = "0.51.0"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1770
+ dependencies = [
1771
+ "anyhow",
1772
+ "heck",
1773
+ "indexmap",
1774
+ "prettyplease",
1775
+ "syn",
1776
+ "wasm-metadata",
1777
+ "wit-bindgen-core",
1778
+ "wit-component",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "wit-bindgen-rust-macro"
1783
+ version = "0.51.0"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1786
+ dependencies = [
1787
+ "anyhow",
1788
+ "prettyplease",
1789
+ "proc-macro2",
1790
+ "quote",
1791
+ "syn",
1792
+ "wit-bindgen-core",
1793
+ "wit-bindgen-rust",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "wit-component"
1798
+ version = "0.244.0"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1801
+ dependencies = [
1802
+ "anyhow",
1803
+ "bitflags",
1804
+ "indexmap",
1805
+ "log",
1806
+ "serde",
1807
+ "serde_derive",
1808
+ "serde_json",
1809
+ "wasm-encoder",
1810
+ "wasm-metadata",
1811
+ "wasmparser",
1812
+ "wit-parser",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "wit-parser"
1817
+ version = "0.244.0"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1820
+ dependencies = [
1821
+ "anyhow",
1822
+ "id-arena",
1823
+ "indexmap",
1824
+ "log",
1825
+ "semver",
1826
+ "serde",
1827
+ "serde_derive",
1828
+ "serde_json",
1829
+ "unicode-xid",
1830
+ "wasmparser",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "zmij"
1835
+ version = "1.0.21"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"