sqlitegraph 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (440) hide show
  1. sqlitegraph-0.1.0/Cargo.lock +1965 -0
  2. sqlitegraph-0.1.0/Cargo.toml +24 -0
  3. sqlitegraph-0.1.0/PKG-INFO +59 -0
  4. sqlitegraph-0.1.0/README.md +27 -0
  5. sqlitegraph-0.1.0/pyproject.toml +84 -0
  6. sqlitegraph-0.1.0/python/sqlitegraph/__init__.py +25 -0
  7. sqlitegraph-0.1.0/python/sqlitegraph/_native.pyi +229 -0
  8. sqlitegraph-0.1.0/python/sqlitegraph/py.typed +0 -0
  9. sqlitegraph-0.1.0/sqlitegraph-core/.gitignore +5 -0
  10. sqlitegraph-0.1.0/sqlitegraph-core/BLOCK_AWARE_CACHE_BEHAVIOR_REPORT.md +356 -0
  11. sqlitegraph-0.1.0/sqlitegraph-core/BLOCK_LOCALITY_PROTOTYPE_REPORT.md +228 -0
  12. sqlitegraph-0.1.0/sqlitegraph-core/BUG_10K_INVESTIGATION_SUMMARY.md +153 -0
  13. sqlitegraph-0.1.0/sqlitegraph-core/BUG_SNAPSHOTID_SQLITE_BACKEND.md +196 -0
  14. sqlitegraph-0.1.0/sqlitegraph-core/CACHE_CAPACITY_SWEEP_REPORT.md +308 -0
  15. sqlitegraph-0.1.0/sqlitegraph-core/CACHE_CLONE_FIX_REPORT.md +163 -0
  16. sqlitegraph-0.1.0/sqlitegraph-core/CHANGELOG.md +338 -0
  17. sqlitegraph-0.1.0/sqlitegraph-core/COLD_PATH_FORENSICS_REPORT.md +251 -0
  18. sqlitegraph-0.1.0/sqlitegraph-core/COLD_WARM_BENCHMARK_SPLIT_REPORT.md +180 -0
  19. sqlitegraph-0.1.0/sqlitegraph-core/Cargo.toml +177 -0
  20. sqlitegraph-0.1.0/sqlitegraph-core/EDGE_CORRUPTION_ROOT_CAUSE.md +182 -0
  21. sqlitegraph-0.1.0/sqlitegraph-core/LICENSE +249 -0
  22. sqlitegraph-0.1.0/sqlitegraph-core/MAIN_BENCHMARK_RERUN_REPORT.md +233 -0
  23. sqlitegraph-0.1.0/sqlitegraph-core/NODE_PAGE_OVERFLOW_FIX_REPORT.md +224 -0
  24. sqlitegraph-0.1.0/sqlitegraph-core/PAGE_ID_COLLISION_ROOT_CAUSE.md +84 -0
  25. sqlitegraph-0.1.0/sqlitegraph-core/PHASE3_NODE_PAGE_CACHE_FIX_REPORT.md +189 -0
  26. sqlitegraph-0.1.0/sqlitegraph-core/PHYSICAL_BLOCK_PLACEMENT_PROTOTYPE_REPORT.md +323 -0
  27. sqlitegraph-0.1.0/sqlitegraph-core/README.md +123 -0
  28. sqlitegraph-0.1.0/sqlitegraph-core/REBUILD_INDEXES_FIX_REPORT.md +172 -0
  29. sqlitegraph-0.1.0/sqlitegraph-core/REOPEN_CORRUPTION_FORENSICS.md +153 -0
  30. sqlitegraph-0.1.0/sqlitegraph-core/V3_10K_NODE_BUG_FIX.md +91 -0
  31. sqlitegraph-0.1.0/sqlitegraph-core/V3_FILE_IO_COORDINATION.md +166 -0
  32. sqlitegraph-0.1.0/sqlitegraph-core/V3_FORENSIC_REPORT.md +243 -0
  33. sqlitegraph-0.1.0/sqlitegraph-core/V3_REGRESSION_SWEEP_REPORT.md +149 -0
  34. sqlitegraph-0.1.0/sqlitegraph-core/benches/adaptive_page_simple.rs +406 -0
  35. sqlitegraph-0.1.0/sqlitegraph-core/benches/adjlist_benchmark.rs +314 -0
  36. sqlitegraph-0.1.0/sqlitegraph-core/benches/algo_benchmarks.rs +612 -0
  37. sqlitegraph-0.1.0/sqlitegraph-core/benches/backend_comparison.rs +634 -0
  38. sqlitegraph-0.1.0/sqlitegraph-core/benches/bench_utils.rs +299 -0
  39. sqlitegraph-0.1.0/sqlitegraph-core/benches/bfs.rs +419 -0
  40. sqlitegraph-0.1.0/sqlitegraph-core/benches/cold_cache.rs +310 -0
  41. sqlitegraph-0.1.0/sqlitegraph-core/benches/comparative_benchmark.rs +246 -0
  42. sqlitegraph-0.1.0/sqlitegraph-core/benches/comprehensive_performance.rs +255 -0
  43. sqlitegraph-0.1.0/sqlitegraph-core/benches/compression_benchmark.rs +336 -0
  44. sqlitegraph-0.1.0/sqlitegraph-core/benches/concurrent_access.rs +139 -0
  45. sqlitegraph-0.1.0/sqlitegraph-core/benches/connection_pool.rs +340 -0
  46. sqlitegraph-0.1.0/sqlitegraph-core/benches/graph_generators.rs +418 -0
  47. sqlitegraph-0.1.0/sqlitegraph-core/benches/graph_theory_benchmarks.rs +461 -0
  48. sqlitegraph-0.1.0/sqlitegraph-core/benches/hnsw.rs +482 -0
  49. sqlitegraph-0.1.0/sqlitegraph-core/benches/hnsw_multilayer.rs +62 -0
  50. sqlitegraph-0.1.0/sqlitegraph-core/benches/insert.rs +468 -0
  51. sqlitegraph-0.1.0/sqlitegraph-core/benches/k_hop.rs +417 -0
  52. sqlitegraph-0.1.0/sqlitegraph-core/benches/memory_profiling.rs +230 -0
  53. sqlitegraph-0.1.0/sqlitegraph-core/benches/mvcc_benchmarks.rs +372 -0
  54. sqlitegraph-0.1.0/sqlitegraph-core/benches/native_disk_io.rs +377 -0
  55. sqlitegraph-0.1.0/sqlitegraph-core/benches/parallel_bfs.rs +355 -0
  56. sqlitegraph-0.1.0/sqlitegraph-core/benches/read_path_benchmarks.rs +1238 -0
  57. sqlitegraph-0.1.0/sqlitegraph-core/benches/real_datasets.rs +6 -0
  58. sqlitegraph-0.1.0/sqlitegraph-core/benches/regression_memory.rs +160 -0
  59. sqlitegraph-0.1.0/sqlitegraph-core/benches/regression_non_chain_patterns.rs +237 -0
  60. sqlitegraph-0.1.0/sqlitegraph-core/benches/regression_pubsub_memory.rs +260 -0
  61. sqlitegraph-0.1.0/sqlitegraph-core/benches/regression_pubsub_non_chain.rs +351 -0
  62. sqlitegraph-0.1.0/sqlitegraph-core/benches/regression_pubsub_write_cost.rs +337 -0
  63. sqlitegraph-0.1.0/sqlitegraph-core/benches/regression_write_cost.rs +191 -0
  64. sqlitegraph-0.1.0/sqlitegraph-core/benches/sqlite_v3_comparison.rs +1046 -0
  65. sqlitegraph-0.1.0/sqlitegraph-core/benches/v3_algorithm_benchmarks.rs +323 -0
  66. sqlitegraph-0.1.0/sqlitegraph-core/benches/v3_backend_benchmarks.rs +296 -0
  67. sqlitegraph-0.1.0/sqlitegraph-core/benches/wal_recovery_benchmarks.rs +179 -0
  68. sqlitegraph-0.1.0/sqlitegraph-core/clippy.toml +44 -0
  69. sqlitegraph-0.1.0/sqlitegraph-core/core.d +5 -0
  70. sqlitegraph-0.1.0/sqlitegraph-core/debug_test.rs +49 -0
  71. sqlitegraph-0.1.0/sqlitegraph-core/docs/HNSW_DEVELOPMENT_RULES.md +480 -0
  72. sqlitegraph-0.1.0/sqlitegraph-core/docs/HNSW_VECTOR_INTEGRATION_FUTURE_ROADMAP.md +1704 -0
  73. sqlitegraph-0.1.0/sqlitegraph-core/docs/SEQUENTIAL_IO_PERFORMANCE.md +230 -0
  74. sqlitegraph-0.1.0/sqlitegraph-core/docs/WAL_MODE_IMPLEMENTATION_GUIDE.md +510 -0
  75. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase-40-benchmark-report.md +179 -0
  76. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase10_performance_tuning.md +137 -0
  77. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase11_native_perf_plan.md +179 -0
  78. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase12_optimization_plan.md +609 -0
  79. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase14_step9_khop_corruption_codebase_mapping.md +202 -0
  80. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase29_step7_mmap_preaudit_notes.md +74 -0
  81. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase5_real_adjacency.md +141 -0
  82. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase6_implementation_status.md +176 -0
  83. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase6_native_graphbackend_plan.md +241 -0
  84. sqlitegraph-0.1.0/sqlitegraph-core/docs/phase7_native_backend_refactor.md +272 -0
  85. sqlitegraph-0.1.0/sqlitegraph-core/docs/superpowers/plans/2026-04-23-task-1-analysis.md +53 -0
  86. sqlitegraph-0.1.0/sqlitegraph-core/examples/algo_benchmark.rs +758 -0
  87. sqlitegraph-0.1.0/sqlitegraph-core/examples/basic_functionality_test.rs +92 -0
  88. sqlitegraph-0.1.0/sqlitegraph-core/examples/batch_bench.rs +155 -0
  89. sqlitegraph-0.1.0/sqlitegraph-core/examples/batch_stress_test.rs +230 -0
  90. sqlitegraph-0.1.0/sqlitegraph-core/examples/bench_parallel_bfs.rs +264 -0
  91. sqlitegraph-0.1.0/sqlitegraph-core/examples/block_locality_benchmark.rs +239 -0
  92. sqlitegraph-0.1.0/sqlitegraph-core/examples/cache_capacity_benchmark.rs +276 -0
  93. sqlitegraph-0.1.0/sqlitegraph-core/examples/cache_clone_forensics.rs +84 -0
  94. sqlitegraph-0.1.0/sqlitegraph-core/examples/cache_perf_test.rs +72 -0
  95. sqlitegraph-0.1.0/sqlitegraph-core/examples/cold_path_decomposition.rs +309 -0
  96. sqlitegraph-0.1.0/sqlitegraph-core/examples/compression_analysis.rs +182 -0
  97. sqlitegraph-0.1.0/sqlitegraph-core/examples/compression_detailed.rs +231 -0
  98. sqlitegraph-0.1.0/sqlitegraph-core/examples/compression_diagnostics.rs +67 -0
  99. sqlitegraph-0.1.0/sqlitegraph-core/examples/crash_test_child.rs +141 -0
  100. sqlitegraph-0.1.0/sqlitegraph-core/examples/debug_buffer_error.rs +105 -0
  101. sqlitegraph-0.1.0/sqlitegraph-core/examples/get_node_cache_sweep.rs +421 -0
  102. sqlitegraph-0.1.0/sqlitegraph-core/examples/phase53_1_execution.rs +202 -0
  103. sqlitegraph-0.1.0/sqlitegraph-core/examples/phase55_simple_benchmark.rs +132 -0
  104. sqlitegraph-0.1.0/sqlitegraph-core/examples/reopen_corruption_repro.rs +132 -0
  105. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_100k.rs +48 -0
  106. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_adaptive_pages.rs +43 -0
  107. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_allocator_startup.rs +45 -0
  108. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_batch_simple.rs +72 -0
  109. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_binary_search.rs +82 -0
  110. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_btree_100k.rs +33 -0
  111. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_cache_warm.rs +73 -0
  112. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_chunked_bfs.rs +75 -0
  113. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_delta_encoding.rs +48 -0
  114. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_direct_backend_benchmark.rs +123 -0
  115. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_direct_edgestore.rs +137 -0
  116. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_edge_store_direct.rs +141 -0
  117. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_edgestore_perf.rs +77 -0
  118. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_index_restore.rs +58 -0
  119. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_index_staleness.rs +89 -0
  120. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_lazy_decode.rs +62 -0
  121. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_lock_overhead.rs +72 -0
  122. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_native_edge.rs +46 -0
  123. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_neighbors_cache.rs +91 -0
  124. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_neighbors_detailed.rs +120 -0
  125. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_neighbors_profile.rs +118 -0
  126. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_open_detailed_timing.rs +54 -0
  127. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_open_roundtrip.rs +75 -0
  128. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_open_stage_timing.rs +98 -0
  129. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_performance_comparison.rs +328 -0
  130. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_rwlock_overhead.rs +109 -0
  131. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_sqlite_neighbors_perf.rs +113 -0
  132. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_v3_neighbors_perf.rs +121 -0
  133. sqlitegraph-0.1.0/sqlitegraph-core/examples/test_vec_clone.rs +39 -0
  134. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_forensic_page_analysis.rs +172 -0
  135. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_forensics_example.rs +175 -0
  136. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_get_node_profile.rs +116 -0
  137. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_offset_forensic.rs +138 -0
  138. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_perf_test.rs +32 -0
  139. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_readonly_profile.rs +144 -0
  140. sqlitegraph-0.1.0/sqlitegraph-core/examples/v3_reopen_verify.rs +72 -0
  141. sqlitegraph-0.1.0/sqlitegraph-core/libtest_syntax.rlib +0 -0
  142. sqlitegraph-0.1.0/sqlitegraph-core/manual.md +303 -0
  143. sqlitegraph-0.1.0/sqlitegraph-core/snapshot_export/snapshot_1766284406.v2 +0 -0
  144. sqlitegraph-0.1.0/sqlitegraph-core/snapshot_export/snapshot_1766284420.v2 +0 -0
  145. sqlitegraph-0.1.0/sqlitegraph-core/sqlitegraph_bench.json +566 -0
  146. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/backend/centrality.rs +339 -0
  147. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/backend/graph_ops.rs +561 -0
  148. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/backend/mod.rs +41 -0
  149. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/backend/traversal.rs +221 -0
  150. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/call_graph_analysis.rs +1174 -0
  151. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/centrality.rs +478 -0
  152. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/community.rs +475 -0
  153. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/control_dependence.rs +1388 -0
  154. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/critical_path.rs +1175 -0
  155. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/cut_partition.rs +3002 -0
  156. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/cycle_basis.rs +1485 -0
  157. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/dominance_frontiers.rs +1168 -0
  158. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/dominators.rs +1203 -0
  159. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/graph_diff.rs +1443 -0
  160. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/graph_rewriting.rs +1476 -0
  161. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/graph_similarity.rs +1245 -0
  162. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/mod.rs +496 -0
  163. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/natural_loops.rs +1531 -0
  164. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/observability.rs +2271 -0
  165. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/path_enumeration.rs +2763 -0
  166. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/post_dominators.rs +1587 -0
  167. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/program_slicing.rs +1269 -0
  168. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/reachability.rs +1246 -0
  169. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/scc.rs +499 -0
  170. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/structure.rs +203 -0
  171. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/subgraph_isomorphism.rs +1018 -0
  172. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/taint_analysis.rs +1805 -0
  173. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/tests.rs +4250 -0
  174. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/topological_sort.rs +586 -0
  175. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/transitive_closure.rs +810 -0
  176. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/transitive_reduction.rs +561 -0
  177. sqlitegraph-0.1.0/sqlitegraph-core/src/algo/wcc.rs +450 -0
  178. sqlitegraph-0.1.0/sqlitegraph-core/src/api_ergonomics.rs +31 -0
  179. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/constants.rs +143 -0
  180. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/cpu_tuning.rs +413 -0
  181. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/mod.rs +24 -0
  182. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/aliases.rs +13 -0
  183. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/cpu_profile.rs +58 -0
  184. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/errors.rs +212 -0
  185. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/flags.rs +76 -0
  186. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/kv_types.rs +64 -0
  187. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/mod.rs +20 -0
  188. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/types/utils.rs +27 -0
  189. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/algorithm/mod.rs +8 -0
  190. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/algorithm/parallel_bfs.rs +594 -0
  191. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/allocator.rs +674 -0
  192. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/backend.rs +2250 -0
  193. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/btree.rs +1385 -0
  194. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/compact_edge_record.rs +82 -0
  195. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/compression/delta.rs +364 -0
  196. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/compression/edge_delta.rs +389 -0
  197. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/compression/mod.rs +102 -0
  198. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/compression/varint.rs +653 -0
  199. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/constants.rs +223 -0
  200. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/edge_compat.rs +1892 -0
  201. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/file_coordinator.rs +307 -0
  202. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/forensics.rs +1531 -0
  203. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/header.rs +663 -0
  204. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/index/mod.rs +63 -0
  205. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/index/page.rs +974 -0
  206. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/index_persistence.rs +469 -0
  207. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/kind_index.rs +113 -0
  208. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/kv_store/mod.rs +39 -0
  209. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/kv_store/store.rs +480 -0
  210. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/kv_store/types.rs +126 -0
  211. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/lazy_init_tests.rs +293 -0
  212. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/mod.rs +97 -0
  213. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/name_index.rs +170 -0
  214. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/block_cache.rs +362 -0
  215. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/cache.rs +167 -0
  216. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/mod.rs +83 -0
  217. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/page.rs +1648 -0
  218. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/record.rs +755 -0
  219. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/store.rs +1927 -0
  220. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/node/tests.rs +720 -0
  221. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/pubsub/mod.rs +37 -0
  222. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/pubsub/publisher.rs +229 -0
  223. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/pubsub/types.rs +216 -0
  224. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/storage/adaptive_page.rs +185 -0
  225. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/storage/media_detector.rs +153 -0
  226. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/storage/mod.rs +10 -0
  227. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/string_table/mod.rs +30 -0
  228. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/string_table/table.rs +332 -0
  229. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/string_table/tests.rs +291 -0
  230. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/tests/mod.rs +961 -0
  231. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/wal.rs +2386 -0
  232. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/native/v3/write_batch.rs +281 -0
  233. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/sqlite/helpers.rs +71 -0
  234. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/sqlite/impl_.rs +965 -0
  235. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/sqlite/kv_tests.rs +210 -0
  236. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/sqlite/mod.rs +19 -0
  237. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/sqlite/pubsub_tests.rs +233 -0
  238. sqlitegraph-0.1.0/sqlitegraph-core/src/backend/sqlite/types.rs +47 -0
  239. sqlitegraph-0.1.0/sqlitegraph-core/src/backend.rs +708 -0
  240. sqlitegraph-0.1.0/sqlitegraph-core/src/backend_selector.rs +38 -0
  241. sqlitegraph-0.1.0/sqlitegraph-core/src/bench_gates.rs +139 -0
  242. sqlitegraph-0.1.0/sqlitegraph-core/src/bench_meta.rs +27 -0
  243. sqlitegraph-0.1.0/sqlitegraph-core/src/bench_regression.rs +93 -0
  244. sqlitegraph-0.1.0/sqlitegraph-core/src/bench_utils.rs +233 -0
  245. sqlitegraph-0.1.0/sqlitegraph-core/src/bfs.rs +80 -0
  246. sqlitegraph-0.1.0/sqlitegraph-core/src/cache.rs +202 -0
  247. sqlitegraph-0.1.0/sqlitegraph-core/src/client.rs +1 -0
  248. sqlitegraph-0.1.0/sqlitegraph-core/src/config/config.rs +82 -0
  249. sqlitegraph-0.1.0/sqlitegraph-core/src/config/factory.rs +58 -0
  250. sqlitegraph-0.1.0/sqlitegraph-core/src/config/graph_config.rs +82 -0
  251. sqlitegraph-0.1.0/sqlitegraph-core/src/config/kinds.rs +14 -0
  252. sqlitegraph-0.1.0/sqlitegraph-core/src/config/mod.rs +97 -0
  253. sqlitegraph-0.1.0/sqlitegraph-core/src/config/native.rs +66 -0
  254. sqlitegraph-0.1.0/sqlitegraph-core/src/config/sqlite.rs +90 -0
  255. sqlitegraph-0.1.0/sqlitegraph-core/src/dependency_monitor.rs +345 -0
  256. sqlitegraph-0.1.0/sqlitegraph-core/src/dsl.rs +45 -0
  257. sqlitegraph-0.1.0/sqlitegraph-core/src/errors.rs +70 -0
  258. sqlitegraph-0.1.0/sqlitegraph-core/src/fault_injection.rs +45 -0
  259. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/adjacency.rs +214 -0
  260. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/core.rs +434 -0
  261. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/edge_ops.rs +58 -0
  262. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/entity_ops.rs +218 -0
  263. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics/instrumented.rs +214 -0
  264. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics/metrics_core.rs +64 -0
  265. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics/metrics_snapshot.rs +10 -0
  266. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics/mod.rs +13 -0
  267. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics/statement_tracker.rs +23 -0
  268. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics/utils.rs +10 -0
  269. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/metrics_schema.rs +28 -0
  270. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/mod.rs +167 -0
  271. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/pattern_matching.rs +44 -0
  272. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/pool.rs +192 -0
  273. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/snapshot.rs +147 -0
  274. sqlitegraph-0.1.0/sqlitegraph-core/src/graph/types.rs +79 -0
  275. sqlitegraph-0.1.0/sqlitegraph-core/src/graph_opt.rs +305 -0
  276. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/batch_filter.rs +426 -0
  277. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/builder.rs +463 -0
  278. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/config.rs +474 -0
  279. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/distance_functions.rs +341 -0
  280. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/distance_metric.rs +225 -0
  281. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/errors.rs +656 -0
  282. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/index.rs +855 -0
  283. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/index_api.rs +630 -0
  284. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/index_internal.rs +300 -0
  285. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/index_persist.rs +482 -0
  286. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/layer.rs +675 -0
  287. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/mod.rs +612 -0
  288. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/multilayer.rs +885 -0
  289. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/neighborhood.rs +654 -0
  290. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/serialization.rs +711 -0
  291. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/simd.rs +1278 -0
  292. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/storage.rs +1239 -0
  293. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/v3_storage.rs +298 -0
  294. sqlitegraph-0.1.0/sqlitegraph-core/src/hnsw/v3_storage_tests.rs +258 -0
  295. sqlitegraph-0.1.0/sqlitegraph-core/src/index.rs +84 -0
  296. sqlitegraph-0.1.0/sqlitegraph-core/src/inference/engine.rs +659 -0
  297. sqlitegraph-0.1.0/sqlitegraph-core/src/inference/mod.rs +20 -0
  298. sqlitegraph-0.1.0/sqlitegraph-core/src/inference/sampling.rs +140 -0
  299. sqlitegraph-0.1.0/sqlitegraph-core/src/inference/simd.rs +527 -0
  300. sqlitegraph-0.1.0/sqlitegraph-core/src/introspection.rs +371 -0
  301. sqlitegraph-0.1.0/sqlitegraph-core/src/lib.rs +334 -0
  302. sqlitegraph-0.1.0/sqlitegraph-core/src/multi_hop.rs +192 -0
  303. sqlitegraph-0.1.0/sqlitegraph-core/src/mvcc.rs +374 -0
  304. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern.rs +236 -0
  305. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine/matcher.rs +80 -0
  306. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine/mod.rs +18 -0
  307. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine/pattern.rs +77 -0
  308. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine/property.rs +61 -0
  309. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine/query.rs +161 -0
  310. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine/tests.rs +173 -0
  311. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine_cache/edge_validation.rs +49 -0
  312. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine_cache/fast_path_detection.rs +27 -0
  313. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine_cache/fast_path_execution.rs +124 -0
  314. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine_cache/mod.rs +13 -0
  315. sqlitegraph-0.1.0/sqlitegraph-core/src/pattern_engine_cache/tests.rs +133 -0
  316. sqlitegraph-0.1.0/sqlitegraph-core/src/progress.rs +627 -0
  317. sqlitegraph-0.1.0/sqlitegraph-core/src/query.rs +122 -0
  318. sqlitegraph-0.1.0/sqlitegraph-core/src/query_cache.rs +555 -0
  319. sqlitegraph-0.1.0/sqlitegraph-core/src/reasoning.rs +84 -0
  320. sqlitegraph-0.1.0/sqlitegraph-core/src/recovery.rs +267 -0
  321. sqlitegraph-0.1.0/sqlitegraph-core/src/schema.rs +249 -0
  322. sqlitegraph-0.1.0/sqlitegraph-core/src/snapshot.rs +277 -0
  323. sqlitegraph-0.1.0/sqlitegraph-core/tests/acid_regression_test.rs +201 -0
  324. sqlitegraph-0.1.0/sqlitegraph-core/tests/acid_snapshot_test.rs +354 -0
  325. sqlitegraph-0.1.0/sqlitegraph-core/tests/algo_tests.rs +692 -0
  326. sqlitegraph-0.1.0/sqlitegraph-core/tests/backend_selector_tests.rs +28 -0
  327. sqlitegraph-0.1.0/sqlitegraph-core/tests/bench_data_tests.rs +70 -0
  328. sqlitegraph-0.1.0/sqlitegraph-core/tests/bench_gate_tests.rs +57 -0
  329. sqlitegraph-0.1.0/sqlitegraph-core/tests/bench_gates_tests.rs +96 -0
  330. sqlitegraph-0.1.0/sqlitegraph-core/tests/bench_meta_tests.rs +38 -0
  331. sqlitegraph-0.1.0/sqlitegraph-core/tests/bench_report_tests.rs +42 -0
  332. sqlitegraph-0.1.0/sqlitegraph-core/tests/benchmark_isolation_test.rs +107 -0
  333. sqlitegraph-0.1.0/sqlitegraph-core/tests/bfs_tests.rs +100 -0
  334. sqlitegraph-0.1.0/sqlitegraph-core/tests/bincode_compatibility_test.rs +147 -0
  335. sqlitegraph-0.1.0/sqlitegraph-core/tests/cache_effectiveness_tests.rs +349 -0
  336. sqlitegraph-0.1.0/sqlitegraph-core/tests/cache_tests.rs +56 -0
  337. sqlitegraph-0.1.0/sqlitegraph-core/tests/check_write_path.rs +62 -0
  338. sqlitegraph-0.1.0/sqlitegraph-core/tests/cluster_offset_corruption_regression.rs +340 -0
  339. sqlitegraph-0.1.0/sqlitegraph-core/tests/cold_path_forensics.rs +331 -0
  340. sqlitegraph-0.1.0/sqlitegraph-core/tests/debug_file_size.rs +49 -0
  341. sqlitegraph-0.1.0/sqlitegraph-core/tests/debug_index_rebuilding.rs +47 -0
  342. sqlitegraph-0.1.0/sqlitegraph-core/tests/debug_overflow.rs +69 -0
  343. sqlitegraph-0.1.0/sqlitegraph-core/tests/debug_scenario_c.rs +117 -0
  344. sqlitegraph-0.1.0/sqlitegraph-core/tests/deterministic_index_tests.rs +533 -0
  345. sqlitegraph-0.1.0/sqlitegraph-core/tests/direct_file_read_corruption_test.rs +107 -0
  346. sqlitegraph-0.1.0/sqlitegraph-core/tests/doc_tests.rs +59 -0
  347. sqlitegraph-0.1.0/sqlitegraph-core/tests/edge_corruption_minimal.rs +59 -0
  348. sqlitegraph-0.1.0/sqlitegraph-core/tests/edge_corruption_repro.rs +98 -0
  349. sqlitegraph-0.1.0/sqlitegraph-core/tests/edge_insertion_corruption_test.rs +253 -0
  350. sqlitegraph-0.1.0/sqlitegraph-core/tests/edge_tests.rs +115 -0
  351. sqlitegraph-0.1.0/sqlitegraph-core/tests/entity_tests.rs +119 -0
  352. sqlitegraph-0.1.0/sqlitegraph-core/tests/file_extension_debug.rs +116 -0
  353. sqlitegraph-0.1.0/sqlitegraph-core/tests/fuzz_common.rs +18 -0
  354. sqlitegraph-0.1.0/sqlitegraph-core/tests/get_node_forensics.rs +296 -0
  355. sqlitegraph-0.1.0/sqlitegraph-core/tests/graph_node_existence_enforcement.rs +118 -0
  356. sqlitegraph-0.1.0/sqlitegraph-core/tests/graph_opt_tests.rs +167 -0
  357. sqlitegraph-0.1.0/sqlitegraph-core/tests/helpers/mod.rs +3 -0
  358. sqlitegraph-0.1.0/sqlitegraph-core/tests/hnsw_persistence_tests.rs +334 -0
  359. sqlitegraph-0.1.0/sqlitegraph-core/tests/index_persistence_integration.rs +127 -0
  360. sqlitegraph-0.1.0/sqlitegraph-core/tests/index_persistence_validation.rs +369 -0
  361. sqlitegraph-0.1.0/sqlitegraph-core/tests/index_tests.rs +75 -0
  362. sqlitegraph-0.1.0/sqlitegraph-core/tests/instrumentation_tests.rs +159 -0
  363. sqlitegraph-0.1.0/sqlitegraph-core/tests/integration_tests.rs +154 -0
  364. sqlitegraph-0.1.0/sqlitegraph-core/tests/isolate_open_bug.rs +79 -0
  365. sqlitegraph-0.1.0/sqlitegraph-core/tests/json_parsing_diagnostics.rs +73 -0
  366. sqlitegraph-0.1.0/sqlitegraph-core/tests/kv_durability_tests.rs +1231 -0
  367. sqlitegraph-0.1.0/sqlitegraph-core/tests/lib_api_smoke_tests.rs +206 -0
  368. sqlitegraph-0.1.0/sqlitegraph-core/tests/multi_hop_tests.rs +102 -0
  369. sqlitegraph-0.1.0/sqlitegraph-core/tests/multi_node_corruption_regression.rs +108 -0
  370. sqlitegraph-0.1.0/sqlitegraph-core/tests/mvcc_baseline_tests.rs +875 -0
  371. sqlitegraph-0.1.0/sqlitegraph-core/tests/mvcc_concurrent_tests.rs +983 -0
  372. sqlitegraph-0.1.0/sqlitegraph-core/tests/mvcc_edge_case_tests.rs +1005 -0
  373. sqlitegraph-0.1.0/sqlitegraph-core/tests/mvcc_snapshot_tests.rs +720 -0
  374. sqlitegraph-0.1.0/sqlitegraph-core/tests/mvcc_wal_tests.rs +586 -0
  375. sqlitegraph-0.1.0/sqlitegraph-core/tests/native_edge_insertion_regression.rs +49 -0
  376. sqlitegraph-0.1.0/sqlitegraph-core/tests/node_overflow_forensics.rs +120 -0
  377. sqlitegraph-0.1.0/sqlitegraph-core/tests/node_read_forensics_test.rs +309 -0
  378. sqlitegraph-0.1.0/sqlitegraph-core/tests/node_slot_transaction_persistence.rs +272 -0
  379. sqlitegraph-0.1.0/sqlitegraph-core/tests/oom_reproduction_test.rs +67 -0
  380. sqlitegraph-0.1.0/sqlitegraph-core/tests/page_42_debug.rs +99 -0
  381. sqlitegraph-0.1.0/sqlitegraph-core/tests/page_write_debug.rs +85 -0
  382. sqlitegraph-0.1.0/sqlitegraph-core/tests/pattern_cache_fastpath_tests.rs +597 -0
  383. sqlitegraph-0.1.0/sqlitegraph-core/tests/pattern_engine_tests.rs +417 -0
  384. sqlitegraph-0.1.0/sqlitegraph-core/tests/pattern_tests.rs +134 -0
  385. sqlitegraph-0.1.0/sqlitegraph-core/tests/perf_gate_tests.rs +82 -0
  386. sqlitegraph-0.1.0/sqlitegraph-core/tests/perf_gate_v32_tests.rs +165 -0
  387. sqlitegraph-0.1.0/sqlitegraph-core/tests/phase32_cluster_pipeline_reconstruction_tests_clean.rs +677 -0
  388. sqlitegraph-0.1.0/sqlitegraph-core/tests/phase44_2_cluster_size_contract_tests.rs +73 -0
  389. sqlitegraph-0.1.0/sqlitegraph-core/tests/phase64_node_count_durability_regression.rs +130 -0
  390. sqlitegraph-0.1.0/sqlitegraph-core/tests/phase65_cluster_size_corruption_regression.rs +239 -0
  391. sqlitegraph-0.1.0/sqlitegraph-core/tests/phase73_node_count_corruption_capture.rs +152 -0
  392. sqlitegraph-0.1.0/sqlitegraph-core/tests/query_cache_performance_tests.rs +211 -0
  393. sqlitegraph-0.1.0/sqlitegraph-core/tests/query_cache_tests.rs +276 -0
  394. sqlitegraph-0.1.0/sqlitegraph-core/tests/query_tests.rs +97 -0
  395. sqlitegraph-0.1.0/sqlitegraph-core/tests/recovery_tests.rs +87 -0
  396. sqlitegraph-0.1.0/sqlitegraph-core/tests/regression_concurrent_traversal.rs +341 -0
  397. sqlitegraph-0.1.0/sqlitegraph-core/tests/reopen_corruption_investigation.rs +119 -0
  398. sqlitegraph-0.1.0/sqlitegraph-core/tests/reopen_integration_test.rs +191 -0
  399. sqlitegraph-0.1.0/sqlitegraph-core/tests/rowid_tests.rs +47 -0
  400. sqlitegraph-0.1.0/sqlitegraph-core/tests/schema_tests.rs +46 -0
  401. sqlitegraph-0.1.0/sqlitegraph-core/tests/snapshot_isolation_tests.rs +131 -0
  402. sqlitegraph-0.1.0/sqlitegraph-core/tests/sqlite_reopen_tests.rs +337 -0
  403. sqlitegraph-0.1.0/sqlitegraph-core/tests/sqlite_snapshot_tests.rs +532 -0
  404. sqlitegraph-0.1.0/sqlitegraph-core/tests/test_10k_bug_reproduction.rs +132 -0
  405. sqlitegraph-0.1.0/sqlitegraph-core/tests/transaction_begin_corruption_proof.rs +220 -0
  406. sqlitegraph-0.1.0/sqlitegraph-core/tests/unsafe_invariants_tests.rs +267 -0
  407. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_algorithm_tests.rs +1748 -0
  408. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_block_locality_tests.rs +227 -0
  409. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_btree_forensics.rs +338 -0
  410. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_check_nodepages.rs +94 -0
  411. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_dump_page_headers.rs +86 -0
  412. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_edge_durability_tdd.rs +98 -0
  413. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_file_write_test.rs +77 -0
  414. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_focused_perf.rs +67 -0
  415. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_forensics_test.rs +459 -0
  416. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_header_forensics.rs +109 -0
  417. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_insert_read_forensics.rs +558 -0
  418. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_integrity_check.rs +76 -0
  419. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_kind_index_tests.rs +170 -0
  420. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_name_index_tests.rs +264 -0
  421. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_page_ownership_forensics.rs +140 -0
  422. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_persistence_100.rs +101 -0
  423. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_query_truth_tests.rs +212 -0
  424. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_regression_sweep.rs +837 -0
  425. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_reopen_durability.rs +381 -0
  426. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_sync_fix_validation.rs +482 -0
  427. sqlitegraph-0.1.0/sqlitegraph-core/tests/v3_verify_file_persistence.rs +82 -0
  428. sqlitegraph-0.1.0/sqlitegraph-core/tests/wal_mode_default_tests.rs +354 -0
  429. sqlitegraph-0.1.0/sqlitegraph-core/tests/wal_tuning_tests.rs +332 -0
  430. sqlitegraph-0.1.0/sqlitegraph-core/tests/write_buffer_coherence_regression.rs +67 -0
  431. sqlitegraph-0.1.0/sqlitegraph-py/.gitignore +23 -0
  432. sqlitegraph-0.1.0/sqlitegraph-py/CHANGELOG.md +32 -0
  433. sqlitegraph-0.1.0/sqlitegraph-py/Cargo.toml +24 -0
  434. sqlitegraph-0.1.0/sqlitegraph-py/README.md +27 -0
  435. sqlitegraph-0.1.0/sqlitegraph-py/src/lib.rs +967 -0
  436. sqlitegraph-0.1.0/sqlitegraph-py/tests/test_algo.py +78 -0
  437. sqlitegraph-0.1.0/sqlitegraph-py/tests/test_basic.py +100 -0
  438. sqlitegraph-0.1.0/sqlitegraph-py/tests/test_crud.py +100 -0
  439. sqlitegraph-0.1.0/sqlitegraph-py/tests/test_errors.py +74 -0
  440. sqlitegraph-0.1.0/sqlitegraph-py/tests/test_hnsw.py +58 -0
