vorpal-py 0.1.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 (234) hide show
  1. vorpal_py-0.1.0/Cargo.lock +4494 -0
  2. vorpal_py-0.1.0/Cargo.toml +89 -0
  3. vorpal_py-0.1.0/PKG-INFO +100 -0
  4. vorpal_py-0.1.0/README.md +73 -0
  5. vorpal_py-0.1.0/crates/ann/Cargo.toml +16 -0
  6. vorpal_py-0.1.0/crates/ann/src/embed.rs +278 -0
  7. vorpal_py-0.1.0/crates/ann/src/index.rs +553 -0
  8. vorpal_py-0.1.0/crates/ann/src/lib.rs +73 -0
  9. vorpal_py-0.1.0/crates/ann/src/qmatrix.rs +427 -0
  10. vorpal_py-0.1.0/crates/ann/src/quant.rs +55 -0
  11. vorpal_py-0.1.0/crates/ann/src/scan.rs +141 -0
  12. vorpal_py-0.1.0/crates/ann/src/vamana.rs +361 -0
  13. vorpal_py-0.1.0/crates/ann/tests/ann.rs +166 -0
  14. vorpal_py-0.1.0/crates/canonical/Cargo.toml +16 -0
  15. vorpal_py-0.1.0/crates/canonical/src/index.rs +183 -0
  16. vorpal_py-0.1.0/crates/canonical/src/key.rs +28 -0
  17. vorpal_py-0.1.0/crates/canonical/src/lib.rs +19 -0
  18. vorpal_py-0.1.0/crates/canonical/tests/canonical.rs +136 -0
  19. vorpal_py-0.1.0/crates/config/Cargo.toml +30 -0
  20. vorpal_py-0.1.0/crates/config/src/check_var.rs +361 -0
  21. vorpal_py-0.1.0/crates/config/src/combined.rs +710 -0
  22. vorpal_py-0.1.0/crates/config/src/fixer.rs +353 -0
  23. vorpal_py-0.1.0/crates/config/src/graph_filter.rs +228 -0
  24. vorpal_py-0.1.0/crates/config/src/label.rs +156 -0
  25. vorpal_py-0.1.0/crates/config/src/lib.rs +244 -0
  26. vorpal_py-0.1.0/crates/config/src/maybe.rs +150 -0
  27. vorpal_py-0.1.0/crates/config/src/rewriter.rs +71 -0
  28. vorpal_py-0.1.0/crates/config/src/rule/deserialize_env.rs +437 -0
  29. vorpal_py-0.1.0/crates/config/src/rule/mod.rs +774 -0
  30. vorpal_py-0.1.0/crates/config/src/rule/nth_child.rs +461 -0
  31. vorpal_py-0.1.0/crates/config/src/rule/parameterized_util.rs +446 -0
  32. vorpal_py-0.1.0/crates/config/src/rule/range.rs +276 -0
  33. vorpal_py-0.1.0/crates/config/src/rule/referent_rule.rs +488 -0
  34. vorpal_py-0.1.0/crates/config/src/rule/relational_rule.rs +829 -0
  35. vorpal_py-0.1.0/crates/config/src/rule/selector.rs +662 -0
  36. vorpal_py-0.1.0/crates/config/src/rule/stop_by.rs +271 -0
  37. vorpal_py-0.1.0/crates/config/src/rule_collection.rs +385 -0
  38. vorpal_py-0.1.0/crates/config/src/rule_config.rs +1024 -0
  39. vorpal_py-0.1.0/crates/config/src/rule_core.rs +786 -0
  40. vorpal_py-0.1.0/crates/config/src/transform/mod.rs +180 -0
  41. vorpal_py-0.1.0/crates/config/src/transform/parse.rs +257 -0
  42. vorpal_py-0.1.0/crates/config/src/transform/rewrite.rs +371 -0
  43. vorpal_py-0.1.0/crates/config/src/transform/string_case.rs +284 -0
  44. vorpal_py-0.1.0/crates/config/src/transform/trans.rs +466 -0
  45. vorpal_py-0.1.0/crates/core/Cargo.toml +27 -0
  46. vorpal_py-0.1.0/crates/core/src/language.rs +79 -0
  47. vorpal_py-0.1.0/crates/core/src/lib.rs +95 -0
  48. vorpal_py-0.1.0/crates/core/src/match_tree/match_node.rs +339 -0
  49. vorpal_py-0.1.0/crates/core/src/match_tree/mod.rs +363 -0
  50. vorpal_py-0.1.0/crates/core/src/match_tree/strictness.rs +229 -0
  51. vorpal_py-0.1.0/crates/core/src/matcher/kind.rs +145 -0
  52. vorpal_py-0.1.0/crates/core/src/matcher/node_match.rs +145 -0
  53. vorpal_py-0.1.0/crates/core/src/matcher/pattern.rs +835 -0
  54. vorpal_py-0.1.0/crates/core/src/matcher/text.rs +147 -0
  55. vorpal_py-0.1.0/crates/core/src/matcher.rs +140 -0
  56. vorpal_py-0.1.0/crates/core/src/meta_var.rs +389 -0
  57. vorpal_py-0.1.0/crates/core/src/node.rs +577 -0
  58. vorpal_py-0.1.0/crates/core/src/ops.rs +581 -0
  59. vorpal_py-0.1.0/crates/core/src/pinned.rs +162 -0
  60. vorpal_py-0.1.0/crates/core/src/replacer/indent.rs +423 -0
  61. vorpal_py-0.1.0/crates/core/src/replacer/structural.rs +213 -0
  62. vorpal_py-0.1.0/crates/core/src/replacer/template.rs +359 -0
  63. vorpal_py-0.1.0/crates/core/src/replacer.rs +113 -0
  64. vorpal_py-0.1.0/crates/core/src/source.rs +186 -0
  65. vorpal_py-0.1.0/crates/core/src/tree_sitter/mod.rs +534 -0
  66. vorpal_py-0.1.0/crates/core/src/tree_sitter/traversal.rs +737 -0
  67. vorpal_py-0.1.0/crates/dynamic/Cargo.toml +24 -0
  68. vorpal_py-0.1.0/crates/dynamic/src/custom_lang.rs +117 -0
  69. vorpal_py-0.1.0/crates/dynamic/src/lib.rs +384 -0
  70. vorpal_py-0.1.0/crates/graph/Cargo.toml +17 -0
  71. vorpal_py-0.1.0/crates/graph/src/closure.rs +230 -0
  72. vorpal_py-0.1.0/crates/graph/src/csr.rs +118 -0
  73. vorpal_py-0.1.0/crates/graph/src/edge.rs +128 -0
  74. vorpal_py-0.1.0/crates/graph/src/graph.rs +192 -0
  75. vorpal_py-0.1.0/crates/graph/src/lib.rs +27 -0
  76. vorpal_py-0.1.0/crates/graph/src/relabel.rs +126 -0
  77. vorpal_py-0.1.0/crates/graph/src/store.rs +109 -0
  78. vorpal_py-0.1.0/crates/graph/tests/closure.rs +159 -0
  79. vorpal_py-0.1.0/crates/graph/tests/graph_lsm.rs +181 -0
  80. vorpal_py-0.1.0/crates/index/Cargo.toml +37 -0
  81. vorpal_py-0.1.0/crates/index/src/annfiles.rs +319 -0
  82. vorpal_py-0.1.0/crates/index/src/autowarm.rs +95 -0
  83. vorpal_py-0.1.0/crates/index/src/graph_predicates.rs +422 -0
  84. vorpal_py-0.1.0/crates/index/src/lib.rs +2145 -0
  85. vorpal_py-0.1.0/crates/index/src/main.rs +199 -0
  86. vorpal_py-0.1.0/crates/index/src/postings.rs +242 -0
  87. vorpal_py-0.1.0/crates/index/src/records.rs +250 -0
  88. vorpal_py-0.1.0/crates/index/tests/cli.rs +1687 -0
  89. vorpal_py-0.1.0/crates/index/tests/embedding.rs +55 -0
  90. vorpal_py-0.1.0/crates/index/tests/format_policy.rs +103 -0
  91. vorpal_py-0.1.0/crates/index/tests/resolution_eval.rs +443 -0
  92. vorpal_py-0.1.0/crates/index/tests/retrieval_eval.rs +244 -0
  93. vorpal_py-0.1.0/crates/ingest/Cargo.toml +26 -0
  94. vorpal_py-0.1.0/crates/ingest/src/lib.rs +98 -0
  95. vorpal_py-0.1.0/crates/ingest/src/manifest.rs +202 -0
  96. vorpal_py-0.1.0/crates/ingest/src/outline_extractor.rs +259 -0
  97. vorpal_py-0.1.0/crates/ingest/src/pack.rs +444 -0
  98. vorpal_py-0.1.0/crates/ingest/src/pipeline.rs +1293 -0
  99. vorpal_py-0.1.0/crates/ingest/src/product.rs +914 -0
  100. vorpal_py-0.1.0/crates/ingest/src/references.rs +2223 -0
  101. vorpal_py-0.1.0/crates/ingest/tests/dir.rs +49 -0
  102. vorpal_py-0.1.0/crates/ingest/tests/engine.rs +136 -0
  103. vorpal_py-0.1.0/crates/ingest/tests/imports.rs +32 -0
  104. vorpal_py-0.1.0/crates/ingest/tests/lang_matrix.rs +310 -0
  105. vorpal_py-0.1.0/crates/ingest/tests/language_matrix.rs +123 -0
  106. vorpal_py-0.1.0/crates/ingest/tests/linking.rs +93 -0
  107. vorpal_py-0.1.0/crates/ingest/tests/manifest.rs +36 -0
  108. vorpal_py-0.1.0/crates/ingest/tests/pipeline.rs +75 -0
  109. vorpal_py-0.1.0/crates/ingest/tests/references.rs +64 -0
  110. vorpal_py-0.1.0/crates/ingest/tests/sharded.rs +92 -0
  111. vorpal_py-0.1.0/crates/ingest/tests/streamed.rs +234 -0
  112. vorpal_py-0.1.0/crates/kg/Cargo.toml +24 -0
  113. vorpal_py-0.1.0/crates/kg/src/evidence.rs +422 -0
  114. vorpal_py-0.1.0/crates/kg/src/kg.rs +759 -0
  115. vorpal_py-0.1.0/crates/kg/src/lib.rs +51 -0
  116. vorpal_py-0.1.0/crates/kg/src/model.rs +133 -0
  117. vorpal_py-0.1.0/crates/kg/src/writer.rs +583 -0
  118. vorpal_py-0.1.0/crates/kg/tests/assembly.rs +240 -0
  119. vorpal_py-0.1.0/crates/language/Cargo.toml +88 -0
  120. vorpal_py-0.1.0/crates/language/src/bash.rs +40 -0
  121. vorpal_py-0.1.0/crates/language/src/cpp.rs +45 -0
  122. vorpal_py-0.1.0/crates/language/src/csharp.rs +27 -0
  123. vorpal_py-0.1.0/crates/language/src/css.rs +29 -0
  124. vorpal_py-0.1.0/crates/language/src/dart.rs +34 -0
  125. vorpal_py-0.1.0/crates/language/src/elixir.rs +92 -0
  126. vorpal_py-0.1.0/crates/language/src/go.rs +59 -0
  127. vorpal_py-0.1.0/crates/language/src/haskell.rs +66 -0
  128. vorpal_py-0.1.0/crates/language/src/hcl.rs +61 -0
  129. vorpal_py-0.1.0/crates/language/src/html.rs +161 -0
  130. vorpal_py-0.1.0/crates/language/src/json.rs +38 -0
  131. vorpal_py-0.1.0/crates/language/src/kotlin.rs +54 -0
  132. vorpal_py-0.1.0/crates/language/src/lib.rs +759 -0
  133. vorpal_py-0.1.0/crates/language/src/lua.rs +36 -0
  134. vorpal_py-0.1.0/crates/language/src/markdown.rs +34 -0
  135. vorpal_py-0.1.0/crates/language/src/nix.rs +54 -0
  136. vorpal_py-0.1.0/crates/language/src/parsers.rs +116 -0
  137. vorpal_py-0.1.0/crates/language/src/php.rs +17 -0
  138. vorpal_py-0.1.0/crates/language/src/python.rs +123 -0
  139. vorpal_py-0.1.0/crates/language/src/ruby.rs +32 -0
  140. vorpal_py-0.1.0/crates/language/src/rust.rs +90 -0
  141. vorpal_py-0.1.0/crates/language/src/scala.rs +52 -0
  142. vorpal_py-0.1.0/crates/language/src/solidity.rs +53 -0
  143. vorpal_py-0.1.0/crates/language/src/swift.rs +59 -0
  144. vorpal_py-0.1.0/crates/language/src/yaml.rs +57 -0
  145. vorpal_py-0.1.0/crates/language/tests/grammar_corpus.rs +363 -0
  146. vorpal_py-0.1.0/crates/language/tests/grammar_provenance.rs +259 -0
  147. vorpal_py-0.1.0/crates/mem/Cargo.toml +17 -0
  148. vorpal_py-0.1.0/crates/mem/src/arena.rs +89 -0
  149. vorpal_py-0.1.0/crates/mem/src/csr.rs +110 -0
  150. vorpal_py-0.1.0/crates/mem/src/lib.rs +33 -0
  151. vorpal_py-0.1.0/crates/mem/src/pod.rs +123 -0
  152. vorpal_py-0.1.0/crates/mem/src/policy.rs +258 -0
  153. vorpal_py-0.1.0/crates/mem/src/prefetch.rs +76 -0
  154. vorpal_py-0.1.0/crates/mem/src/probe.rs +247 -0
  155. vorpal_py-0.1.0/crates/mem/src/store.rs +205 -0
  156. vorpal_py-0.1.0/crates/mem/tests/adaptive.rs +63 -0
  157. vorpal_py-0.1.0/crates/outline/Cargo.toml +24 -0
  158. vorpal_py-0.1.0/crates/outline/src/combined_extractor.rs +709 -0
  159. vorpal_py-0.1.0/crates/outline/src/default_rule.rs +608 -0
  160. vorpal_py-0.1.0/crates/outline/src/default_rules/bash.yml +24 -0
  161. vorpal_py-0.1.0/crates/outline/src/default_rules/c.yml +183 -0
  162. vorpal_py-0.1.0/crates/outline/src/default_rules/cpp.yml +234 -0
  163. vorpal_py-0.1.0/crates/outline/src/default_rules/csharp.yml +198 -0
  164. vorpal_py-0.1.0/crates/outline/src/default_rules/css.yml +36 -0
  165. vorpal_py-0.1.0/crates/outline/src/default_rules/dart.yml +117 -0
  166. vorpal_py-0.1.0/crates/outline/src/default_rules/elixir.yml +90 -0
  167. vorpal_py-0.1.0/crates/outline/src/default_rules/go.yml +140 -0
  168. vorpal_py-0.1.0/crates/outline/src/default_rules/haskell.yml +58 -0
  169. vorpal_py-0.1.0/crates/outline/src/default_rules/hcl.yml +87 -0
  170. vorpal_py-0.1.0/crates/outline/src/default_rules/html.yml +58 -0
  171. vorpal_py-0.1.0/crates/outline/src/default_rules/java.yml +135 -0
  172. vorpal_py-0.1.0/crates/outline/src/default_rules/javascript.yml +269 -0
  173. vorpal_py-0.1.0/crates/outline/src/default_rules/json.yml +36 -0
  174. vorpal_py-0.1.0/crates/outline/src/default_rules/kotlin.yml +281 -0
  175. vorpal_py-0.1.0/crates/outline/src/default_rules/lua.yml +24 -0
  176. vorpal_py-0.1.0/crates/outline/src/default_rules/markdown.yml +39 -0
  177. vorpal_py-0.1.0/crates/outline/src/default_rules/nix.yml +24 -0
  178. vorpal_py-0.1.0/crates/outline/src/default_rules/php.yml +133 -0
  179. vorpal_py-0.1.0/crates/outline/src/default_rules/python.yml +151 -0
  180. vorpal_py-0.1.0/crates/outline/src/default_rules/ruby.yml +119 -0
  181. vorpal_py-0.1.0/crates/outline/src/default_rules/rust.yml +472 -0
  182. vorpal_py-0.1.0/crates/outline/src/default_rules/scala.yml +177 -0
  183. vorpal_py-0.1.0/crates/outline/src/default_rules/solidity.yml +149 -0
  184. vorpal_py-0.1.0/crates/outline/src/default_rules/swift.yml +173 -0
  185. vorpal_py-0.1.0/crates/outline/src/default_rules/typescript.yml +1081 -0
  186. vorpal_py-0.1.0/crates/outline/src/default_rules/yaml.yml +26 -0
  187. vorpal_py-0.1.0/crates/outline/src/extractor.rs +732 -0
  188. vorpal_py-0.1.0/crates/outline/src/lib.rs +10 -0
  189. vorpal_py-0.1.0/crates/outline/src/model.rs +208 -0
  190. vorpal_py-0.1.0/crates/outline/src/options.rs +287 -0
  191. vorpal_py-0.1.0/crates/outline/tests/c_family_outline_rules.rs +170 -0
  192. vorpal_py-0.1.0/crates/outline/tests/common/mod.rs +108 -0
  193. vorpal_py-0.1.0/crates/outline/tests/default_outline_rules.rs +36 -0
  194. vorpal_py-0.1.0/crates/outline/tests/javascript_outline_rules.rs +103 -0
  195. vorpal_py-0.1.0/crates/outline/tests/jvm_swift_outline_rules.rs +323 -0
  196. vorpal_py-0.1.0/crates/outline/tests/python_go_outline_rules.rs +203 -0
  197. vorpal_py-0.1.0/crates/outline/tests/ruby_php_outline_rules.rs +67 -0
  198. vorpal_py-0.1.0/crates/outline/tests/typescript_outline_rules.rs +189 -0
  199. vorpal_py-0.1.0/crates/pyo3/Cargo.toml +35 -0
  200. vorpal_py-0.1.0/crates/pyo3/README.md +73 -0
  201. vorpal_py-0.1.0/crates/pyo3/src/lib.rs +75 -0
  202. vorpal_py-0.1.0/crates/pyo3/src/py_lang.rs +138 -0
  203. vorpal_py-0.1.0/crates/pyo3/src/py_node.rs +388 -0
  204. vorpal_py-0.1.0/crates/pyo3/src/range.rs +112 -0
  205. vorpal_py-0.1.0/crates/pyo3/src/repo.rs +407 -0
  206. vorpal_py-0.1.0/crates/pyo3/src/unicode_position.rs +63 -0
  207. vorpal_py-0.1.0/crates/pyo3/tests/test_fix.py +52 -0
  208. vorpal_py-0.1.0/crates/pyo3/tests/test_range.py +64 -0
  209. vorpal_py-0.1.0/crates/pyo3/tests/test_register_lang.py +46 -0
  210. vorpal_py-0.1.0/crates/pyo3/tests/test_rule.py +172 -0
  211. vorpal_py-0.1.0/crates/pyo3/tests/test_simple.py +134 -0
  212. vorpal_py-0.1.0/crates/pyo3/tests/test_traversal.py +131 -0
  213. vorpal_py-0.1.0/crates/pyo3/tests/test_wrong_usage.py +49 -0
  214. vorpal_py-0.1.0/crates/resolve/Cargo.toml +20 -0
  215. vorpal_py-0.1.0/crates/resolve/src/intern.rs +221 -0
  216. vorpal_py-0.1.0/crates/resolve/src/lib.rs +34 -0
  217. vorpal_py-0.1.0/crates/resolve/src/reference.rs +155 -0
  218. vorpal_py-0.1.0/crates/resolve/src/resolver.rs +1283 -0
  219. vorpal_py-0.1.0/crates/resolve/src/spill.rs +271 -0
  220. vorpal_py-0.1.0/crates/resolve/src/table.rs +243 -0
  221. vorpal_py-0.1.0/crates/resolve/tests/resolve.rs +251 -0
  222. vorpal_py-0.1.0/crates/segment/Cargo.toml +19 -0
  223. vorpal_py-0.1.0/crates/segment/src/builder.rs +231 -0
  224. vorpal_py-0.1.0/crates/segment/src/directory.rs +127 -0
  225. vorpal_py-0.1.0/crates/segment/src/error.rs +30 -0
  226. vorpal_py-0.1.0/crates/segment/src/format.rs +214 -0
  227. vorpal_py-0.1.0/crates/segment/src/id.rs +35 -0
  228. vorpal_py-0.1.0/crates/segment/src/lib.rs +27 -0
  229. vorpal_py-0.1.0/crates/segment/src/segment.rs +226 -0
  230. vorpal_py-0.1.0/crates/segment/tests/roundtrip.rs +138 -0
  231. vorpal_py-0.1.0/pyproject.toml +46 -0
  232. vorpal_py-0.1.0/vorpal_py/__init__.py +108 -0
  233. vorpal_py-0.1.0/vorpal_py/py.typed +0 -0
  234. vorpal_py-0.1.0/vorpal_py/vorpal_py.pyi +162 -0
