fensu-cli 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (373) hide show
  1. fensu_cli-0.2.1/Cargo.lock +2396 -0
  2. fensu_cli-0.2.1/Cargo.toml +43 -0
  3. fensu_cli-0.2.1/PKG-INFO +22 -0
  4. fensu_cli-0.2.1/README.md +5 -0
  5. fensu_cli-0.2.1/crates/fensu-cli/Cargo.toml +32 -0
  6. fensu_cli-0.2.1/crates/fensu-cli/assets/catalogue.json +1 -0
  7. fensu_cli-0.2.1/crates/fensu-cli/assets/python.gitignore +220 -0
  8. fensu_cli-0.2.1/crates/fensu-cli/build.rs +20 -0
  9. fensu_cli-0.2.1/crates/fensu-cli/src/command/main/check.rs +6 -0
  10. fensu_cli-0.2.1/crates/fensu-cli/src/command/main/help.rs +3 -0
  11. fensu_cli-0.2.1/crates/fensu-cli/src/command/main/init.rs +6 -0
  12. fensu_cli-0.2.1/crates/fensu-cli/src/command/main/mod.rs +5 -0
  13. fensu_cli-0.2.1/crates/fensu-cli/src/command/main/rule.rs +14 -0
  14. fensu_cli-0.2.1/crates/fensu-cli/src/command/main/run_cli.rs +43 -0
  15. fensu_cli-0.2.1/crates/fensu-cli/src/command/mod.rs +1 -0
  16. fensu_cli-0.2.1/crates/fensu-cli/src/constants.rs +15 -0
  17. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/cache.rs +157 -0
  18. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/check_evaluation.rs +275 -0
  19. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/check_execution.rs +240 -0
  20. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/check_policy.rs +276 -0
  21. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/check_project.rs +249 -0
  22. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/config.rs +230 -0
  23. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/init.rs +305 -0
  24. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/mod.rs +10 -0
  25. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/process.rs +86 -0
  26. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/render.rs +225 -0
  27. fensu_cli-0.2.1/crates/fensu-cli/src/helpers/rule.rs +123 -0
  28. fensu_cli-0.2.1/crates/fensu-cli/src/lib.rs +8 -0
  29. fensu_cli-0.2.1/crates/fensu-cli/src/main.rs +11 -0
  30. fensu_cli-0.2.1/crates/fensu-cli/src/models.rs +149 -0
  31. fensu_cli-0.2.1/crates/fensu-facts/Cargo.toml +30 -0
  32. fensu_cli-0.2.1/crates/fensu-facts/src/constants.rs +156 -0
  33. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/annotations.rs +93 -0
  34. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/contracts.rs +48 -0
  35. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/declarations.rs +124 -0
  36. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/functions.rs +140 -0
  37. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/harness.rs +163 -0
  38. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/hygiene.rs +56 -0
  39. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/mapping.rs +191 -0
  40. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/mod.rs +12 -0
  41. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/references.rs +107 -0
  42. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/rule_authoring.rs +281 -0
  43. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/conversion/state.rs +35 -0
  44. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/gateway/bindings.rs +253 -0
  45. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/gateway/mod.rs +6 -0
  46. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/gateway/model_types.rs +20 -0
  47. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/gateway/repository_bindings.rs +36 -0
  48. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/gateway/rule_authoring_bindings.rs +64 -0
  49. fensu_cli-0.2.1/crates/fensu-facts/src/extension/helpers/mod.rs +4 -0
  50. fensu_cli-0.2.1/crates/fensu-facts/src/extension/main/mod.rs +3 -0
  51. fensu_cli-0.2.1/crates/fensu-facts/src/extension/main/register_module.rs +86 -0
  52. fensu_cli-0.2.1/crates/fensu-facts/src/extension/mod.rs +7 -0
  53. fensu_cli-0.2.1/crates/fensu-facts/src/extension/models.rs +372 -0
  54. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/annotations/mod.rs +3 -0
  55. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/annotations/visitor.rs +319 -0
  56. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/contracts/category.rs +52 -0
  57. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/contracts/display.rs +192 -0
  58. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/contracts/mod.rs +6 -0
  59. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/contracts/returns.rs +48 -0
  60. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/contracts/rows.rs +65 -0
  61. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/control/conditionals.rs +233 -0
  62. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/control/mod.rs +3 -0
  63. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/declarations/mod.rs +3 -0
  64. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/declarations/rows.rs +352 -0
  65. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/harness/calls.rs +235 -0
  66. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/harness/dimensions.rs +134 -0
  67. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/harness/functions.rs +236 -0
  68. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/harness/imports.rs +245 -0
  69. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/harness/mod.rs +6 -0
  70. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/hygiene/checks.rs +264 -0
  71. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/hygiene/mod.rs +3 -0
  72. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/metrics/functions.rs +113 -0
  73. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/metrics/lookups.rs +92 -0
  74. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/metrics/mod.rs +5 -0
  75. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/metrics/mutations.rs +158 -0
  76. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/mod.rs +16 -0
  77. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/naming/mod.rs +3 -0
  78. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/naming/names.rs +197 -0
  79. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/project/calls.rs +189 -0
  80. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/project/mod.rs +3 -0
  81. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/references/events.rs +159 -0
  82. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/references/mod.rs +4 -0
  83. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/references/test_shape.rs +86 -0
  84. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/rule_authoring/literals.rs +60 -0
  85. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/rule_authoring/mod.rs +6 -0
  86. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/rule_authoring/mutations.rs +164 -0
  87. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/rule_authoring/ownership.rs +91 -0
  88. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/rule_authoring/references.rs +96 -0
  89. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/breadth.rs +49 -0
  90. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/children.rs +139 -0
  91. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/expression_children.rs +160 -0
  92. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/mod.rs +8 -0
  93. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/nodes.rs +148 -0
  94. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/spans.rs +196 -0
  95. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/shape/statement_children.rs +182 -0
  96. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/state/mod.rs +4 -0
  97. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/state/resolution.rs +308 -0
  98. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/state/scopes.rs +137 -0
  99. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/wording/mod.rs +3 -0
  100. fensu_cli-0.2.1/crates/fensu-facts/src/facts/helpers/wording/text.rs +19 -0
  101. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/enumerate_nodes.rs +39 -0
  102. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_annotations.rs +17 -0
  103. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_class_declarations.rs +84 -0
  104. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_comments.rs +28 -0
  105. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_control_flow.rs +27 -0
  106. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_dataclasses.rs +16 -0
  107. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_evaluate_rule_calls.rs +16 -0
  108. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_function_contracts.rs +17 -0
  109. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_functions.rs +16 -0
  110. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_hygiene.rs +12 -0
  111. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_module_declarations.rs +40 -0
  112. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_outer_state_mutations.rs +25 -0
  113. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_parameter_mutation_occurrences.rs +16 -0
  114. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_parameter_mutations.rs +16 -0
  115. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_project_facts.rs +29 -0
  116. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_references.rs +12 -0
  117. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_rule_calls.rs +97 -0
  118. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_rule_references.rs +89 -0
  119. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_test_functions.rs +16 -0
  120. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/extract_test_module.rs +12 -0
  121. fensu_cli-0.2.1/crates/fensu-facts/src/facts/main/mod.rs +22 -0
  122. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/constants.rs +4 -0
  123. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/helpers/classes.rs +166 -0
  124. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/helpers/expressions.rs +122 -0
  125. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/helpers/extraction.rs +94 -0
  126. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/helpers/functions.rs +120 -0
  127. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/helpers/imports.rs +71 -0
  128. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/helpers/mod.rs +7 -0
  129. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/main/extract_mapping_declarations.rs +15 -0
  130. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/main/extract_mapping_facts.rs +11 -0
  131. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/main/mod.rs +4 -0
  132. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/mod.rs +6 -0
  133. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mapping/models.rs +80 -0
  134. fensu_cli-0.2.1/crates/fensu-facts/src/facts/mod.rs +7 -0
  135. fensu_cli-0.2.1/crates/fensu-facts/src/facts/models.rs +399 -0
  136. fensu_cli-0.2.1/crates/fensu-facts/src/facts/types.rs +36 -0
  137. fensu_cli-0.2.1/crates/fensu-facts/src/lib.rs +9 -0
  138. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/helpers/failures.rs +32 -0
  139. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/helpers/mod.rs +3 -0
  140. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/main/mod.rs +4 -0
  141. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/main/parse_expression_strict.rs +23 -0
  142. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/main/parse_strict.rs +23 -0
  143. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/mod.rs +5 -0
  144. fensu_cli-0.2.1/crates/fensu-facts/src/parsing/models.rs +9 -0
  145. fensu_cli-0.2.1/crates/fensu-facts/src/positions/helpers/line_index.rs +13 -0
  146. fensu_cli-0.2.1/crates/fensu-facts/src/positions/helpers/mod.rs +3 -0
  147. fensu_cli-0.2.1/crates/fensu-facts/src/positions/main/index_lines.rs +9 -0
  148. fensu_cli-0.2.1/crates/fensu-facts/src/positions/main/locate_offset.rs +16 -0
  149. fensu_cli-0.2.1/crates/fensu-facts/src/positions/main/mod.rs +4 -0
  150. fensu_cli-0.2.1/crates/fensu-facts/src/positions/mod.rs +5 -0
  151. fensu_cli-0.2.1/crates/fensu-facts/src/positions/models.rs +50 -0
  152. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/constants.rs +3 -0
  153. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/helpers/matching.rs +20 -0
  154. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/helpers/mod.rs +6 -0
  155. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/helpers/observation_index.rs +57 -0
  156. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/helpers/repository_observation_index.rs +243 -0
  157. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/helpers/repository_paths.rs +34 -0
  158. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/main/build_repository_observation_index.rs +12 -0
  159. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/main/hash_files.rs +16 -0
  160. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/main/mod.rs +5 -0
  161. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/main/walk_python_files.rs +34 -0
  162. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/mod.rs +6 -0
  163. fensu_cli-0.2.1/crates/fensu-facts/src/snapshot/models.rs +69 -0
  164. fensu_cli-0.2.1/crates/fensu-facts/tests/facts/enumerate.rs +88 -0
  165. fensu_cli-0.2.1/crates/fensu-facts/tests/facts/mapping.rs +74 -0
  166. fensu_cli-0.2.1/crates/fensu-facts/tests/facts/rule_authoring.rs +256 -0
  167. fensu_cli-0.2.1/crates/fensu-facts/tests/facts/test_types.rs +47 -0
  168. fensu_cli-0.2.1/crates/fensu-facts/tests/facts.rs +8 -0
  169. fensu_cli-0.2.1/crates/fensu-facts/tests/parsing/strict.rs +111 -0
  170. fensu_cli-0.2.1/crates/fensu-facts/tests/parsing/test_types.rs +9 -0
  171. fensu_cli-0.2.1/crates/fensu-facts/tests/parsing.rs +4 -0
  172. fensu_cli-0.2.1/crates/fensu-facts/tests/positions/locate.rs +106 -0
  173. fensu_cli-0.2.1/crates/fensu-facts/tests/positions/test_types.rs +9 -0
  174. fensu_cli-0.2.1/crates/fensu-facts/tests/positions.rs +4 -0
  175. fensu_cli-0.2.1/crates/fensu-facts/tests/snapshot/hashing.rs +68 -0
  176. fensu_cli-0.2.1/crates/fensu-facts/tests/snapshot/helpers.rs +81 -0
  177. fensu_cli-0.2.1/crates/fensu-facts/tests/snapshot/observations.rs +221 -0
  178. fensu_cli-0.2.1/crates/fensu-facts/tests/snapshot/test_types.rs +53 -0
  179. fensu_cli-0.2.1/crates/fensu-facts/tests/snapshot/walk.rs +185 -0
  180. fensu_cli-0.2.1/crates/fensu-facts/tests/snapshot.rs +10 -0
  181. fensu_cli-0.2.1/crates/fensu-memory/Cargo.toml +26 -0
  182. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/helpers/loading.rs +154 -0
  183. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/helpers/mod.rs +3 -0
  184. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/main/load_discovered_memory_corpus.rs +9 -0
  185. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/main/load_memory_corpus.rs +13 -0
  186. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/main/mod.rs +4 -0
  187. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/mod.rs +6 -0
  188. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/models.rs +30 -0
  189. fensu_cli-0.2.1/crates/fensu-memory/src/corpus/types.rs +12 -0
  190. fensu_cli-0.2.1/crates/fensu-memory/src/engine/constants.rs +293 -0
  191. fensu_cli-0.2.1/crates/fensu-memory/src/engine/errors.rs +154 -0
  192. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/archival/archive.rs +308 -0
  193. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/archival/mod.rs +3 -0
  194. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/mod.rs +9 -0
  195. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/database.rs +134 -0
  196. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/documents.rs +62 -0
  197. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/lists.rs +122 -0
  198. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/mod.rs +10 -0
  199. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/references.rs +103 -0
  200. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/sections.rs +85 -0
  201. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/skills.rs +38 -0
  202. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/streaming.rs +209 -0
  203. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/publication/values.rs +214 -0
  204. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/querying/graph_loading.rs +91 -0
  205. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/querying/graphs.rs +365 -0
  206. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/querying/mod.rs +7 -0
  207. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/querying/overviews.rs +58 -0
  208. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/querying/queries.rs +144 -0
  209. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/querying/query_values.rs +56 -0
  210. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/diagnostics.rs +186 -0
  211. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/mod.rs +17 -0
  212. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/schema_core.rs +230 -0
  213. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/schema_markdown.rs +242 -0
  214. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/schema_metadata.rs +165 -0
  215. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/schema_skill_view.rs +109 -0
  216. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/schema_views.rs +376 -0
  217. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/summaries.rs +31 -0
  218. fensu_cli-0.2.1/crates/fensu-memory/src/engine/helpers/reporting/synchronization.rs +284 -0
  219. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/archive_memory.rs +24 -0
  220. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/check_memory.rs +22 -0
  221. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/memory_overview.rs +12 -0
  222. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/memory_relation_schema.rs +9 -0
  223. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/memory_schema.rs +9 -0
  224. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/memory_schema_sql.rs +8 -0
  225. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/mod.rs +25 -0
  226. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/probe_dependencies.rs +24 -0
  227. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/query_memory_graph.rs +15 -0
  228. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/query_memory_index.rs +16 -0
  229. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/rebuild_memory_index.rs +17 -0
  230. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/summarize_memory.rs +15 -0
  231. fensu_cli-0.2.1/crates/fensu-memory/src/engine/main/sync_memory_index.rs +17 -0
  232. fensu_cli-0.2.1/crates/fensu-memory/src/engine/mod.rs +9 -0
  233. fensu_cli-0.2.1/crates/fensu-memory/src/engine/models.rs +226 -0
  234. fensu_cli-0.2.1/crates/fensu-memory/src/graph/helpers/cycles.rs +45 -0
  235. fensu_cli-0.2.1/crates/fensu-memory/src/graph/helpers/dependencies.rs +121 -0
  236. fensu_cli-0.2.1/crates/fensu-memory/src/graph/helpers/document_targets.rs +107 -0
  237. fensu_cli-0.2.1/crates/fensu-memory/src/graph/helpers/heading_targets.rs +42 -0
  238. fensu_cli-0.2.1/crates/fensu-memory/src/graph/helpers/link_resolution.rs +207 -0
  239. fensu_cli-0.2.1/crates/fensu-memory/src/graph/helpers/mod.rs +7 -0
  240. fensu_cli-0.2.1/crates/fensu-memory/src/graph/main/mod.rs +3 -0
  241. fensu_cli-0.2.1/crates/fensu-memory/src/graph/main/resolve_memory_graph.rs +19 -0
  242. fensu_cli-0.2.1/crates/fensu-memory/src/graph/mod.rs +6 -0
  243. fensu_cli-0.2.1/crates/fensu-memory/src/graph/models.rs +48 -0
  244. fensu_cli-0.2.1/crates/fensu-memory/src/graph/types.rs +29 -0
  245. fensu_cli-0.2.1/crates/fensu-memory/src/lib.rs +8 -0
  246. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/constants.rs +54 -0
  247. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/assembly.rs +73 -0
  248. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/blocks.rs +89 -0
  249. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/headings.rs +249 -0
  250. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/line_index.rs +48 -0
  251. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/links.rs +119 -0
  252. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/lists.rs +192 -0
  253. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/mod.rs +10 -0
  254. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/obsidian.rs +283 -0
  255. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/helpers/text.rs +65 -0
  256. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/main/mod.rs +3 -0
  257. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/main/parse_markdown.rs +9 -0
  258. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/mod.rs +7 -0
  259. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/models.rs +120 -0
  260. fensu_cli-0.2.1/crates/fensu-memory/src/markdown/types.rs +74 -0
  261. fensu_cli-0.2.1/crates/fensu-memory/src/source/constants.rs +44 -0
  262. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/collisions.rs +113 -0
  263. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/discovery.rs +30 -0
  264. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/documents.rs +165 -0
  265. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/filesystem.rs +195 -0
  266. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/git_tracking.rs +85 -0
  267. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/mod.rs +10 -0
  268. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/skills.rs +273 -0
  269. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/tree.rs +204 -0
  270. fensu_cli-0.2.1/crates/fensu-memory/src/source/helpers/validation.rs +185 -0
  271. fensu_cli-0.2.1/crates/fensu-memory/src/source/main/discover_memory.rs +11 -0
  272. fensu_cli-0.2.1/crates/fensu-memory/src/source/main/mod.rs +3 -0
  273. fensu_cli-0.2.1/crates/fensu-memory/src/source/mod.rs +7 -0
  274. fensu_cli-0.2.1/crates/fensu-memory/src/source/models.rs +78 -0
  275. fensu_cli-0.2.1/crates/fensu-memory/src/source/types.rs +70 -0
  276. fensu_cli-0.2.1/crates/fensu-memory/tests/corpus/helpers.rs +82 -0
  277. fensu_cli-0.2.1/crates/fensu-memory/tests/corpus/loading.rs +229 -0
  278. fensu_cli-0.2.1/crates/fensu-memory/tests/corpus/test_types.rs +37 -0
  279. fensu_cli-0.2.1/crates/fensu-memory/tests/corpus.rs +6 -0
  280. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/archive.rs +315 -0
  281. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/check.rs +89 -0
  282. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/dependencies.rs +149 -0
  283. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/graph_query.rs +314 -0
  284. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/helpers.rs +388 -0
  285. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/list_batch/list_batches.rs +100 -0
  286. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/list_batch/test_types.rs +7 -0
  287. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/overview.rs +86 -0
  288. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/performance.rs +150 -0
  289. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/query.rs +248 -0
  290. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/schema.rs +73 -0
  291. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/streaming/helpers.rs +52 -0
  292. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/streaming.rs +167 -0
  293. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/summary.rs +57 -0
  294. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/sync.rs +327 -0
  295. fensu_cli-0.2.1/crates/fensu-memory/tests/engine/test_types.rs +236 -0
  296. fensu_cli-0.2.1/crates/fensu-memory/tests/engine.rs +4 -0
  297. fensu_cli-0.2.1/crates/fensu-memory/tests/graph/dependencies.rs +226 -0
  298. fensu_cli-0.2.1/crates/fensu-memory/tests/graph/helpers.rs +32 -0
  299. fensu_cli-0.2.1/crates/fensu-memory/tests/graph/resolution.rs +328 -0
  300. fensu_cli-0.2.1/crates/fensu-memory/tests/graph/test_types.rs +45 -0
  301. fensu_cli-0.2.1/crates/fensu-memory/tests/graph.rs +8 -0
  302. fensu_cli-0.2.1/crates/fensu-memory/tests/markdown/code_blocks.rs +76 -0
  303. fensu_cli-0.2.1/crates/fensu-memory/tests/markdown/links.rs +160 -0
  304. fensu_cli-0.2.1/crates/fensu-memory/tests/markdown/lists.rs +153 -0
  305. fensu_cli-0.2.1/crates/fensu-memory/tests/markdown/structure.rs +193 -0
  306. fensu_cli-0.2.1/crates/fensu-memory/tests/markdown/test_types.rs +60 -0
  307. fensu_cli-0.2.1/crates/fensu-memory/tests/markdown.rs +10 -0
  308. fensu_cli-0.2.1/crates/fensu-memory/tests/source/collisions.rs +101 -0
  309. fensu_cli-0.2.1/crates/fensu-memory/tests/source/discovery.rs +400 -0
  310. fensu_cli-0.2.1/crates/fensu-memory/tests/source/git_worktrees.rs +79 -0
  311. fensu_cli-0.2.1/crates/fensu-memory/tests/source/helpers.rs +91 -0
  312. fensu_cli-0.2.1/crates/fensu-memory/tests/source/symlinks.rs +76 -0
  313. fensu_cli-0.2.1/crates/fensu-memory/tests/source/test_types.rs +74 -0
  314. fensu_cli-0.2.1/crates/fensu-memory/tests/source.rs +12 -0
  315. fensu_cli-0.2.1/crates/fensu-native/Cargo.toml +33 -0
  316. fensu_cli-0.2.1/crates/fensu-native/src/cache/constants.rs +19 -0
  317. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/bindings.rs +339 -0
  318. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/database.rs +179 -0
  319. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/generation.rs +394 -0
  320. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/mod.rs +12 -0
  321. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/publication.rs +388 -0
  322. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/publication_merge.rs +178 -0
  323. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/records.rs +317 -0
  324. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/replay.rs +129 -0
  325. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/schema.rs +399 -0
  326. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/schema_values.rs +218 -0
  327. fensu_cli-0.2.1/crates/fensu-native/src/cache/helpers/storage.rs +271 -0
  328. fensu_cli-0.2.1/crates/fensu-native/src/cache/main/mod.rs +4 -0
  329. fensu_cli-0.2.1/crates/fensu-native/src/cache/main/register_cache.rs +25 -0
  330. fensu_cli-0.2.1/crates/fensu-native/src/cache/main/replay_generation.rs +20 -0
  331. fensu_cli-0.2.1/crates/fensu-native/src/cache/mod.rs +7 -0
  332. fensu_cli-0.2.1/crates/fensu-native/src/cache/models.rs +162 -0
  333. fensu_cli-0.2.1/crates/fensu-native/src/cache/types.rs +26 -0
  334. fensu_cli-0.2.1/crates/fensu-native/src/extension/constants.rs +8 -0
  335. fensu_cli-0.2.1/crates/fensu-native/src/extension/helpers/core_rule_bindings.rs +289 -0
  336. fensu_cli-0.2.1/crates/fensu-native/src/extension/helpers/execution_planning.rs +195 -0
  337. fensu_cli-0.2.1/crates/fensu-native/src/extension/helpers/memory_bindings.rs +197 -0
  338. fensu_cli-0.2.1/crates/fensu-native/src/extension/helpers/memory_conversion.rs +346 -0
  339. fensu_cli-0.2.1/crates/fensu-native/src/extension/helpers/memory_registration.rs +32 -0
  340. fensu_cli-0.2.1/crates/fensu-native/src/extension/helpers/mod.rs +10 -0
  341. fensu_cli-0.2.1/crates/fensu-native/src/extension/main/mod.rs +3 -0
  342. fensu_cli-0.2.1/crates/fensu-native/src/extension/main/register_module.rs +48 -0
  343. fensu_cli-0.2.1/crates/fensu-native/src/extension/mod.rs +5 -0
  344. fensu_cli-0.2.1/crates/fensu-native/src/lib.rs +8 -0
  345. fensu_cli-0.2.1/crates/fensu-native/src/rules/constants.rs +259 -0
  346. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/annotations/annotations.rs +98 -0
  347. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/hygiene/hygiene.rs +78 -0
  348. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/layers/layers.rs +328 -0
  349. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/layers/local.rs +173 -0
  350. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/layers/project.rs +89 -0
  351. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/mod.rs +40 -0
  352. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/naming/naming.rs +239 -0
  353. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/naming_globs/naming_globs.rs +179 -0
  354. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/project_queries/project_queries.rs +384 -0
  355. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/declarations.rs +261 -0
  356. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/paths.rs +382 -0
  357. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/project_layout.rs +291 -0
  358. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/project_layout_paths.rs +237 -0
  359. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/project_layout_queries.rs +145 -0
  360. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/roles.rs +70 -0
  361. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/roles/surfaces.rs +345 -0
  362. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/shape/shape.rs +263 -0
  363. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/tests/layout.rs +161 -0
  364. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/tests/names.rs +24 -0
  365. fensu_cli-0.2.1/crates/fensu-native/src/rules/helpers/tests/tests.rs +400 -0
  366. fensu_cli-0.2.1/crates/fensu-native/src/rules/main/evaluate_core_rules.rs +63 -0
  367. fensu_cli-0.2.1/crates/fensu-native/src/rules/main/mod.rs +4 -0
  368. fensu_cli-0.2.1/crates/fensu-native/src/rules/main/plan_core_rule_queries.rs +14 -0
  369. fensu_cli-0.2.1/crates/fensu-native/src/rules/mod.rs +6 -0
  370. fensu_cli-0.2.1/crates/fensu-native/src/rules/models.rs +94 -0
  371. fensu_cli-0.2.1/crates/fensu-native/tests/extension/memory_conversion.rs +174 -0
  372. fensu_cli-0.2.1/crates/fensu-native/tests/extension/test_types.rs +42 -0
  373. fensu_cli-0.2.1/pyproject.toml +27 -0
