pyxlog 0.5.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 (318) hide show
  1. pyxlog-0.5.0/Cargo.lock +2517 -0
  2. pyxlog-0.5.0/Cargo.toml +34 -0
  3. pyxlog-0.5.0/PKG-INFO +33 -0
  4. pyxlog-0.5.0/README.md +16 -0
  5. pyxlog-0.5.0/crates/pyxlog/Cargo.toml +34 -0
  6. pyxlog-0.5.0/crates/pyxlog/README.md +784 -0
  7. pyxlog-0.5.0/crates/pyxlog/src/dlpack.rs +135 -0
  8. pyxlog-0.5.0/crates/pyxlog/src/ilp.rs +2747 -0
  9. pyxlog-0.5.0/crates/pyxlog/src/ilp_exact.rs +220 -0
  10. pyxlog-0.5.0/crates/pyxlog/src/ilp_gpu.rs +483 -0
  11. pyxlog-0.5.0/crates/pyxlog/src/lib.rs +520 -0
  12. pyxlog-0.5.0/crates/pyxlog/src/logic.rs +322 -0
  13. pyxlog-0.5.0/crates/pyxlog/src/neural.rs +2079 -0
  14. pyxlog-0.5.0/crates/pyxlog/src/neural_registry.rs +329 -0
  15. pyxlog-0.5.0/crates/pyxlog/src/program.rs +1005 -0
  16. pyxlog-0.5.0/crates/pyxlog/src/training.rs +207 -0
  17. pyxlog-0.5.0/crates/pyxlog/src/types.rs +61 -0
  18. pyxlog-0.5.0/crates/xlog-core/Cargo.toml +15 -0
  19. pyxlog-0.5.0/crates/xlog-core/README.md +784 -0
  20. pyxlog-0.5.0/crates/xlog-core/src/config.rs +117 -0
  21. pyxlog-0.5.0/crates/xlog-core/src/error.rs +111 -0
  22. pyxlog-0.5.0/crates/xlog-core/src/lib.rs +12 -0
  23. pyxlog-0.5.0/crates/xlog-core/src/symbol.rs +304 -0
  24. pyxlog-0.5.0/crates/xlog-core/src/traits.rs +133 -0
  25. pyxlog-0.5.0/crates/xlog-core/src/types.rs +311 -0
  26. pyxlog-0.5.0/crates/xlog-cuda/Cargo.toml +30 -0
  27. pyxlog-0.5.0/crates/xlog-cuda/README.md +784 -0
  28. pyxlog-0.5.0/crates/xlog-cuda/build.rs +136 -0
  29. pyxlog-0.5.0/crates/xlog-cuda/examples/comprehensive_test.rs +289 -0
  30. pyxlog-0.5.0/crates/xlog-cuda/kernels/.gitignore +5 -0
  31. pyxlog-0.5.0/crates/xlog-cuda/kernels/CMakeLists.txt +58 -0
  32. pyxlog-0.5.0/crates/xlog-cuda/kernels/arith.cu +482 -0
  33. pyxlog-0.5.0/crates/xlog-cuda/kernels/cache.cu +344 -0
  34. pyxlog-0.5.0/crates/xlog-cuda/kernels/circuit.cu +1632 -0
  35. pyxlog-0.5.0/crates/xlog-cuda/kernels/cnf.cu +623 -0
  36. pyxlog-0.5.0/crates/xlog-cuda/kernels/d4.cu +2953 -0
  37. pyxlog-0.5.0/crates/xlog-cuda/kernels/dedup.cu +289 -0
  38. pyxlog-0.5.0/crates/xlog-cuda/kernels/filter.cu +942 -0
  39. pyxlog-0.5.0/crates/xlog-cuda/kernels/groupby.cu +248 -0
  40. pyxlog-0.5.0/crates/xlog-cuda/kernels/ilp.cu +295 -0
  41. pyxlog-0.5.0/crates/xlog-cuda/kernels/ilp_credit.cu +139 -0
  42. pyxlog-0.5.0/crates/xlog-cuda/kernels/ilp_exact.cu +161 -0
  43. pyxlog-0.5.0/crates/xlog-cuda/kernels/join.cu +361 -0
  44. pyxlog-0.5.0/crates/xlog-cuda/kernels/mc_eval.cu +116 -0
  45. pyxlog-0.5.0/crates/xlog-cuda/kernels/mc_sample.cu +54 -0
  46. pyxlog-0.5.0/crates/xlog-cuda/kernels/neural.cu +136 -0
  47. pyxlog-0.5.0/crates/xlog-cuda/kernels/pack.cu +581 -0
  48. pyxlog-0.5.0/crates/xlog-cuda/kernels/pir.cu +600 -0
  49. pyxlog-0.5.0/crates/xlog-cuda/kernels/sat.cu +3268 -0
  50. pyxlog-0.5.0/crates/xlog-cuda/kernels/scan.cu +270 -0
  51. pyxlog-0.5.0/crates/xlog-cuda/kernels/set_ops.cu +116 -0
  52. pyxlog-0.5.0/crates/xlog-cuda/kernels/sort.cu +452 -0
  53. pyxlog-0.5.0/crates/xlog-cuda/kernels/weights.cu +355 -0
  54. pyxlog-0.5.0/crates/xlog-cuda/src/arrow_device.rs +158 -0
  55. pyxlog-0.5.0/crates/xlog-cuda/src/bin/nvrtc_ptx.rs +50 -0
  56. pyxlog-0.5.0/crates/xlog-cuda/src/cuda_compat.rs +312 -0
  57. pyxlog-0.5.0/crates/xlog-cuda/src/device.rs +570 -0
  58. pyxlog-0.5.0/crates/xlog-cuda/src/device_pool.rs +91 -0
  59. pyxlog-0.5.0/crates/xlog-cuda/src/dlpack.rs +455 -0
  60. pyxlog-0.5.0/crates/xlog-cuda/src/kernel_manifest_data.rs +481 -0
  61. pyxlog-0.5.0/crates/xlog-cuda/src/lib.rs +31 -0
  62. pyxlog-0.5.0/crates/xlog-cuda/src/memory.rs +859 -0
  63. pyxlog-0.5.0/crates/xlog-cuda/src/multi_gpu_memory.rs +76 -0
  64. pyxlog-0.5.0/crates/xlog-cuda/src/provider/arithmetic.rs +1110 -0
  65. pyxlog-0.5.0/crates/xlog-cuda/src/provider/filter.rs +965 -0
  66. pyxlog-0.5.0/crates/xlog-cuda/src/provider/groupby.rs +653 -0
  67. pyxlog-0.5.0/crates/xlog-cuda/src/provider/ilp.rs +1017 -0
  68. pyxlog-0.5.0/crates/xlog-cuda/src/provider/ilp_exact.rs +433 -0
  69. pyxlog-0.5.0/crates/xlog-cuda/src/provider/io.rs +772 -0
  70. pyxlog-0.5.0/crates/xlog-cuda/src/provider/kernel_loading.rs +63 -0
  71. pyxlog-0.5.0/crates/xlog-cuda/src/provider/kernel_paths.rs +135 -0
  72. pyxlog-0.5.0/crates/xlog-cuda/src/provider/mod.rs +2769 -0
  73. pyxlog-0.5.0/crates/xlog-cuda/src/provider/probabilistic.rs +172 -0
  74. pyxlog-0.5.0/crates/xlog-cuda/src/provider/relational.rs +4497 -0
  75. pyxlog-0.5.0/crates/xlog-cuda/src/provider/transfer.rs +130 -0
  76. pyxlog-0.5.0/crates/xlog-cuda/src/type_seam.rs +391 -0
  77. pyxlog-0.5.0/crates/xlog-cuda/tests/arrow_device_ffi.rs +189 -0
  78. pyxlog-0.5.0/crates/xlog-cuda/tests/arrow_device_import.rs +65 -0
  79. pyxlog-0.5.0/crates/xlog-cuda/tests/arrow_tests.rs +344 -0
  80. pyxlog-0.5.0/crates/xlog-cuda/tests/build_script_tests.rs +52 -0
  81. pyxlog-0.5.0/crates/xlog-cuda/tests/common/mod.rs +19 -0
  82. pyxlog-0.5.0/crates/xlog-cuda/tests/compact_device_count.rs +41 -0
  83. pyxlog-0.5.0/crates/xlog-cuda/tests/d4_provider_tests.rs +50 -0
  84. pyxlog-0.5.0/crates/xlog-cuda/tests/device_row_counts.rs +62 -0
  85. pyxlog-0.5.0/crates/xlog-cuda/tests/dlpack_tests.rs +164 -0
  86. pyxlog-0.5.0/crates/xlog-cuda/tests/filter_tests.rs +383 -0
  87. pyxlog-0.5.0/crates/xlog-cuda/tests/groupby_gpu.rs +40 -0
  88. pyxlog-0.5.0/crates/xlog-cuda/tests/groupby_tests.rs +553 -0
  89. pyxlog-0.5.0/crates/xlog-cuda/tests/ilp_kernel_tests.rs +165 -0
  90. pyxlog-0.5.0/crates/xlog-cuda/tests/join_collision_test.rs +194 -0
  91. pyxlog-0.5.0/crates/xlog-cuda/tests/join_v2_tests.rs +386 -0
  92. pyxlog-0.5.0/crates/xlog-cuda/tests/large_prefix_sum_test.rs +166 -0
  93. pyxlog-0.5.0/crates/xlog-cuda/tests/multi_gpu_tests.rs +79 -0
  94. pyxlog-0.5.0/crates/xlog-cuda/tests/pack_keys_gpu.rs +43 -0
  95. pyxlog-0.5.0/crates/xlog-cuda/tests/pir_provider_tests.rs +32 -0
  96. pyxlog-0.5.0/crates/xlog-cuda/tests/ptx_validation.rs +212 -0
  97. pyxlog-0.5.0/crates/xlog-cuda/tests/scan_tests.rs +92 -0
  98. pyxlog-0.5.0/crates/xlog-cuda/tests/set_ops_tests.rs +919 -0
  99. pyxlog-0.5.0/crates/xlog-cuda/tests/sort_tests.rs +154 -0
  100. pyxlog-0.5.0/crates/xlog-cuda/tests/test_d2h_counter.rs +45 -0
  101. pyxlog-0.5.0/crates/xlog-cuda/tests/test_membership_mask.rs +125 -0
  102. pyxlog-0.5.0/crates/xlog-cuda/tests/tracked_slice_into_bytes.rs +29 -0
  103. pyxlog-0.5.0/crates/xlog-cuda/tests/type_coverage_tests.rs +842 -0
  104. pyxlog-0.5.0/crates/xlog-gpu/Cargo.toml +23 -0
  105. pyxlog-0.5.0/crates/xlog-gpu/README.md +784 -0
  106. pyxlog-0.5.0/crates/xlog-gpu/benches/logic_bench.rs +590 -0
  107. pyxlog-0.5.0/crates/xlog-gpu/src/lib.rs +3 -0
  108. pyxlog-0.5.0/crates/xlog-gpu/src/logic.rs +533 -0
  109. pyxlog-0.5.0/crates/xlog-gpu/tests/logic_runner.rs +75 -0
  110. pyxlog-0.5.0/crates/xlog-gpu/tests/v032_gpu_certification.rs +585 -0
  111. pyxlog-0.5.0/crates/xlog-induce/Cargo.toml +14 -0
  112. pyxlog-0.5.0/crates/xlog-induce/README.md +784 -0
  113. pyxlog-0.5.0/crates/xlog-induce/src/index.rs +4 -0
  114. pyxlog-0.5.0/crates/xlog-induce/src/lib.rs +235 -0
  115. pyxlog-0.5.0/crates/xlog-induce/src/reduce.rs +332 -0
  116. pyxlog-0.5.0/crates/xlog-induce/src/score.rs +5 -0
  117. pyxlog-0.5.0/crates/xlog-induce/src/types.rs +84 -0
  118. pyxlog-0.5.0/crates/xlog-induce/src/validate.rs +145 -0
  119. pyxlog-0.5.0/crates/xlog-ir/Cargo.toml +11 -0
  120. pyxlog-0.5.0/crates/xlog-ir/README.md +784 -0
  121. pyxlog-0.5.0/crates/xlog-ir/src/lib.rs +9 -0
  122. pyxlog-0.5.0/crates/xlog-ir/src/metadata.rs +126 -0
  123. pyxlog-0.5.0/crates/xlog-ir/src/plan.rs +191 -0
  124. pyxlog-0.5.0/crates/xlog-ir/src/rir.rs +334 -0
  125. pyxlog-0.5.0/crates/xlog-logic/Cargo.toml +19 -0
  126. pyxlog-0.5.0/crates/xlog-logic/README.md +784 -0
  127. pyxlog-0.5.0/crates/xlog-logic/examples/optimizer_demo.rs +1422 -0
  128. pyxlog-0.5.0/crates/xlog-logic/src/ast.rs +726 -0
  129. pyxlog-0.5.0/crates/xlog-logic/src/compile.rs +748 -0
  130. pyxlog-0.5.0/crates/xlog-logic/src/expand.rs +991 -0
  131. pyxlog-0.5.0/crates/xlog-logic/src/function.rs +778 -0
  132. pyxlog-0.5.0/crates/xlog-logic/src/grammar.pest +187 -0
  133. pyxlog-0.5.0/crates/xlog-logic/src/lib.rs +53 -0
  134. pyxlog-0.5.0/crates/xlog-logic/src/lower.rs +3148 -0
  135. pyxlog-0.5.0/crates/xlog-logic/src/module.rs +256 -0
  136. pyxlog-0.5.0/crates/xlog-logic/src/optimizer.rs +1939 -0
  137. pyxlog-0.5.0/crates/xlog-logic/src/parser.rs +1506 -0
  138. pyxlog-0.5.0/crates/xlog-logic/src/resolver.rs +469 -0
  139. pyxlog-0.5.0/crates/xlog-logic/src/stratify.rs +553 -0
  140. pyxlog-0.5.0/crates/xlog-logic/src/typeinfer.rs +204 -0
  141. pyxlog-0.5.0/crates/xlog-logic/tests/function_integration_tests.rs +238 -0
  142. pyxlog-0.5.0/crates/xlog-logic/tests/function_parse_tests.rs +151 -0
  143. pyxlog-0.5.0/crates/xlog-logic/tests/integration/full_v032.rs +1548 -0
  144. pyxlog-0.5.0/crates/xlog-logic/tests/integration/main.rs +9 -0
  145. pyxlog-0.5.0/crates/xlog-logic/tests/integration/module_udf.rs +489 -0
  146. pyxlog-0.5.0/crates/xlog-logic/tests/integration/symbol_module.rs +450 -0
  147. pyxlog-0.5.0/crates/xlog-logic/tests/integration/symbol_udf.rs +578 -0
  148. pyxlog-0.5.0/crates/xlog-logic/tests/integration_tests.rs +424 -0
  149. pyxlog-0.5.0/crates/xlog-logic/tests/logic/aggregates.xlog +8 -0
  150. pyxlog-0.5.0/crates/xlog-logic/tests/logic/learnable.xlog +8 -0
  151. pyxlog-0.5.0/crates/xlog-logic/tests/logic/stratified.xlog +9 -0
  152. pyxlog-0.5.0/crates/xlog-logic/tests/logic/tc.xlog +9 -0
  153. pyxlog-0.5.0/crates/xlog-logic/tests/module_integration_tests.rs +138 -0
  154. pyxlog-0.5.0/crates/xlog-logic/tests/module_parse_tests.rs +69 -0
  155. pyxlog-0.5.0/crates/xlog-logic/tests/modules/basic/helper.xlog +3 -0
  156. pyxlog-0.5.0/crates/xlog-logic/tests/modules/basic/main.xlog +3 -0
  157. pyxlog-0.5.0/crates/xlog-logic/tests/modules/circular/a.xlog +2 -0
  158. pyxlog-0.5.0/crates/xlog-logic/tests/modules/circular/b.xlog +2 -0
  159. pyxlog-0.5.0/crates/xlog-logic/tests/modules/nested/lib/utils.xlog +4 -0
  160. pyxlog-0.5.0/crates/xlog-logic/tests/modules/nested/main.xlog +7 -0
  161. pyxlog-0.5.0/crates/xlog-logic/tests/modules/transitive/base.xlog +4 -0
  162. pyxlog-0.5.0/crates/xlog-logic/tests/modules/transitive/main.xlog +7 -0
  163. pyxlog-0.5.0/crates/xlog-logic/tests/modules/transitive/mid.xlog +5 -0
  164. pyxlog-0.5.0/crates/xlog-logic/tests/modules/visibility/internal.xlog +5 -0
  165. pyxlog-0.5.0/crates/xlog-logic/tests/modules/visibility/main.xlog +4 -0
  166. pyxlog-0.5.0/crates/xlog-logic/tests/optimizer_integration.rs +733 -0
  167. pyxlog-0.5.0/crates/xlog-logic/tests/optimizer_real_world.rs +1795 -0
  168. pyxlog-0.5.0/crates/xlog-logic/tests/parse_neural.rs +77 -0
  169. pyxlog-0.5.0/crates/xlog-logic/tests/symbol_integration_test.rs +67 -0
  170. pyxlog-0.5.0/crates/xlog-neural/Cargo.toml +54 -0
  171. pyxlog-0.5.0/crates/xlog-neural/README.md +784 -0
  172. pyxlog-0.5.0/crates/xlog-neural/src/batch.rs +296 -0
  173. pyxlog-0.5.0/crates/xlog-neural/src/bridge.rs +275 -0
  174. pyxlog-0.5.0/crates/xlog-neural/src/handle.rs +302 -0
  175. pyxlog-0.5.0/crates/xlog-neural/src/lib.rs +88 -0
  176. pyxlog-0.5.0/crates/xlog-neural/src/registry.rs +323 -0
  177. pyxlog-0.5.0/crates/xlog-neural/src/tensor_source.rs +368 -0
  178. pyxlog-0.5.0/crates/xlog-neural/tests/batch_test.rs +155 -0
  179. pyxlog-0.5.0/crates/xlog-neural/tests/bridge_test.rs +168 -0
  180. pyxlog-0.5.0/crates/xlog-neural/tests/registry_test.rs +156 -0
  181. pyxlog-0.5.0/crates/xlog-neural/tests/tensor_source_test.rs +189 -0
  182. pyxlog-0.5.0/crates/xlog-neural/tests/test_error_conversion.rs +46 -0
  183. pyxlog-0.5.0/crates/xlog-prob/Cargo.toml +30 -0
  184. pyxlog-0.5.0/crates/xlog-prob/README.md +784 -0
  185. pyxlog-0.5.0/crates/xlog-prob/benches/prob_bench.rs +529 -0
  186. pyxlog-0.5.0/crates/xlog-prob/src/cnf.rs +549 -0
  187. pyxlog-0.5.0/crates/xlog-prob/src/compilation/disk_cache.rs +652 -0
  188. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_cache.rs +3022 -0
  189. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_cnf.rs +546 -0
  190. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_d4/build.rs +1852 -0
  191. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_d4/frontier.rs +1482 -0
  192. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_d4/mod.rs +444 -0
  193. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_pir.rs +240 -0
  194. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_pir_intern.rs +965 -0
  195. pyxlog-0.5.0/crates/xlog-prob/src/compilation/gpu_weights.rs +393 -0
  196. pyxlog-0.5.0/crates/xlog-prob/src/compilation/mod.rs +662 -0
  197. pyxlog-0.5.0/crates/xlog-prob/src/compilation/sparse_matrix.rs +18 -0
  198. pyxlog-0.5.0/crates/xlog-prob/src/compilation/validation.rs +990 -0
  199. pyxlog-0.5.0/crates/xlog-prob/src/exact.rs +2096 -0
  200. pyxlog-0.5.0/crates/xlog-prob/src/exact_gpu.rs +329 -0
  201. pyxlog-0.5.0/crates/xlog-prob/src/gpu.rs +1635 -0
  202. pyxlog-0.5.0/crates/xlog-prob/src/kc/ddnnf.rs +429 -0
  203. pyxlog-0.5.0/crates/xlog-prob/src/kc/mod.rs +1 -0
  204. pyxlog-0.5.0/crates/xlog-prob/src/lib.rs +33 -0
  205. pyxlog-0.5.0/crates/xlog-prob/src/mc/buffers.rs +975 -0
  206. pyxlog-0.5.0/crates/xlog-prob/src/mc/evidence.rs +130 -0
  207. pyxlog-0.5.0/crates/xlog-prob/src/mc/mod.rs +1100 -0
  208. pyxlog-0.5.0/crates/xlog-prob/src/mc/results.rs +1002 -0
  209. pyxlog-0.5.0/crates/xlog-prob/src/mc/sampling.rs +297 -0
  210. pyxlog-0.5.0/crates/xlog-prob/src/neural_fast_path.rs +118 -0
  211. pyxlog-0.5.0/crates/xlog-prob/src/pir.rs +237 -0
  212. pyxlog-0.5.0/crates/xlog-prob/src/provenance.rs +1439 -0
  213. pyxlog-0.5.0/crates/xlog-prob/src/wfs.rs +1386 -0
  214. pyxlog-0.5.0/crates/xlog-prob/src/xgcf.rs +1406 -0
  215. pyxlog-0.5.0/crates/xlog-prob/tests/cdcl_q1_status_simple.rs +271 -0
  216. pyxlog-0.5.0/crates/xlog-prob/tests/cdcl_q2_status.rs +224 -0
  217. pyxlog-0.5.0/crates/xlog-prob/tests/cnf_cross_process.rs +103 -0
  218. pyxlog-0.5.0/crates/xlog-prob/tests/cnf_determinism.rs +134 -0
  219. pyxlog-0.5.0/crates/xlog-prob/tests/common/mod.rs +19 -0
  220. pyxlog-0.5.0/crates/xlog-prob/tests/disk_cache_cross_process.rs +188 -0
  221. pyxlog-0.5.0/crates/xlog-prob/tests/exact_ddnnf.rs +317 -0
  222. pyxlog-0.5.0/crates/xlog-prob/tests/exact_ddnnf_gpu_grads.rs +208 -0
  223. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_backward_fused_parity.rs +209 -0
  224. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_cache_compile_and_verify.rs +94 -0
  225. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_cache_store.rs +93 -0
  226. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_circuit_cache.rs +69 -0
  227. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_cnf.rs +160 -0
  228. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_cnf_hash.rs +96 -0
  229. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_d4_compile_and_verify.rs +55 -0
  230. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_d4_validate_cnf.rs +48 -0
  231. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_d4_var_presence.rs +729 -0
  232. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_equivalence_padded_phi.rs +113 -0
  233. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_equivalence_smoke.rs +67 -0
  234. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_eval_device_only.rs +85 -0
  235. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_exact_cache_integration.rs +43 -0
  236. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_mc_device_counts.rs +171 -0
  237. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_mc_vs_cpu.rs +38 -0
  238. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_pir_intern.rs +47 -0
  239. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_pir_layout.rs +95 -0
  240. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_query_var_mapping.rs +301 -0
  241. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_query_vars_device.rs +93 -0
  242. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_weights.rs +148 -0
  243. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_workspace_verify.rs +153 -0
  244. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_xgcf.rs +632 -0
  245. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_xgcf_cached.rs +82 -0
  246. pyxlog-0.5.0/crates/xlog-prob/tests/gpu_xgcf_from_device.rs +129 -0
  247. pyxlog-0.5.0/crates/xlog-prob/tests/mc.rs +627 -0
  248. pyxlog-0.5.0/crates/xlog-prob/tests/mc_gpu_native.rs +308 -0
  249. pyxlog-0.5.0/crates/xlog-prob/tests/neural_fast_path.rs +284 -0
  250. pyxlog-0.5.0/crates/xlog-prob/tests/no_cpu_d4_in_exact.rs +14 -0
  251. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_gpu_native.rs +122 -0
  252. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_gpu_cache.rs +65 -0
  253. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_gpu_cache_path.rs +68 -0
  254. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_gpu_equivalence.rs +15 -0
  255. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_gpu_eval_device.rs +42 -0
  256. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_gpu_exact_path.rs +21 -0
  257. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_gpu_neural_fast_path.rs +33 -0
  258. pyxlog-0.5.0/crates/xlog-prob/tests/no_dtoh_in_neural_backward_nll.rs +38 -0
  259. pyxlog-0.5.0/crates/xlog-prob/tests/no_synchronize_in_neural_backward.rs +29 -0
  260. pyxlog-0.5.0/crates/xlog-prob/tests/no_unimplemented_stubs.rs +36 -0
  261. pyxlog-0.5.0/crates/xlog-prob/tests/provenance_tc.rs +51 -0
  262. pyxlog-0.5.0/crates/xlog-prob/tests/sync_regression_gpu.rs +43 -0
  263. pyxlog-0.5.0/crates/xlog-prob/tests/sync_regression_gpu_cache.rs +46 -0
  264. pyxlog-0.5.0/crates/xlog-prob/tests/template_addition_cnf_valid.rs +418 -0
  265. pyxlog-0.5.0/crates/xlog-prob/tests/test_provenance_primitives.rs +115 -0
  266. pyxlog-0.5.0/crates/xlog-prob/tests/utils/dtoh.rs +20 -0
  267. pyxlog-0.5.0/crates/xlog-prob/tests/utils/scan.rs +111 -0
  268. pyxlog-0.5.0/crates/xlog-runtime/Cargo.toml +18 -0
  269. pyxlog-0.5.0/crates/xlog-runtime/README.md +784 -0
  270. pyxlog-0.5.0/crates/xlog-runtime/src/executor/delta.rs +78 -0
  271. pyxlog-0.5.0/crates/xlog-runtime/src/executor/expression.rs +552 -0
  272. pyxlog-0.5.0/crates/xlog-runtime/src/executor/join_cache.rs +161 -0
  273. pyxlog-0.5.0/crates/xlog-runtime/src/executor/mod.rs +2055 -0
  274. pyxlog-0.5.0/crates/xlog-runtime/src/executor/node_dispatch.rs +625 -0
  275. pyxlog-0.5.0/crates/xlog-runtime/src/executor/recursive.rs +594 -0
  276. pyxlog-0.5.0/crates/xlog-runtime/src/executor/rewrite.rs +465 -0
  277. pyxlog-0.5.0/crates/xlog-runtime/src/ilp_registry.rs +181 -0
  278. pyxlog-0.5.0/crates/xlog-runtime/src/lib.rs +16 -0
  279. pyxlog-0.5.0/crates/xlog-runtime/src/profiler.rs +991 -0
  280. pyxlog-0.5.0/crates/xlog-runtime/src/relation.rs +584 -0
  281. pyxlog-0.5.0/crates/xlog-runtime/src/statistics.rs +130 -0
  282. pyxlog-0.5.0/crates/xlog-runtime/tests/statistics_tests.rs +53 -0
  283. pyxlog-0.5.0/crates/xlog-solve/Cargo.toml +20 -0
  284. pyxlog-0.5.0/crates/xlog-solve/README.md +784 -0
  285. pyxlog-0.5.0/crates/xlog-solve/benches/solver_bench.rs +469 -0
  286. pyxlog-0.5.0/crates/xlog-solve/examples/real_world.rs +1645 -0
  287. pyxlog-0.5.0/crates/xlog-solve/src/gpu_cdcl.rs +1530 -0
  288. pyxlog-0.5.0/crates/xlog-solve/src/gpu_cnf.rs +142 -0
  289. pyxlog-0.5.0/crates/xlog-solve/src/instance.rs +1204 -0
  290. pyxlog-0.5.0/crates/xlog-solve/src/lib.rs +46 -0
  291. pyxlog-0.5.0/crates/xlog-solve/src/proof.rs +1409 -0
  292. pyxlog-0.5.0/crates/xlog-solve/src/solver.rs +1270 -0
  293. pyxlog-0.5.0/crates/xlog-solve/tests/gpu_cdcl_tests.rs +71 -0
  294. pyxlog-0.5.0/crates/xlog-solve/tests/gpu_cdcl_workspace.rs +216 -0
  295. pyxlog-0.5.0/crates/xlog-solve/tests/gpu_cnf_tests.rs +64 -0
  296. pyxlog-0.5.0/crates/xlog-solve/tests/integration_test.rs +1272 -0
  297. pyxlog-0.5.0/crates/xlog-solve/tests/no_dtoh_in_gpu_cdcl.rs +27 -0
  298. pyxlog-0.5.0/crates/xlog-solve/tests/real_world_tests.rs +1322 -0
  299. pyxlog-0.5.0/crates/xlog-stats/Cargo.toml +18 -0
  300. pyxlog-0.5.0/crates/xlog-stats/README.md +784 -0
  301. pyxlog-0.5.0/crates/xlog-stats/benches/stats_bench.rs +745 -0
  302. pyxlog-0.5.0/crates/xlog-stats/src/lib.rs +55 -0
  303. pyxlog-0.5.0/crates/xlog-stats/src/manager.rs +977 -0
  304. pyxlog-0.5.0/crates/xlog-stats/src/stats.rs +689 -0
  305. pyxlog-0.5.0/pyproject.toml +29 -0
  306. pyxlog-0.5.0/python/pyxlog/__init__.py +11 -0
  307. pyxlog-0.5.0/python/pyxlog/_kernel_paths.py +37 -0
  308. pyxlog-0.5.0/python/pyxlog/ilp/__init__.py +54 -0
  309. pyxlog-0.5.0/python/pyxlog/ilp/backend.py +240 -0
  310. pyxlog-0.5.0/python/pyxlog/ilp/entropy.py +59 -0
  311. pyxlog-0.5.0/python/pyxlog/ilp/exact_induce.py +324 -0
  312. pyxlog-0.5.0/python/pyxlog/ilp/exact_small.py +164 -0
  313. pyxlog-0.5.0/python/pyxlog/ilp/exceptions.py +22 -0
  314. pyxlog-0.5.0/python/pyxlog/ilp/holdout.py +223 -0
  315. pyxlog-0.5.0/python/pyxlog/ilp/promoter.py +393 -0
  316. pyxlog-0.5.0/python/pyxlog/ilp/temperature.py +131 -0
  317. pyxlog-0.5.0/python/pyxlog/ilp/trainer.py +2255 -0
  318. pyxlog-0.5.0/python/pyxlog/ilp/types.py +420 -0