@@ -0,0 +1,4494 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "Inflector"
7
+ version = "0.11.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10
+ dependencies = [
11
+ "lazy_static",
12
+ "regex",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "adler2"
17
+ version = "2.0.1"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
20
+
21
+ [[package]]
22
+ name = "aead"
23
+ version = "0.5.2"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
26
+ dependencies = [
27
+ "crypto-common",
28
+ "generic-array",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "aes"
33
+ version = "0.8.4"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
36
+ dependencies = [
37
+ "cfg-if",
38
+ "cipher",
39
+ "cpufeatures 0.2.17",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aes-gcm"
44
+ version = "0.10.3"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
47
+ dependencies = [
48
+ "aead",
49
+ "aes",
50
+ "cipher",
51
+ "ctr",
52
+ "ghash",
53
+ "subtle",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "aho-corasick"
58
+ version = "1.1.4"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
61
+ dependencies = [
62
+ "memchr",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "android_system_properties"
67
+ version = "0.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
70
+ dependencies = [
71
+ "libc",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "ansi_term"
76
+ version = "0.12.1"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
79
+ dependencies = [
80
+ "winapi",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstream"
85
+ version = "1.0.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
88
+ dependencies = [
89
+ "anstyle",
90
+ "anstyle-parse",
91
+ "anstyle-query",
92
+ "anstyle-wincon",
93
+ "colorchoice",
94
+ "is_terminal_polyfill",
95
+ "utf8parse",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstyle"
100
+ version = "1.0.14"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
103
+
104
+ [[package]]
105
+ name = "anstyle-parse"
106
+ version = "1.0.0"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
109
+ dependencies = [
110
+ "utf8parse",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "anstyle-query"
115
+ version = "1.1.5"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
118
+ dependencies = [
119
+ "windows-sys 0.61.2",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "anstyle-wincon"
124
+ version = "3.0.11"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
127
+ dependencies = [
128
+ "anstyle",
129
+ "once_cell_polyfill",
130
+ "windows-sys 0.61.2",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "anyhow"
135
+ version = "1.0.103"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
138
+
139
+ [[package]]
140
+ name = "argon2"
141
+ version = "0.5.3"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
144
+ dependencies = [
145
+ "base64ct",
146
+ "blake2",
147
+ "cpufeatures 0.2.17",
148
+ "password-hash",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "arrayref"
153
+ version = "0.3.9"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
156
+
157
+ [[package]]
158
+ name = "arrayvec"
159
+ version = "0.7.8"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
162
+
163
+ [[package]]
164
+ name = "assert_cmd"
165
+ version = "2.2.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
168
+ dependencies = [
169
+ "anstyle",
170
+ "bstr",
171
+ "libc",
172
+ "predicates",
173
+ "predicates-core",
174
+ "predicates-tree",
175
+ "wait-timeout",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "async-trait"
180
+ version = "0.1.89"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
183
+ dependencies = [
184
+ "proc-macro2",
185
+ "quote",
186
+ "syn 2.0.118",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "atomic-polyfill"
191
+ version = "1.0.3"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
194
+ dependencies = [
195
+ "critical-section",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "atty"
200
+ version = "0.2.14"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
203
+ dependencies = [
204
+ "hermit-abi",
205
+ "libc",
206
+ "winapi",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "autocfg"
211
+ version = "1.5.1"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
214
+
215
+ [[package]]
216
+ name = "base16ct"
217
+ version = "0.2.0"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
220
+
221
+ [[package]]
222
+ name = "base64"
223
+ version = "0.22.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
226
+
227
+ [[package]]
228
+ name = "base64ct"
229
+ version = "1.6.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
232
+
233
+ [[package]]
234
+ name = "bcrypt-pbkdf"
235
+ version = "0.10.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
238
+ dependencies = [
239
+ "blowfish",
240
+ "pbkdf2",
241
+ "sha2",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "bit-set"
246
+ version = "0.10.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "09ec2f926cc3060f09db9ebc5b52823d85268d24bb917e472c0c4bea35780a7d"
249
+ dependencies = [
250
+ "bit-vec",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "bit-vec"
255
+ version = "0.9.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
258
+ dependencies = [
259
+ "serde",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "bitflags"
264
+ version = "2.13.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
267
+
268
+ [[package]]
269
+ name = "blake2"
270
+ version = "0.10.6"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
273
+ dependencies = [
274
+ "digest",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "blake3"
279
+ version = "1.8.5"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
282
+ dependencies = [
283
+ "arrayref",
284
+ "arrayvec",
285
+ "cc",
286
+ "cfg-if",
287
+ "constant_time_eq",
288
+ "cpufeatures 0.3.0",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "block-buffer"
293
+ version = "0.10.4"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
296
+ dependencies = [
297
+ "generic-array",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "block-padding"
302
+ version = "0.3.3"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
305
+ dependencies = [
306
+ "generic-array",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "blowfish"
311
+ version = "0.9.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
314
+ dependencies = [
315
+ "byteorder",
316
+ "cipher",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "borrow-or-share"
321
+ version = "0.2.4"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
324
+
325
+ [[package]]
326
+ name = "bstr"
327
+ version = "1.12.3"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
330
+ dependencies = [
331
+ "memchr",
332
+ "regex-automata",
333
+ "serde_core",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "bumpalo"
338
+ version = "3.20.3"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
341
+
342
+ [[package]]
343
+ name = "bytemuck"
344
+ version = "1.25.2"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
347
+
348
+ [[package]]
349
+ name = "byteorder"
350
+ version = "1.5.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
353
+
354
+ [[package]]
355
+ name = "bytes"
356
+ version = "1.12.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
359
+
360
+ [[package]]
361
+ name = "cast"
362
+ version = "0.3.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
365
+
366
+ [[package]]
367
+ name = "cbc"
368
+ version = "0.1.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
371
+ dependencies = [
372
+ "cipher",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "cc"
377
+ version = "1.2.65"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
380
+ dependencies = [
381
+ "find-msvc-tools",
382
+ "shlex",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "cfg-if"
387
+ version = "1.0.4"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
390
+
391
+ [[package]]
392
+ name = "cfg_aliases"
393
+ version = "0.2.1"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
396
+
397
+ [[package]]
398
+ name = "chacha20"
399
+ version = "0.9.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
402
+ dependencies = [
403
+ "cfg-if",
404
+ "cipher",
405
+ "cpufeatures 0.2.17",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "chrono"
410
+ version = "0.4.45"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
413
+ dependencies = [
414
+ "iana-time-zone",
415
+ "js-sys",
416
+ "num-traits",
417
+ "wasm-bindgen",
418
+ "windows-link 0.2.1",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "cipher"
423
+ version = "0.4.4"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
426
+ dependencies = [
427
+ "crypto-common",
428
+ "inout",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "clap"
433
+ version = "4.6.1"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
436
+ dependencies = [
437
+ "clap_builder",
438
+ "clap_derive",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "clap_builder"
443
+ version = "4.6.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
446
+ dependencies = [
447
+ "anstream",
448
+ "anstyle",
449
+ "clap_lex",
450
+ "strsim",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "clap_complete"
455
+ version = "4.6.6"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "97bf4965940c2382204c0ded6dd3dd48c0c4e872f1e76fb1bf94f45991a2cb6a"
458
+ dependencies = [
459
+ "clap",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "clap_derive"
464
+ version = "4.6.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
467
+ dependencies = [
468
+ "heck",
469
+ "proc-macro2",
470
+ "quote",
471
+ "syn 2.0.118",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "clap_lex"
476
+ version = "1.1.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
479
+
480
+ [[package]]
481
+ name = "cobs"
482
+ version = "0.3.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
485
+ dependencies = [
486
+ "thiserror 2.0.18",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "codespan-reporting"
491
+ version = "0.13.1"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
494
+ dependencies = [
495
+ "serde",
496
+ "termcolor",
497
+ "unicode-width 0.2.2",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "colorchoice"
502
+ version = "1.0.5"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
505
+
506
+ [[package]]
507
+ name = "const-oid"
508
+ version = "0.9.6"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
511
+
512
+ [[package]]
513
+ name = "constant_time_eq"
514
+ version = "0.4.2"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
517
+
518
+ [[package]]
519
+ name = "convert_case"
520
+ version = "0.10.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
523
+ dependencies = [
524
+ "unicode-segmentation",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "convert_case"
529
+ version = "0.11.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
532
+ dependencies = [
533
+ "unicode-segmentation",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "coolor"
538
+ version = "1.1.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "980c2afde4af43d6a05c5be738f9eae595cff86dce1f38f88b95058a98c027f3"
541
+ dependencies = [
542
+ "crossterm",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "core-foundation-sys"
547
+ version = "0.8.7"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
550
+
551
+ [[package]]
552
+ name = "cpufeatures"
553
+ version = "0.2.17"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
556
+ dependencies = [
557
+ "libc",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "cpufeatures"
562
+ version = "0.3.0"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
565
+ dependencies = [
566
+ "libc",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "crc32fast"
571
+ version = "1.5.0"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
574
+ dependencies = [
575
+ "cfg-if",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "critical-section"
580
+ version = "1.2.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
583
+
584
+ [[package]]
585
+ name = "crokey"
586
+ version = "1.4.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "04a63daf06a168535c74ab97cdba3ed4fa5d4f32cb36e437dcceb83d66854b7c"
589
+ dependencies = [
590
+ "crokey-proc_macros",
591
+ "crossterm",
592
+ "once_cell",
593
+ "serde",
594
+ "strict",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "crokey-proc_macros"
599
+ version = "1.4.0"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "847f11a14855fc490bd5d059821895c53e77eeb3c2b73ee3dded7ce77c93b231"
602
+ dependencies = [
603
+ "crossterm",
604
+ "proc-macro2",
605
+ "quote",
606
+ "strict",
607
+ "syn 2.0.118",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "crossbeam"
612
+ version = "0.8.4"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
615
+ dependencies = [
616
+ "crossbeam-channel",
617
+ "crossbeam-deque",
618
+ "crossbeam-epoch",
619
+ "crossbeam-queue",
620
+ "crossbeam-utils",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "crossbeam-channel"
625
+ version = "0.5.15"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
628
+ dependencies = [
629
+ "crossbeam-utils",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "crossbeam-deque"
634
+ version = "0.8.6"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
637
+ dependencies = [
638
+ "crossbeam-epoch",
639
+ "crossbeam-utils",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "crossbeam-epoch"
644
+ version = "0.9.18"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
647
+ dependencies = [
648
+ "crossbeam-utils",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "crossbeam-queue"
653
+ version = "0.3.12"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
656
+ dependencies = [
657
+ "crossbeam-utils",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "crossbeam-utils"
662
+ version = "0.8.21"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
665
+
666
+ [[package]]
667
+ name = "crossterm"
668
+ version = "0.29.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
671
+ dependencies = [
672
+ "bitflags",
673
+ "crossterm_winapi",
674
+ "derive_more",
675
+ "document-features",
676
+ "mio",
677
+ "parking_lot",
678
+ "rustix",
679
+ "signal-hook",
680
+ "signal-hook-mio",
681
+ "winapi",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "crossterm_winapi"
686
+ version = "0.9.1"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
689
+ dependencies = [
690
+ "winapi",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "crypto-bigint"
695
+ version = "0.5.5"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
698
+ dependencies = [
699
+ "generic-array",
700
+ "rand_core",
701
+ "subtle",
702
+ "zeroize",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "crypto-common"
707
+ version = "0.1.7"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
710
+ dependencies = [
711
+ "generic-array",
712
+ "typenum",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "ctor"
717
+ version = "1.0.7"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
720
+
721
+ [[package]]
722
+ name = "ctr"
723
+ version = "0.9.2"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
726
+ dependencies = [
727
+ "cipher",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "curve25519-dalek"
732
+ version = "4.1.3"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
735
+ dependencies = [
736
+ "cfg-if",
737
+ "cpufeatures 0.2.17",
738
+ "curve25519-dalek-derive",
739
+ "digest",
740
+ "fiat-crypto",
741
+ "rustc_version",
742
+ "subtle",
743
+ "zeroize",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "curve25519-dalek-derive"
748
+ version = "0.1.1"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
751
+ dependencies = [
752
+ "proc-macro2",
753
+ "quote",
754
+ "syn 2.0.118",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "dashmap"
759
+ version = "6.2.1"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
762
+ dependencies = [
763
+ "cfg-if",
764
+ "crossbeam-utils",
765
+ "hashbrown 0.14.5",
766
+ "lock_api",
767
+ "once_cell",
768
+ "parking_lot_core",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "data-encoding"
773
+ version = "2.11.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
776
+
777
+ [[package]]
778
+ name = "delegate"
779
+ version = "0.13.5"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
782
+ dependencies = [
783
+ "proc-macro2",
784
+ "quote",
785
+ "syn 2.0.118",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "der"
790
+ version = "0.7.10"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
793
+ dependencies = [
794
+ "const-oid",
795
+ "pem-rfc7468",
796
+ "zeroize",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "derive_more"
801
+ version = "2.1.1"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
804
+ dependencies = [
805
+ "derive_more-impl",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "derive_more-impl"
810
+ version = "2.1.1"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
813
+ dependencies = [
814
+ "convert_case 0.10.0",
815
+ "proc-macro2",
816
+ "quote",
817
+ "rustc_version",
818
+ "syn 2.0.118",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "difflib"
823
+ version = "0.4.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
826
+
827
+ [[package]]
828
+ name = "digest"
829
+ version = "0.10.7"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
832
+ dependencies = [
833
+ "block-buffer",
834
+ "const-oid",
835
+ "crypto-common",
836
+ "subtle",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "document-features"
841
+ version = "0.2.12"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
844
+ dependencies = [
845
+ "litrs",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "dyn-clone"
850
+ version = "1.0.20"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
853
+
854
+ [[package]]
855
+ name = "ecdsa"
856
+ version = "0.16.9"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
859
+ dependencies = [
860
+ "der",
861
+ "digest",
862
+ "elliptic-curve",
863
+ "rfc6979",
864
+ "signature",
865
+ "spki",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "ed25519"
870
+ version = "2.2.3"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
873
+ dependencies = [
874
+ "pkcs8",
875
+ "signature",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "ed25519-dalek"
880
+ version = "2.2.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
883
+ dependencies = [
884
+ "curve25519-dalek",
885
+ "ed25519",
886
+ "rand_core",
887
+ "serde",
888
+ "sha2",
889
+ "subtle",
890
+ "zeroize",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "either"
895
+ version = "1.16.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
898
+
899
+ [[package]]
900
+ name = "elliptic-curve"
901
+ version = "0.13.8"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
904
+ dependencies = [
905
+ "base16ct",
906
+ "crypto-bigint",
907
+ "digest",
908
+ "ff",
909
+ "generic-array",
910
+ "group",
911
+ "hkdf",
912
+ "pem-rfc7468",
913
+ "pkcs8",
914
+ "rand_core",
915
+ "sec1",
916
+ "subtle",
917
+ "zeroize",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "embedded-io"
922
+ version = "0.4.0"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
925
+
926
+ [[package]]
927
+ name = "embedded-io"
928
+ version = "0.6.1"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
931
+
932
+ [[package]]
933
+ name = "enum_dispatch"
934
+ version = "0.3.13"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
937
+ dependencies = [
938
+ "once_cell",
939
+ "proc-macro2",
940
+ "quote",
941
+ "syn 2.0.118",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "equivalent"
946
+ version = "1.0.2"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
949
+
950
+ [[package]]
951
+ name = "errno"
952
+ version = "0.3.14"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
955
+ dependencies = [
956
+ "libc",
957
+ "windows-sys 0.61.2",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "fastrand"
962
+ version = "2.4.1"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
965
+
966
+ [[package]]
967
+ name = "fd-lock"
968
+ version = "4.0.4"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
971
+ dependencies = [
972
+ "cfg-if",
973
+ "rustix",
974
+ "windows-sys 0.59.0",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "ff"
979
+ version = "0.13.1"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
982
+ dependencies = [
983
+ "rand_core",
984
+ "subtle",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "fiat-crypto"
989
+ version = "0.2.9"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
992
+
993
+ [[package]]
994
+ name = "find-msvc-tools"
995
+ version = "0.1.9"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
998
+
999
+ [[package]]
1000
+ name = "flate2"
1001
+ version = "1.1.9"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1004
+ dependencies = [
1005
+ "crc32fast",
1006
+ "miniz_oxide",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "float-cmp"
1011
+ version = "0.10.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1014
+ dependencies = [
1015
+ "num-traits",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "fluent-uri"
1020
+ version = "0.4.1"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e"
1023
+ dependencies = [
1024
+ "borrow-or-share",
1025
+ "ref-cast",
1026
+ "serde",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "fnv"
1031
+ version = "1.0.7"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1034
+
1035
+ [[package]]
1036
+ name = "fsevent-sys"
1037
+ version = "4.1.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
1040
+ dependencies = [
1041
+ "libc",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "futures"
1046
+ version = "0.3.32"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1049
+ dependencies = [
1050
+ "futures-channel",
1051
+ "futures-core",
1052
+ "futures-executor",
1053
+ "futures-io",
1054
+ "futures-sink",
1055
+ "futures-task",
1056
+ "futures-util",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "futures-channel"
1061
+ version = "0.3.32"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1064
+ dependencies = [
1065
+ "futures-core",
1066
+ "futures-sink",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "futures-core"
1071
+ version = "0.3.32"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1074
+
1075
+ [[package]]
1076
+ name = "futures-executor"
1077
+ version = "0.3.32"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1080
+ dependencies = [
1081
+ "futures-core",
1082
+ "futures-task",
1083
+ "futures-util",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "futures-io"
1088
+ version = "0.3.32"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1091
+
1092
+ [[package]]
1093
+ name = "futures-macro"
1094
+ version = "0.3.32"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1097
+ dependencies = [
1098
+ "proc-macro2",
1099
+ "quote",
1100
+ "syn 2.0.118",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "futures-sink"
1105
+ version = "0.3.32"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1108
+
1109
+ [[package]]
1110
+ name = "futures-task"
1111
+ version = "0.3.32"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1114
+
1115
+ [[package]]
1116
+ name = "futures-util"
1117
+ version = "0.3.32"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1120
+ dependencies = [
1121
+ "futures-channel",
1122
+ "futures-core",
1123
+ "futures-io",
1124
+ "futures-macro",
1125
+ "futures-sink",
1126
+ "futures-task",
1127
+ "memchr",
1128
+ "pin-project-lite",
1129
+ "slab",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "fuzzy-matcher"
1134
+ version = "0.3.7"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
1137
+ dependencies = [
1138
+ "thread_local",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "generic-array"
1143
+ version = "0.14.7"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1146
+ dependencies = [
1147
+ "typenum",
1148
+ "version_check",
1149
+ "zeroize",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "getrandom"
1154
+ version = "0.2.17"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1157
+ dependencies = [
1158
+ "cfg-if",
1159
+ "js-sys",
1160
+ "libc",
1161
+ "wasi",
1162
+ "wasm-bindgen",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "getrandom"
1167
+ version = "0.4.3"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1170
+ dependencies = [
1171
+ "cfg-if",
1172
+ "libc",
1173
+ "r-efi",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "ghash"
1178
+ version = "0.5.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1181
+ dependencies = [
1182
+ "opaque-debug",
1183
+ "polyval",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "globset"
1188
+ version = "0.4.18"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
1191
+ dependencies = [
1192
+ "aho-corasick",
1193
+ "bstr",
1194
+ "log",
1195
+ "regex-automata",
1196
+ "regex-syntax",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "group"
1201
+ version = "0.13.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1204
+ dependencies = [
1205
+ "ff",
1206
+ "rand_core",
1207
+ "subtle",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "hash32"
1212
+ version = "0.2.1"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
1215
+ dependencies = [
1216
+ "byteorder",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "hashbrown"
1221
+ version = "0.14.5"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1224
+
1225
+ [[package]]
1226
+ name = "hashbrown"
1227
+ version = "0.17.1"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1230
+
1231
+ [[package]]
1232
+ name = "heapless"
1233
+ version = "0.7.17"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
1236
+ dependencies = [
1237
+ "atomic-polyfill",
1238
+ "hash32",
1239
+ "rustc_version",
1240
+ "serde",
1241
+ "spin",
1242
+ "stable_deref_trait",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "heck"
1247
+ version = "0.5.0"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1250
+
1251
+ [[package]]
1252
+ name = "hermit-abi"
1253
+ version = "0.1.19"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1256
+ dependencies = [
1257
+ "libc",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "hex"
1262
+ version = "0.4.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1265
+
1266
+ [[package]]
1267
+ name = "hex-literal"
1268
+ version = "0.4.1"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
1271
+
1272
+ [[package]]
1273
+ name = "hkdf"
1274
+ version = "0.12.4"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1277
+ dependencies = [
1278
+ "hmac",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "hmac"
1283
+ version = "0.12.1"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1286
+ dependencies = [
1287
+ "digest",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "home"
1292
+ version = "0.5.12"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1295
+ dependencies = [
1296
+ "windows-sys 0.61.2",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "httparse"
1301
+ version = "1.10.1"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1304
+
1305
+ [[package]]
1306
+ name = "iana-time-zone"
1307
+ version = "0.1.65"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1310
+ dependencies = [
1311
+ "android_system_properties",
1312
+ "core-foundation-sys",
1313
+ "iana-time-zone-haiku",
1314
+ "js-sys",
1315
+ "log",
1316
+ "wasm-bindgen",
1317
+ "windows-core 0.62.2",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "iana-time-zone-haiku"
1322
+ version = "0.1.2"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1325
+ dependencies = [
1326
+ "cc",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "ignore"
1331
+ version = "0.4.27"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
1334
+ dependencies = [
1335
+ "crossbeam-deque",
1336
+ "globset",
1337
+ "log",
1338
+ "memchr",
1339
+ "regex-automata",
1340
+ "same-file",
1341
+ "walkdir",
1342
+ "winapi-util",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "indexmap"
1347
+ version = "2.14.0"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1350
+ dependencies = [
1351
+ "equivalent",
1352
+ "hashbrown 0.17.1",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "inotify"
1357
+ version = "0.11.4"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "153be1941a183ec9ccd095ddbe17a8b8d435ef6c76e9e02451b933c3999af2c8"
1360
+ dependencies = [
1361
+ "bitflags",
1362
+ "inotify-sys",
1363
+ "libc",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "inotify-sys"
1368
+ version = "0.1.8"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
1371
+ dependencies = [
1372
+ "libc",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "inout"
1377
+ version = "0.1.4"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1380
+ dependencies = [
1381
+ "block-padding",
1382
+ "generic-array",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "inquire"
1387
+ version = "0.9.4"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "6654738b8024300cf062d04a1c13c10c8e2cea598ec1c47dc9b6641159429756"
1390
+ dependencies = [
1391
+ "bitflags",
1392
+ "crossterm",
1393
+ "dyn-clone",
1394
+ "fuzzy-matcher",
1395
+ "unicode-segmentation",
1396
+ "unicode-width 0.2.2",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "internal-russh-forked-ssh-key"
1401
+ version = "0.6.11+upstream-0.6.7"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "e0a77eae781ed6a7709fb15b64862fcca13d886b07c7e2786f5ed34e5e2b9187"
1404
+ dependencies = [
1405
+ "argon2",
1406
+ "bcrypt-pbkdf",
1407
+ "ecdsa",
1408
+ "ed25519-dalek",
1409
+ "hex",
1410
+ "hmac",
1411
+ "p256",
1412
+ "p384",
1413
+ "p521",
1414
+ "rand_core",
1415
+ "rsa",
1416
+ "sec1",
1417
+ "sha1",
1418
+ "sha2",
1419
+ "signature",
1420
+ "ssh-cipher",
1421
+ "ssh-encoding",
1422
+ "subtle",
1423
+ "zeroize",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "is_terminal_polyfill"
1428
+ version = "1.70.2"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1431
+
1432
+ [[package]]
1433
+ name = "itoa"
1434
+ version = "1.0.18"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1437
+
1438
+ [[package]]
1439
+ name = "js-sys"
1440
+ version = "0.3.103"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1443
+ dependencies = [
1444
+ "cfg-if",
1445
+ "futures-util",
1446
+ "wasm-bindgen",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "kqueue"
1451
+ version = "1.2.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "273c0752728918e0ac4976f2b275b6fefb9ecd400585dec929419f3844cd87b5"
1454
+ dependencies = [
1455
+ "kqueue-sys",
1456
+ "libc",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "kqueue-sys"
1461
+ version = "1.1.2"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
1464
+ dependencies = [
1465
+ "bitflags",
1466
+ "libc",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "lazy-regex"
1471
+ version = "3.6.0"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "6bae91019476d3ec7147de9aa291cadb6d870abf2f3015d2da73a90325ac1496"
1474
+ dependencies = [
1475
+ "lazy-regex-proc_macros",
1476
+ "once_cell",
1477
+ "regex",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "lazy-regex-proc_macros"
1482
+ version = "3.6.0"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "4de9c1e1439d8b7b3061b2d209809f447ca33241733d9a3c01eabf2dc8d94358"
1485
+ dependencies = [
1486
+ "proc-macro2",
1487
+ "quote",
1488
+ "regex",
1489
+ "syn 2.0.118",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "lazy_static"
1494
+ version = "1.5.0"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1497
+ dependencies = [
1498
+ "spin",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "libc"
1503
+ version = "0.2.186"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1506
+
1507
+ [[package]]
1508
+ name = "libloading"
1509
+ version = "0.9.0"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1512
+ dependencies = [
1513
+ "cfg-if",
1514
+ "windows-link 0.2.1",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "libm"
1519
+ version = "0.2.16"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1522
+
1523
+ [[package]]
1524
+ name = "linux-raw-sys"
1525
+ version = "0.12.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1528
+
1529
+ [[package]]
1530
+ name = "litrs"
1531
+ version = "1.0.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1534
+
1535
+ [[package]]
1536
+ name = "lock_api"
1537
+ version = "0.4.14"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1540
+ dependencies = [
1541
+ "scopeguard",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "log"
1546
+ version = "0.4.33"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1549
+
1550
+ [[package]]
1551
+ name = "ls-types"
1552
+ version = "0.0.6"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "896e16b8e17d8732b9efe4d5b66cb0cc162b3023a2d8122f2aea6f7f185e0a67"
1555
+ dependencies = [
1556
+ "bitflags",
1557
+ "fluent-uri",
1558
+ "percent-encoding",
1559
+ "serde",
1560
+ "serde_json",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "matchers"
1565
+ version = "0.2.0"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1568
+ dependencies = [
1569
+ "regex-automata",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "md5"
1574
+ version = "0.7.0"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
1577
+
1578
+ [[package]]
1579
+ name = "memchr"
1580
+ version = "2.8.2"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1583
+
1584
+ [[package]]
1585
+ name = "memmap2"
1586
+ version = "0.9.11"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1589
+ dependencies = [
1590
+ "libc",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "minicov"
1595
+ version = "0.3.8"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1598
+ dependencies = [
1599
+ "cc",
1600
+ "walkdir",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "minimad"
1605
+ version = "0.14.0"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "df8b688969b16915f3ecadc7829d5b7779dee4977e503f767f34136803d5c06f"
1608
+ dependencies = [
1609
+ "once_cell",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "miniz_oxide"
1614
+ version = "0.8.9"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1617
+ dependencies = [
1618
+ "adler2",
1619
+ "simd-adler32",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "mio"
1624
+ version = "1.2.1"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1627
+ dependencies = [
1628
+ "libc",
1629
+ "log",
1630
+ "wasi",
1631
+ "windows-sys 0.61.2",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "napi"
1636
+ version = "3.10.0"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "abd366ba6a12e4bdbc360e1ad4e1f01da40c4395eef1f9e872d88f8b135e8048"
1639
+ dependencies = [
1640
+ "anyhow",
1641
+ "bitflags",
1642
+ "ctor",
1643
+ "futures",
1644
+ "napi-build",
1645
+ "napi-sys",
1646
+ "nohash-hasher",
1647
+ "rustc-hash",
1648
+ "serde",
1649
+ "serde_json",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "napi-build"
1654
+ version = "2.3.2"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
1657
+
1658
+ [[package]]
1659
+ name = "napi-derive"
1660
+ version = "3.5.8"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "6730ee4e7b335eac6d7cf10fc2525d92743bd4713a13cb2e6667f0e97322d7c3"
1663
+ dependencies = [
1664
+ "convert_case 0.11.0",
1665
+ "ctor",
1666
+ "napi-derive-backend",
1667
+ "proc-macro2",
1668
+ "quote",
1669
+ "syn 2.0.118",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "napi-derive-backend"
1674
+ version = "5.1.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "db5ccc18b1b16d1049dcbd3e1a21fdfbf3ce720b8944979c5e1a76d4e30d9f9f"
1677
+ dependencies = [
1678
+ "convert_case 0.11.0",
1679
+ "proc-macro2",
1680
+ "quote",
1681
+ "semver",
1682
+ "syn 2.0.118",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "napi-sys"
1687
+ version = "3.2.2"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
1690
+ dependencies = [
1691
+ "libloading",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "nix"
1696
+ version = "0.29.0"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1699
+ dependencies = [
1700
+ "bitflags",
1701
+ "cfg-if",
1702
+ "cfg_aliases",
1703
+ "libc",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "nix"
1708
+ version = "0.31.3"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
1711
+ dependencies = [
1712
+ "bitflags",
1713
+ "cfg-if",
1714
+ "cfg_aliases",
1715
+ "libc",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "nohash-hasher"
1720
+ version = "0.2.0"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1723
+
1724
+ [[package]]
1725
+ name = "normalize-line-endings"
1726
+ version = "0.3.0"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1729
+
1730
+ [[package]]
1731
+ name = "notify"
1732
+ version = "8.2.0"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
1735
+ dependencies = [
1736
+ "bitflags",
1737
+ "fsevent-sys",
1738
+ "inotify",
1739
+ "kqueue",
1740
+ "libc",
1741
+ "log",
1742
+ "mio",
1743
+ "notify-types",
1744
+ "walkdir",
1745
+ "windows-sys 0.60.2",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "notify-types"
1750
+ version = "2.1.0"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
1753
+ dependencies = [
1754
+ "bitflags",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "nu-ansi-term"
1759
+ version = "0.50.3"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1762
+ dependencies = [
1763
+ "windows-sys 0.61.2",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "num-bigint"
1768
+ version = "0.4.8"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1771
+ dependencies = [
1772
+ "num-integer",
1773
+ "num-traits",
1774
+ "rand",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "num-bigint-dig"
1779
+ version = "0.8.6"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1782
+ dependencies = [
1783
+ "lazy_static",
1784
+ "libm",
1785
+ "num-integer",
1786
+ "num-iter",
1787
+ "num-traits",
1788
+ "rand",
1789
+ "smallvec",
1790
+ "zeroize",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "num-integer"
1795
+ version = "0.1.46"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1798
+ dependencies = [
1799
+ "num-traits",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "num-iter"
1804
+ version = "0.1.46"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
1807
+ dependencies = [
1808
+ "num-integer",
1809
+ "num-traits",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "num-traits"
1814
+ version = "0.2.19"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1817
+ dependencies = [
1818
+ "autocfg",
1819
+ "libm",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "once_cell"
1824
+ version = "1.21.4"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1827
+
1828
+ [[package]]
1829
+ name = "once_cell_polyfill"
1830
+ version = "1.70.2"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1833
+
1834
+ [[package]]
1835
+ name = "oorandom"
1836
+ version = "11.1.5"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1839
+
1840
+ [[package]]
1841
+ name = "opaque-debug"
1842
+ version = "0.3.1"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1845
+
1846
+ [[package]]
1847
+ name = "p256"
1848
+ version = "0.13.2"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1851
+ dependencies = [
1852
+ "ecdsa",
1853
+ "elliptic-curve",
1854
+ "primeorder",
1855
+ "sha2",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "p384"
1860
+ version = "0.13.1"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
1863
+ dependencies = [
1864
+ "ecdsa",
1865
+ "elliptic-curve",
1866
+ "primeorder",
1867
+ "sha2",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "p521"
1872
+ version = "0.13.3"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
1875
+ dependencies = [
1876
+ "base16ct",
1877
+ "ecdsa",
1878
+ "elliptic-curve",
1879
+ "primeorder",
1880
+ "rand_core",
1881
+ "sha2",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "pageant"
1886
+ version = "0.1.0"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "bb28bd89a207e5cad59072ac4b364b08459d05f90ccfbcdaa920a95857d94430"
1889
+ dependencies = [
1890
+ "byteorder",
1891
+ "bytes",
1892
+ "delegate",
1893
+ "futures",
1894
+ "log",
1895
+ "rand",
1896
+ "thiserror 1.0.69",
1897
+ "tokio",
1898
+ "windows",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "parking_lot"
1903
+ version = "0.12.5"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1906
+ dependencies = [
1907
+ "lock_api",
1908
+ "parking_lot_core",
1909
+ ]
1910
+
1911
+ [[package]]
1912
+ name = "parking_lot_core"
1913
+ version = "0.9.12"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1916
+ dependencies = [
1917
+ "cfg-if",
1918
+ "libc",
1919
+ "redox_syscall",
1920
+ "smallvec",
1921
+ "windows-link 0.2.1",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "password-hash"
1926
+ version = "0.5.0"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1929
+ dependencies = [
1930
+ "base64ct",
1931
+ "rand_core",
1932
+ "subtle",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "paste"
1937
+ version = "1.0.15"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1940
+
1941
+ [[package]]
1942
+ name = "pbkdf2"
1943
+ version = "0.12.2"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
1946
+ dependencies = [
1947
+ "digest",
1948
+ "hmac",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "pem-rfc7468"
1953
+ version = "0.7.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1956
+ dependencies = [
1957
+ "base64ct",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "percent-encoding"
1962
+ version = "2.3.2"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1965
+
1966
+ [[package]]
1967
+ name = "pin-project-lite"
1968
+ version = "0.2.17"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1971
+
1972
+ [[package]]
1973
+ name = "pkcs1"
1974
+ version = "0.7.5"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1977
+ dependencies = [
1978
+ "der",
1979
+ "pkcs8",
1980
+ "spki",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "pkcs5"
1985
+ version = "0.7.1"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
1988
+ dependencies = [
1989
+ "aes",
1990
+ "cbc",
1991
+ "der",
1992
+ "pbkdf2",
1993
+ "scrypt",
1994
+ "sha2",
1995
+ "spki",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "pkcs8"
2000
+ version = "0.10.2"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2003
+ dependencies = [
2004
+ "der",
2005
+ "pkcs5",
2006
+ "rand_core",
2007
+ "spki",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "poly1305"
2012
+ version = "0.8.0"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
2015
+ dependencies = [
2016
+ "cpufeatures 0.2.17",
2017
+ "opaque-debug",
2018
+ "universal-hash",
2019
+ ]
2020
+
2021
+ [[package]]
2022
+ name = "polyval"
2023
+ version = "0.6.2"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
2026
+ dependencies = [
2027
+ "cfg-if",
2028
+ "cpufeatures 0.2.17",
2029
+ "opaque-debug",
2030
+ "universal-hash",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "portable-atomic"
2035
+ version = "1.13.1"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2038
+
2039
+ [[package]]
2040
+ name = "postcard"
2041
+ version = "1.1.3"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
2044
+ dependencies = [
2045
+ "cobs",
2046
+ "embedded-io 0.4.0",
2047
+ "embedded-io 0.6.1",
2048
+ "heapless",
2049
+ "serde",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "ppv-lite86"
2054
+ version = "0.2.21"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2057
+ dependencies = [
2058
+ "zerocopy",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "predicates"
2063
+ version = "3.1.4"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2066
+ dependencies = [
2067
+ "anstyle",
2068
+ "difflib",
2069
+ "float-cmp",
2070
+ "normalize-line-endings",
2071
+ "predicates-core",
2072
+ "regex",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "predicates-core"
2077
+ version = "1.0.10"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
2080
+
2081
+ [[package]]
2082
+ name = "predicates-tree"
2083
+ version = "1.0.13"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2086
+ dependencies = [
2087
+ "predicates-core",
2088
+ "termtree",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "prettyplease"
2093
+ version = "0.2.37"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2096
+ dependencies = [
2097
+ "proc-macro2",
2098
+ "syn 2.0.118",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "primeorder"
2103
+ version = "0.13.6"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2106
+ dependencies = [
2107
+ "elliptic-curve",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "proc-macro2"
2112
+ version = "1.0.106"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2115
+ dependencies = [
2116
+ "unicode-ident",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "pyo3"
2121
+ version = "0.29.0"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
2124
+ dependencies = [
2125
+ "anyhow",
2126
+ "libc",
2127
+ "once_cell",
2128
+ "portable-atomic",
2129
+ "pyo3-build-config",
2130
+ "pyo3-ffi",
2131
+ "pyo3-macros",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "pyo3-build-config"
2136
+ version = "0.29.0"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
2139
+ dependencies = [
2140
+ "target-lexicon",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "pyo3-ffi"
2145
+ version = "0.29.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
2148
+ dependencies = [
2149
+ "libc",
2150
+ "pyo3-build-config",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "pyo3-macros"
2155
+ version = "0.29.0"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
2158
+ dependencies = [
2159
+ "proc-macro2",
2160
+ "pyo3-macros-backend",
2161
+ "quote",
2162
+ "syn 2.0.118",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "pyo3-macros-backend"
2167
+ version = "0.29.0"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
2170
+ dependencies = [
2171
+ "heck",
2172
+ "proc-macro2",
2173
+ "quote",
2174
+ "syn 2.0.118",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "pythonize"
2179
+ version = "0.29.0"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
2182
+ dependencies = [
2183
+ "pyo3",
2184
+ "serde",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "quote"
2189
+ version = "1.0.46"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2192
+ dependencies = [
2193
+ "proc-macro2",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "r-efi"
2198
+ version = "6.0.0"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2201
+
2202
+ [[package]]
2203
+ name = "rand"
2204
+ version = "0.8.7"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
2207
+ dependencies = [
2208
+ "libc",
2209
+ "rand_chacha",
2210
+ "rand_core",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "rand_chacha"
2215
+ version = "0.3.1"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2218
+ dependencies = [
2219
+ "ppv-lite86",
2220
+ "rand_core",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "rand_core"
2225
+ version = "0.6.4"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2228
+ dependencies = [
2229
+ "getrandom 0.2.17",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "rayon"
2234
+ version = "1.12.0"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2237
+ dependencies = [
2238
+ "either",
2239
+ "rayon-core",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "rayon-core"
2244
+ version = "1.13.0"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2247
+ dependencies = [
2248
+ "crossbeam-deque",
2249
+ "crossbeam-utils",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "redox_syscall"
2254
+ version = "0.5.18"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2257
+ dependencies = [
2258
+ "bitflags",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "ref-cast"
2263
+ version = "1.0.25"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2266
+ dependencies = [
2267
+ "ref-cast-impl",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "ref-cast-impl"
2272
+ version = "1.0.25"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2275
+ dependencies = [
2276
+ "proc-macro2",
2277
+ "quote",
2278
+ "syn 2.0.118",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "regex"
2283
+ version = "1.12.4"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2286
+ dependencies = [
2287
+ "aho-corasick",
2288
+ "memchr",
2289
+ "regex-automata",
2290
+ "regex-syntax",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "regex-automata"
2295
+ version = "0.4.14"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2298
+ dependencies = [
2299
+ "aho-corasick",
2300
+ "memchr",
2301
+ "regex-syntax",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "regex-syntax"
2306
+ version = "0.8.11"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2309
+
2310
+ [[package]]
2311
+ name = "rfc6979"
2312
+ version = "0.4.0"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
2315
+ dependencies = [
2316
+ "hmac",
2317
+ "subtle",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "ring"
2322
+ version = "0.17.14"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2325
+ dependencies = [
2326
+ "cc",
2327
+ "cfg-if",
2328
+ "getrandom 0.2.17",
2329
+ "libc",
2330
+ "untrusted",
2331
+ "windows-sys 0.52.0",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "rsa"
2336
+ version = "0.9.10"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
2339
+ dependencies = [
2340
+ "const-oid",
2341
+ "digest",
2342
+ "num-bigint-dig",
2343
+ "num-integer",
2344
+ "num-traits",
2345
+ "pkcs1",
2346
+ "pkcs8",
2347
+ "rand_core",
2348
+ "sha2",
2349
+ "signature",
2350
+ "spki",
2351
+ "subtle",
2352
+ "zeroize",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "russh"
2357
+ version = "0.54.5"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "ca3ee9363fcf66d434d8015d9ae7d879681206981534c21bfdff8a7e34f52cca"
2360
+ dependencies = [
2361
+ "aes",
2362
+ "base64ct",
2363
+ "bitflags",
2364
+ "block-padding",
2365
+ "byteorder",
2366
+ "bytes",
2367
+ "cbc",
2368
+ "ctr",
2369
+ "curve25519-dalek",
2370
+ "data-encoding",
2371
+ "delegate",
2372
+ "der",
2373
+ "digest",
2374
+ "ecdsa",
2375
+ "ed25519-dalek",
2376
+ "elliptic-curve",
2377
+ "enum_dispatch",
2378
+ "flate2",
2379
+ "futures",
2380
+ "generic-array",
2381
+ "getrandom 0.2.17",
2382
+ "hex-literal",
2383
+ "hmac",
2384
+ "home",
2385
+ "inout",
2386
+ "internal-russh-forked-ssh-key",
2387
+ "log",
2388
+ "md5",
2389
+ "num-bigint",
2390
+ "once_cell",
2391
+ "p256",
2392
+ "p384",
2393
+ "p521",
2394
+ "pageant",
2395
+ "pbkdf2",
2396
+ "pkcs5",
2397
+ "pkcs8",
2398
+ "rand",
2399
+ "rand_core",
2400
+ "ring",
2401
+ "russh-cryptovec",
2402
+ "russh-util",
2403
+ "sec1",
2404
+ "sha1",
2405
+ "sha2",
2406
+ "signature",
2407
+ "spki",
2408
+ "ssh-encoding",
2409
+ "subtle",
2410
+ "thiserror 1.0.69",
2411
+ "tokio",
2412
+ "typenum",
2413
+ "zeroize",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "russh-cryptovec"
2418
+ version = "0.52.0"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf"
2421
+ dependencies = [
2422
+ "libc",
2423
+ "log",
2424
+ "nix 0.29.0",
2425
+ "ssh-encoding",
2426
+ "winapi",
2427
+ ]
2428
+
2429
+ [[package]]
2430
+ name = "russh-util"
2431
+ version = "0.52.0"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6"
2434
+ dependencies = [
2435
+ "chrono",
2436
+ "tokio",
2437
+ "wasm-bindgen",
2438
+ "wasm-bindgen-futures",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "rustc-hash"
2443
+ version = "2.1.2"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2446
+
2447
+ [[package]]
2448
+ name = "rustc_version"
2449
+ version = "0.4.1"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2452
+ dependencies = [
2453
+ "semver",
2454
+ ]
2455
+
2456
+ [[package]]
2457
+ name = "rustix"
2458
+ version = "1.1.4"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2461
+ dependencies = [
2462
+ "bitflags",
2463
+ "errno",
2464
+ "libc",
2465
+ "linux-raw-sys",
2466
+ "windows-sys 0.61.2",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "rustversion"
2471
+ version = "1.0.22"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2474
+
2475
+ [[package]]
2476
+ name = "ryu"
2477
+ version = "1.0.23"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2480
+
2481
+ [[package]]
2482
+ name = "salsa20"
2483
+ version = "0.10.2"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
2486
+ dependencies = [
2487
+ "cipher",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "same-file"
2492
+ version = "1.0.6"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2495
+ dependencies = [
2496
+ "winapi-util",
2497
+ ]
2498
+
2499
+ [[package]]
2500
+ name = "schemafy_core"
2501
+ version = "0.6.0"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "2bec29dddcfe60f92f3c0d422707b8b56473983ef0481df8d5236ed3ab8fdf24"
2504
+ dependencies = [
2505
+ "serde",
2506
+ "serde_json",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "schemafy_lib"
2511
+ version = "0.6.0"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "af3d87f1df246a9b7e2bfd1f4ee5f88e48b11ef9cfc62e63f0dead255b1a6f5f"
2514
+ dependencies = [
2515
+ "Inflector",
2516
+ "proc-macro2",
2517
+ "quote",
2518
+ "schemafy_core",
2519
+ "serde",
2520
+ "serde_derive",
2521
+ "serde_json",
2522
+ "syn 1.0.109",
2523
+ "uriparse",
2524
+ ]
2525
+
2526
+ [[package]]
2527
+ name = "schemars"
2528
+ version = "1.2.1"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2531
+ dependencies = [
2532
+ "dyn-clone",
2533
+ "ref-cast",
2534
+ "schemars_derive",
2535
+ "serde",
2536
+ "serde_json",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "schemars_derive"
2541
+ version = "1.2.1"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
2544
+ dependencies = [
2545
+ "proc-macro2",
2546
+ "quote",
2547
+ "serde_derive_internals",
2548
+ "syn 2.0.118",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "scopeguard"
2553
+ version = "1.2.0"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2556
+
2557
+ [[package]]
2558
+ name = "scrypt"
2559
+ version = "0.11.0"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
2562
+ dependencies = [
2563
+ "pbkdf2",
2564
+ "salsa20",
2565
+ "sha2",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "sec1"
2570
+ version = "0.7.3"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2573
+ dependencies = [
2574
+ "base16ct",
2575
+ "der",
2576
+ "generic-array",
2577
+ "pkcs8",
2578
+ "subtle",
2579
+ "zeroize",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "semver"
2584
+ version = "1.0.28"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2587
+
2588
+ [[package]]
2589
+ name = "serde"
2590
+ version = "1.0.228"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2593
+ dependencies = [
2594
+ "serde_core",
2595
+ "serde_derive",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "serde-sarif"
2600
+ version = "0.8.0"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "a053c46f18a8043570d4e32fefc4c6377f82bf29ec310a33e93f273048e3b0be"
2603
+ dependencies = [
2604
+ "anyhow",
2605
+ "prettyplease",
2606
+ "proc-macro2",
2607
+ "quote",
2608
+ "schemafy_lib",
2609
+ "serde",
2610
+ "serde_json",
2611
+ "strum",
2612
+ "strum_macros",
2613
+ "syn 2.0.118",
2614
+ "thiserror 2.0.18",
2615
+ "typed-builder",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "serde-wasm-bindgen"
2620
+ version = "0.6.5"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2623
+ dependencies = [
2624
+ "js-sys",
2625
+ "serde",
2626
+ "wasm-bindgen",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "serde_core"
2631
+ version = "1.0.228"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2634
+ dependencies = [
2635
+ "serde_derive",
2636
+ ]
2637
+
2638
+ [[package]]
2639
+ name = "serde_derive"
2640
+ version = "1.0.228"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2643
+ dependencies = [
2644
+ "proc-macro2",
2645
+ "quote",
2646
+ "syn 2.0.118",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "serde_derive_internals"
2651
+ version = "0.29.1"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2654
+ dependencies = [
2655
+ "proc-macro2",
2656
+ "quote",
2657
+ "syn 2.0.118",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "serde_json"
2662
+ version = "1.0.150"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2665
+ dependencies = [
2666
+ "indexmap",
2667
+ "itoa",
2668
+ "memchr",
2669
+ "serde",
2670
+ "serde_core",
2671
+ "zmij",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "serde_regex"
2676
+ version = "1.2.0"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "bafc8d0c5330cecff10f16b459b479fd9acaa5b4acd7167301414e21b0057012"
2679
+ dependencies = [
2680
+ "regex",
2681
+ "serde",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "serde_yaml"
2686
+ version = "0.9.34+deprecated"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2689
+ dependencies = [
2690
+ "indexmap",
2691
+ "itoa",
2692
+ "ryu",
2693
+ "serde",
2694
+ "unsafe-libyaml",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "sha1"
2699
+ version = "0.10.7"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
2702
+ dependencies = [
2703
+ "cfg-if",
2704
+ "cpufeatures 0.2.17",
2705
+ "digest",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "sha2"
2710
+ version = "0.10.9"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2713
+ dependencies = [
2714
+ "cfg-if",
2715
+ "cpufeatures 0.2.17",
2716
+ "digest",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "sharded-slab"
2721
+ version = "0.1.7"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2724
+ dependencies = [
2725
+ "lazy_static",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "shlex"
2730
+ version = "2.0.1"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2733
+
2734
+ [[package]]
2735
+ name = "signal-hook"
2736
+ version = "0.3.18"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2739
+ dependencies = [
2740
+ "libc",
2741
+ "signal-hook-registry",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "signal-hook-mio"
2746
+ version = "0.2.5"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
2749
+ dependencies = [
2750
+ "libc",
2751
+ "mio",
2752
+ "signal-hook",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "signal-hook-registry"
2757
+ version = "1.4.8"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2760
+ dependencies = [
2761
+ "errno",
2762
+ "libc",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "signature"
2767
+ version = "2.2.0"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2770
+ dependencies = [
2771
+ "digest",
2772
+ "rand_core",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "simd-adler32"
2777
+ version = "0.3.10"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2780
+
2781
+ [[package]]
2782
+ name = "similar"
2783
+ version = "3.1.1"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
2786
+ dependencies = [
2787
+ "bstr",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "slab"
2792
+ version = "0.4.12"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2795
+
2796
+ [[package]]
2797
+ name = "smallvec"
2798
+ version = "1.15.2"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2801
+
2802
+ [[package]]
2803
+ name = "socket2"
2804
+ version = "0.6.5"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
2807
+ dependencies = [
2808
+ "libc",
2809
+ "windows-sys 0.61.2",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "spin"
2814
+ version = "0.9.9"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
2817
+ dependencies = [
2818
+ "lock_api",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "spki"
2823
+ version = "0.7.3"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2826
+ dependencies = [
2827
+ "base64ct",
2828
+ "der",
2829
+ ]
2830
+
2831
+ [[package]]
2832
+ name = "ssh-cipher"
2833
+ version = "0.2.0"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
2836
+ dependencies = [
2837
+ "aes",
2838
+ "aes-gcm",
2839
+ "cbc",
2840
+ "chacha20",
2841
+ "cipher",
2842
+ "ctr",
2843
+ "poly1305",
2844
+ "ssh-encoding",
2845
+ "subtle",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "ssh-encoding"
2850
+ version = "0.2.0"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
2853
+ dependencies = [
2854
+ "base64ct",
2855
+ "bytes",
2856
+ "pem-rfc7468",
2857
+ "sha2",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "stable_deref_trait"
2862
+ version = "1.2.1"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2865
+
2866
+ [[package]]
2867
+ name = "streaming-iterator"
2868
+ version = "0.1.9"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
2871
+
2872
+ [[package]]
2873
+ name = "strict"
2874
+ version = "0.2.0"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "f42444fea5b87a39db4218d9422087e66a85d0e7a0963a439b07bcdf91804006"
2877
+
2878
+ [[package]]
2879
+ name = "strsim"
2880
+ version = "0.11.1"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2883
+
2884
+ [[package]]
2885
+ name = "strum"
2886
+ version = "0.27.2"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2889
+
2890
+ [[package]]
2891
+ name = "strum_macros"
2892
+ version = "0.27.2"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2895
+ dependencies = [
2896
+ "heck",
2897
+ "proc-macro2",
2898
+ "quote",
2899
+ "syn 2.0.118",
2900
+ ]
2901
+
2902
+ [[package]]
2903
+ name = "subtle"
2904
+ version = "2.6.1"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2907
+
2908
+ [[package]]
2909
+ name = "syn"
2910
+ version = "1.0.109"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2913
+ dependencies = [
2914
+ "proc-macro2",
2915
+ "quote",
2916
+ "unicode-ident",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "syn"
2921
+ version = "2.0.118"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2924
+ dependencies = [
2925
+ "proc-macro2",
2926
+ "quote",
2927
+ "unicode-ident",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "sync_wrapper"
2932
+ version = "1.0.2"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2935
+
2936
+ [[package]]
2937
+ name = "target-lexicon"
2938
+ version = "0.13.5"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2941
+
2942
+ [[package]]
2943
+ name = "target-triple"
2944
+ version = "1.0.0"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "591ef38edfb78ca4771ee32cf494cb8771944bee237a9b91fc9c1424ac4b777b"
2947
+
2948
+ [[package]]
2949
+ name = "tempfile"
2950
+ version = "3.27.0"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2953
+ dependencies = [
2954
+ "fastrand",
2955
+ "getrandom 0.4.3",
2956
+ "once_cell",
2957
+ "rustix",
2958
+ "windows-sys 0.61.2",
2959
+ ]
2960
+
2961
+ [[package]]
2962
+ name = "termcolor"
2963
+ version = "1.4.1"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2966
+ dependencies = [
2967
+ "winapi-util",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "termimad"
2972
+ version = "0.34.1"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "889a9370996b74cf46016ce35b96c248a9ac36d69aab1d112b3e09bc33affa49"
2975
+ dependencies = [
2976
+ "coolor",
2977
+ "crokey",
2978
+ "crossbeam",
2979
+ "lazy-regex",
2980
+ "minimad",
2981
+ "serde",
2982
+ "thiserror 2.0.18",
2983
+ "unicode-width 0.1.14",
2984
+ ]
2985
+
2986
+ [[package]]
2987
+ name = "terminal-light"
2988
+ version = "1.9.0"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "79307346b35bf24ed47c895c71f24653fab51c37576c7df7b5efdb8d519aee6d"
2991
+ dependencies = [
2992
+ "coolor",
2993
+ "crossterm",
2994
+ "thiserror 1.0.69",
2995
+ "xterm-query",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "termtree"
3000
+ version = "0.5.1"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3003
+
3004
+ [[package]]
3005
+ name = "thiserror"
3006
+ version = "1.0.69"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3009
+ dependencies = [
3010
+ "thiserror-impl 1.0.69",
3011
+ ]
3012
+
3013
+ [[package]]
3014
+ name = "thiserror"
3015
+ version = "2.0.18"
3016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3017
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3018
+ dependencies = [
3019
+ "thiserror-impl 2.0.18",
3020
+ ]
3021
+
3022
+ [[package]]
3023
+ name = "thiserror-impl"
3024
+ version = "1.0.69"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3027
+ dependencies = [
3028
+ "proc-macro2",
3029
+ "quote",
3030
+ "syn 2.0.118",
3031
+ ]
3032
+
3033
+ [[package]]
3034
+ name = "thiserror-impl"
3035
+ version = "2.0.18"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3038
+ dependencies = [
3039
+ "proc-macro2",
3040
+ "quote",
3041
+ "syn 2.0.118",
3042
+ ]
3043
+
3044
+ [[package]]
3045
+ name = "thread_local"
3046
+ version = "1.1.9"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3049
+ dependencies = [
3050
+ "cfg-if",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "tikv-jemalloc-ctl"
3055
+ version = "0.7.0"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "3a184c43b8ab2f41df2733b55556e3f5f632f4aeaa205b1bb018f574b7f5f142"
3058
+ dependencies = [
3059
+ "libc",
3060
+ "paste",
3061
+ "tikv-jemalloc-sys",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "tikv-jemalloc-sys"
3066
+ version = "0.7.1+5.3.1-0-g81034ce1f1373e37dc865038e1bc8eeecf559ce8"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "1a2825c78386b4ae0314074867860ba9577875de945f05992c38815cbec327f0"
3069
+ dependencies = [
3070
+ "cc",
3071
+ "libc",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "tikv-jemallocator"
3076
+ version = "0.7.0"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "249f09e49ab1609436f34c776e84231bead18d6a955f119f939bdc1d847561bd"
3079
+ dependencies = [
3080
+ "libc",
3081
+ "tikv-jemalloc-sys",
3082
+ ]
3083
+
3084
+ [[package]]
3085
+ name = "tokio"
3086
+ version = "1.52.3"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3089
+ dependencies = [
3090
+ "bytes",
3091
+ "libc",
3092
+ "mio",
3093
+ "parking_lot",
3094
+ "pin-project-lite",
3095
+ "signal-hook-registry",
3096
+ "socket2",
3097
+ "tokio-macros",
3098
+ "windows-sys 0.61.2",
3099
+ ]
3100
+
3101
+ [[package]]
3102
+ name = "tokio-macros"
3103
+ version = "2.7.0"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3106
+ dependencies = [
3107
+ "proc-macro2",
3108
+ "quote",
3109
+ "syn 2.0.118",
3110
+ ]
3111
+
3112
+ [[package]]
3113
+ name = "tokio-stream"
3114
+ version = "0.1.18"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3117
+ dependencies = [
3118
+ "futures-core",
3119
+ "pin-project-lite",
3120
+ "tokio",
3121
+ ]
3122
+
3123
+ [[package]]
3124
+ name = "tokio-util"
3125
+ version = "0.7.18"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3128
+ dependencies = [
3129
+ "bytes",
3130
+ "futures-core",
3131
+ "futures-sink",
3132
+ "pin-project-lite",
3133
+ "tokio",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "toml_datetime"
3138
+ version = "1.1.1+spec-1.1.0"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3141
+ dependencies = [
3142
+ "serde_core",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "toml_edit"
3147
+ version = "0.25.12+spec-1.1.0"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
3150
+ dependencies = [
3151
+ "indexmap",
3152
+ "toml_datetime",
3153
+ "toml_parser",
3154
+ "toml_writer",
3155
+ "winnow",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "toml_parser"
3160
+ version = "1.1.2+spec-1.1.0"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3163
+ dependencies = [
3164
+ "winnow",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "toml_writer"
3169
+ version = "1.1.1+spec-1.1.0"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
3172
+
3173
+ [[package]]
3174
+ name = "tower"
3175
+ version = "0.5.3"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3178
+ dependencies = [
3179
+ "futures-core",
3180
+ "futures-util",
3181
+ "pin-project-lite",
3182
+ "sync_wrapper",
3183
+ "tower-layer",
3184
+ "tower-service",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "tower-layer"
3189
+ version = "0.3.3"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3192
+
3193
+ [[package]]
3194
+ name = "tower-lsp-server"
3195
+ version = "0.23.0"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "2f0e711655c89181a6bc6a2cc348131fcd9680085f5b06b6af13427a393a6e72"
3198
+ dependencies = [
3199
+ "bytes",
3200
+ "dashmap",
3201
+ "futures",
3202
+ "httparse",
3203
+ "ls-types",
3204
+ "memchr",
3205
+ "serde",
3206
+ "serde_json",
3207
+ "tokio",
3208
+ "tokio-util",
3209
+ "tower",
3210
+ "tracing",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "tower-service"
3215
+ version = "0.3.3"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3218
+
3219
+ [[package]]
3220
+ name = "tracing"
3221
+ version = "0.1.44"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3224
+ dependencies = [
3225
+ "pin-project-lite",
3226
+ "tracing-attributes",
3227
+ "tracing-core",
3228
+ ]
3229
+
3230
+ [[package]]
3231
+ name = "tracing-attributes"
3232
+ version = "0.1.31"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3235
+ dependencies = [
3236
+ "proc-macro2",
3237
+ "quote",
3238
+ "syn 2.0.118",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "tracing-core"
3243
+ version = "0.1.36"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3246
+ dependencies = [
3247
+ "once_cell",
3248
+ "valuable",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "tracing-log"
3253
+ version = "0.2.0"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3256
+ dependencies = [
3257
+ "log",
3258
+ "once_cell",
3259
+ "tracing-core",
3260
+ ]
3261
+
3262
+ [[package]]
3263
+ name = "tracing-subscriber"
3264
+ version = "0.3.23"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3267
+ dependencies = [
3268
+ "matchers",
3269
+ "nu-ansi-term",
3270
+ "once_cell",
3271
+ "regex-automata",
3272
+ "sharded-slab",
3273
+ "smallvec",
3274
+ "thread_local",
3275
+ "tracing",
3276
+ "tracing-core",
3277
+ "tracing-log",
3278
+ ]
3279
+
3280
+ [[package]]
3281
+ name = "tree-sitter"
3282
+ version = "0.26.10"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "3c343ed63e3f5c64d1acdecb5d2c13d4e169cb5fde0052106ebaa6c6f27f9e55"
3285
+ dependencies = [
3286
+ "cc",
3287
+ "regex",
3288
+ "regex-syntax",
3289
+ "serde_json",
3290
+ "streaming-iterator",
3291
+ "tree-sitter-language",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "tree-sitter-bash"
3296
+ version = "0.25.1"
3297
+ dependencies = [
3298
+ "cc",
3299
+ "tree-sitter-language",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "tree-sitter-c"
3304
+ version = "0.24.2"
3305
+ dependencies = [
3306
+ "cc",
3307
+ "tree-sitter-language",
3308
+ ]
3309
+
3310
+ [[package]]
3311
+ name = "tree-sitter-c-sharp"
3312
+ version = "0.23.5"
3313
+ dependencies = [
3314
+ "cc",
3315
+ "tree-sitter-language",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "tree-sitter-cpp"
3320
+ version = "0.23.4"
3321
+ dependencies = [
3322
+ "cc",
3323
+ "tree-sitter-language",
3324
+ ]
3325
+
3326
+ [[package]]
3327
+ name = "tree-sitter-css"
3328
+ version = "0.25.0"
3329
+ dependencies = [
3330
+ "cc",
3331
+ "tree-sitter-language",
3332
+ ]
3333
+
3334
+ [[package]]
3335
+ name = "tree-sitter-dart"
3336
+ version = "0.2.0"
3337
+ dependencies = [
3338
+ "cc",
3339
+ "tree-sitter-language",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "tree-sitter-elixir"
3344
+ version = "0.3.5"
3345
+ dependencies = [
3346
+ "cc",
3347
+ "tree-sitter-language",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "tree-sitter-go"
3352
+ version = "0.25.0"
3353
+ dependencies = [
3354
+ "cc",
3355
+ "tree-sitter-language",
3356
+ ]
3357
+
3358
+ [[package]]
3359
+ name = "tree-sitter-haskell"
3360
+ version = "0.23.1"
3361
+ dependencies = [
3362
+ "cc",
3363
+ "tree-sitter-language",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "tree-sitter-hcl"
3368
+ version = "1.1.0"
3369
+ dependencies = [
3370
+ "cc",
3371
+ "tree-sitter-language",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "tree-sitter-html"
3376
+ version = "0.23.2"
3377
+ dependencies = [
3378
+ "cc",
3379
+ "tree-sitter-language",
3380
+ ]
3381
+
3382
+ [[package]]
3383
+ name = "tree-sitter-java"
3384
+ version = "0.23.5"
3385
+ dependencies = [
3386
+ "cc",
3387
+ "tree-sitter-language",
3388
+ ]
3389
+
3390
+ [[package]]
3391
+ name = "tree-sitter-javascript"
3392
+ version = "0.25.0"
3393
+ dependencies = [
3394
+ "cc",
3395
+ "tree-sitter-language",
3396
+ ]
3397
+
3398
+ [[package]]
3399
+ name = "tree-sitter-json"
3400
+ version = "0.24.8"
3401
+ dependencies = [
3402
+ "cc",
3403
+ "tree-sitter-language",
3404
+ ]
3405
+
3406
+ [[package]]
3407
+ name = "tree-sitter-kotlin-sg"
3408
+ version = "0.4.1"
3409
+ dependencies = [
3410
+ "cc",
3411
+ "tree-sitter-language",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "tree-sitter-language"
3416
+ version = "0.1.7"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
3419
+
3420
+ [[package]]
3421
+ name = "tree-sitter-lua"
3422
+ version = "0.5.0"
3423
+ dependencies = [
3424
+ "cc",
3425
+ "tree-sitter-language",
3426
+ ]
3427
+
3428
+ [[package]]
3429
+ name = "tree-sitter-md"
3430
+ version = "0.5.3"
3431
+ dependencies = [
3432
+ "cc",
3433
+ "tree-sitter-language",
3434
+ ]
3435
+
3436
+ [[package]]
3437
+ name = "tree-sitter-nix"
3438
+ version = "0.3.0"
3439
+ dependencies = [
3440
+ "cc",
3441
+ "tree-sitter-language",
3442
+ ]
3443
+
3444
+ [[package]]
3445
+ name = "tree-sitter-php"
3446
+ version = "0.24.2"
3447
+ dependencies = [
3448
+ "cc",
3449
+ "tree-sitter-language",
3450
+ ]
3451
+
3452
+ [[package]]
3453
+ name = "tree-sitter-python"
3454
+ version = "0.25.0"
3455
+ dependencies = [
3456
+ "cc",
3457
+ "tree-sitter-language",
3458
+ ]
3459
+
3460
+ [[package]]
3461
+ name = "tree-sitter-ruby"
3462
+ version = "0.23.1"
3463
+ dependencies = [
3464
+ "cc",
3465
+ "tree-sitter-language",
3466
+ ]
3467
+
3468
+ [[package]]
3469
+ name = "tree-sitter-rust"
3470
+ version = "0.24.2"
3471
+ dependencies = [
3472
+ "cc",
3473
+ "tree-sitter-language",
3474
+ ]
3475
+
3476
+ [[package]]
3477
+ name = "tree-sitter-scala"
3478
+ version = "0.26.0"
3479
+ dependencies = [
3480
+ "cc",
3481
+ "tree-sitter-language",
3482
+ ]
3483
+
3484
+ [[package]]
3485
+ name = "tree-sitter-solidity"
3486
+ version = "1.2.13"
3487
+ dependencies = [
3488
+ "cc",
3489
+ "tree-sitter-language",
3490
+ ]
3491
+
3492
+ [[package]]
3493
+ name = "tree-sitter-swift"
3494
+ version = "0.7.3"
3495
+ dependencies = [
3496
+ "cc",
3497
+ "tree-sitter-language",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "tree-sitter-typescript"
3502
+ version = "0.23.2"
3503
+ dependencies = [
3504
+ "cc",
3505
+ "tree-sitter-language",
3506
+ ]
3507
+
3508
+ [[package]]
3509
+ name = "tree-sitter-yaml"
3510
+ version = "0.7.2"
3511
+ dependencies = [
3512
+ "cc",
3513
+ "tree-sitter-language",
3514
+ ]
3515
+
3516
+ [[package]]
3517
+ name = "typed-builder"
3518
+ version = "0.21.2"
3519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3520
+ checksum = "fef81aec2ca29576f9f6ae8755108640d0a86dd3161b2e8bca6cfa554e98f77d"
3521
+ dependencies = [
3522
+ "typed-builder-macro",
3523
+ ]
3524
+
3525
+ [[package]]
3526
+ name = "typed-builder-macro"
3527
+ version = "0.21.2"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "1ecb9ecf7799210407c14a8cfdfe0173365780968dc57973ed082211958e0b18"
3530
+ dependencies = [
3531
+ "proc-macro2",
3532
+ "quote",
3533
+ "syn 2.0.118",
3534
+ ]
3535
+
3536
+ [[package]]
3537
+ name = "typenum"
3538
+ version = "1.20.1"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3541
+
3542
+ [[package]]
3543
+ name = "unicode-ident"
3544
+ version = "1.0.24"
3545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3546
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3547
+
3548
+ [[package]]
3549
+ name = "unicode-segmentation"
3550
+ version = "1.13.3"
3551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3552
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
3553
+
3554
+ [[package]]
3555
+ name = "unicode-width"
3556
+ version = "0.1.14"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3559
+
3560
+ [[package]]
3561
+ name = "unicode-width"
3562
+ version = "0.2.2"
3563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3564
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3565
+
3566
+ [[package]]
3567
+ name = "universal-hash"
3568
+ version = "0.5.1"
3569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3570
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3571
+ dependencies = [
3572
+ "crypto-common",
3573
+ "subtle",
3574
+ ]
3575
+
3576
+ [[package]]
3577
+ name = "unsafe-libyaml"
3578
+ version = "0.2.11"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3581
+
3582
+ [[package]]
3583
+ name = "untrusted"
3584
+ version = "0.9.0"
3585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3586
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3587
+
3588
+ [[package]]
3589
+ name = "uriparse"
3590
+ version = "0.6.4"
3591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3592
+ checksum = "0200d0fc04d809396c2ad43f3c95da3582a2556eba8d453c1087f4120ee352ff"
3593
+ dependencies = [
3594
+ "fnv",
3595
+ "lazy_static",
3596
+ ]
3597
+
3598
+ [[package]]
3599
+ name = "utf8parse"
3600
+ version = "0.2.2"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3603
+
3604
+ [[package]]
3605
+ name = "valuable"
3606
+ version = "0.1.1"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3609
+
3610
+ [[package]]
3611
+ name = "version_check"
3612
+ version = "0.9.5"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3615
+
3616
+ [[package]]
3617
+ name = "vorpal"
3618
+ version = "0.1.0"
3619
+ dependencies = [
3620
+ "ansi_term",
3621
+ "anyhow",
3622
+ "assert_cmd",
3623
+ "atty",
3624
+ "base64",
3625
+ "blake3",
3626
+ "clap",
3627
+ "clap_complete",
3628
+ "codespan-reporting",
3629
+ "crossterm",
3630
+ "dashmap",
3631
+ "ignore",
3632
+ "inquire",
3633
+ "libc",
3634
+ "memchr",
3635
+ "predicates",
3636
+ "rand_core",
3637
+ "rayon",
3638
+ "regex",
3639
+ "russh",
3640
+ "serde",
3641
+ "serde-sarif",
3642
+ "serde_json",
3643
+ "serde_yaml",
3644
+ "similar",
3645
+ "smallvec",
3646
+ "tempfile",
3647
+ "termimad",
3648
+ "terminal-light",
3649
+ "tikv-jemalloc-sys",
3650
+ "tikv-jemallocator",
3651
+ "tokio",
3652
+ "tracing-subscriber",
3653
+ "tree-sitter",
3654
+ "vorpal-config",
3655
+ "vorpal-core",
3656
+ "vorpal-dynamic",
3657
+ "vorpal-index",
3658
+ "vorpal-language",
3659
+ "vorpal-loader",
3660
+ "vorpal-lsp",
3661
+ "vorpal-mcp",
3662
+ "vorpal-outline",
3663
+ "vorpal-transport",
3664
+ "vorpal-wire",
3665
+ ]
3666
+
3667
+ [[package]]
3668
+ name = "vorpal-ann"
3669
+ version = "0.1.0"
3670
+ dependencies = [
3671
+ "bytemuck",
3672
+ "rayon",
3673
+ "vorpal-mem",
3674
+ ]
3675
+
3676
+ [[package]]
3677
+ name = "vorpal-canonical"
3678
+ version = "0.1.0"
3679
+ dependencies = [
3680
+ "blake3",
3681
+ "vorpal-segment",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "vorpal-config"
3686
+ version = "0.1.0"
3687
+ dependencies = [
3688
+ "bit-set",
3689
+ "globset",
3690
+ "regex",
3691
+ "schemars",
3692
+ "serde",
3693
+ "serde_regex",
3694
+ "serde_yaml",
3695
+ "thiserror 2.0.18",
3696
+ "tree-sitter-typescript",
3697
+ "vorpal-core",
3698
+ ]
3699
+
3700
+ [[package]]
3701
+ name = "vorpal-core"
3702
+ version = "0.1.0"
3703
+ dependencies = [
3704
+ "bit-set",
3705
+ "regex",
3706
+ "regex-syntax",
3707
+ "thiserror 2.0.18",
3708
+ "tree-sitter",
3709
+ "tree-sitter-typescript",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "vorpal-dynamic"
3714
+ version = "0.1.0"
3715
+ dependencies = [
3716
+ "ignore",
3717
+ "libloading",
3718
+ "serde",
3719
+ "serde_yaml",
3720
+ "target-triple",
3721
+ "thiserror 2.0.18",
3722
+ "tree-sitter",
3723
+ "vorpal-core",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "vorpal-graph"
3728
+ version = "0.1.0"
3729
+ dependencies = [
3730
+ "bit-set",
3731
+ "bytemuck",
3732
+ "vorpal-mem",
3733
+ ]
3734
+
3735
+ [[package]]
3736
+ name = "vorpal-index"
3737
+ version = "0.1.0"
3738
+ dependencies = [
3739
+ "fd-lock",
3740
+ "rayon",
3741
+ "serde",
3742
+ "serde_json",
3743
+ "tikv-jemalloc-sys",
3744
+ "tikv-jemallocator",
3745
+ "tree-sitter",
3746
+ "vorpal-ann",
3747
+ "vorpal-ingest",
3748
+ "vorpal-kg",
3749
+ "xxhash-rust",
3750
+ ]
3751
+
3752
+ [[package]]
3753
+ name = "vorpal-ingest"
3754
+ version = "0.1.0"
3755
+ dependencies = [
3756
+ "blake3",
3757
+ "crossbeam-channel",
3758
+ "crossbeam-utils",
3759
+ "ignore",
3760
+ "rayon",
3761
+ "vorpal-core",
3762
+ "vorpal-kg",
3763
+ "vorpal-language",
3764
+ "vorpal-mem",
3765
+ "vorpal-outline",
3766
+ "vorpal-resolve",
3767
+ "xxhash-rust",
3768
+ ]
3769
+
3770
+ [[package]]
3771
+ name = "vorpal-kg"
3772
+ version = "0.1.0"
3773
+ dependencies = [
3774
+ "rayon",
3775
+ "tikv-jemalloc-ctl",
3776
+ "vorpal-canonical",
3777
+ "vorpal-graph",
3778
+ "vorpal-mem",
3779
+ "vorpal-outline",
3780
+ "vorpal-segment",
3781
+ "xxhash-rust",
3782
+ ]
3783
+
3784
+ [[package]]
3785
+ name = "vorpal-language"
3786
+ version = "0.1.0"
3787
+ dependencies = [
3788
+ "ignore",
3789
+ "serde",
3790
+ "serde_json",
3791
+ "tree-sitter",
3792
+ "tree-sitter-bash",
3793
+ "tree-sitter-c",
3794
+ "tree-sitter-c-sharp",
3795
+ "tree-sitter-cpp",
3796
+ "tree-sitter-css",
3797
+ "tree-sitter-dart",
3798
+ "tree-sitter-elixir",
3799
+ "tree-sitter-go",
3800
+ "tree-sitter-haskell",
3801
+ "tree-sitter-hcl",
3802
+ "tree-sitter-html",
3803
+ "tree-sitter-java",
3804
+ "tree-sitter-javascript",
3805
+ "tree-sitter-json",
3806
+ "tree-sitter-kotlin-sg",
3807
+ "tree-sitter-lua",
3808
+ "tree-sitter-md",
3809
+ "tree-sitter-nix",
3810
+ "tree-sitter-php",
3811
+ "tree-sitter-python",
3812
+ "tree-sitter-ruby",
3813
+ "tree-sitter-rust",
3814
+ "tree-sitter-scala",
3815
+ "tree-sitter-solidity",
3816
+ "tree-sitter-swift",
3817
+ "tree-sitter-typescript",
3818
+ "tree-sitter-yaml",
3819
+ "vorpal-core",
3820
+ "xxhash-rust",
3821
+ ]
3822
+
3823
+ [[package]]
3824
+ name = "vorpal-loader"
3825
+ version = "0.1.0"
3826
+ dependencies = [
3827
+ "blake3",
3828
+ "ed25519-dalek",
3829
+ "libc",
3830
+ "rand_core",
3831
+ "tempfile",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "vorpal-lsp"
3836
+ version = "0.1.0"
3837
+ dependencies = [
3838
+ "anyhow",
3839
+ "dashmap",
3840
+ "futures",
3841
+ "serde",
3842
+ "serde_json",
3843
+ "tokio",
3844
+ "tokio-stream",
3845
+ "tokio-util",
3846
+ "tower-lsp-server",
3847
+ "vorpal-config",
3848
+ "vorpal-core",
3849
+ "vorpal-language",
3850
+ ]
3851
+
3852
+ [[package]]
3853
+ name = "vorpal-mcp"
3854
+ version = "0.1.0"
3855
+ dependencies = [
3856
+ "ignore",
3857
+ "notify",
3858
+ "serde",
3859
+ "serde_json",
3860
+ "tikv-jemallocator",
3861
+ "vorpal-config",
3862
+ "vorpal-core",
3863
+ "vorpal-index",
3864
+ "vorpal-kg",
3865
+ "vorpal-language",
3866
+ ]
3867
+
3868
+ [[package]]
3869
+ name = "vorpal-mem"
3870
+ version = "0.1.0"
3871
+ dependencies = [
3872
+ "bumpalo",
3873
+ "bytemuck",
3874
+ "libc",
3875
+ "memmap2",
3876
+ ]
3877
+
3878
+ [[package]]
3879
+ name = "vorpal-napi"
3880
+ version = "0.1.0"
3881
+ dependencies = [
3882
+ "ignore",
3883
+ "napi",
3884
+ "napi-build",
3885
+ "napi-derive",
3886
+ "serde",
3887
+ "serde_json",
3888
+ "tree-sitter",
3889
+ "vorpal-config",
3890
+ "vorpal-core",
3891
+ "vorpal-dynamic",
3892
+ "vorpal-index",
3893
+ "vorpal-kg",
3894
+ "vorpal-language",
3895
+ ]
3896
+
3897
+ [[package]]
3898
+ name = "vorpal-outline"
3899
+ version = "0.1.0"
3900
+ dependencies = [
3901
+ "regex",
3902
+ "serde",
3903
+ "serde_json",
3904
+ "serde_yaml",
3905
+ "thiserror 2.0.18",
3906
+ "vorpal-config",
3907
+ "vorpal-core",
3908
+ "vorpal-language",
3909
+ ]
3910
+
3911
+ [[package]]
3912
+ name = "vorpal-py"
3913
+ version = "0.1.0"
3914
+ dependencies = [
3915
+ "anyhow",
3916
+ "pyo3",
3917
+ "pythonize",
3918
+ "serde",
3919
+ "vorpal-config",
3920
+ "vorpal-core",
3921
+ "vorpal-dynamic",
3922
+ "vorpal-index",
3923
+ "vorpal-kg",
3924
+ "vorpal-language",
3925
+ ]
3926
+
3927
+ [[package]]
3928
+ name = "vorpal-resolve"
3929
+ version = "0.1.0"
3930
+ dependencies = [
3931
+ "crossbeam-channel",
3932
+ "rayon",
3933
+ "vorpal-kg",
3934
+ "vorpal-outline",
3935
+ "xxhash-rust",
3936
+ ]
3937
+
3938
+ [[package]]
3939
+ name = "vorpal-segment"
3940
+ version = "0.1.0"
3941
+ dependencies = [
3942
+ "blake3",
3943
+ "bytemuck",
3944
+ "thiserror 2.0.18",
3945
+ "vorpal-mem",
3946
+ "xxhash-rust",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "vorpal-transport"
3951
+ version = "0.1.0"
3952
+ dependencies = [
3953
+ "async-trait",
3954
+ "rand_core",
3955
+ "russh",
3956
+ "tempfile",
3957
+ "thiserror 2.0.18",
3958
+ "tokio",
3959
+ "tracing",
3960
+ "vorpal-wire",
3961
+ ]
3962
+
3963
+ [[package]]
3964
+ name = "vorpal-wire"
3965
+ version = "0.1.0"
3966
+ dependencies = [
3967
+ "blake3",
3968
+ "postcard",
3969
+ "serde",
3970
+ "serde_json",
3971
+ "thiserror 2.0.18",
3972
+ "tokio",
3973
+ "xxhash-rust",
3974
+ ]
3975
+
3976
+ [[package]]
3977
+ name = "wait-timeout"
3978
+ version = "0.2.1"
3979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3980
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3981
+ dependencies = [
3982
+ "libc",
3983
+ ]
3984
+
3985
+ [[package]]
3986
+ name = "walkdir"
3987
+ version = "2.5.0"
3988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3989
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3990
+ dependencies = [
3991
+ "same-file",
3992
+ "winapi-util",
3993
+ ]
3994
+
3995
+ [[package]]
3996
+ name = "wasi"
3997
+ version = "0.11.1+wasi-snapshot-preview1"
3998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3999
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4000
+
4001
+ [[package]]
4002
+ name = "wasm"
4003
+ version = "0.1.0"
4004
+ dependencies = [
4005
+ "js-sys",
4006
+ "serde",
4007
+ "serde-wasm-bindgen",
4008
+ "serde_json",
4009
+ "vorpal-config",
4010
+ "vorpal-core",
4011
+ "wasm-bindgen",
4012
+ "wasm-bindgen-futures",
4013
+ "wasm-bindgen-test",
4014
+ ]
4015
+
4016
+ [[package]]
4017
+ name = "wasm-bindgen"
4018
+ version = "0.2.126"
4019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4020
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
4021
+ dependencies = [
4022
+ "cfg-if",
4023
+ "once_cell",
4024
+ "rustversion",
4025
+ "serde",
4026
+ "serde_json",
4027
+ "wasm-bindgen-macro",
4028
+ "wasm-bindgen-shared",
4029
+ ]
4030
+
4031
+ [[package]]
4032
+ name = "wasm-bindgen-futures"
4033
+ version = "0.4.76"
4034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4035
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
4036
+ dependencies = [
4037
+ "js-sys",
4038
+ "wasm-bindgen",
4039
+ ]
4040
+
4041
+ [[package]]
4042
+ name = "wasm-bindgen-macro"
4043
+ version = "0.2.126"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
4046
+ dependencies = [
4047
+ "quote",
4048
+ "wasm-bindgen-macro-support",
4049
+ ]
4050
+
4051
+ [[package]]
4052
+ name = "wasm-bindgen-macro-support"
4053
+ version = "0.2.126"
4054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4055
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
4056
+ dependencies = [
4057
+ "bumpalo",
4058
+ "proc-macro2",
4059
+ "quote",
4060
+ "syn 2.0.118",
4061
+ "wasm-bindgen-shared",
4062
+ ]
4063
+
4064
+ [[package]]
4065
+ name = "wasm-bindgen-shared"
4066
+ version = "0.2.126"
4067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4068
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
4069
+ dependencies = [
4070
+ "unicode-ident",
4071
+ ]
4072
+
4073
+ [[package]]
4074
+ name = "wasm-bindgen-test"
4075
+ version = "0.3.76"
4076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4077
+ checksum = "2a0d555ca874445df8d314f94f5c948a4e74e5418f332c89f660a3d8310a96f4"
4078
+ dependencies = [
4079
+ "async-trait",
4080
+ "cast",
4081
+ "js-sys",
4082
+ "libm",
4083
+ "minicov",
4084
+ "nu-ansi-term",
4085
+ "num-traits",
4086
+ "oorandom",
4087
+ "serde",
4088
+ "serde_json",
4089
+ "wasm-bindgen",
4090
+ "wasm-bindgen-futures",
4091
+ "wasm-bindgen-test-macro",
4092
+ "wasm-bindgen-test-shared",
4093
+ ]
4094
+
4095
+ [[package]]
4096
+ name = "wasm-bindgen-test-macro"
4097
+ version = "0.3.76"
4098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4099
+ checksum = "94eb68555b95bcea5e8cf4abe280b529049479fa995bfc23734af96a6aedc120"
4100
+ dependencies = [
4101
+ "proc-macro2",
4102
+ "quote",
4103
+ "syn 2.0.118",
4104
+ ]
4105
+
4106
+ [[package]]
4107
+ name = "wasm-bindgen-test-shared"
4108
+ version = "0.2.126"
4109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4110
+ checksum = "c31d56021e873866c968588ed85ccdf56db5c426e44afdb4618c39895104b920"
4111
+
4112
+ [[package]]
4113
+ name = "winapi"
4114
+ version = "0.3.9"
4115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4116
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4117
+ dependencies = [
4118
+ "winapi-i686-pc-windows-gnu",
4119
+ "winapi-x86_64-pc-windows-gnu",
4120
+ ]
4121
+
4122
+ [[package]]
4123
+ name = "winapi-i686-pc-windows-gnu"
4124
+ version = "0.4.0"
4125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4126
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4127
+
4128
+ [[package]]
4129
+ name = "winapi-util"
4130
+ version = "0.1.11"
4131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4132
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4133
+ dependencies = [
4134
+ "windows-sys 0.61.2",
4135
+ ]
4136
+
4137
+ [[package]]
4138
+ name = "winapi-x86_64-pc-windows-gnu"
4139
+ version = "0.4.0"
4140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4141
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4142
+
4143
+ [[package]]
4144
+ name = "windows"
4145
+ version = "0.59.0"
4146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4147
+ checksum = "7f919aee0a93304be7f62e8e5027811bbba96bcb1de84d6618be56e43f8a32a1"
4148
+ dependencies = [
4149
+ "windows-core 0.59.0",
4150
+ "windows-targets 0.53.5",
4151
+ ]
4152
+
4153
+ [[package]]
4154
+ name = "windows-core"
4155
+ version = "0.59.0"
4156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4157
+ checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
4158
+ dependencies = [
4159
+ "windows-implement 0.59.0",
4160
+ "windows-interface",
4161
+ "windows-result 0.3.4",
4162
+ "windows-strings 0.3.1",
4163
+ "windows-targets 0.53.5",
4164
+ ]
4165
+
4166
+ [[package]]
4167
+ name = "windows-core"
4168
+ version = "0.62.2"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4171
+ dependencies = [
4172
+ "windows-implement 0.60.2",
4173
+ "windows-interface",
4174
+ "windows-link 0.2.1",
4175
+ "windows-result 0.4.1",
4176
+ "windows-strings 0.5.1",
4177
+ ]
4178
+
4179
+ [[package]]
4180
+ name = "windows-implement"
4181
+ version = "0.59.0"
4182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4183
+ checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
4184
+ dependencies = [
4185
+ "proc-macro2",
4186
+ "quote",
4187
+ "syn 2.0.118",
4188
+ ]
4189
+
4190
+ [[package]]
4191
+ name = "windows-implement"
4192
+ version = "0.60.2"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4195
+ dependencies = [
4196
+ "proc-macro2",
4197
+ "quote",
4198
+ "syn 2.0.118",
4199
+ ]
4200
+
4201
+ [[package]]
4202
+ name = "windows-interface"
4203
+ version = "0.59.3"
4204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4205
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4206
+ dependencies = [
4207
+ "proc-macro2",
4208
+ "quote",
4209
+ "syn 2.0.118",
4210
+ ]
4211
+
4212
+ [[package]]
4213
+ name = "windows-link"
4214
+ version = "0.1.3"
4215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4216
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4217
+
4218
+ [[package]]
4219
+ name = "windows-link"
4220
+ version = "0.2.1"
4221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4222
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4223
+
4224
+ [[package]]
4225
+ name = "windows-result"
4226
+ version = "0.3.4"
4227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4228
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4229
+ dependencies = [
4230
+ "windows-link 0.1.3",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "windows-result"
4235
+ version = "0.4.1"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4238
+ dependencies = [
4239
+ "windows-link 0.2.1",
4240
+ ]
4241
+
4242
+ [[package]]
4243
+ name = "windows-strings"
4244
+ version = "0.3.1"
4245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4247
+ dependencies = [
4248
+ "windows-link 0.1.3",
4249
+ ]
4250
+
4251
+ [[package]]
4252
+ name = "windows-strings"
4253
+ version = "0.5.1"
4254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4255
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4256
+ dependencies = [
4257
+ "windows-link 0.2.1",
4258
+ ]
4259
+
4260
+ [[package]]
4261
+ name = "windows-sys"
4262
+ version = "0.52.0"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4265
+ dependencies = [
4266
+ "windows-targets 0.52.6",
4267
+ ]
4268
+
4269
+ [[package]]
4270
+ name = "windows-sys"
4271
+ version = "0.59.0"
4272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4273
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4274
+ dependencies = [
4275
+ "windows-targets 0.52.6",
4276
+ ]
4277
+
4278
+ [[package]]
4279
+ name = "windows-sys"
4280
+ version = "0.60.2"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4283
+ dependencies = [
4284
+ "windows-targets 0.53.5",
4285
+ ]
4286
+
4287
+ [[package]]
4288
+ name = "windows-sys"
4289
+ version = "0.61.2"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4292
+ dependencies = [
4293
+ "windows-link 0.2.1",
4294
+ ]
4295
+
4296
+ [[package]]
4297
+ name = "windows-targets"
4298
+ version = "0.52.6"
4299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4300
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4301
+ dependencies = [
4302
+ "windows_aarch64_gnullvm 0.52.6",
4303
+ "windows_aarch64_msvc 0.52.6",
4304
+ "windows_i686_gnu 0.52.6",
4305
+ "windows_i686_gnullvm 0.52.6",
4306
+ "windows_i686_msvc 0.52.6",
4307
+ "windows_x86_64_gnu 0.52.6",
4308
+ "windows_x86_64_gnullvm 0.52.6",
4309
+ "windows_x86_64_msvc 0.52.6",
4310
+ ]
4311
+
4312
+ [[package]]
4313
+ name = "windows-targets"
4314
+ version = "0.53.5"
4315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4316
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4317
+ dependencies = [
4318
+ "windows-link 0.2.1",
4319
+ "windows_aarch64_gnullvm 0.53.1",
4320
+ "windows_aarch64_msvc 0.53.1",
4321
+ "windows_i686_gnu 0.53.1",
4322
+ "windows_i686_gnullvm 0.53.1",
4323
+ "windows_i686_msvc 0.53.1",
4324
+ "windows_x86_64_gnu 0.53.1",
4325
+ "windows_x86_64_gnullvm 0.53.1",
4326
+ "windows_x86_64_msvc 0.53.1",
4327
+ ]
4328
+
4329
+ [[package]]
4330
+ name = "windows_aarch64_gnullvm"
4331
+ version = "0.52.6"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4334
+
4335
+ [[package]]
4336
+ name = "windows_aarch64_gnullvm"
4337
+ version = "0.53.1"
4338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4339
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4340
+
4341
+ [[package]]
4342
+ name = "windows_aarch64_msvc"
4343
+ version = "0.52.6"
4344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4345
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4346
+
4347
+ [[package]]
4348
+ name = "windows_aarch64_msvc"
4349
+ version = "0.53.1"
4350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4351
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4352
+
4353
+ [[package]]
4354
+ name = "windows_i686_gnu"
4355
+ version = "0.52.6"
4356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4357
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4358
+
4359
+ [[package]]
4360
+ name = "windows_i686_gnu"
4361
+ version = "0.53.1"
4362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4363
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4364
+
4365
+ [[package]]
4366
+ name = "windows_i686_gnullvm"
4367
+ version = "0.52.6"
4368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4369
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4370
+
4371
+ [[package]]
4372
+ name = "windows_i686_gnullvm"
4373
+ version = "0.53.1"
4374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4375
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4376
+
4377
+ [[package]]
4378
+ name = "windows_i686_msvc"
4379
+ version = "0.52.6"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4382
+
4383
+ [[package]]
4384
+ name = "windows_i686_msvc"
4385
+ version = "0.53.1"
4386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4387
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4388
+
4389
+ [[package]]
4390
+ name = "windows_x86_64_gnu"
4391
+ version = "0.52.6"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4394
+
4395
+ [[package]]
4396
+ name = "windows_x86_64_gnu"
4397
+ version = "0.53.1"
4398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4399
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4400
+
4401
+ [[package]]
4402
+ name = "windows_x86_64_gnullvm"
4403
+ version = "0.52.6"
4404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4405
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4406
+
4407
+ [[package]]
4408
+ name = "windows_x86_64_gnullvm"
4409
+ version = "0.53.1"
4410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4411
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4412
+
4413
+ [[package]]
4414
+ name = "windows_x86_64_msvc"
4415
+ version = "0.52.6"
4416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4417
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4418
+
4419
+ [[package]]
4420
+ name = "windows_x86_64_msvc"
4421
+ version = "0.53.1"
4422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4423
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4424
+
4425
+ [[package]]
4426
+ name = "winnow"
4427
+ version = "1.0.3"
4428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4429
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4430
+ dependencies = [
4431
+ "memchr",
4432
+ ]
4433
+
4434
+ [[package]]
4435
+ name = "xtask"
4436
+ version = "0.0.0"
4437
+ dependencies = [
4438
+ "anyhow",
4439
+ "schemars",
4440
+ "serde_json",
4441
+ "toml_edit",
4442
+ "vorpal-config",
4443
+ "vorpal-core",
4444
+ "vorpal-language",
4445
+ ]
4446
+
4447
+ [[package]]
4448
+ name = "xterm-query"
4449
+ version = "0.6.0"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "e468ba3129b3d5acd2655410cf12adccd818746e2b8d7fd4b2d22a6e3515ec98"
4452
+ dependencies = [
4453
+ "nix 0.31.3",
4454
+ "thiserror 1.0.69",
4455
+ "windows-sys 0.59.0",
4456
+ ]
4457
+
4458
+ [[package]]
4459
+ name = "xxhash-rust"
4460
+ version = "0.8.18"
4461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4462
+ checksum = "aee1b19627c7c60102ab80d3a9cbe18de90bfe03bfa6c3715447681f0e8c8af6"
4463
+
4464
+ [[package]]
4465
+ name = "zerocopy"
4466
+ version = "0.8.55"
4467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4468
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
4469
+ dependencies = [
4470
+ "zerocopy-derive",
4471
+ ]
4472
+
4473
+ [[package]]
4474
+ name = "zerocopy-derive"
4475
+ version = "0.8.55"
4476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4477
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
4478
+ dependencies = [
4479
+ "proc-macro2",
4480
+ "quote",
4481
+ "syn 2.0.118",
4482
+ ]
4483
+
4484
+ [[package]]
4485
+ name = "zeroize"
4486
+ version = "1.9.0"
4487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4489
+
4490
+ [[package]]
4491
+ name = "zmij"
4492
+ version = "1.0.21"
4493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4494
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"