@@ -0,0 +1,2396 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "arc-swap"
28
+ version = "1.9.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
31
+ dependencies = [
32
+ "rustversion",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "arrayvec"
37
+ version = "0.7.8"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
40
+
41
+ [[package]]
42
+ name = "attribute-derive"
43
+ version = "0.10.5"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
46
+ dependencies = [
47
+ "attribute-derive-macro",
48
+ "derive-where",
49
+ "manyhow",
50
+ "proc-macro2",
51
+ "quote",
52
+ "syn",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "attribute-derive-macro"
57
+ version = "0.10.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
60
+ dependencies = [
61
+ "collection_literals",
62
+ "interpolator",
63
+ "manyhow",
64
+ "proc-macro-utils",
65
+ "proc-macro2",
66
+ "quote",
67
+ "quote-use",
68
+ "syn",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "bitflags"
73
+ version = "1.3.2"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
76
+
77
+ [[package]]
78
+ name = "bitflags"
79
+ version = "2.13.0"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
82
+
83
+ [[package]]
84
+ name = "block-buffer"
85
+ version = "0.10.4"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
88
+ dependencies = [
89
+ "generic-array",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "bstr"
94
+ version = "1.12.3"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
97
+ dependencies = [
98
+ "memchr",
99
+ "regex-automata",
100
+ "serde_core",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "bumpalo"
105
+ version = "3.20.3"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
108
+
109
+ [[package]]
110
+ name = "byteorder"
111
+ version = "1.5.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
114
+
115
+ [[package]]
116
+ name = "bytes"
117
+ version = "1.12.1"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
120
+
121
+ [[package]]
122
+ name = "castaway"
123
+ version = "0.2.4"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
126
+ dependencies = [
127
+ "rustversion",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "cc"
132
+ version = "1.2.67"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
135
+ dependencies = [
136
+ "find-msvc-tools",
137
+ "shlex",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "cfg-if"
142
+ version = "1.0.4"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
145
+
146
+ [[package]]
147
+ name = "clru"
148
+ version = "0.6.3"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "197fd99cb113a8d5d9b6376f3aa817f32c1078f2343b714fff7d2ca44fdf67d5"
151
+ dependencies = [
152
+ "hashbrown 0.16.1",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "collection_literals"
157
+ version = "1.0.3"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
160
+
161
+ [[package]]
162
+ name = "compact_str"
163
+ version = "0.9.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
166
+ dependencies = [
167
+ "castaway",
168
+ "cfg-if",
169
+ "itoa",
170
+ "rustversion",
171
+ "ryu",
172
+ "static_assertions",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "cpufeatures"
177
+ version = "0.2.17"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
180
+ dependencies = [
181
+ "libc",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "crc32fast"
186
+ version = "1.5.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
189
+ dependencies = [
190
+ "cfg-if",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "crossbeam-deque"
195
+ version = "0.8.7"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
198
+ dependencies = [
199
+ "crossbeam-epoch",
200
+ "crossbeam-utils",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "crossbeam-epoch"
205
+ version = "0.9.20"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
208
+ dependencies = [
209
+ "crossbeam-utils",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "crossbeam-utils"
214
+ version = "0.8.22"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
217
+
218
+ [[package]]
219
+ name = "crypto-common"
220
+ version = "0.1.7"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
223
+ dependencies = [
224
+ "generic-array",
225
+ "typenum",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "defmt"
230
+ version = "1.1.1"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
233
+ dependencies = [
234
+ "bitflags 1.3.2",
235
+ "defmt-macros",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "defmt-macros"
240
+ version = "1.1.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
243
+ dependencies = [
244
+ "defmt-parser",
245
+ "proc-macro2",
246
+ "quote",
247
+ "syn",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "defmt-parser"
252
+ version = "1.0.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
255
+ dependencies = [
256
+ "thiserror",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "derive-where"
261
+ version = "1.6.1"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
264
+ dependencies = [
265
+ "proc-macro2",
266
+ "quote",
267
+ "syn",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "digest"
272
+ version = "0.10.7"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
275
+ dependencies = [
276
+ "block-buffer",
277
+ "crypto-common",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "dunce"
282
+ version = "1.0.5"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
285
+
286
+ [[package]]
287
+ name = "either"
288
+ version = "1.16.0"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
291
+
292
+ [[package]]
293
+ name = "encoding_rs"
294
+ version = "0.8.35"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
297
+ dependencies = [
298
+ "cfg-if",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "equivalent"
303
+ version = "1.0.2"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
306
+
307
+ [[package]]
308
+ name = "errno"
309
+ version = "0.3.14"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
312
+ dependencies = [
313
+ "libc",
314
+ "windows-sys",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "fallible-iterator"
319
+ version = "0.3.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
322
+
323
+ [[package]]
324
+ name = "fallible-streaming-iterator"
325
+ version = "0.1.9"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
328
+
329
+ [[package]]
330
+ name = "faster-hex"
331
+ version = "0.10.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73"
334
+ dependencies = [
335
+ "heapless",
336
+ "serde",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "fastrand"
341
+ version = "2.4.1"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
344
+
345
+ [[package]]
346
+ name = "fensu-cli"
347
+ version = "0.2.1"
348
+ dependencies = [
349
+ "fensu-facts",
350
+ "fensu-memory",
351
+ "fensu-native",
352
+ "globset",
353
+ "rayon",
354
+ "ruff_python_ast",
355
+ "rusqlite",
356
+ "serde",
357
+ "serde_json",
358
+ "sha2",
359
+ "toml",
360
+ "walkdir",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "fensu-facts"
365
+ version = "0.1.0"
366
+ dependencies = [
367
+ "dunce",
368
+ "globset",
369
+ "hex",
370
+ "pyo3",
371
+ "rayon",
372
+ "ruff_python_ast",
373
+ "ruff_python_parser",
374
+ "ruff_text_size",
375
+ "sha2",
376
+ "walkdir",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "fensu-memory"
381
+ version = "0.1.0"
382
+ dependencies = [
383
+ "gix",
384
+ "hex",
385
+ "pulldown-cmark",
386
+ "rayon",
387
+ "rusqlite",
388
+ "sha2",
389
+ "tempfile",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "fensu-native"
394
+ version = "0.1.0"
395
+ dependencies = [
396
+ "fensu-facts",
397
+ "fensu-memory",
398
+ "flate2",
399
+ "globset",
400
+ "pyo3",
401
+ "rayon",
402
+ "ruff_python_ast",
403
+ "rusqlite",
404
+ "serde_json",
405
+ "sha2",
406
+ "unicode-ident",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "fensu-structure-checker"
411
+ version = "0.1.0"
412
+ dependencies = [
413
+ "proc-macro2",
414
+ "quote",
415
+ "syn",
416
+ "toml",
417
+ "walkdir",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "filetime"
422
+ version = "0.2.29"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
425
+ dependencies = [
426
+ "cfg-if",
427
+ "libc",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "find-msvc-tools"
432
+ version = "0.1.9"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
435
+
436
+ [[package]]
437
+ name = "flate2"
438
+ version = "1.1.9"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
441
+ dependencies = [
442
+ "crc32fast",
443
+ "libz-sys",
444
+ "miniz_oxide",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "fnv"
449
+ version = "1.0.7"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
452
+
453
+ [[package]]
454
+ name = "foldhash"
455
+ version = "0.2.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
458
+
459
+ [[package]]
460
+ name = "generic-array"
461
+ version = "0.14.7"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
464
+ dependencies = [
465
+ "typenum",
466
+ "version_check",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "get-size-derive2"
471
+ version = "0.10.1"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "1da24fbda09ec01bca7cfa1797c0e520e75123bccb01dcdf9041f8aa65183bc2"
474
+ dependencies = [
475
+ "attribute-derive",
476
+ "quote",
477
+ "syn",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "get-size2"
482
+ version = "0.10.1"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "823645bc6404ae2915707777061a47d3a031a9ee0bff51b34ec973df3d8d2990"
485
+ dependencies = [
486
+ "compact_str",
487
+ "get-size-derive2",
488
+ "hashbrown 0.17.1",
489
+ "ordermap",
490
+ "smallvec",
491
+ "thin-vec",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "getopts"
496
+ version = "0.2.24"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
499
+ dependencies = [
500
+ "unicode-width",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "getrandom"
505
+ version = "0.2.17"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
508
+ dependencies = [
509
+ "cfg-if",
510
+ "libc",
511
+ "wasi",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "getrandom"
516
+ version = "0.4.3"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
519
+ dependencies = [
520
+ "cfg-if",
521
+ "libc",
522
+ "r-efi",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "gix"
527
+ version = "0.85.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "fa8b2e38ebfc4484dfef8580ddcaf8abb7285e6f3eb6413ff6775d104ae96ca6"
530
+ dependencies = [
531
+ "gix-actor",
532
+ "gix-commitgraph",
533
+ "gix-config",
534
+ "gix-date",
535
+ "gix-diff",
536
+ "gix-discover",
537
+ "gix-error",
538
+ "gix-features",
539
+ "gix-fs",
540
+ "gix-glob",
541
+ "gix-hash",
542
+ "gix-hashtable",
543
+ "gix-ignore",
544
+ "gix-index",
545
+ "gix-lock",
546
+ "gix-object",
547
+ "gix-odb",
548
+ "gix-pack",
549
+ "gix-path",
550
+ "gix-protocol",
551
+ "gix-ref",
552
+ "gix-refspec",
553
+ "gix-revision",
554
+ "gix-revwalk",
555
+ "gix-sec",
556
+ "gix-shallow",
557
+ "gix-tempfile",
558
+ "gix-trace",
559
+ "gix-traverse",
560
+ "gix-url",
561
+ "gix-utils",
562
+ "gix-validate",
563
+ "gix-worktree",
564
+ "gix-worktree-stream",
565
+ "nonempty",
566
+ "smallvec",
567
+ "thiserror",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "gix-actor"
572
+ version = "0.41.1"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "8bc998b8f746dda8565450d08a63b792ced9165d8c27a1ed3f02799ec6a7820f"
575
+ dependencies = [
576
+ "bstr",
577
+ "gix-date",
578
+ "gix-error",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "gix-attributes"
583
+ version = "0.33.2"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "39b40888d0ed415c0744a6cdc61eebf0304c9d26ab726725b718443c322e5ba4"
586
+ dependencies = [
587
+ "bstr",
588
+ "gix-glob",
589
+ "gix-path",
590
+ "gix-quote",
591
+ "gix-trace",
592
+ "kstring",
593
+ "smallvec",
594
+ "thiserror",
595
+ "unicode-bom",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "gix-bitmap"
600
+ version = "0.3.2"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "52ebef0c26ad305747649e727bbcd56a7b7910754eb7cea88f6dff6f93c51283"
603
+ dependencies = [
604
+ "gix-error",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "gix-chunk"
609
+ version = "0.7.2"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "9faee47943b638e58ddd5e275a4906ad3e4b6c8584f1d41bd18ab9032ec52afb"
612
+ dependencies = [
613
+ "gix-error",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "gix-command"
618
+ version = "0.9.1"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "00706d4fef135ef4b01680d5218c6ee40cda8baf697b864296cbc887d19118f6"
621
+ dependencies = [
622
+ "bstr",
623
+ "gix-path",
624
+ "gix-quote",
625
+ "gix-trace",
626
+ "shell-words",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "gix-commitgraph"
631
+ version = "0.37.1"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "7f675d0df484a7f6a47e64bd6f311af489d947c0323b0564f36d14f3d7762abb"
634
+ dependencies = [
635
+ "bstr",
636
+ "gix-chunk",
637
+ "gix-error",
638
+ "gix-hash",
639
+ "memmap2",
640
+ "nonempty",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "gix-config"
645
+ version = "0.58.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "a29bf266c4cdaf759e535c24ad4ce655b987aeb6911075643403cc7cc5ade583"
648
+ dependencies = [
649
+ "bstr",
650
+ "gix-config-value",
651
+ "gix-features",
652
+ "gix-glob",
653
+ "gix-path",
654
+ "gix-ref",
655
+ "gix-sec",
656
+ "smallvec",
657
+ "thiserror",
658
+ "unicode-bom",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "gix-config-value"
663
+ version = "0.18.1"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "ed42168329552f6c2e5df09665c104199d45d84bedb53683738a49b57fe1baab"
666
+ dependencies = [
667
+ "bitflags 2.13.0",
668
+ "bstr",
669
+ "gix-path",
670
+ "libc",
671
+ "thiserror",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "gix-date"
676
+ version = "0.15.6"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "7e47b9e8cdc688296609b706428de570f88b1e0eed7156dde7b4a89d26fa4567"
679
+ dependencies = [
680
+ "bstr",
681
+ "gix-error",
682
+ "itoa",
683
+ "jiff",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "gix-diff"
688
+ version = "0.65.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "92c6d56c94edf92d78203a1cd416f770e35e10b6955ede6b9d7d0c22ff88a5f3"
691
+ dependencies = [
692
+ "bstr",
693
+ "gix-hash",
694
+ "gix-object",
695
+ "thiserror",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "gix-discover"
700
+ version = "0.53.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "d624d5b23b10c1d85337645227abe353ac95ab8ff66a7bdd5ce689b2db33a722"
703
+ dependencies = [
704
+ "bstr",
705
+ "dunce",
706
+ "gix-fs",
707
+ "gix-path",
708
+ "gix-ref",
709
+ "gix-sec",
710
+ "thiserror",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "gix-error"
715
+ version = "0.2.5"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "4a9292309fd944e71b2a3c96d3c03a6feb8852db646febdde7cbb9f79cb5f329"
718
+ dependencies = [
719
+ "bstr",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "gix-features"
724
+ version = "0.48.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "1849ae154d38bc403185be14fa871e38e3c93ee606875d94e207fdb9fba52dbc"
727
+ dependencies = [
728
+ "bytes",
729
+ "crc32fast",
730
+ "gix-path",
731
+ "gix-trace",
732
+ "gix-utils",
733
+ "libc",
734
+ "once_cell",
735
+ "prodash",
736
+ "thiserror",
737
+ "walkdir",
738
+ "zlib-rs",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "gix-filter"
743
+ version = "0.32.0"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "6644fb2ef97928c278675b239f366b457103d7e436f811d27331a8daf212759c"
746
+ dependencies = [
747
+ "bstr",
748
+ "encoding_rs",
749
+ "gix-attributes",
750
+ "gix-command",
751
+ "gix-hash",
752
+ "gix-object",
753
+ "gix-packetline",
754
+ "gix-path",
755
+ "gix-quote",
756
+ "gix-trace",
757
+ "gix-utils",
758
+ "smallvec",
759
+ "thiserror",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "gix-fs"
764
+ version = "0.21.2"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "6cdff46db8798e47e2f727d84b9379aac5add3dd3d9d0b07bb4d7d5d640771fe"
767
+ dependencies = [
768
+ "bstr",
769
+ "fastrand",
770
+ "gix-features",
771
+ "gix-path",
772
+ "gix-utils",
773
+ "thiserror",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "gix-glob"
778
+ version = "0.26.1"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "d1fcb8ef5b16bcf874abe9b68d8abb3c0493c876d367ab824151f30a0f3f3756"
781
+ dependencies = [
782
+ "bitflags 2.13.0",
783
+ "bstr",
784
+ "gix-features",
785
+ "gix-path",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "gix-hash"
790
+ version = "0.25.1"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "cb0926d3819c837750b4e03c7754901e73f68b8c9b690753a6372a1bed4eedce"
793
+ dependencies = [
794
+ "faster-hex",
795
+ "gix-features",
796
+ "sha1-checked",
797
+ "thiserror",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "gix-hashtable"
802
+ version = "0.15.2"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "7e261d54091f0d1c729bc83f54548c071bdec60a697de1e58e88bdfd7a99d24e"
805
+ dependencies = [
806
+ "gix-hash",
807
+ "hashbrown 0.17.1",
808
+ "parking_lot",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "gix-ignore"
813
+ version = "0.21.1"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "d491bab9bf2c9f341dc754f425c31d5d3f63aca615312167b82e1deeaca97d8d"
816
+ dependencies = [
817
+ "bstr",
818
+ "gix-glob",
819
+ "gix-path",
820
+ "gix-trace",
821
+ "unicode-bom",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "gix-index"
826
+ version = "0.53.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "36d45f82ec5a4d7542ea595e9ad16e03e26c8cb4f221e5bc9fcdcf469f63a681"
829
+ dependencies = [
830
+ "bitflags 2.13.0",
831
+ "bstr",
832
+ "filetime",
833
+ "fnv",
834
+ "gix-bitmap",
835
+ "gix-features",
836
+ "gix-fs",
837
+ "gix-hash",
838
+ "gix-lock",
839
+ "gix-object",
840
+ "gix-traverse",
841
+ "gix-utils",
842
+ "gix-validate",
843
+ "hashbrown 0.17.1",
844
+ "itoa",
845
+ "libc",
846
+ "memmap2",
847
+ "rustix",
848
+ "smallvec",
849
+ "thiserror",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "gix-lock"
854
+ version = "23.0.1"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "65c9dedd9e90b0d47624d2ed241d394e09294118364e87b9b7e5f1fe755f3c2c"
857
+ dependencies = [
858
+ "gix-tempfile",
859
+ "gix-utils",
860
+ "thiserror",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "gix-object"
865
+ version = "0.62.0"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "019b38afc3eac1e41f9fe09a327664b313ba4a120fa5f40e3678795d0e42783e"
868
+ dependencies = [
869
+ "bstr",
870
+ "gix-actor",
871
+ "gix-date",
872
+ "gix-features",
873
+ "gix-hash",
874
+ "gix-hashtable",
875
+ "gix-utils",
876
+ "gix-validate",
877
+ "itoa",
878
+ "smallvec",
879
+ "thiserror",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "gix-odb"
884
+ version = "0.82.0"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "7fadc59f6fa0f9dd445eceee61060a2b59ca557f48da9fc677f567db535b782a"
887
+ dependencies = [
888
+ "arc-swap",
889
+ "gix-features",
890
+ "gix-fs",
891
+ "gix-hash",
892
+ "gix-hashtable",
893
+ "gix-object",
894
+ "gix-pack",
895
+ "gix-path",
896
+ "gix-quote",
897
+ "memmap2",
898
+ "parking_lot",
899
+ "tempfile",
900
+ "thiserror",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "gix-pack"
905
+ version = "0.72.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "ca3e7f1726cd2c0cd1cf1fc20be8a8e623f0b163f1f8d6fc836cfb9bc8cd758b"
908
+ dependencies = [
909
+ "clru",
910
+ "gix-chunk",
911
+ "gix-error",
912
+ "gix-features",
913
+ "gix-hash",
914
+ "gix-hashtable",
915
+ "gix-object",
916
+ "gix-path",
917
+ "memmap2",
918
+ "smallvec",
919
+ "thiserror",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "gix-packetline"
924
+ version = "0.21.5"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "b217dd0ee0c4021ecf169a4a519b1b4f80d15e3f3765f3dc466223dc0ac891d7"
927
+ dependencies = [
928
+ "bstr",
929
+ "faster-hex",
930
+ "gix-trace",
931
+ "thiserror",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "gix-path"
936
+ version = "0.12.2"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "cbbecb0f8dc5cdf6cbde69133f7072064dfc9da4cf0046913afb6857b07300fa"
939
+ dependencies = [
940
+ "bstr",
941
+ "gix-trace",
942
+ "gix-validate",
943
+ "thiserror",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "gix-protocol"
948
+ version = "0.63.0"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "978468bae4ea2df20c72db3b20d0bdb548a0c1090b85a83643b553e6e0e041f2"
951
+ dependencies = [
952
+ "bstr",
953
+ "gix-date",
954
+ "gix-features",
955
+ "gix-hash",
956
+ "gix-ref",
957
+ "gix-shallow",
958
+ "gix-transport",
959
+ "gix-utils",
960
+ "maybe-async",
961
+ "nonempty",
962
+ "thiserror",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "gix-quote"
967
+ version = "0.7.2"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "a6e541fc33cc2b783b7979040d445a0c86a2eca747c8faea4ca84230d06ae6ef"
970
+ dependencies = [
971
+ "bstr",
972
+ "gix-error",
973
+ "gix-utils",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "gix-ref"
978
+ version = "0.65.0"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "9bbfbce1dfd7d7f8469ddef6d3518376aff664348f153cbe0fc3e58ef993d24e"
981
+ dependencies = [
982
+ "gix-actor",
983
+ "gix-features",
984
+ "gix-fs",
985
+ "gix-hash",
986
+ "gix-lock",
987
+ "gix-object",
988
+ "gix-path",
989
+ "gix-tempfile",
990
+ "gix-utils",
991
+ "gix-validate",
992
+ "memmap2",
993
+ "thiserror",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "gix-refspec"
998
+ version = "0.43.0"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "7bc36a4fb1a1540b59cf2da498783080743fa274b02a3f19ca444fc4015a9d4f"
1001
+ dependencies = [
1002
+ "bstr",
1003
+ "gix-error",
1004
+ "gix-glob",
1005
+ "gix-hash",
1006
+ "gix-revision",
1007
+ "gix-validate",
1008
+ "smallvec",
1009
+ "thiserror",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "gix-revision"
1014
+ version = "0.47.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "885075c3c21eb9c06e0be3b3728ba5932c04e1c1011dcee7c81801980e3e986f"
1017
+ dependencies = [
1018
+ "bstr",
1019
+ "gix-commitgraph",
1020
+ "gix-date",
1021
+ "gix-error",
1022
+ "gix-hash",
1023
+ "gix-object",
1024
+ "gix-revwalk",
1025
+ "nonempty",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "gix-revwalk"
1030
+ version = "0.33.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "8f11fe7ca2585193d3d70bbe0be175a2008d883a704cc7a55e454e113e689455"
1033
+ dependencies = [
1034
+ "gix-commitgraph",
1035
+ "gix-date",
1036
+ "gix-error",
1037
+ "gix-hash",
1038
+ "gix-hashtable",
1039
+ "gix-object",
1040
+ "smallvec",
1041
+ "thiserror",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "gix-sec"
1046
+ version = "0.14.1"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "ab8519976e4c7e486270740a5400369f37940779b80bd1377d94cfa1125d01b3"
1049
+ dependencies = [
1050
+ "bitflags 2.13.0",
1051
+ "gix-path",
1052
+ "libc",
1053
+ "windows-sys",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "gix-shallow"
1058
+ version = "0.12.1"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "a292fc2fe548c5dfa575479d16b445b0ddf1dd2f56f1fec6aed386f82553cd97"
1061
+ dependencies = [
1062
+ "bstr",
1063
+ "gix-hash",
1064
+ "gix-lock",
1065
+ "nonempty",
1066
+ "thiserror",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "gix-tempfile"
1071
+ version = "23.0.2"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "6ef60812443484e67bf84e444cc71b4c78ae62deb822221774a4fa0c57fdb17f"
1074
+ dependencies = [
1075
+ "gix-fs",
1076
+ "libc",
1077
+ "parking_lot",
1078
+ "tempfile",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "gix-trace"
1083
+ version = "0.1.20"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "44dc45eae785c0eb14173e0f152e6e224dcf4d45b6a6999a3aed22af541ad678"
1086
+
1087
+ [[package]]
1088
+ name = "gix-transport"
1089
+ version = "0.57.2"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "186874f7ad1fb2f9a2f2aa9c2dabc7f9dd087bef74c1a0eee2b4a9cf0248fcb3"
1092
+ dependencies = [
1093
+ "bstr",
1094
+ "gix-command",
1095
+ "gix-features",
1096
+ "gix-packetline",
1097
+ "gix-quote",
1098
+ "gix-sec",
1099
+ "gix-url",
1100
+ "thiserror",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "gix-traverse"
1105
+ version = "0.59.0"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "5062cca8f2977565bbaf666ec31dbdb9bc9d9293beb65f9bec52e6c1121b62a1"
1108
+ dependencies = [
1109
+ "bitflags 2.13.0",
1110
+ "gix-commitgraph",
1111
+ "gix-date",
1112
+ "gix-hash",
1113
+ "gix-hashtable",
1114
+ "gix-object",
1115
+ "gix-revwalk",
1116
+ "smallvec",
1117
+ "thiserror",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "gix-url"
1122
+ version = "0.36.2"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "57d68e70e96da0e5f9c871f1566349e0fd0e1a20bb483c7f54af1dd0b85b4b29"
1125
+ dependencies = [
1126
+ "bstr",
1127
+ "gix-path",
1128
+ "percent-encoding",
1129
+ "thiserror",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "gix-utils"
1134
+ version = "0.3.4"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "d773a906e39472c2b00aaf1993cd120d40198c1ff6db07c0ee9a44d4431b66c1"
1137
+ dependencies = [
1138
+ "fastrand",
1139
+ "getrandom 0.4.3",
1140
+ "unicode-normalization",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "gix-validate"
1145
+ version = "0.11.2"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "7bc6fc771c4063ba7cd2f47b91fb6076251c6a823b64b7fe7b8874b0fe4afae3"
1148
+ dependencies = [
1149
+ "bstr",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "gix-worktree"
1154
+ version = "0.54.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "92399ed66f259592050c6ed9dc80105e095a2f8e87e6b83d98aa2e21d8e27036"
1157
+ dependencies = [
1158
+ "bstr",
1159
+ "gix-fs",
1160
+ "gix-glob",
1161
+ "gix-hash",
1162
+ "gix-ignore",
1163
+ "gix-index",
1164
+ "gix-object",
1165
+ "gix-path",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "gix-worktree-stream"
1170
+ version = "0.34.0"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "55f3a878c89a05470ad98c644b0015777c530da24854dd29e41fe4f41176840f"
1173
+ dependencies = [
1174
+ "gix-attributes",
1175
+ "gix-error",
1176
+ "gix-features",
1177
+ "gix-filter",
1178
+ "gix-fs",
1179
+ "gix-hash",
1180
+ "gix-object",
1181
+ "gix-path",
1182
+ "gix-traverse",
1183
+ "parking_lot",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "globset"
1188
+ version = "0.4.19"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
1191
+ dependencies = [
1192
+ "aho-corasick",
1193
+ "bstr",
1194
+ "log",
1195
+ "regex-automata",
1196
+ "regex-syntax",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "hash32"
1201
+ version = "0.3.1"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1204
+ dependencies = [
1205
+ "byteorder",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "hashbrown"
1210
+ version = "0.16.1"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1213
+ dependencies = [
1214
+ "allocator-api2",
1215
+ "equivalent",
1216
+ "foldhash",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "hashbrown"
1221
+ version = "0.17.1"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1224
+ dependencies = [
1225
+ "allocator-api2",
1226
+ "equivalent",
1227
+ "foldhash",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "hashlink"
1232
+ version = "0.11.1"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
1235
+ dependencies = [
1236
+ "hashbrown 0.16.1",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "heapless"
1241
+ version = "0.8.0"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1244
+ dependencies = [
1245
+ "hash32",
1246
+ "stable_deref_trait",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "heck"
1251
+ version = "0.5.0"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1254
+
1255
+ [[package]]
1256
+ name = "hex"
1257
+ version = "0.4.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1260
+
1261
+ [[package]]
1262
+ name = "indexmap"
1263
+ version = "2.14.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1266
+ dependencies = [
1267
+ "equivalent",
1268
+ "hashbrown 0.17.1",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "interpolator"
1273
+ version = "0.5.0"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
1276
+
1277
+ [[package]]
1278
+ name = "is-macro"
1279
+ version = "0.3.7"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1282
+ dependencies = [
1283
+ "heck",
1284
+ "proc-macro2",
1285
+ "quote",
1286
+ "syn",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "itertools"
1291
+ version = "0.15.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
1294
+ dependencies = [
1295
+ "either",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "itoa"
1300
+ version = "1.0.18"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1303
+
1304
+ [[package]]
1305
+ name = "jiff"
1306
+ version = "0.2.32"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "961d16382652bfdd8c6f68b223b26a8c93e0d475c672f414411db31c6c5c900e"
1309
+ dependencies = [
1310
+ "defmt",
1311
+ "jiff-static",
1312
+ "jiff-tzdb-platform",
1313
+ "log",
1314
+ "portable-atomic",
1315
+ "portable-atomic-util",
1316
+ "serde_core",
1317
+ "windows-link",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "jiff-static"
1322
+ version = "0.2.32"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
1325
+ dependencies = [
1326
+ "proc-macro2",
1327
+ "quote",
1328
+ "syn",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "jiff-tzdb"
1333
+ version = "0.1.8"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
1336
+
1337
+ [[package]]
1338
+ name = "jiff-tzdb-platform"
1339
+ version = "0.1.3"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1342
+ dependencies = [
1343
+ "jiff-tzdb",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "js-sys"
1348
+ version = "0.3.103"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1351
+ dependencies = [
1352
+ "cfg-if",
1353
+ "wasm-bindgen",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "kstring"
1358
+ version = "2.0.3"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "0b5c39158205a1955370d20163dcd3957e155463717747464719462f6578e149"
1361
+ dependencies = [
1362
+ "static_assertions",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "libc"
1367
+ version = "0.2.186"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1370
+
1371
+ [[package]]
1372
+ name = "libsqlite3-sys"
1373
+ version = "0.36.0"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "95b4103cffefa72eb8428cb6b47d6627161e51c2739fc5e3b734584157bc642a"
1376
+ dependencies = [
1377
+ "cc",
1378
+ "pkg-config",
1379
+ "vcpkg",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "libz-sys"
1384
+ version = "1.1.29"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
1387
+ dependencies = [
1388
+ "cc",
1389
+ "pkg-config",
1390
+ "vcpkg",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "linux-raw-sys"
1395
+ version = "0.12.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1398
+
1399
+ [[package]]
1400
+ name = "lock_api"
1401
+ version = "0.4.14"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1404
+ dependencies = [
1405
+ "scopeguard",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "log"
1410
+ version = "0.4.33"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1413
+
1414
+ [[package]]
1415
+ name = "manyhow"
1416
+ version = "0.11.4"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
1419
+ dependencies = [
1420
+ "manyhow-macros",
1421
+ "proc-macro2",
1422
+ "quote",
1423
+ "syn",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "manyhow-macros"
1428
+ version = "0.11.4"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
1431
+ dependencies = [
1432
+ "proc-macro-utils",
1433
+ "proc-macro2",
1434
+ "quote",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "maybe-async"
1439
+ version = "0.2.11"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "746873a384ad60adc5db74471dfaba74bd278afbdcfd81db93fafcdfc8b5ca0c"
1442
+ dependencies = [
1443
+ "proc-macro2",
1444
+ "quote",
1445
+ "syn",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "memchr"
1450
+ version = "2.8.3"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1453
+
1454
+ [[package]]
1455
+ name = "memmap2"
1456
+ version = "0.9.11"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1459
+ dependencies = [
1460
+ "libc",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "miniz_oxide"
1465
+ version = "0.8.9"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1468
+ dependencies = [
1469
+ "adler2",
1470
+ "simd-adler32",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "nonempty"
1475
+ version = "0.12.0"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6"
1478
+
1479
+ [[package]]
1480
+ name = "once_cell"
1481
+ version = "1.21.4"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1484
+
1485
+ [[package]]
1486
+ name = "ordermap"
1487
+ version = "1.2.0"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "7f7476a5b122ff1fce7208e7ee9dccd0a516e835f5b8b19b8f3c98a34cf757c1"
1490
+ dependencies = [
1491
+ "indexmap",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "parking_lot"
1496
+ version = "0.12.5"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1499
+ dependencies = [
1500
+ "lock_api",
1501
+ "parking_lot_core",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "parking_lot_core"
1506
+ version = "0.9.12"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1509
+ dependencies = [
1510
+ "cfg-if",
1511
+ "libc",
1512
+ "redox_syscall",
1513
+ "smallvec",
1514
+ "windows-link",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "percent-encoding"
1519
+ version = "2.3.2"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1522
+
1523
+ [[package]]
1524
+ name = "phf"
1525
+ version = "0.11.3"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1528
+ dependencies = [
1529
+ "phf_shared",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "phf_codegen"
1534
+ version = "0.11.3"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1537
+ dependencies = [
1538
+ "phf_generator",
1539
+ "phf_shared",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "phf_generator"
1544
+ version = "0.11.3"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1547
+ dependencies = [
1548
+ "phf_shared",
1549
+ "rand",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "phf_shared"
1554
+ version = "0.11.3"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1557
+ dependencies = [
1558
+ "siphasher",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "pkg-config"
1563
+ version = "0.3.33"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1566
+
1567
+ [[package]]
1568
+ name = "portable-atomic"
1569
+ version = "1.13.1"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1572
+
1573
+ [[package]]
1574
+ name = "portable-atomic-util"
1575
+ version = "0.2.7"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1578
+ dependencies = [
1579
+ "portable-atomic",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "ppv-lite86"
1584
+ version = "0.2.21"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1587
+ dependencies = [
1588
+ "zerocopy",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "proc-macro-utils"
1593
+ version = "0.10.0"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
1596
+ dependencies = [
1597
+ "proc-macro2",
1598
+ "quote",
1599
+ "smallvec",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "proc-macro2"
1604
+ version = "1.0.106"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1607
+ dependencies = [
1608
+ "unicode-ident",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "prodash"
1613
+ version = "31.0.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "962200e2d7d551451297d9fdce85138374019ada198e30ea9ede38034e27604c"
1616
+ dependencies = [
1617
+ "parking_lot",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "pulldown-cmark"
1622
+ version = "0.13.4"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
1625
+ dependencies = [
1626
+ "bitflags 2.13.0",
1627
+ "memchr",
1628
+ "unicase",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "pyo3"
1633
+ version = "0.29.0"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1636
+ dependencies = [
1637
+ "libc",
1638
+ "once_cell",
1639
+ "portable-atomic",
1640
+ "pyo3-build-config",
1641
+ "pyo3-ffi",
1642
+ "pyo3-macros",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "pyo3-build-config"
1647
+ version = "0.29.0"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1650
+ dependencies = [
1651
+ "target-lexicon",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "pyo3-ffi"
1656
+ version = "0.29.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1659
+ dependencies = [
1660
+ "libc",
1661
+ "pyo3-build-config",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "pyo3-macros"
1666
+ version = "0.29.0"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1669
+ dependencies = [
1670
+ "proc-macro2",
1671
+ "pyo3-macros-backend",
1672
+ "quote",
1673
+ "syn",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "pyo3-macros-backend"
1678
+ version = "0.29.0"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1681
+ dependencies = [
1682
+ "heck",
1683
+ "proc-macro2",
1684
+ "quote",
1685
+ "syn",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "quote"
1690
+ version = "1.0.46"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1693
+ dependencies = [
1694
+ "proc-macro2",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "quote-use"
1699
+ version = "0.8.4"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
1702
+ dependencies = [
1703
+ "quote",
1704
+ "quote-use-macros",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "quote-use-macros"
1709
+ version = "0.8.4"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
1712
+ dependencies = [
1713
+ "proc-macro-utils",
1714
+ "proc-macro2",
1715
+ "quote",
1716
+ "syn",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "r-efi"
1721
+ version = "6.0.0"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1724
+
1725
+ [[package]]
1726
+ name = "rand"
1727
+ version = "0.8.7"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1730
+ dependencies = [
1731
+ "libc",
1732
+ "rand_chacha",
1733
+ "rand_core",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "rand_chacha"
1738
+ version = "0.3.1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1741
+ dependencies = [
1742
+ "ppv-lite86",
1743
+ "rand_core",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "rand_core"
1748
+ version = "0.6.4"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1751
+ dependencies = [
1752
+ "getrandom 0.2.17",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "rayon"
1757
+ version = "1.12.0"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1760
+ dependencies = [
1761
+ "either",
1762
+ "rayon-core",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "rayon-core"
1767
+ version = "1.13.0"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1770
+ dependencies = [
1771
+ "crossbeam-deque",
1772
+ "crossbeam-utils",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "redox_syscall"
1777
+ version = "0.5.18"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1780
+ dependencies = [
1781
+ "bitflags 2.13.0",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "regex-automata"
1786
+ version = "0.4.15"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
1789
+ dependencies = [
1790
+ "aho-corasick",
1791
+ "memchr",
1792
+ "regex-syntax",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "regex-syntax"
1797
+ version = "0.8.11"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1800
+
1801
+ [[package]]
1802
+ name = "rsqlite-vfs"
1803
+ version = "0.1.1"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "c51c9ae4df8a7fba42103df5c621fa3c37eccf3a3c650879e90fc48b11cc192c"
1806
+ dependencies = [
1807
+ "hashbrown 0.16.1",
1808
+ "thiserror",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "ruff_python_ast"
1813
+ version = "0.0.4"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "a12d40253033e38020db1bdb91a2cf5d0bee1e755c1938a26d43fa3c73d2b426"
1816
+ dependencies = [
1817
+ "aho-corasick",
1818
+ "arrayvec",
1819
+ "bitflags 2.13.0",
1820
+ "compact_str",
1821
+ "get-size2",
1822
+ "is-macro",
1823
+ "memchr",
1824
+ "ruff_python_trivia",
1825
+ "ruff_source_file",
1826
+ "ruff_text_size",
1827
+ "rustc-hash",
1828
+ "thin-vec",
1829
+ "thiserror",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "ruff_python_parser"
1834
+ version = "0.0.4"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "154345bd168f768a36f620180eabc9a5bae844d8c853182b1a24bb1a984c9b00"
1837
+ dependencies = [
1838
+ "bitflags 2.13.0",
1839
+ "bstr",
1840
+ "compact_str",
1841
+ "get-size2",
1842
+ "memchr",
1843
+ "ruff_python_ast",
1844
+ "ruff_python_trivia",
1845
+ "ruff_text_size",
1846
+ "rustc-hash",
1847
+ "static_assertions",
1848
+ "thin-vec",
1849
+ "unicode-ident",
1850
+ "unicode-normalization",
1851
+ "unicode_names2",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "ruff_python_trivia"
1856
+ version = "0.0.4"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "4dc22c8e07f58267a6c517ab87df57f503ef92927cd0fc46c8445ff318a39e54"
1859
+ dependencies = [
1860
+ "itertools",
1861
+ "ruff_source_file",
1862
+ "ruff_text_size",
1863
+ "rustc-hash",
1864
+ "unicode-ident",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "ruff_source_file"
1869
+ version = "0.0.4"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "1a7f467940ad19aead60f1a0d7ddbb08aa69f3bbfa49ab271886fb0d98459952"
1872
+ dependencies = [
1873
+ "memchr",
1874
+ "ruff_text_size",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "ruff_text_size"
1879
+ version = "0.0.4"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "7dca33c148ef1d49a0dd430cdc05125e9c63a3c93028a2cbe7f6ffb3e5bbc4c7"
1882
+ dependencies = [
1883
+ "get-size2",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "rusqlite"
1888
+ version = "0.38.0"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "f1c93dd1c9683b438c392c492109cb702b8090b2bfc8fed6f6e4eb4523f17af3"
1891
+ dependencies = [
1892
+ "bitflags 2.13.0",
1893
+ "fallible-iterator",
1894
+ "fallible-streaming-iterator",
1895
+ "hashlink",
1896
+ "libsqlite3-sys",
1897
+ "smallvec",
1898
+ "sqlite-wasm-rs",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "rustc-hash"
1903
+ version = "2.1.3"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1906
+
1907
+ [[package]]
1908
+ name = "rustix"
1909
+ version = "1.1.4"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1912
+ dependencies = [
1913
+ "bitflags 2.13.0",
1914
+ "errno",
1915
+ "libc",
1916
+ "linux-raw-sys",
1917
+ "windows-sys",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "rustversion"
1922
+ version = "1.0.23"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1925
+
1926
+ [[package]]
1927
+ name = "ryu"
1928
+ version = "1.0.23"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1931
+
1932
+ [[package]]
1933
+ name = "same-file"
1934
+ version = "1.0.6"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1937
+ dependencies = [
1938
+ "winapi-util",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "scopeguard"
1943
+ version = "1.2.0"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1946
+
1947
+ [[package]]
1948
+ name = "serde"
1949
+ version = "1.0.228"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1952
+ dependencies = [
1953
+ "serde_core",
1954
+ "serde_derive",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "serde_core"
1959
+ version = "1.0.228"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1962
+ dependencies = [
1963
+ "serde_derive",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "serde_derive"
1968
+ version = "1.0.228"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1971
+ dependencies = [
1972
+ "proc-macro2",
1973
+ "quote",
1974
+ "syn",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "serde_json"
1979
+ version = "1.0.150"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1982
+ dependencies = [
1983
+ "indexmap",
1984
+ "itoa",
1985
+ "memchr",
1986
+ "serde",
1987
+ "serde_core",
1988
+ "zmij",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "serde_spanned"
1993
+ version = "1.1.1"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1996
+ dependencies = [
1997
+ "serde_core",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "sha1"
2002
+ version = "0.10.7"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
2005
+ dependencies = [
2006
+ "cfg-if",
2007
+ "cpufeatures",
2008
+ "digest",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "sha1-checked"
2013
+ version = "0.10.0"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423"
2016
+ dependencies = [
2017
+ "digest",
2018
+ "sha1",
2019
+ ]
2020
+
2021
+ [[package]]
2022
+ name = "sha2"
2023
+ version = "0.10.9"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2026
+ dependencies = [
2027
+ "cfg-if",
2028
+ "cpufeatures",
2029
+ "digest",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "shell-words"
2034
+ version = "1.1.1"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2037
+
2038
+ [[package]]
2039
+ name = "shlex"
2040
+ version = "2.0.1"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2043
+
2044
+ [[package]]
2045
+ name = "simd-adler32"
2046
+ version = "0.3.10"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2049
+
2050
+ [[package]]
2051
+ name = "siphasher"
2052
+ version = "1.0.3"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2055
+
2056
+ [[package]]
2057
+ name = "smallvec"
2058
+ version = "1.15.2"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2061
+
2062
+ [[package]]
2063
+ name = "sqlite-wasm-rs"
2064
+ version = "0.5.5"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "dc3efc0da82635d7e1ced0053bbbfa8c7ab9645d0bf36ceb4f7127bb85315d75"
2067
+ dependencies = [
2068
+ "cc",
2069
+ "js-sys",
2070
+ "rsqlite-vfs",
2071
+ "wasm-bindgen",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "stable_deref_trait"
2076
+ version = "1.2.1"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2079
+
2080
+ [[package]]
2081
+ name = "static_assertions"
2082
+ version = "1.1.0"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2085
+
2086
+ [[package]]
2087
+ name = "syn"
2088
+ version = "2.0.118"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2091
+ dependencies = [
2092
+ "proc-macro2",
2093
+ "quote",
2094
+ "unicode-ident",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "target-lexicon"
2099
+ version = "0.13.5"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2102
+
2103
+ [[package]]
2104
+ name = "tempfile"
2105
+ version = "3.27.0"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2108
+ dependencies = [
2109
+ "fastrand",
2110
+ "getrandom 0.4.3",
2111
+ "once_cell",
2112
+ "rustix",
2113
+ "windows-sys",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "thin-vec"
2118
+ version = "0.2.18"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
2121
+
2122
+ [[package]]
2123
+ name = "thiserror"
2124
+ version = "2.0.18"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2127
+ dependencies = [
2128
+ "thiserror-impl",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "thiserror-impl"
2133
+ version = "2.0.18"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2136
+ dependencies = [
2137
+ "proc-macro2",
2138
+ "quote",
2139
+ "syn",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "tinyvec"
2144
+ version = "1.12.0"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2147
+ dependencies = [
2148
+ "tinyvec_macros",
2149
+ ]
2150
+
2151
+ [[package]]
2152
+ name = "tinyvec_macros"
2153
+ version = "0.1.1"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2156
+
2157
+ [[package]]
2158
+ name = "toml"
2159
+ version = "0.9.12+spec-1.1.0"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2162
+ dependencies = [
2163
+ "indexmap",
2164
+ "serde_core",
2165
+ "serde_spanned",
2166
+ "toml_datetime",
2167
+ "toml_parser",
2168
+ "toml_writer",
2169
+ "winnow 0.7.15",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "toml_datetime"
2174
+ version = "0.7.5+spec-1.1.0"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2177
+ dependencies = [
2178
+ "serde_core",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "toml_parser"
2183
+ version = "1.1.2+spec-1.1.0"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2186
+ dependencies = [
2187
+ "winnow 1.0.4",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "toml_writer"
2192
+ version = "1.1.2+spec-1.1.0"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
2195
+
2196
+ [[package]]
2197
+ name = "typenum"
2198
+ version = "1.20.1"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2201
+
2202
+ [[package]]
2203
+ name = "unicase"
2204
+ version = "2.9.0"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2207
+
2208
+ [[package]]
2209
+ name = "unicode-bom"
2210
+ version = "2.0.3"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
2213
+
2214
+ [[package]]
2215
+ name = "unicode-ident"
2216
+ version = "1.0.24"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2219
+
2220
+ [[package]]
2221
+ name = "unicode-normalization"
2222
+ version = "0.1.25"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2225
+ dependencies = [
2226
+ "tinyvec",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "unicode-width"
2231
+ version = "0.2.2"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2234
+
2235
+ [[package]]
2236
+ name = "unicode_names2"
2237
+ version = "1.3.0"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
2240
+ dependencies = [
2241
+ "phf",
2242
+ "unicode_names2_generator",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "unicode_names2_generator"
2247
+ version = "1.3.0"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
2250
+ dependencies = [
2251
+ "getopts",
2252
+ "log",
2253
+ "phf_codegen",
2254
+ "rand",
2255
+ ]
2256
+
2257
+ [[package]]
2258
+ name = "vcpkg"
2259
+ version = "0.2.15"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2262
+
2263
+ [[package]]
2264
+ name = "version_check"
2265
+ version = "0.9.5"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2268
+
2269
+ [[package]]
2270
+ name = "walkdir"
2271
+ version = "2.5.0"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2274
+ dependencies = [
2275
+ "same-file",
2276
+ "winapi-util",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "wasi"
2281
+ version = "0.11.1+wasi-snapshot-preview1"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2284
+
2285
+ [[package]]
2286
+ name = "wasm-bindgen"
2287
+ version = "0.2.126"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2290
+ dependencies = [
2291
+ "cfg-if",
2292
+ "once_cell",
2293
+ "rustversion",
2294
+ "wasm-bindgen-macro",
2295
+ "wasm-bindgen-shared",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "wasm-bindgen-macro"
2300
+ version = "0.2.126"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2303
+ dependencies = [
2304
+ "quote",
2305
+ "wasm-bindgen-macro-support",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "wasm-bindgen-macro-support"
2310
+ version = "0.2.126"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2313
+ dependencies = [
2314
+ "bumpalo",
2315
+ "proc-macro2",
2316
+ "quote",
2317
+ "syn",
2318
+ "wasm-bindgen-shared",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "wasm-bindgen-shared"
2323
+ version = "0.2.126"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2326
+ dependencies = [
2327
+ "unicode-ident",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "winapi-util"
2332
+ version = "0.1.11"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2335
+ dependencies = [
2336
+ "windows-sys",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "windows-link"
2341
+ version = "0.2.1"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2344
+
2345
+ [[package]]
2346
+ name = "windows-sys"
2347
+ version = "0.61.2"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2350
+ dependencies = [
2351
+ "windows-link",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "winnow"
2356
+ version = "0.7.15"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2359
+
2360
+ [[package]]
2361
+ name = "winnow"
2362
+ version = "1.0.4"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2365
+
2366
+ [[package]]
2367
+ name = "zerocopy"
2368
+ version = "0.8.54"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
2371
+ dependencies = [
2372
+ "zerocopy-derive",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "zerocopy-derive"
2377
+ version = "0.8.54"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
2380
+ dependencies = [
2381
+ "proc-macro2",
2382
+ "quote",
2383
+ "syn",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "zlib-rs"
2388
+ version = "0.6.6"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
2391
+
2392
+ [[package]]
2393
+ name = "zmij"
2394
+ version = "1.0.23"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"