@@ -0,0 +1,2517 @@
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
+ "const-random",
13
+ "getrandom 0.3.4",
14
+ "once_cell",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "aho-corasick"
21
+ version = "1.1.4"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
24
+ dependencies = [
25
+ "memchr",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
34
+ [[package]]
35
+ name = "android-tzdata"
36
+ version = "0.1.1"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
39
+
40
+ [[package]]
41
+ name = "android_system_properties"
42
+ version = "0.1.5"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
45
+ dependencies = [
46
+ "libc",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anes"
51
+ version = "0.1.6"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
54
+
55
+ [[package]]
56
+ name = "anstream"
57
+ version = "1.0.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
60
+ dependencies = [
61
+ "anstyle",
62
+ "anstyle-parse",
63
+ "anstyle-query",
64
+ "anstyle-wincon",
65
+ "colorchoice",
66
+ "is_terminal_polyfill",
67
+ "utf8parse",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anstyle"
72
+ version = "1.0.14"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
75
+
76
+ [[package]]
77
+ name = "anstyle-parse"
78
+ version = "1.0.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
81
+ dependencies = [
82
+ "utf8parse",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anstyle-query"
87
+ version = "1.1.5"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
90
+ dependencies = [
91
+ "windows-sys",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anstyle-wincon"
96
+ version = "3.0.11"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
99
+ dependencies = [
100
+ "anstyle",
101
+ "once_cell_polyfill",
102
+ "windows-sys",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "anyhow"
107
+ version = "1.0.102"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
110
+
111
+ [[package]]
112
+ name = "arrow"
113
+ version = "53.4.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "d3a3ec4fe573f9d1f59d99c085197ef669b00b088ba1d7bb75224732d9357a74"
116
+ dependencies = [
117
+ "arrow-arith",
118
+ "arrow-array",
119
+ "arrow-buffer",
120
+ "arrow-cast",
121
+ "arrow-csv",
122
+ "arrow-data",
123
+ "arrow-ipc",
124
+ "arrow-ord",
125
+ "arrow-row",
126
+ "arrow-schema",
127
+ "arrow-select",
128
+ "arrow-string",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "arrow-arith"
133
+ version = "53.4.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "6dcf19f07792d8c7f91086c67b574a79301e367029b17fcf63fb854332246a10"
136
+ dependencies = [
137
+ "arrow-array",
138
+ "arrow-buffer",
139
+ "arrow-data",
140
+ "arrow-schema",
141
+ "chrono",
142
+ "half",
143
+ "num",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "arrow-array"
148
+ version = "53.4.1"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "7845c32b41f7053e37a075b3c2f29c6f5ea1b3ca6e5df7a2d325ee6e1b4a63cf"
151
+ dependencies = [
152
+ "ahash",
153
+ "arrow-buffer",
154
+ "arrow-data",
155
+ "arrow-schema",
156
+ "chrono",
157
+ "half",
158
+ "hashbrown 0.15.5",
159
+ "num",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "arrow-buffer"
164
+ version = "53.4.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "5b5c681a99606f3316f2a99d9c8b6fa3aad0b1d34d8f6d7a1b471893940219d8"
167
+ dependencies = [
168
+ "bytes",
169
+ "half",
170
+ "num",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "arrow-cast"
175
+ version = "53.4.1"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "6365f8527d4f87b133eeb862f9b8093c009d41a210b8f101f91aa2392f61daac"
178
+ dependencies = [
179
+ "arrow-array",
180
+ "arrow-buffer",
181
+ "arrow-data",
182
+ "arrow-schema",
183
+ "arrow-select",
184
+ "atoi",
185
+ "base64",
186
+ "chrono",
187
+ "comfy-table",
188
+ "half",
189
+ "lexical-core",
190
+ "num",
191
+ "ryu",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "arrow-csv"
196
+ version = "53.4.1"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "30dac4d23ac769300349197b845e0fd18c7f9f15d260d4659ae6b5a9ca06f586"
199
+ dependencies = [
200
+ "arrow-array",
201
+ "arrow-buffer",
202
+ "arrow-cast",
203
+ "arrow-data",
204
+ "arrow-schema",
205
+ "chrono",
206
+ "csv",
207
+ "csv-core",
208
+ "lazy_static",
209
+ "lexical-core",
210
+ "regex",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "arrow-data"
215
+ version = "53.4.1"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "cd962fc3bf7f60705b25bcaa8eb3318b2545aa1d528656525ebdd6a17a6cd6fb"
218
+ dependencies = [
219
+ "arrow-buffer",
220
+ "arrow-schema",
221
+ "half",
222
+ "num",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "arrow-ipc"
227
+ version = "53.4.1"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "c3527365b24372f9c948f16e53738eb098720eea2093ae73c7af04ac5e30a39b"
230
+ dependencies = [
231
+ "arrow-array",
232
+ "arrow-buffer",
233
+ "arrow-cast",
234
+ "arrow-data",
235
+ "arrow-schema",
236
+ "flatbuffers",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "arrow-ord"
241
+ version = "53.4.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "79af2db0e62a508d34ddf4f76bfd6109b6ecc845257c9cba6f939653668f89ac"
244
+ dependencies = [
245
+ "arrow-array",
246
+ "arrow-buffer",
247
+ "arrow-data",
248
+ "arrow-schema",
249
+ "arrow-select",
250
+ "half",
251
+ "num",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "arrow-row"
256
+ version = "53.4.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "da30e9d10e9c52f09ea0cf15086d6d785c11ae8dcc3ea5f16d402221b6ac7735"
259
+ dependencies = [
260
+ "ahash",
261
+ "arrow-array",
262
+ "arrow-buffer",
263
+ "arrow-data",
264
+ "arrow-schema",
265
+ "half",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "arrow-schema"
270
+ version = "53.4.1"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "35b0f9c0c3582dd55db0f136d3b44bfa0189df07adcf7dc7f2f2e74db0f52eb8"
273
+ dependencies = [
274
+ "bitflags 2.11.1",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "arrow-select"
279
+ version = "53.4.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "92fc337f01635218493c23da81a364daf38c694b05fc20569c3193c11c561984"
282
+ dependencies = [
283
+ "ahash",
284
+ "arrow-array",
285
+ "arrow-buffer",
286
+ "arrow-data",
287
+ "arrow-schema",
288
+ "num",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "arrow-string"
293
+ version = "53.4.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "d596a9fc25dae556672d5069b090331aca8acb93cae426d8b7dcdf1c558fa0ce"
296
+ dependencies = [
297
+ "arrow-array",
298
+ "arrow-buffer",
299
+ "arrow-data",
300
+ "arrow-schema",
301
+ "arrow-select",
302
+ "memchr",
303
+ "num",
304
+ "regex",
305
+ "regex-syntax",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "assert_cmd"
310
+ version = "2.2.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "39bae1d3fa576f7c6519514180a72559268dd7d1fe104070956cb687bc6673bd"
313
+ dependencies = [
314
+ "anstyle",
315
+ "bstr",
316
+ "libc",
317
+ "predicates",
318
+ "predicates-core",
319
+ "predicates-tree",
320
+ "wait-timeout",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "atoi"
325
+ version = "2.0.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
328
+ dependencies = [
329
+ "num-traits",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "autocfg"
334
+ version = "1.5.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
337
+
338
+ [[package]]
339
+ name = "base64"
340
+ version = "0.22.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
343
+
344
+ [[package]]
345
+ name = "bit-set"
346
+ version = "0.8.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
349
+ dependencies = [
350
+ "bit-vec",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "bit-vec"
355
+ version = "0.8.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
358
+
359
+ [[package]]
360
+ name = "bitflags"
361
+ version = "1.3.2"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
364
+
365
+ [[package]]
366
+ name = "bitflags"
367
+ version = "2.11.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
370
+
371
+ [[package]]
372
+ name = "block-buffer"
373
+ version = "0.10.4"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
376
+ dependencies = [
377
+ "generic-array",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "bstr"
382
+ version = "1.12.1"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
385
+ dependencies = [
386
+ "memchr",
387
+ "regex-automata",
388
+ "serde",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "bumpalo"
393
+ version = "3.20.2"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
396
+
397
+ [[package]]
398
+ name = "bytemuck"
399
+ version = "1.25.0"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
402
+
403
+ [[package]]
404
+ name = "bytes"
405
+ version = "1.11.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
408
+
409
+ [[package]]
410
+ name = "cast"
411
+ version = "0.3.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
414
+
415
+ [[package]]
416
+ name = "cc"
417
+ version = "1.2.60"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
420
+ dependencies = [
421
+ "find-msvc-tools",
422
+ "shlex",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "cfg-if"
427
+ version = "1.0.4"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
430
+
431
+ [[package]]
432
+ name = "chrono"
433
+ version = "0.4.39"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
436
+ dependencies = [
437
+ "android-tzdata",
438
+ "iana-time-zone",
439
+ "num-traits",
440
+ "windows-targets",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "ciborium"
445
+ version = "0.2.2"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
448
+ dependencies = [
449
+ "ciborium-io",
450
+ "ciborium-ll",
451
+ "serde",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "ciborium-io"
456
+ version = "0.2.2"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
459
+
460
+ [[package]]
461
+ name = "ciborium-ll"
462
+ version = "0.2.2"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
465
+ dependencies = [
466
+ "ciborium-io",
467
+ "half",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "clap"
472
+ version = "4.6.1"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
475
+ dependencies = [
476
+ "clap_builder",
477
+ "clap_derive",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "clap_builder"
482
+ version = "4.6.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
485
+ dependencies = [
486
+ "anstream",
487
+ "anstyle",
488
+ "clap_lex",
489
+ "strsim",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "clap_derive"
494
+ version = "4.6.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
497
+ dependencies = [
498
+ "heck 0.5.0",
499
+ "proc-macro2",
500
+ "quote",
501
+ "syn",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "clap_lex"
506
+ version = "1.1.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
509
+
510
+ [[package]]
511
+ name = "colorchoice"
512
+ version = "1.0.5"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
515
+
516
+ [[package]]
517
+ name = "comfy-table"
518
+ version = "7.2.2"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
521
+ dependencies = [
522
+ "unicode-segmentation",
523
+ "unicode-width",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "const-random"
528
+ version = "0.1.18"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
531
+ dependencies = [
532
+ "const-random-macro",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "const-random-macro"
537
+ version = "0.1.16"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
540
+ dependencies = [
541
+ "getrandom 0.2.17",
542
+ "once_cell",
543
+ "tiny-keccak",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "core-foundation-sys"
548
+ version = "0.8.7"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
551
+
552
+ [[package]]
553
+ name = "cpufeatures"
554
+ version = "0.2.17"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
557
+ dependencies = [
558
+ "libc",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "criterion"
563
+ version = "0.5.1"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
566
+ dependencies = [
567
+ "anes",
568
+ "cast",
569
+ "ciborium",
570
+ "clap",
571
+ "criterion-plot",
572
+ "is-terminal",
573
+ "itertools",
574
+ "num-traits",
575
+ "once_cell",
576
+ "oorandom",
577
+ "plotters",
578
+ "rayon",
579
+ "regex",
580
+ "serde",
581
+ "serde_derive",
582
+ "serde_json",
583
+ "tinytemplate",
584
+ "walkdir",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "criterion-plot"
589
+ version = "0.5.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
592
+ dependencies = [
593
+ "cast",
594
+ "itertools",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "crossbeam-deque"
599
+ version = "0.8.6"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
602
+ dependencies = [
603
+ "crossbeam-epoch",
604
+ "crossbeam-utils",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "crossbeam-epoch"
609
+ version = "0.9.18"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
612
+ dependencies = [
613
+ "crossbeam-utils",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "crossbeam-utils"
618
+ version = "0.8.21"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
621
+
622
+ [[package]]
623
+ name = "crunchy"
624
+ version = "0.2.4"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
627
+
628
+ [[package]]
629
+ name = "crypto-common"
630
+ version = "0.1.7"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
633
+ dependencies = [
634
+ "generic-array",
635
+ "typenum",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "csv"
640
+ version = "1.4.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
643
+ dependencies = [
644
+ "csv-core",
645
+ "itoa",
646
+ "ryu",
647
+ "serde_core",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "csv-core"
652
+ version = "0.1.13"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
655
+ dependencies = [
656
+ "memchr",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "cudarc"
661
+ version = "0.19.4"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "f071cd6a7b5d51607df76aa2d426aaabc7a74bc6bdb885b8afa63a880572ad9b"
664
+ dependencies = [
665
+ "libloading",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "difflib"
670
+ version = "0.4.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
673
+
674
+ [[package]]
675
+ name = "digest"
676
+ version = "0.10.7"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
679
+ dependencies = [
680
+ "block-buffer",
681
+ "crypto-common",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "either"
686
+ version = "1.15.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
689
+
690
+ [[package]]
691
+ name = "equivalent"
692
+ version = "1.0.2"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
695
+
696
+ [[package]]
697
+ name = "errno"
698
+ version = "0.3.14"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
701
+ dependencies = [
702
+ "libc",
703
+ "windows-sys",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "fastrand"
708
+ version = "2.4.1"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
711
+
712
+ [[package]]
713
+ name = "find-msvc-tools"
714
+ version = "0.1.9"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
717
+
718
+ [[package]]
719
+ name = "flatbuffers"
720
+ version = "24.12.23"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
723
+ dependencies = [
724
+ "bitflags 1.3.2",
725
+ "rustc_version",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "fnv"
730
+ version = "1.0.7"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
733
+
734
+ [[package]]
735
+ name = "foldhash"
736
+ version = "0.1.5"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
739
+
740
+ [[package]]
741
+ name = "fs2"
742
+ version = "0.4.3"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
745
+ dependencies = [
746
+ "libc",
747
+ "winapi",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "futures-core"
752
+ version = "0.3.32"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
755
+
756
+ [[package]]
757
+ name = "futures-executor"
758
+ version = "0.3.32"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
761
+ dependencies = [
762
+ "futures-core",
763
+ "futures-task",
764
+ "futures-util",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "futures-task"
769
+ version = "0.3.32"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
772
+
773
+ [[package]]
774
+ name = "futures-util"
775
+ version = "0.3.32"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
778
+ dependencies = [
779
+ "futures-core",
780
+ "futures-task",
781
+ "pin-project-lite",
782
+ "slab",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "generic-array"
787
+ version = "0.14.7"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
790
+ dependencies = [
791
+ "typenum",
792
+ "version_check",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "getrandom"
797
+ version = "0.2.17"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
800
+ dependencies = [
801
+ "cfg-if",
802
+ "libc",
803
+ "wasi",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "getrandom"
808
+ version = "0.3.4"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
811
+ dependencies = [
812
+ "cfg-if",
813
+ "libc",
814
+ "r-efi 5.3.0",
815
+ "wasip2",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "getrandom"
820
+ version = "0.4.2"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
823
+ dependencies = [
824
+ "cfg-if",
825
+ "libc",
826
+ "r-efi 6.0.0",
827
+ "wasip2",
828
+ "wasip3",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "half"
833
+ version = "2.7.1"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
836
+ dependencies = [
837
+ "cfg-if",
838
+ "crunchy",
839
+ "num-traits",
840
+ "zerocopy",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "hashbrown"
845
+ version = "0.15.5"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
848
+ dependencies = [
849
+ "allocator-api2",
850
+ "equivalent",
851
+ "foldhash",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "hashbrown"
856
+ version = "0.17.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
859
+
860
+ [[package]]
861
+ name = "heck"
862
+ version = "0.4.1"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
865
+
866
+ [[package]]
867
+ name = "heck"
868
+ version = "0.5.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
871
+
872
+ [[package]]
873
+ name = "hermit-abi"
874
+ version = "0.5.2"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
877
+
878
+ [[package]]
879
+ name = "iana-time-zone"
880
+ version = "0.1.65"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
883
+ dependencies = [
884
+ "android_system_properties",
885
+ "core-foundation-sys",
886
+ "iana-time-zone-haiku",
887
+ "js-sys",
888
+ "log",
889
+ "wasm-bindgen",
890
+ "windows-core",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "iana-time-zone-haiku"
895
+ version = "0.1.2"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
898
+ dependencies = [
899
+ "cc",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "id-arena"
904
+ version = "2.3.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
907
+
908
+ [[package]]
909
+ name = "indexmap"
910
+ version = "2.14.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
913
+ dependencies = [
914
+ "equivalent",
915
+ "hashbrown 0.17.0",
916
+ "serde",
917
+ "serde_core",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "indoc"
922
+ version = "2.0.7"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
925
+ dependencies = [
926
+ "rustversion",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "inventory"
931
+ version = "0.3.24"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
934
+ dependencies = [
935
+ "rustversion",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "is-terminal"
940
+ version = "0.4.17"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
943
+ dependencies = [
944
+ "hermit-abi",
945
+ "libc",
946
+ "windows-sys",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "is_terminal_polyfill"
951
+ version = "1.70.2"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
954
+
955
+ [[package]]
956
+ name = "itertools"
957
+ version = "0.10.5"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
960
+ dependencies = [
961
+ "either",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "itoa"
966
+ version = "1.0.18"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
969
+
970
+ [[package]]
971
+ name = "js-sys"
972
+ version = "0.3.95"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
975
+ dependencies = [
976
+ "once_cell",
977
+ "wasm-bindgen",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "lazy_static"
982
+ version = "1.5.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
985
+
986
+ [[package]]
987
+ name = "leb128fmt"
988
+ version = "0.1.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
991
+
992
+ [[package]]
993
+ name = "lexical-core"
994
+ version = "1.0.6"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
997
+ dependencies = [
998
+ "lexical-parse-float",
999
+ "lexical-parse-integer",
1000
+ "lexical-util",
1001
+ "lexical-write-float",
1002
+ "lexical-write-integer",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "lexical-parse-float"
1007
+ version = "1.0.6"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1010
+ dependencies = [
1011
+ "lexical-parse-integer",
1012
+ "lexical-util",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "lexical-parse-integer"
1017
+ version = "1.0.6"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1020
+ dependencies = [
1021
+ "lexical-util",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "lexical-util"
1026
+ version = "1.0.7"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1029
+
1030
+ [[package]]
1031
+ name = "lexical-write-float"
1032
+ version = "1.0.6"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1035
+ dependencies = [
1036
+ "lexical-util",
1037
+ "lexical-write-integer",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "lexical-write-integer"
1042
+ version = "1.0.6"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1045
+ dependencies = [
1046
+ "lexical-util",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "libc"
1051
+ version = "0.2.185"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
1054
+
1055
+ [[package]]
1056
+ name = "libloading"
1057
+ version = "0.9.0"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1060
+ dependencies = [
1061
+ "cfg-if",
1062
+ "windows-link",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "libm"
1067
+ version = "0.2.16"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1070
+
1071
+ [[package]]
1072
+ name = "linux-raw-sys"
1073
+ version = "0.12.1"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1076
+
1077
+ [[package]]
1078
+ name = "lock_api"
1079
+ version = "0.4.14"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1082
+ dependencies = [
1083
+ "scopeguard",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "log"
1088
+ version = "0.4.29"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1091
+
1092
+ [[package]]
1093
+ name = "lru"
1094
+ version = "0.12.5"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1097
+ dependencies = [
1098
+ "hashbrown 0.15.5",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "memchr"
1103
+ version = "2.8.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1106
+
1107
+ [[package]]
1108
+ name = "memoffset"
1109
+ version = "0.9.1"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1112
+ dependencies = [
1113
+ "autocfg",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "num"
1118
+ version = "0.4.3"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1121
+ dependencies = [
1122
+ "num-bigint",
1123
+ "num-complex",
1124
+ "num-integer",
1125
+ "num-iter",
1126
+ "num-rational",
1127
+ "num-traits",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "num-bigint"
1132
+ version = "0.4.6"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1135
+ dependencies = [
1136
+ "num-integer",
1137
+ "num-traits",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "num-complex"
1142
+ version = "0.4.6"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1145
+ dependencies = [
1146
+ "num-traits",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "num-integer"
1151
+ version = "0.1.46"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1154
+ dependencies = [
1155
+ "num-traits",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "num-iter"
1160
+ version = "0.1.45"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1163
+ dependencies = [
1164
+ "autocfg",
1165
+ "num-integer",
1166
+ "num-traits",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "num-rational"
1171
+ version = "0.4.2"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1174
+ dependencies = [
1175
+ "num-bigint",
1176
+ "num-integer",
1177
+ "num-traits",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "num-traits"
1182
+ version = "0.2.19"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1185
+ dependencies = [
1186
+ "autocfg",
1187
+ "libm",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "once_cell"
1192
+ version = "1.21.4"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1195
+
1196
+ [[package]]
1197
+ name = "once_cell_polyfill"
1198
+ version = "1.70.2"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1201
+
1202
+ [[package]]
1203
+ name = "oorandom"
1204
+ version = "11.1.5"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1207
+
1208
+ [[package]]
1209
+ name = "parking_lot"
1210
+ version = "0.12.5"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1213
+ dependencies = [
1214
+ "lock_api",
1215
+ "parking_lot_core",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "parking_lot_core"
1220
+ version = "0.9.12"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1223
+ dependencies = [
1224
+ "cfg-if",
1225
+ "libc",
1226
+ "redox_syscall",
1227
+ "smallvec",
1228
+ "windows-link",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "pest"
1233
+ version = "2.8.6"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
1236
+ dependencies = [
1237
+ "memchr",
1238
+ "ucd-trie",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "pest_derive"
1243
+ version = "2.8.6"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
1246
+ dependencies = [
1247
+ "pest",
1248
+ "pest_generator",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "pest_generator"
1253
+ version = "2.8.6"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
1256
+ dependencies = [
1257
+ "pest",
1258
+ "pest_meta",
1259
+ "proc-macro2",
1260
+ "quote",
1261
+ "syn",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "pest_meta"
1266
+ version = "2.8.6"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1269
+ dependencies = [
1270
+ "pest",
1271
+ "sha2",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "pin-project-lite"
1276
+ version = "0.2.17"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1279
+
1280
+ [[package]]
1281
+ name = "plotters"
1282
+ version = "0.3.7"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1285
+ dependencies = [
1286
+ "num-traits",
1287
+ "plotters-backend",
1288
+ "plotters-svg",
1289
+ "wasm-bindgen",
1290
+ "web-sys",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "plotters-backend"
1295
+ version = "0.3.7"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1298
+
1299
+ [[package]]
1300
+ name = "plotters-svg"
1301
+ version = "0.3.7"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1304
+ dependencies = [
1305
+ "plotters-backend",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "portable-atomic"
1310
+ version = "1.13.1"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1313
+
1314
+ [[package]]
1315
+ name = "ppv-lite86"
1316
+ version = "0.2.21"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1319
+ dependencies = [
1320
+ "zerocopy",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "predicates"
1325
+ version = "3.1.4"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1328
+ dependencies = [
1329
+ "anstyle",
1330
+ "difflib",
1331
+ "predicates-core",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "predicates-core"
1336
+ version = "1.0.10"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1339
+
1340
+ [[package]]
1341
+ name = "predicates-tree"
1342
+ version = "1.0.13"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1345
+ dependencies = [
1346
+ "predicates-core",
1347
+ "termtree",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "prettyplease"
1352
+ version = "0.2.37"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1355
+ dependencies = [
1356
+ "proc-macro2",
1357
+ "syn",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "proc-macro2"
1362
+ version = "1.0.106"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1365
+ dependencies = [
1366
+ "unicode-ident",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "proptest"
1371
+ version = "1.11.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1374
+ dependencies = [
1375
+ "bit-set",
1376
+ "bit-vec",
1377
+ "bitflags 2.11.1",
1378
+ "num-traits",
1379
+ "rand 0.9.4",
1380
+ "rand_chacha 0.9.0",
1381
+ "rand_xorshift",
1382
+ "regex-syntax",
1383
+ "rusty-fork",
1384
+ "tempfile",
1385
+ "unarray",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "pyo3"
1390
+ version = "0.21.2"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
1393
+ dependencies = [
1394
+ "cfg-if",
1395
+ "indoc",
1396
+ "inventory",
1397
+ "libc",
1398
+ "memoffset",
1399
+ "parking_lot",
1400
+ "portable-atomic",
1401
+ "pyo3-build-config",
1402
+ "pyo3-ffi",
1403
+ "pyo3-macros",
1404
+ "unindent",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "pyo3-build-config"
1409
+ version = "0.21.2"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
1412
+ dependencies = [
1413
+ "once_cell",
1414
+ "target-lexicon",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "pyo3-ffi"
1419
+ version = "0.21.2"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
1422
+ dependencies = [
1423
+ "libc",
1424
+ "pyo3-build-config",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "pyo3-macros"
1429
+ version = "0.21.2"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
1432
+ dependencies = [
1433
+ "proc-macro2",
1434
+ "pyo3-macros-backend",
1435
+ "quote",
1436
+ "syn",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "pyo3-macros-backend"
1441
+ version = "0.21.2"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
1444
+ dependencies = [
1445
+ "heck 0.4.1",
1446
+ "proc-macro2",
1447
+ "pyo3-build-config",
1448
+ "quote",
1449
+ "syn",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "pyxlog"
1454
+ version = "0.5.0"
1455
+ dependencies = [
1456
+ "cudarc",
1457
+ "pyo3",
1458
+ "rand 0.8.6",
1459
+ "xlog-core",
1460
+ "xlog-cuda",
1461
+ "xlog-gpu",
1462
+ "xlog-induce",
1463
+ "xlog-ir",
1464
+ "xlog-logic",
1465
+ "xlog-neural",
1466
+ "xlog-prob",
1467
+ "xlog-runtime",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "quick-error"
1472
+ version = "1.2.3"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1475
+
1476
+ [[package]]
1477
+ name = "quote"
1478
+ version = "1.0.45"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1481
+ dependencies = [
1482
+ "proc-macro2",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "r-efi"
1487
+ version = "5.3.0"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1490
+
1491
+ [[package]]
1492
+ name = "r-efi"
1493
+ version = "6.0.0"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1496
+
1497
+ [[package]]
1498
+ name = "rand"
1499
+ version = "0.8.6"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1502
+ dependencies = [
1503
+ "libc",
1504
+ "rand_chacha 0.3.1",
1505
+ "rand_core 0.6.4",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "rand"
1510
+ version = "0.9.4"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1513
+ dependencies = [
1514
+ "rand_chacha 0.9.0",
1515
+ "rand_core 0.9.5",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "rand_chacha"
1520
+ version = "0.3.1"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1523
+ dependencies = [
1524
+ "ppv-lite86",
1525
+ "rand_core 0.6.4",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "rand_chacha"
1530
+ version = "0.9.0"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1533
+ dependencies = [
1534
+ "ppv-lite86",
1535
+ "rand_core 0.9.5",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "rand_core"
1540
+ version = "0.6.4"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1543
+ dependencies = [
1544
+ "getrandom 0.2.17",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "rand_core"
1549
+ version = "0.9.5"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1552
+ dependencies = [
1553
+ "getrandom 0.3.4",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "rand_xorshift"
1558
+ version = "0.4.0"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1561
+ dependencies = [
1562
+ "rand_core 0.9.5",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "rayon"
1567
+ version = "1.12.0"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1570
+ dependencies = [
1571
+ "either",
1572
+ "rayon-core",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "rayon-core"
1577
+ version = "1.13.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1580
+ dependencies = [
1581
+ "crossbeam-deque",
1582
+ "crossbeam-utils",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "redox_syscall"
1587
+ version = "0.5.18"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1590
+ dependencies = [
1591
+ "bitflags 2.11.1",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "regex"
1596
+ version = "1.12.3"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1599
+ dependencies = [
1600
+ "aho-corasick",
1601
+ "memchr",
1602
+ "regex-automata",
1603
+ "regex-syntax",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "regex-automata"
1608
+ version = "0.4.14"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1611
+ dependencies = [
1612
+ "aho-corasick",
1613
+ "memchr",
1614
+ "regex-syntax",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "regex-syntax"
1619
+ version = "0.8.10"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1622
+
1623
+ [[package]]
1624
+ name = "rustc_version"
1625
+ version = "0.4.1"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1628
+ dependencies = [
1629
+ "semver",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "rustix"
1634
+ version = "1.1.4"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1637
+ dependencies = [
1638
+ "bitflags 2.11.1",
1639
+ "errno",
1640
+ "libc",
1641
+ "linux-raw-sys",
1642
+ "windows-sys",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "rustversion"
1647
+ version = "1.0.22"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1650
+
1651
+ [[package]]
1652
+ name = "rusty-fork"
1653
+ version = "0.3.1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1656
+ dependencies = [
1657
+ "fnv",
1658
+ "quick-error",
1659
+ "tempfile",
1660
+ "wait-timeout",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "ryu"
1665
+ version = "1.0.23"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1668
+
1669
+ [[package]]
1670
+ name = "same-file"
1671
+ version = "1.0.6"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1674
+ dependencies = [
1675
+ "winapi-util",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "scc"
1680
+ version = "2.4.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
1683
+ dependencies = [
1684
+ "sdd",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "scopeguard"
1689
+ version = "1.2.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1692
+
1693
+ [[package]]
1694
+ name = "sdd"
1695
+ version = "3.0.10"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
1698
+
1699
+ [[package]]
1700
+ name = "semver"
1701
+ version = "1.0.28"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1704
+
1705
+ [[package]]
1706
+ name = "serde"
1707
+ version = "1.0.228"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1710
+ dependencies = [
1711
+ "serde_core",
1712
+ "serde_derive",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "serde_core"
1717
+ version = "1.0.228"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1720
+ dependencies = [
1721
+ "serde_derive",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "serde_derive"
1726
+ version = "1.0.228"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1729
+ dependencies = [
1730
+ "proc-macro2",
1731
+ "quote",
1732
+ "syn",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "serde_json"
1737
+ version = "1.0.149"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1740
+ dependencies = [
1741
+ "itoa",
1742
+ "memchr",
1743
+ "serde",
1744
+ "serde_core",
1745
+ "zmij",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "serial_test"
1750
+ version = "3.4.0"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "911bd979bf1070a3f3aa7b691a3b3e9968f339ceeec89e08c280a8a22207a32f"
1753
+ dependencies = [
1754
+ "futures-executor",
1755
+ "futures-util",
1756
+ "log",
1757
+ "once_cell",
1758
+ "parking_lot",
1759
+ "scc",
1760
+ "serial_test_derive",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "serial_test_derive"
1765
+ version = "3.4.0"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "0a7d91949b85b0d2fb687445e448b40d322b6b3e4af6b44a29b21d9a5f33e6d9"
1768
+ dependencies = [
1769
+ "proc-macro2",
1770
+ "quote",
1771
+ "syn",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "sha2"
1776
+ version = "0.10.9"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1779
+ dependencies = [
1780
+ "cfg-if",
1781
+ "cpufeatures",
1782
+ "digest",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "shlex"
1787
+ version = "1.3.0"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1790
+
1791
+ [[package]]
1792
+ name = "slab"
1793
+ version = "0.4.12"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1796
+
1797
+ [[package]]
1798
+ name = "smallvec"
1799
+ version = "1.15.1"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1802
+
1803
+ [[package]]
1804
+ name = "strsim"
1805
+ version = "0.11.1"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1808
+
1809
+ [[package]]
1810
+ name = "syn"
1811
+ version = "2.0.117"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1814
+ dependencies = [
1815
+ "proc-macro2",
1816
+ "quote",
1817
+ "unicode-ident",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "target-lexicon"
1822
+ version = "0.12.16"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1825
+
1826
+ [[package]]
1827
+ name = "tempfile"
1828
+ version = "3.27.0"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1831
+ dependencies = [
1832
+ "fastrand",
1833
+ "getrandom 0.4.2",
1834
+ "once_cell",
1835
+ "rustix",
1836
+ "windows-sys",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "termtree"
1841
+ version = "0.5.1"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1844
+
1845
+ [[package]]
1846
+ name = "thiserror"
1847
+ version = "1.0.69"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1850
+ dependencies = [
1851
+ "thiserror-impl",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "thiserror-impl"
1856
+ version = "1.0.69"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1859
+ dependencies = [
1860
+ "proc-macro2",
1861
+ "quote",
1862
+ "syn",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "tiny-keccak"
1867
+ version = "2.0.2"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1870
+ dependencies = [
1871
+ "crunchy",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "tinytemplate"
1876
+ version = "1.2.1"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1879
+ dependencies = [
1880
+ "serde",
1881
+ "serde_json",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "typenum"
1886
+ version = "1.20.0"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1889
+
1890
+ [[package]]
1891
+ name = "ucd-trie"
1892
+ version = "0.1.7"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1895
+
1896
+ [[package]]
1897
+ name = "unarray"
1898
+ version = "0.1.4"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1901
+
1902
+ [[package]]
1903
+ name = "unicode-ident"
1904
+ version = "1.0.24"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1907
+
1908
+ [[package]]
1909
+ name = "unicode-segmentation"
1910
+ version = "1.13.2"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1913
+
1914
+ [[package]]
1915
+ name = "unicode-width"
1916
+ version = "0.2.2"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1919
+
1920
+ [[package]]
1921
+ name = "unicode-xid"
1922
+ version = "0.2.6"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1925
+
1926
+ [[package]]
1927
+ name = "unindent"
1928
+ version = "0.2.4"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1931
+
1932
+ [[package]]
1933
+ name = "utf8parse"
1934
+ version = "0.2.2"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1937
+
1938
+ [[package]]
1939
+ name = "version_check"
1940
+ version = "0.9.5"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1943
+
1944
+ [[package]]
1945
+ name = "wait-timeout"
1946
+ version = "0.2.1"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1949
+ dependencies = [
1950
+ "libc",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "walkdir"
1955
+ version = "2.5.0"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1958
+ dependencies = [
1959
+ "same-file",
1960
+ "winapi-util",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "wasi"
1965
+ version = "0.11.1+wasi-snapshot-preview1"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1968
+
1969
+ [[package]]
1970
+ name = "wasip2"
1971
+ version = "1.0.3+wasi-0.2.9"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1974
+ dependencies = [
1975
+ "wit-bindgen 0.57.1",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "wasip3"
1980
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1983
+ dependencies = [
1984
+ "wit-bindgen 0.51.0",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "wasm-bindgen"
1989
+ version = "0.2.118"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
1992
+ dependencies = [
1993
+ "cfg-if",
1994
+ "once_cell",
1995
+ "rustversion",
1996
+ "wasm-bindgen-macro",
1997
+ "wasm-bindgen-shared",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "wasm-bindgen-macro"
2002
+ version = "0.2.118"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
2005
+ dependencies = [
2006
+ "quote",
2007
+ "wasm-bindgen-macro-support",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "wasm-bindgen-macro-support"
2012
+ version = "0.2.118"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
2015
+ dependencies = [
2016
+ "bumpalo",
2017
+ "proc-macro2",
2018
+ "quote",
2019
+ "syn",
2020
+ "wasm-bindgen-shared",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "wasm-bindgen-shared"
2025
+ version = "0.2.118"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
2028
+ dependencies = [
2029
+ "unicode-ident",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "wasm-encoder"
2034
+ version = "0.244.0"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2037
+ dependencies = [
2038
+ "leb128fmt",
2039
+ "wasmparser",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "wasm-metadata"
2044
+ version = "0.244.0"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2047
+ dependencies = [
2048
+ "anyhow",
2049
+ "indexmap",
2050
+ "wasm-encoder",
2051
+ "wasmparser",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "wasmparser"
2056
+ version = "0.244.0"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2059
+ dependencies = [
2060
+ "bitflags 2.11.1",
2061
+ "hashbrown 0.15.5",
2062
+ "indexmap",
2063
+ "semver",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "web-sys"
2068
+ version = "0.3.95"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
2071
+ dependencies = [
2072
+ "js-sys",
2073
+ "wasm-bindgen",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "winapi"
2078
+ version = "0.3.9"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2081
+ dependencies = [
2082
+ "winapi-i686-pc-windows-gnu",
2083
+ "winapi-x86_64-pc-windows-gnu",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "winapi-i686-pc-windows-gnu"
2088
+ version = "0.4.0"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2091
+
2092
+ [[package]]
2093
+ name = "winapi-util"
2094
+ version = "0.1.11"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2097
+ dependencies = [
2098
+ "windows-sys",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "winapi-x86_64-pc-windows-gnu"
2103
+ version = "0.4.0"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2106
+
2107
+ [[package]]
2108
+ name = "windows-core"
2109
+ version = "0.62.2"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2112
+ dependencies = [
2113
+ "windows-implement",
2114
+ "windows-interface",
2115
+ "windows-link",
2116
+ "windows-result",
2117
+ "windows-strings",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "windows-implement"
2122
+ version = "0.60.2"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2125
+ dependencies = [
2126
+ "proc-macro2",
2127
+ "quote",
2128
+ "syn",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "windows-interface"
2133
+ version = "0.59.3"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2136
+ dependencies = [
2137
+ "proc-macro2",
2138
+ "quote",
2139
+ "syn",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "windows-link"
2144
+ version = "0.2.1"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2147
+
2148
+ [[package]]
2149
+ name = "windows-result"
2150
+ version = "0.4.1"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2153
+ dependencies = [
2154
+ "windows-link",
2155
+ ]
2156
+
2157
+ [[package]]
2158
+ name = "windows-strings"
2159
+ version = "0.5.1"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2162
+ dependencies = [
2163
+ "windows-link",
2164
+ ]
2165
+
2166
+ [[package]]
2167
+ name = "windows-sys"
2168
+ version = "0.61.2"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2171
+ dependencies = [
2172
+ "windows-link",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "windows-targets"
2177
+ version = "0.52.6"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2180
+ dependencies = [
2181
+ "windows_aarch64_gnullvm",
2182
+ "windows_aarch64_msvc",
2183
+ "windows_i686_gnu",
2184
+ "windows_i686_gnullvm",
2185
+ "windows_i686_msvc",
2186
+ "windows_x86_64_gnu",
2187
+ "windows_x86_64_gnullvm",
2188
+ "windows_x86_64_msvc",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "windows_aarch64_gnullvm"
2193
+ version = "0.52.6"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2196
+
2197
+ [[package]]
2198
+ name = "windows_aarch64_msvc"
2199
+ version = "0.52.6"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2202
+
2203
+ [[package]]
2204
+ name = "windows_i686_gnu"
2205
+ version = "0.52.6"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2208
+
2209
+ [[package]]
2210
+ name = "windows_i686_gnullvm"
2211
+ version = "0.52.6"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2214
+
2215
+ [[package]]
2216
+ name = "windows_i686_msvc"
2217
+ version = "0.52.6"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2220
+
2221
+ [[package]]
2222
+ name = "windows_x86_64_gnu"
2223
+ version = "0.52.6"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2226
+
2227
+ [[package]]
2228
+ name = "windows_x86_64_gnullvm"
2229
+ version = "0.52.6"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2232
+
2233
+ [[package]]
2234
+ name = "windows_x86_64_msvc"
2235
+ version = "0.52.6"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2238
+
2239
+ [[package]]
2240
+ name = "wit-bindgen"
2241
+ version = "0.51.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2244
+ dependencies = [
2245
+ "wit-bindgen-rust-macro",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "wit-bindgen"
2250
+ version = "0.57.1"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2253
+
2254
+ [[package]]
2255
+ name = "wit-bindgen-core"
2256
+ version = "0.51.0"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2259
+ dependencies = [
2260
+ "anyhow",
2261
+ "heck 0.5.0",
2262
+ "wit-parser",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "wit-bindgen-rust"
2267
+ version = "0.51.0"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2270
+ dependencies = [
2271
+ "anyhow",
2272
+ "heck 0.5.0",
2273
+ "indexmap",
2274
+ "prettyplease",
2275
+ "syn",
2276
+ "wasm-metadata",
2277
+ "wit-bindgen-core",
2278
+ "wit-component",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "wit-bindgen-rust-macro"
2283
+ version = "0.51.0"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2286
+ dependencies = [
2287
+ "anyhow",
2288
+ "prettyplease",
2289
+ "proc-macro2",
2290
+ "quote",
2291
+ "syn",
2292
+ "wit-bindgen-core",
2293
+ "wit-bindgen-rust",
2294
+ ]
2295
+
2296
+ [[package]]
2297
+ name = "wit-component"
2298
+ version = "0.244.0"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2301
+ dependencies = [
2302
+ "anyhow",
2303
+ "bitflags 2.11.1",
2304
+ "indexmap",
2305
+ "log",
2306
+ "serde",
2307
+ "serde_derive",
2308
+ "serde_json",
2309
+ "wasm-encoder",
2310
+ "wasm-metadata",
2311
+ "wasmparser",
2312
+ "wit-parser",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "wit-parser"
2317
+ version = "0.244.0"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2320
+ dependencies = [
2321
+ "anyhow",
2322
+ "id-arena",
2323
+ "indexmap",
2324
+ "log",
2325
+ "semver",
2326
+ "serde",
2327
+ "serde_derive",
2328
+ "serde_json",
2329
+ "unicode-xid",
2330
+ "wasmparser",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "xlog-cli"
2335
+ version = "0.5.0"
2336
+ dependencies = [
2337
+ "arrow",
2338
+ "assert_cmd",
2339
+ "clap",
2340
+ "cudarc",
2341
+ "thiserror",
2342
+ "xlog-core",
2343
+ "xlog-cuda",
2344
+ "xlog-gpu",
2345
+ "xlog-logic",
2346
+ "xlog-prob",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "xlog-core"
2351
+ version = "0.5.0"
2352
+ dependencies = [
2353
+ "arrow",
2354
+ "serial_test",
2355
+ "thiserror",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "xlog-cuda"
2360
+ version = "0.5.0"
2361
+ dependencies = [
2362
+ "arrow",
2363
+ "bytemuck",
2364
+ "cudarc",
2365
+ "xlog-core",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "xlog-cuda-tests"
2370
+ version = "0.2.0"
2371
+ dependencies = [
2372
+ "bytemuck",
2373
+ "cudarc",
2374
+ "fs2",
2375
+ "proptest",
2376
+ "rand 0.8.6",
2377
+ "rand_chacha 0.3.1",
2378
+ "xlog-core",
2379
+ "xlog-cuda",
2380
+ "xlog-solve",
2381
+ ]
2382
+
2383
+ [[package]]
2384
+ name = "xlog-gpu"
2385
+ version = "0.5.0"
2386
+ dependencies = [
2387
+ "criterion",
2388
+ "serial_test",
2389
+ "xlog-core",
2390
+ "xlog-cuda",
2391
+ "xlog-ir",
2392
+ "xlog-logic",
2393
+ "xlog-runtime",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "xlog-induce"
2398
+ version = "0.5.0"
2399
+ dependencies = [
2400
+ "xlog-core",
2401
+ "xlog-cuda",
2402
+ "xlog-runtime",
2403
+ ]
2404
+
2405
+ [[package]]
2406
+ name = "xlog-integration"
2407
+ version = "0.1.0"
2408
+ dependencies = [
2409
+ "bytemuck",
2410
+ "xlog-core",
2411
+ "xlog-cuda",
2412
+ "xlog-gpu",
2413
+ "xlog-ir",
2414
+ "xlog-logic",
2415
+ "xlog-runtime",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "xlog-ir"
2420
+ version = "0.5.0"
2421
+ dependencies = [
2422
+ "xlog-core",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "xlog-logic"
2427
+ version = "0.5.0"
2428
+ dependencies = [
2429
+ "pest",
2430
+ "pest_derive",
2431
+ "serial_test",
2432
+ "tempfile",
2433
+ "xlog-core",
2434
+ "xlog-ir",
2435
+ "xlog-stats",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "xlog-neural"
2440
+ version = "0.5.0"
2441
+ dependencies = [
2442
+ "lru",
2443
+ "pyo3",
2444
+ "thiserror",
2445
+ "xlog-core",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "xlog-prob"
2450
+ version = "0.5.0"
2451
+ dependencies = [
2452
+ "bytemuck",
2453
+ "criterion",
2454
+ "cudarc",
2455
+ "xlog-core",
2456
+ "xlog-cuda",
2457
+ "xlog-ir",
2458
+ "xlog-logic",
2459
+ "xlog-runtime",
2460
+ "xlog-solve",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "xlog-runtime"
2465
+ version = "0.5.0"
2466
+ dependencies = [
2467
+ "bytemuck",
2468
+ "cudarc",
2469
+ "xlog-core",
2470
+ "xlog-cuda",
2471
+ "xlog-ir",
2472
+ "xlog-stats",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "xlog-solve"
2477
+ version = "0.5.0"
2478
+ dependencies = [
2479
+ "criterion",
2480
+ "cudarc",
2481
+ "xlog-core",
2482
+ "xlog-cuda",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "xlog-stats"
2487
+ version = "0.5.0"
2488
+ dependencies = [
2489
+ "criterion",
2490
+ "xlog-core",
2491
+ ]
2492
+
2493
+ [[package]]
2494
+ name = "zerocopy"
2495
+ version = "0.8.48"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2498
+ dependencies = [
2499
+ "zerocopy-derive",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "zerocopy-derive"
2504
+ version = "0.8.48"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2507
+ dependencies = [
2508
+ "proc-macro2",
2509
+ "quote",
2510
+ "syn",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "zmij"
2515
+ version = "1.0.21"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"