@@ -0,0 +1,1965 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "allocator-api2"
29
+ version = "0.2.21"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
32
+
33
+ [[package]]
34
+ name = "anes"
35
+ version = "0.1.6"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
38
+
39
+ [[package]]
40
+ name = "anstream"
41
+ version = "1.0.0"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
44
+ dependencies = [
45
+ "anstyle",
46
+ "anstyle-parse",
47
+ "anstyle-query",
48
+ "anstyle-wincon",
49
+ "colorchoice",
50
+ "is_terminal_polyfill",
51
+ "utf8parse",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anstyle"
56
+ version = "1.0.14"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
59
+
60
+ [[package]]
61
+ name = "anstyle-parse"
62
+ version = "1.0.0"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
65
+ dependencies = [
66
+ "utf8parse",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "anstyle-query"
71
+ version = "1.1.5"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
74
+ dependencies = [
75
+ "windows-sys",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle-wincon"
80
+ version = "3.0.11"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
83
+ dependencies = [
84
+ "anstyle",
85
+ "once_cell_polyfill",
86
+ "windows-sys",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anyhow"
91
+ version = "1.0.102"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
94
+
95
+ [[package]]
96
+ name = "arc-swap"
97
+ version = "1.9.1"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
100
+ dependencies = [
101
+ "rustversion",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "array-init"
106
+ version = "2.1.0"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
109
+
110
+ [[package]]
111
+ name = "assert_cmd"
112
+ version = "2.2.2"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
115
+ dependencies = [
116
+ "anstyle",
117
+ "bstr",
118
+ "libc",
119
+ "predicates",
120
+ "predicates-core",
121
+ "predicates-tree",
122
+ "wait-timeout",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "autocfg"
127
+ version = "1.5.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
130
+
131
+ [[package]]
132
+ name = "bincode"
133
+ version = "1.3.3"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
136
+ dependencies = [
137
+ "serde",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "binrw"
142
+ version = "0.13.4"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "768230c3e8ce988f15f99af8d0d2c3afd0a656b88b35480fb1f924699e810e57"
145
+ dependencies = [
146
+ "array-init",
147
+ "binrw_derive",
148
+ "bytemuck",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "binrw_derive"
153
+ version = "0.13.4"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "08118044b6695ea0de85ecdaac53adeb0d5d024770a904f45b9453ad3c12898c"
156
+ dependencies = [
157
+ "either",
158
+ "owo-colors",
159
+ "proc-macro2",
160
+ "quote",
161
+ "syn 1.0.109",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "bitflags"
166
+ version = "2.11.1"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
169
+
170
+ [[package]]
171
+ name = "block-buffer"
172
+ version = "0.10.4"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
175
+ dependencies = [
176
+ "generic-array",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "bstr"
181
+ version = "1.12.1"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
184
+ dependencies = [
185
+ "memchr",
186
+ "regex-automata",
187
+ "serde",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "bumpalo"
192
+ version = "3.20.2"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
195
+
196
+ [[package]]
197
+ name = "bytemuck"
198
+ version = "1.25.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
201
+ dependencies = [
202
+ "bytemuck_derive",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "bytemuck_derive"
207
+ version = "1.10.2"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
210
+ dependencies = [
211
+ "proc-macro2",
212
+ "quote",
213
+ "syn 2.0.117",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "cast"
218
+ version = "0.3.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
221
+
222
+ [[package]]
223
+ name = "cc"
224
+ version = "1.2.62"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
227
+ dependencies = [
228
+ "find-msvc-tools",
229
+ "shlex",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "cfg-if"
234
+ version = "1.0.4"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
237
+
238
+ [[package]]
239
+ name = "chacha20"
240
+ version = "0.10.0"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
243
+ dependencies = [
244
+ "cfg-if",
245
+ "cpufeatures 0.3.0",
246
+ "rand_core 0.10.1",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "ciborium"
251
+ version = "0.2.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
254
+ dependencies = [
255
+ "ciborium-io",
256
+ "ciborium-ll",
257
+ "serde",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "ciborium-io"
262
+ version = "0.2.2"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
265
+
266
+ [[package]]
267
+ name = "ciborium-ll"
268
+ version = "0.2.2"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
271
+ dependencies = [
272
+ "ciborium-io",
273
+ "half",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "clap"
278
+ version = "4.6.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
281
+ dependencies = [
282
+ "clap_builder",
283
+ "clap_derive",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "clap_builder"
288
+ version = "4.6.0"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
291
+ dependencies = [
292
+ "anstream",
293
+ "anstyle",
294
+ "clap_lex",
295
+ "strsim",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "clap_derive"
300
+ version = "4.6.1"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
303
+ dependencies = [
304
+ "heck",
305
+ "proc-macro2",
306
+ "quote",
307
+ "syn 2.0.117",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "clap_lex"
312
+ version = "1.1.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
315
+
316
+ [[package]]
317
+ name = "colorchoice"
318
+ version = "1.0.5"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
321
+
322
+ [[package]]
323
+ name = "core-foundation-sys"
324
+ version = "0.8.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
327
+
328
+ [[package]]
329
+ name = "cpufeatures"
330
+ version = "0.2.17"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
333
+ dependencies = [
334
+ "libc",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "cpufeatures"
339
+ version = "0.3.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
342
+ dependencies = [
343
+ "libc",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "criterion"
348
+ version = "0.5.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
351
+ dependencies = [
352
+ "anes",
353
+ "cast",
354
+ "ciborium",
355
+ "clap",
356
+ "criterion-plot",
357
+ "is-terminal",
358
+ "itertools",
359
+ "num-traits",
360
+ "once_cell",
361
+ "oorandom",
362
+ "plotters",
363
+ "rayon",
364
+ "regex",
365
+ "serde",
366
+ "serde_derive",
367
+ "serde_json",
368
+ "tinytemplate",
369
+ "walkdir",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "criterion-plot"
374
+ version = "0.5.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
377
+ dependencies = [
378
+ "cast",
379
+ "itertools",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "crossbeam-deque"
384
+ version = "0.8.6"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
387
+ dependencies = [
388
+ "crossbeam-epoch",
389
+ "crossbeam-utils",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "crossbeam-epoch"
394
+ version = "0.9.18"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
397
+ dependencies = [
398
+ "crossbeam-utils",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "crossbeam-utils"
403
+ version = "0.8.21"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
406
+
407
+ [[package]]
408
+ name = "crunchy"
409
+ version = "0.2.4"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
412
+
413
+ [[package]]
414
+ name = "crypto-common"
415
+ version = "0.1.7"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
418
+ dependencies = [
419
+ "generic-array",
420
+ "typenum",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "difflib"
425
+ version = "0.4.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
428
+
429
+ [[package]]
430
+ name = "digest"
431
+ version = "0.10.7"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
434
+ dependencies = [
435
+ "block-buffer",
436
+ "crypto-common",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "either"
441
+ version = "1.15.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
444
+
445
+ [[package]]
446
+ name = "equivalent"
447
+ version = "1.0.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
450
+
451
+ [[package]]
452
+ name = "errno"
453
+ version = "0.3.14"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
456
+ dependencies = [
457
+ "libc",
458
+ "windows-sys",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "fallible-iterator"
463
+ version = "0.3.0"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
466
+
467
+ [[package]]
468
+ name = "fallible-streaming-iterator"
469
+ version = "0.1.9"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
472
+
473
+ [[package]]
474
+ name = "fastrand"
475
+ version = "2.4.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
478
+
479
+ [[package]]
480
+ name = "find-msvc-tools"
481
+ version = "0.1.9"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
484
+
485
+ [[package]]
486
+ name = "fixedbitset"
487
+ version = "0.4.2"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
490
+
491
+ [[package]]
492
+ name = "foldhash"
493
+ version = "0.1.5"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
496
+
497
+ [[package]]
498
+ name = "futures-core"
499
+ version = "0.3.32"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
502
+
503
+ [[package]]
504
+ name = "futures-task"
505
+ version = "0.3.32"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
508
+
509
+ [[package]]
510
+ name = "futures-util"
511
+ version = "0.3.32"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
514
+ dependencies = [
515
+ "futures-core",
516
+ "futures-task",
517
+ "pin-project-lite",
518
+ "slab",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "generic-array"
523
+ version = "0.14.7"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
526
+ dependencies = [
527
+ "typenum",
528
+ "version_check",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "getrandom"
533
+ version = "0.2.17"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
536
+ dependencies = [
537
+ "cfg-if",
538
+ "libc",
539
+ "wasi",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "getrandom"
544
+ version = "0.3.4"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
547
+ dependencies = [
548
+ "cfg-if",
549
+ "libc",
550
+ "r-efi 5.3.0",
551
+ "wasip2",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "getrandom"
556
+ version = "0.4.2"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
559
+ dependencies = [
560
+ "cfg-if",
561
+ "libc",
562
+ "r-efi 6.0.0",
563
+ "rand_core 0.10.1",
564
+ "wasip2",
565
+ "wasip3",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "half"
570
+ version = "2.7.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
573
+ dependencies = [
574
+ "cfg-if",
575
+ "crunchy",
576
+ "zerocopy",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "hashbrown"
581
+ version = "0.14.5"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
584
+ dependencies = [
585
+ "ahash",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "hashbrown"
590
+ version = "0.15.5"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
593
+ dependencies = [
594
+ "allocator-api2",
595
+ "equivalent",
596
+ "foldhash",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "hashbrown"
601
+ version = "0.17.1"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
604
+
605
+ [[package]]
606
+ name = "hashlink"
607
+ version = "0.9.1"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
610
+ dependencies = [
611
+ "hashbrown 0.14.5",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "heck"
616
+ version = "0.5.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
619
+
620
+ [[package]]
621
+ name = "hermit-abi"
622
+ version = "0.5.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
625
+
626
+ [[package]]
627
+ name = "id-arena"
628
+ version = "2.3.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
631
+
632
+ [[package]]
633
+ name = "indexmap"
634
+ version = "2.14.0"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
637
+ dependencies = [
638
+ "equivalent",
639
+ "hashbrown 0.17.1",
640
+ "serde",
641
+ "serde_core",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "is-terminal"
646
+ version = "0.4.17"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
649
+ dependencies = [
650
+ "hermit-abi",
651
+ "libc",
652
+ "windows-sys",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "is_terminal_polyfill"
657
+ version = "1.70.2"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
660
+
661
+ [[package]]
662
+ name = "itertools"
663
+ version = "0.10.5"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
666
+ dependencies = [
667
+ "either",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "itoa"
672
+ version = "1.0.18"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
675
+
676
+ [[package]]
677
+ name = "js-sys"
678
+ version = "0.3.98"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
681
+ dependencies = [
682
+ "cfg-if",
683
+ "futures-util",
684
+ "once_cell",
685
+ "wasm-bindgen",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "leb128fmt"
690
+ version = "0.1.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
693
+
694
+ [[package]]
695
+ name = "libc"
696
+ version = "0.2.186"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
699
+
700
+ [[package]]
701
+ name = "libsqlite3-sys"
702
+ version = "0.28.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
705
+ dependencies = [
706
+ "cc",
707
+ "pkg-config",
708
+ "vcpkg",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "linux-raw-sys"
713
+ version = "0.12.1"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
716
+
717
+ [[package]]
718
+ name = "lock_api"
719
+ version = "0.4.14"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
722
+ dependencies = [
723
+ "scopeguard",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "log"
728
+ version = "0.4.29"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
731
+
732
+ [[package]]
733
+ name = "lru"
734
+ version = "0.12.5"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
737
+ dependencies = [
738
+ "hashbrown 0.15.5",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "matrixmultiply"
743
+ version = "0.3.10"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
746
+ dependencies = [
747
+ "autocfg",
748
+ "rawpointer",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "memchr"
753
+ version = "2.8.0"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
756
+
757
+ [[package]]
758
+ name = "memmap2"
759
+ version = "0.9.10"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
762
+ dependencies = [
763
+ "libc",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "ndarray"
768
+ version = "0.16.1"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
771
+ dependencies = [
772
+ "matrixmultiply",
773
+ "num-complex",
774
+ "num-integer",
775
+ "num-traits",
776
+ "portable-atomic",
777
+ "portable-atomic-util",
778
+ "rawpointer",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "ndarray"
783
+ version = "0.17.2"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
786
+ dependencies = [
787
+ "matrixmultiply",
788
+ "num-complex",
789
+ "num-integer",
790
+ "num-traits",
791
+ "portable-atomic",
792
+ "portable-atomic-util",
793
+ "rawpointer",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "nix"
798
+ version = "0.27.1"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
801
+ dependencies = [
802
+ "bitflags",
803
+ "cfg-if",
804
+ "libc",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "ntapi"
809
+ version = "0.4.3"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
812
+ dependencies = [
813
+ "winapi",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "num-complex"
818
+ version = "0.4.6"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
821
+ dependencies = [
822
+ "num-traits",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "num-integer"
827
+ version = "0.1.46"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
830
+ dependencies = [
831
+ "num-traits",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "num-traits"
836
+ version = "0.2.19"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
839
+ dependencies = [
840
+ "autocfg",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "numpy"
845
+ version = "0.28.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
848
+ dependencies = [
849
+ "libc",
850
+ "ndarray 0.17.2",
851
+ "num-complex",
852
+ "num-integer",
853
+ "num-traits",
854
+ "pyo3",
855
+ "pyo3-build-config",
856
+ "rustc-hash",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "once_cell"
861
+ version = "1.21.4"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
864
+
865
+ [[package]]
866
+ name = "once_cell_polyfill"
867
+ version = "1.70.2"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
870
+
871
+ [[package]]
872
+ name = "oorandom"
873
+ version = "11.1.5"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
876
+
877
+ [[package]]
878
+ name = "owo-colors"
879
+ version = "3.5.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
882
+
883
+ [[package]]
884
+ name = "parking_lot"
885
+ version = "0.12.5"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
888
+ dependencies = [
889
+ "lock_api",
890
+ "parking_lot_core",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "parking_lot_core"
895
+ version = "0.9.12"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
898
+ dependencies = [
899
+ "cfg-if",
900
+ "libc",
901
+ "redox_syscall",
902
+ "smallvec",
903
+ "windows-link",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "petgraph"
908
+ version = "0.6.5"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
911
+ dependencies = [
912
+ "fixedbitset",
913
+ "indexmap",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "pin-project-lite"
918
+ version = "0.2.17"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
921
+
922
+ [[package]]
923
+ name = "pkg-config"
924
+ version = "0.3.33"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
927
+
928
+ [[package]]
929
+ name = "plotters"
930
+ version = "0.3.7"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
933
+ dependencies = [
934
+ "num-traits",
935
+ "plotters-backend",
936
+ "plotters-svg",
937
+ "wasm-bindgen",
938
+ "web-sys",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "plotters-backend"
943
+ version = "0.3.7"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
946
+
947
+ [[package]]
948
+ name = "plotters-svg"
949
+ version = "0.3.7"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
952
+ dependencies = [
953
+ "plotters-backend",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "portable-atomic"
958
+ version = "1.13.1"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
961
+
962
+ [[package]]
963
+ name = "portable-atomic-util"
964
+ version = "0.2.7"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
967
+ dependencies = [
968
+ "portable-atomic",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "ppv-lite86"
973
+ version = "0.2.21"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
976
+ dependencies = [
977
+ "zerocopy",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "predicates"
982
+ version = "3.1.4"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
985
+ dependencies = [
986
+ "anstyle",
987
+ "difflib",
988
+ "predicates-core",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "predicates-core"
993
+ version = "1.0.10"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
996
+
997
+ [[package]]
998
+ name = "predicates-tree"
999
+ version = "1.0.13"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1002
+ dependencies = [
1003
+ "predicates-core",
1004
+ "termtree",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "prettyplease"
1009
+ version = "0.2.37"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1012
+ dependencies = [
1013
+ "proc-macro2",
1014
+ "syn 2.0.117",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "proc-macro2"
1019
+ version = "1.0.106"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1022
+ dependencies = [
1023
+ "unicode-ident",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "pyo3"
1028
+ version = "0.28.3"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1031
+ dependencies = [
1032
+ "libc",
1033
+ "once_cell",
1034
+ "portable-atomic",
1035
+ "pyo3-build-config",
1036
+ "pyo3-ffi",
1037
+ "pyo3-macros",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "pyo3-build-config"
1042
+ version = "0.28.3"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1045
+ dependencies = [
1046
+ "target-lexicon",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "pyo3-ffi"
1051
+ version = "0.28.3"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1054
+ dependencies = [
1055
+ "libc",
1056
+ "pyo3-build-config",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "pyo3-macros"
1061
+ version = "0.28.3"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1064
+ dependencies = [
1065
+ "proc-macro2",
1066
+ "pyo3-macros-backend",
1067
+ "quote",
1068
+ "syn 2.0.117",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "pyo3-macros-backend"
1073
+ version = "0.28.3"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1076
+ dependencies = [
1077
+ "heck",
1078
+ "proc-macro2",
1079
+ "pyo3-build-config",
1080
+ "quote",
1081
+ "syn 2.0.117",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "quote"
1086
+ version = "1.0.45"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1089
+ dependencies = [
1090
+ "proc-macro2",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "r-efi"
1095
+ version = "5.3.0"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1098
+
1099
+ [[package]]
1100
+ name = "r-efi"
1101
+ version = "6.0.0"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1104
+
1105
+ [[package]]
1106
+ name = "r2d2"
1107
+ version = "0.8.10"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
1110
+ dependencies = [
1111
+ "log",
1112
+ "parking_lot",
1113
+ "scheduled-thread-pool",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "r2d2_sqlite"
1118
+ version = "0.24.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "6a982edf65c129796dba72f8775b292ef482b40d035e827a9825b3bc07ccc5f2"
1121
+ dependencies = [
1122
+ "r2d2",
1123
+ "rusqlite",
1124
+ "uuid",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "rand"
1129
+ version = "0.8.6"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1132
+ dependencies = [
1133
+ "libc",
1134
+ "rand_chacha",
1135
+ "rand_core 0.6.4",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "rand"
1140
+ version = "0.10.1"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
1143
+ dependencies = [
1144
+ "chacha20",
1145
+ "getrandom 0.4.2",
1146
+ "rand_core 0.10.1",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rand_chacha"
1151
+ version = "0.3.1"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1154
+ dependencies = [
1155
+ "ppv-lite86",
1156
+ "rand_core 0.6.4",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "rand_core"
1161
+ version = "0.6.4"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1164
+ dependencies = [
1165
+ "getrandom 0.2.17",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "rand_core"
1170
+ version = "0.10.1"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1173
+
1174
+ [[package]]
1175
+ name = "rawpointer"
1176
+ version = "0.2.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1179
+
1180
+ [[package]]
1181
+ name = "rayon"
1182
+ version = "1.12.0"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1185
+ dependencies = [
1186
+ "either",
1187
+ "rayon-core",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "rayon-core"
1192
+ version = "1.13.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1195
+ dependencies = [
1196
+ "crossbeam-deque",
1197
+ "crossbeam-utils",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "redox_syscall"
1202
+ version = "0.5.18"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1205
+ dependencies = [
1206
+ "bitflags",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "regex"
1211
+ version = "1.12.3"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1214
+ dependencies = [
1215
+ "aho-corasick",
1216
+ "memchr",
1217
+ "regex-automata",
1218
+ "regex-syntax",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "regex-automata"
1223
+ version = "0.4.14"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1226
+ dependencies = [
1227
+ "aho-corasick",
1228
+ "memchr",
1229
+ "regex-syntax",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "regex-syntax"
1234
+ version = "0.8.10"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1237
+
1238
+ [[package]]
1239
+ name = "rusqlite"
1240
+ version = "0.31.0"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
1243
+ dependencies = [
1244
+ "bitflags",
1245
+ "fallible-iterator",
1246
+ "fallible-streaming-iterator",
1247
+ "hashlink",
1248
+ "libsqlite3-sys",
1249
+ "smallvec",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "rustc-hash"
1254
+ version = "2.1.2"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1257
+
1258
+ [[package]]
1259
+ name = "rustc_version"
1260
+ version = "0.4.1"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1263
+ dependencies = [
1264
+ "semver",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "rustix"
1269
+ version = "1.1.4"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1272
+ dependencies = [
1273
+ "bitflags",
1274
+ "errno",
1275
+ "libc",
1276
+ "linux-raw-sys",
1277
+ "windows-sys",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "rustversion"
1282
+ version = "1.0.22"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1285
+
1286
+ [[package]]
1287
+ name = "same-file"
1288
+ version = "1.0.6"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1291
+ dependencies = [
1292
+ "winapi-util",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "scheduled-thread-pool"
1297
+ version = "0.2.7"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
1300
+ dependencies = [
1301
+ "parking_lot",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "scopeguard"
1306
+ version = "1.2.0"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1309
+
1310
+ [[package]]
1311
+ name = "semver"
1312
+ version = "1.0.28"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1315
+
1316
+ [[package]]
1317
+ name = "serde"
1318
+ version = "1.0.228"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1321
+ dependencies = [
1322
+ "serde_core",
1323
+ "serde_derive",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "serde_core"
1328
+ version = "1.0.228"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1331
+ dependencies = [
1332
+ "serde_derive",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "serde_derive"
1337
+ version = "1.0.228"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1340
+ dependencies = [
1341
+ "proc-macro2",
1342
+ "quote",
1343
+ "syn 2.0.117",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "serde_json"
1348
+ version = "1.0.149"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1351
+ dependencies = [
1352
+ "itoa",
1353
+ "memchr",
1354
+ "serde",
1355
+ "serde_core",
1356
+ "zmij",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "sha2"
1361
+ version = "0.10.9"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1364
+ dependencies = [
1365
+ "cfg-if",
1366
+ "cpufeatures 0.2.17",
1367
+ "digest",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "shlex"
1372
+ version = "1.3.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1375
+
1376
+ [[package]]
1377
+ name = "slab"
1378
+ version = "0.4.12"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1381
+
1382
+ [[package]]
1383
+ name = "smallvec"
1384
+ version = "1.15.1"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1387
+
1388
+ [[package]]
1389
+ name = "sqlitegraph"
1390
+ version = "2.2.4"
1391
+ dependencies = [
1392
+ "ahash",
1393
+ "arc-swap",
1394
+ "assert_cmd",
1395
+ "bincode",
1396
+ "binrw",
1397
+ "bytemuck",
1398
+ "criterion",
1399
+ "log",
1400
+ "lru",
1401
+ "memmap2",
1402
+ "nix",
1403
+ "parking_lot",
1404
+ "petgraph",
1405
+ "r2d2",
1406
+ "r2d2_sqlite",
1407
+ "rand 0.8.6",
1408
+ "rayon",
1409
+ "rusqlite",
1410
+ "rustc_version",
1411
+ "serde",
1412
+ "serde_json",
1413
+ "sha2",
1414
+ "sysinfo",
1415
+ "tempfile",
1416
+ "thiserror",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "sqlitegraph-cli"
1421
+ version = "2.1.4"
1422
+ dependencies = [
1423
+ "anyhow",
1424
+ "clap",
1425
+ "serde_json",
1426
+ "sqlitegraph",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "sqlitegraph-py"
1431
+ version = "0.1.0"
1432
+ dependencies = [
1433
+ "ndarray 0.16.1",
1434
+ "numpy",
1435
+ "pyo3",
1436
+ "serde_json",
1437
+ "sqlitegraph",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "strsim"
1442
+ version = "0.11.1"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1445
+
1446
+ [[package]]
1447
+ name = "syn"
1448
+ version = "1.0.109"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1451
+ dependencies = [
1452
+ "proc-macro2",
1453
+ "quote",
1454
+ "unicode-ident",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "syn"
1459
+ version = "2.0.117"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1462
+ dependencies = [
1463
+ "proc-macro2",
1464
+ "quote",
1465
+ "unicode-ident",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "sysinfo"
1470
+ version = "0.30.13"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
1473
+ dependencies = [
1474
+ "cfg-if",
1475
+ "core-foundation-sys",
1476
+ "libc",
1477
+ "ntapi",
1478
+ "once_cell",
1479
+ "rayon",
1480
+ "windows",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "target-lexicon"
1485
+ version = "0.13.5"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1488
+
1489
+ [[package]]
1490
+ name = "tempfile"
1491
+ version = "3.27.0"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1494
+ dependencies = [
1495
+ "fastrand",
1496
+ "getrandom 0.4.2",
1497
+ "once_cell",
1498
+ "rustix",
1499
+ "windows-sys",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "termtree"
1504
+ version = "0.5.1"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1507
+
1508
+ [[package]]
1509
+ name = "thiserror"
1510
+ version = "1.0.69"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1513
+ dependencies = [
1514
+ "thiserror-impl",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "thiserror-impl"
1519
+ version = "1.0.69"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1522
+ dependencies = [
1523
+ "proc-macro2",
1524
+ "quote",
1525
+ "syn 2.0.117",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "tinytemplate"
1530
+ version = "1.2.1"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1533
+ dependencies = [
1534
+ "serde",
1535
+ "serde_json",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "typenum"
1540
+ version = "1.20.0"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1543
+
1544
+ [[package]]
1545
+ name = "unicode-ident"
1546
+ version = "1.0.24"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1549
+
1550
+ [[package]]
1551
+ name = "unicode-xid"
1552
+ version = "0.2.6"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1555
+
1556
+ [[package]]
1557
+ name = "utf8parse"
1558
+ version = "0.2.2"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1561
+
1562
+ [[package]]
1563
+ name = "uuid"
1564
+ version = "1.23.1"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
1567
+ dependencies = [
1568
+ "getrandom 0.4.2",
1569
+ "js-sys",
1570
+ "rand 0.10.1",
1571
+ "wasm-bindgen",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "vcpkg"
1576
+ version = "0.2.15"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1579
+
1580
+ [[package]]
1581
+ name = "version_check"
1582
+ version = "0.9.5"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1585
+
1586
+ [[package]]
1587
+ name = "wait-timeout"
1588
+ version = "0.2.1"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1591
+ dependencies = [
1592
+ "libc",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "walkdir"
1597
+ version = "2.5.0"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1600
+ dependencies = [
1601
+ "same-file",
1602
+ "winapi-util",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "wasi"
1607
+ version = "0.11.1+wasi-snapshot-preview1"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1610
+
1611
+ [[package]]
1612
+ name = "wasip2"
1613
+ version = "1.0.3+wasi-0.2.9"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1616
+ dependencies = [
1617
+ "wit-bindgen 0.57.1",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "wasip3"
1622
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1625
+ dependencies = [
1626
+ "wit-bindgen 0.51.0",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "wasm-bindgen"
1631
+ version = "0.2.121"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1634
+ dependencies = [
1635
+ "cfg-if",
1636
+ "once_cell",
1637
+ "rustversion",
1638
+ "wasm-bindgen-macro",
1639
+ "wasm-bindgen-shared",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "wasm-bindgen-macro"
1644
+ version = "0.2.121"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1647
+ dependencies = [
1648
+ "quote",
1649
+ "wasm-bindgen-macro-support",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "wasm-bindgen-macro-support"
1654
+ version = "0.2.121"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1657
+ dependencies = [
1658
+ "bumpalo",
1659
+ "proc-macro2",
1660
+ "quote",
1661
+ "syn 2.0.117",
1662
+ "wasm-bindgen-shared",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "wasm-bindgen-shared"
1667
+ version = "0.2.121"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1670
+ dependencies = [
1671
+ "unicode-ident",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "wasm-encoder"
1676
+ version = "0.244.0"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1679
+ dependencies = [
1680
+ "leb128fmt",
1681
+ "wasmparser",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "wasm-metadata"
1686
+ version = "0.244.0"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1689
+ dependencies = [
1690
+ "anyhow",
1691
+ "indexmap",
1692
+ "wasm-encoder",
1693
+ "wasmparser",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "wasmparser"
1698
+ version = "0.244.0"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1701
+ dependencies = [
1702
+ "bitflags",
1703
+ "hashbrown 0.15.5",
1704
+ "indexmap",
1705
+ "semver",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "web-sys"
1710
+ version = "0.3.98"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1713
+ dependencies = [
1714
+ "js-sys",
1715
+ "wasm-bindgen",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "winapi"
1720
+ version = "0.3.9"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1723
+ dependencies = [
1724
+ "winapi-i686-pc-windows-gnu",
1725
+ "winapi-x86_64-pc-windows-gnu",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "winapi-i686-pc-windows-gnu"
1730
+ version = "0.4.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1733
+
1734
+ [[package]]
1735
+ name = "winapi-util"
1736
+ version = "0.1.11"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1739
+ dependencies = [
1740
+ "windows-sys",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "winapi-x86_64-pc-windows-gnu"
1745
+ version = "0.4.0"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1748
+
1749
+ [[package]]
1750
+ name = "windows"
1751
+ version = "0.52.0"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
1754
+ dependencies = [
1755
+ "windows-core",
1756
+ "windows-targets",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "windows-core"
1761
+ version = "0.52.0"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1764
+ dependencies = [
1765
+ "windows-targets",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "windows-link"
1770
+ version = "0.2.1"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1773
+
1774
+ [[package]]
1775
+ name = "windows-sys"
1776
+ version = "0.61.2"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1779
+ dependencies = [
1780
+ "windows-link",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "windows-targets"
1785
+ version = "0.52.6"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1788
+ dependencies = [
1789
+ "windows_aarch64_gnullvm",
1790
+ "windows_aarch64_msvc",
1791
+ "windows_i686_gnu",
1792
+ "windows_i686_gnullvm",
1793
+ "windows_i686_msvc",
1794
+ "windows_x86_64_gnu",
1795
+ "windows_x86_64_gnullvm",
1796
+ "windows_x86_64_msvc",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "windows_aarch64_gnullvm"
1801
+ version = "0.52.6"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1804
+
1805
+ [[package]]
1806
+ name = "windows_aarch64_msvc"
1807
+ version = "0.52.6"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1810
+
1811
+ [[package]]
1812
+ name = "windows_i686_gnu"
1813
+ version = "0.52.6"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1816
+
1817
+ [[package]]
1818
+ name = "windows_i686_gnullvm"
1819
+ version = "0.52.6"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1822
+
1823
+ [[package]]
1824
+ name = "windows_i686_msvc"
1825
+ version = "0.52.6"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1828
+
1829
+ [[package]]
1830
+ name = "windows_x86_64_gnu"
1831
+ version = "0.52.6"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1834
+
1835
+ [[package]]
1836
+ name = "windows_x86_64_gnullvm"
1837
+ version = "0.52.6"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1840
+
1841
+ [[package]]
1842
+ name = "windows_x86_64_msvc"
1843
+ version = "0.52.6"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1846
+
1847
+ [[package]]
1848
+ name = "wit-bindgen"
1849
+ version = "0.51.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1852
+ dependencies = [
1853
+ "wit-bindgen-rust-macro",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "wit-bindgen"
1858
+ version = "0.57.1"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1861
+
1862
+ [[package]]
1863
+ name = "wit-bindgen-core"
1864
+ version = "0.51.0"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1867
+ dependencies = [
1868
+ "anyhow",
1869
+ "heck",
1870
+ "wit-parser",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "wit-bindgen-rust"
1875
+ version = "0.51.0"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1878
+ dependencies = [
1879
+ "anyhow",
1880
+ "heck",
1881
+ "indexmap",
1882
+ "prettyplease",
1883
+ "syn 2.0.117",
1884
+ "wasm-metadata",
1885
+ "wit-bindgen-core",
1886
+ "wit-component",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "wit-bindgen-rust-macro"
1891
+ version = "0.51.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1894
+ dependencies = [
1895
+ "anyhow",
1896
+ "prettyplease",
1897
+ "proc-macro2",
1898
+ "quote",
1899
+ "syn 2.0.117",
1900
+ "wit-bindgen-core",
1901
+ "wit-bindgen-rust",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "wit-component"
1906
+ version = "0.244.0"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1909
+ dependencies = [
1910
+ "anyhow",
1911
+ "bitflags",
1912
+ "indexmap",
1913
+ "log",
1914
+ "serde",
1915
+ "serde_derive",
1916
+ "serde_json",
1917
+ "wasm-encoder",
1918
+ "wasm-metadata",
1919
+ "wasmparser",
1920
+ "wit-parser",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "wit-parser"
1925
+ version = "0.244.0"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1928
+ dependencies = [
1929
+ "anyhow",
1930
+ "id-arena",
1931
+ "indexmap",
1932
+ "log",
1933
+ "semver",
1934
+ "serde",
1935
+ "serde_derive",
1936
+ "serde_json",
1937
+ "unicode-xid",
1938
+ "wasmparser",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "zerocopy"
1943
+ version = "0.8.48"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1946
+ dependencies = [
1947
+ "zerocopy-derive",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "zerocopy-derive"
1952
+ version = "0.8.48"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1955
+ dependencies = [
1956
+ "proc-macro2",
1957
+ "quote",
1958
+ "syn 2.0.117",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "zmij"
1963
+ version = "1.0.21"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"