molframe 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1418) hide show
  1. molframe-0.1.1/Cargo.lock +4747 -0
  2. molframe-0.1.1/Cargo.toml +120 -0
  3. molframe-0.1.1/LICENSE +21 -0
  4. molframe-0.1.1/PKG-INFO +7 -0
  5. molframe-0.1.1/crates/molframe/Cargo.toml +107 -0
  6. molframe-0.1.1/crates/molframe/LICENSE +21 -0
  7. molframe-0.1.1/crates/molframe/README.md +36 -0
  8. molframe-0.1.1/crates/molframe/benches/facade.rs +90 -0
  9. molframe-0.1.1/crates/molframe/benches/golden/native.rs +354 -0
  10. molframe-0.1.1/crates/molframe/benches/golden/native_pending/analysis.rs +341 -0
  11. molframe-0.1.1/crates/molframe/benches/golden/native_pending/compare_interop.rs +275 -0
  12. molframe-0.1.1/crates/molframe/benches/golden/native_pending/trajectory.rs +151 -0
  13. molframe-0.1.1/crates/molframe/benches/golden/native_pending/xtal.rs +226 -0
  14. molframe-0.1.1/crates/molframe/benches/golden/native_pending.rs +17 -0
  15. molframe-0.1.1/crates/molframe/benches/golden.rs +256 -0
  16. molframe-0.1.1/crates/molframe/src/engine/core.rs +23 -0
  17. molframe-0.1.1/crates/molframe/src/extensions/analysis.rs +365 -0
  18. molframe-0.1.1/crates/molframe/src/extensions/analysis_impl.rs +302 -0
  19. molframe-0.1.1/crates/molframe/src/extensions/compare.rs +447 -0
  20. molframe-0.1.1/crates/molframe/src/extensions/extension_tests.rs +178 -0
  21. molframe-0.1.1/crates/molframe/src/extensions/mod.rs +56 -0
  22. molframe-0.1.1/crates/molframe/src/extensions/validation.rs +423 -0
  23. molframe-0.1.1/crates/molframe/src/facade/cif_family.rs +63 -0
  24. molframe-0.1.1/crates/molframe/src/facade/extensions.rs +142 -0
  25. molframe-0.1.1/crates/molframe/src/facade/facade_tests.rs +478 -0
  26. molframe-0.1.1/crates/molframe/src/facade/formats/bcif.rs +26 -0
  27. molframe-0.1.1/crates/molframe/src/facade/formats/chem.rs +23 -0
  28. molframe-0.1.1/crates/molframe/src/facade/formats/mmcif.rs +101 -0
  29. molframe-0.1.1/crates/molframe/src/facade/formats/mod.rs +31 -0
  30. molframe-0.1.1/crates/molframe/src/facade/formats/pdb.rs +18 -0
  31. molframe-0.1.1/crates/molframe/src/facade/formats/transform.rs +39 -0
  32. molframe-0.1.1/crates/molframe/src/facade/namespace_tests.rs +73 -0
  33. molframe-0.1.1/crates/molframe/src/facade/plddt_tests.rs +53 -0
  34. molframe-0.1.1/crates/molframe/src/facade/structure_batches.rs +152 -0
  35. molframe-0.1.1/crates/molframe/src/facade/structure_batches_tests.rs +98 -0
  36. molframe-0.1.1/crates/molframe/src/facade.rs +364 -0
  37. molframe-0.1.1/crates/molframe/src/formats.rs +19 -0
  38. molframe-0.1.1/crates/molframe/src/lib.rs +268 -0
  39. molframe-0.1.1/crates/molframe/src/policy_config.rs +410 -0
  40. molframe-0.1.1/crates/molframe/src/policy_config_tests.rs +68 -0
  41. molframe-0.1.1/crates/molframe/src/prelude.rs +75 -0
  42. molframe-0.1.1/crates/molframe/src/structure/backbone.rs +167 -0
  43. molframe-0.1.1/crates/molframe/src/structure/backbone_tests.rs +55 -0
  44. molframe-0.1.1/crates/molframe/src/structure/bonds.rs +198 -0
  45. molframe-0.1.1/crates/molframe/src/structure/bonds_tests.rs +26 -0
  46. molframe-0.1.1/crates/molframe/src/structure/collections.rs +224 -0
  47. molframe-0.1.1/crates/molframe/src/structure/difference.rs +26 -0
  48. molframe-0.1.1/crates/molframe/src/structure/editor.rs +98 -0
  49. molframe-0.1.1/crates/molframe/src/structure/extensions.rs +77 -0
  50. molframe-0.1.1/crates/molframe/src/structure/handle.rs +228 -0
  51. molframe-0.1.1/crates/molframe/src/structure/mod.rs +52 -0
  52. molframe-0.1.1/crates/molframe/src/structure/query.rs +99 -0
  53. molframe-0.1.1/crates/molframe/src/structure/query_tests.rs +33 -0
  54. molframe-0.1.1/crates/molframe/src/structure/roles.rs +63 -0
  55. molframe-0.1.1/crates/molframe/src/structure/selection.rs +112 -0
  56. molframe-0.1.1/crates/molframe/src/structure/side_chains.rs +169 -0
  57. molframe-0.1.1/crates/molframe/src/structure/side_chains_tests.rs +116 -0
  58. molframe-0.1.1/crates/molframe/tests/golden/native_pending/analysis.rs +229 -0
  59. molframe-0.1.1/crates/molframe/tests/golden/native_pending/compare_interop.rs +281 -0
  60. molframe-0.1.1/crates/molframe/tests/golden/native_pending/trajectory.rs +115 -0
  61. molframe-0.1.1/crates/molframe/tests/golden/native_pending/xtal.rs +214 -0
  62. molframe-0.1.1/crates/molframe/tests/golden/native_pending.rs +10 -0
  63. molframe-0.1.1/crates/molframe/tests/golden_tests.rs +228 -0
  64. molframe-0.1.1/crates/molframe/tests/golden_workflows.rs +448 -0
  65. molframe-0.1.1/crates/molframe-adapters/Cargo.toml +28 -0
  66. molframe-0.1.1/crates/molframe-adapters/LICENSE +21 -0
  67. molframe-0.1.1/crates/molframe-adapters/README.md +28 -0
  68. molframe-0.1.1/crates/molframe-adapters/benches/adapters.rs +27 -0
  69. molframe-0.1.1/crates/molframe-adapters/src/download.rs +134 -0
  70. molframe-0.1.1/crates/molframe-adapters/src/download_tests.rs +37 -0
  71. molframe-0.1.1/crates/molframe-adapters/src/lib.rs +12 -0
  72. molframe-0.1.1/crates/molframe-adapters/src/topology.rs +432 -0
  73. molframe-0.1.1/crates/molframe-adapters/src/topology_import.rs +465 -0
  74. molframe-0.1.1/crates/molframe-adapters/src/topology_tests.rs +99 -0
  75. molframe-0.1.1/crates/molframe-analysis/Cargo.toml +33 -0
  76. molframe-0.1.1/crates/molframe-analysis/LICENSE +21 -0
  77. molframe-0.1.1/crates/molframe-analysis/README.md +33 -0
  78. molframe-0.1.1/crates/molframe-analysis/benches/analysis/extended.rs +380 -0
  79. molframe-0.1.1/crates/molframe-analysis/benches/analysis/gnm.rs +61 -0
  80. molframe-0.1.1/crates/molframe-analysis/benches/analysis/pore.rs +180 -0
  81. molframe-0.1.1/crates/molframe-analysis/benches/analysis.rs +307 -0
  82. molframe-0.1.1/crates/molframe-analysis/src/anm/hessian.rs +131 -0
  83. molframe-0.1.1/crates/molframe-analysis/src/anm/hessian_tests.rs +125 -0
  84. molframe-0.1.1/crates/molframe-analysis/src/anm/solver.rs +133 -0
  85. molframe-0.1.1/crates/molframe-analysis/src/anm.rs +282 -0
  86. molframe-0.1.1/crates/molframe-analysis/src/anm_tests.rs +262 -0
  87. molframe-0.1.1/crates/molframe-analysis/src/base_pair.rs +203 -0
  88. molframe-0.1.1/crates/molframe-analysis/src/base_pair_tests.rs +144 -0
  89. molframe-0.1.1/crates/molframe-analysis/src/cation_pi.rs +147 -0
  90. molframe-0.1.1/crates/molframe-analysis/src/cation_pi_tests.rs +83 -0
  91. molframe-0.1.1/crates/molframe-analysis/src/chemistry.rs +69 -0
  92. molframe-0.1.1/crates/molframe-analysis/src/chemistry_test_support.rs +49 -0
  93. molframe-0.1.1/crates/molframe-analysis/src/contact_map.rs +185 -0
  94. molframe-0.1.1/crates/molframe-analysis/src/contact_map_tests.rs +109 -0
  95. molframe-0.1.1/crates/molframe-analysis/src/contacts.rs +302 -0
  96. molframe-0.1.1/crates/molframe-analysis/src/contacts_tests.rs +169 -0
  97. molframe-0.1.1/crates/molframe-analysis/src/density.rs +229 -0
  98. molframe-0.1.1/crates/molframe-analysis/src/density_tests.rs +62 -0
  99. molframe-0.1.1/crates/molframe-analysis/src/dssp.rs +373 -0
  100. molframe-0.1.1/crates/molframe-analysis/src/dssp_binary.rs +108 -0
  101. molframe-0.1.1/crates/molframe-analysis/src/dssp_binary_tests.rs +23 -0
  102. molframe-0.1.1/crates/molframe-analysis/src/dssp_tests.rs +138 -0
  103. molframe-0.1.1/crates/molframe-analysis/src/dynamics.rs +158 -0
  104. molframe-0.1.1/crates/molframe-analysis/src/dynamics_tests.rs +31 -0
  105. molframe-0.1.1/crates/molframe-analysis/src/ensemble.rs +16 -0
  106. molframe-0.1.1/crates/molframe-analysis/src/fragment.rs +128 -0
  107. molframe-0.1.1/crates/molframe-analysis/src/fragment_tests.rs +60 -0
  108. molframe-0.1.1/crates/molframe-analysis/src/gnm/solver.rs +487 -0
  109. molframe-0.1.1/crates/molframe-analysis/src/gnm.rs +187 -0
  110. molframe-0.1.1/crates/molframe-analysis/src/gnm_tests.rs +309 -0
  111. molframe-0.1.1/crates/molframe-analysis/src/governed/adapters_tests.rs +96 -0
  112. molframe-0.1.1/crates/molframe-analysis/src/governed/common.rs +29 -0
  113. molframe-0.1.1/crates/molframe-analysis/src/governed/descriptor.rs +47 -0
  114. molframe-0.1.1/crates/molframe-analysis/src/governed/dynamics.rs +77 -0
  115. molframe-0.1.1/crates/molframe-analysis/src/governed/error.rs +86 -0
  116. molframe-0.1.1/crates/molframe-analysis/src/governed/execute.rs +325 -0
  117. molframe-0.1.1/crates/molframe-analysis/src/governed/execute_tests.rs +215 -0
  118. molframe-0.1.1/crates/molframe-analysis/src/governed/helical.rs +66 -0
  119. molframe-0.1.1/crates/molframe-analysis/src/governed/interactions.rs +215 -0
  120. molframe-0.1.1/crates/molframe-analysis/src/governed/kernel.rs +226 -0
  121. molframe-0.1.1/crates/molframe-analysis/src/governed/mod.rs +47 -0
  122. molframe-0.1.1/crates/molframe-analysis/src/governed/native.rs +128 -0
  123. molframe-0.1.1/crates/molframe-analysis/src/governed/physical.rs +315 -0
  124. molframe-0.1.1/crates/molframe-analysis/src/governed/standalone.rs +127 -0
  125. molframe-0.1.1/crates/molframe-analysis/src/governed/structure.rs +127 -0
  126. molframe-0.1.1/crates/molframe-analysis/src/hbond.rs +262 -0
  127. molframe-0.1.1/crates/molframe-analysis/src/hbond_tests.rs +205 -0
  128. molframe-0.1.1/crates/molframe-analysis/src/helical.rs +206 -0
  129. molframe-0.1.1/crates/molframe-analysis/src/helical_tests.rs +48 -0
  130. molframe-0.1.1/crates/molframe-analysis/src/hse.rs +210 -0
  131. molframe-0.1.1/crates/molframe-analysis/src/hse_tests.rs +89 -0
  132. molframe-0.1.1/crates/molframe-analysis/src/interface.rs +161 -0
  133. molframe-0.1.1/crates/molframe-analysis/src/interface_tests.rs +141 -0
  134. molframe-0.1.1/crates/molframe-analysis/src/leaflet.rs +134 -0
  135. molframe-0.1.1/crates/molframe-analysis/src/leaflet_tests.rs +48 -0
  136. molframe-0.1.1/crates/molframe-analysis/src/lib.rs +162 -0
  137. molframe-0.1.1/crates/molframe-analysis/src/native.rs +132 -0
  138. molframe-0.1.1/crates/molframe-analysis/src/native_tests.rs +120 -0
  139. molframe-0.1.1/crates/molframe-analysis/src/network/graph.rs +321 -0
  140. molframe-0.1.1/crates/molframe-analysis/src/network.rs +91 -0
  141. molframe-0.1.1/crates/molframe-analysis/src/nmd.rs +315 -0
  142. molframe-0.1.1/crates/molframe-analysis/src/nmd_tests.rs +112 -0
  143. molframe-0.1.1/crates/molframe-analysis/src/nucleic.rs +287 -0
  144. molframe-0.1.1/crates/molframe-analysis/src/nucleic_tests.rs +83 -0
  145. molframe-0.1.1/crates/molframe-analysis/src/numeric.rs +44 -0
  146. molframe-0.1.1/crates/molframe-analysis/src/pi_stacking.rs +192 -0
  147. molframe-0.1.1/crates/molframe-analysis/src/pi_stacking_tests.rs +97 -0
  148. molframe-0.1.1/crates/molframe-analysis/src/polymer.rs +102 -0
  149. molframe-0.1.1/crates/molframe-analysis/src/polymer_tests.rs +29 -0
  150. molframe-0.1.1/crates/molframe-analysis/src/pore/index.rs +304 -0
  151. molframe-0.1.1/crates/molframe-analysis/src/pore.rs +396 -0
  152. molframe-0.1.1/crates/molframe-analysis/src/pore_tests.rs +277 -0
  153. molframe-0.1.1/crates/molframe-analysis/src/pucker.rs +55 -0
  154. molframe-0.1.1/crates/molframe-analysis/src/pucker_tests.rs +34 -0
  155. molframe-0.1.1/crates/molframe-analysis/src/radial.rs +323 -0
  156. molframe-0.1.1/crates/molframe-analysis/src/radial_tests.rs +120 -0
  157. molframe-0.1.1/crates/molframe-analysis/src/salt_bridge.rs +116 -0
  158. molframe-0.1.1/crates/molframe-analysis/src/salt_bridge_tests.rs +153 -0
  159. molframe-0.1.1/crates/molframe-analysis/src/stream_surface.rs +62 -0
  160. molframe-0.1.1/crates/molframe-analysis/src/stream_surface_tests.rs +84 -0
  161. molframe-0.1.1/crates/molframe-analysis/src/surface_contacts.rs +197 -0
  162. molframe-0.1.1/crates/molframe-analysis/src/surface_contacts_tests.rs +62 -0
  163. molframe-0.1.1/crates/molframe-analysis/src/tables.rs +83 -0
  164. molframe-0.1.1/crates/molframe-analysis/src/vector_field.rs +307 -0
  165. molframe-0.1.1/crates/molframe-analysis/src/vector_field_tests.rs +63 -0
  166. molframe-0.1.1/crates/molframe-analysis/src/water_bridge.rs +92 -0
  167. molframe-0.1.1/crates/molframe-analysis/src/water_bridge_tests.rs +91 -0
  168. molframe-0.1.1/crates/molframe-audit/Cargo.toml +24 -0
  169. molframe-0.1.1/crates/molframe-audit/LICENSE +21 -0
  170. molframe-0.1.1/crates/molframe-audit/README.md +28 -0
  171. molframe-0.1.1/crates/molframe-audit/benches/audit.rs +56 -0
  172. molframe-0.1.1/crates/molframe-audit/src/batch.rs +119 -0
  173. molframe-0.1.1/crates/molframe-audit/src/batch_tests.rs +67 -0
  174. molframe-0.1.1/crates/molframe-audit/src/engine.rs +134 -0
  175. molframe-0.1.1/crates/molframe-audit/src/engine_tests.rs +54 -0
  176. molframe-0.1.1/crates/molframe-audit/src/lib.rs +22 -0
  177. molframe-0.1.1/crates/molframe-audit/src/numeric.rs +10 -0
  178. molframe-0.1.1/crates/molframe-audit/src/plan.rs +276 -0
  179. molframe-0.1.1/crates/molframe-audit/src/plan_tests.rs +62 -0
  180. molframe-0.1.1/crates/molframe-audit/src/report.rs +43 -0
  181. molframe-0.1.1/crates/molframe-audit/src/value.rs +39 -0
  182. molframe-0.1.1/crates/molframe-bcif/Cargo.toml +32 -0
  183. molframe-0.1.1/crates/molframe-bcif/LICENSE +21 -0
  184. molframe-0.1.1/crates/molframe-bcif/README.md +27 -0
  185. molframe-0.1.1/crates/molframe-bcif/benches/bcif.rs +128 -0
  186. molframe-0.1.1/crates/molframe-bcif/proptest-regressions/encode/float_tests.txt +7 -0
  187. molframe-0.1.1/crates/molframe-bcif/src/codec/decode.rs +472 -0
  188. molframe-0.1.1/crates/molframe-bcif/src/codec/decode_tests.rs +158 -0
  189. molframe-0.1.1/crates/molframe-bcif/src/codec/mod.rs +11 -0
  190. molframe-0.1.1/crates/molframe-bcif/src/codec/numeric_into.rs +408 -0
  191. molframe-0.1.1/crates/molframe-bcif/src/codec/numeric_into_tests.rs +43 -0
  192. molframe-0.1.1/crates/molframe-bcif/src/codec/string_column.rs +171 -0
  193. molframe-0.1.1/crates/molframe-bcif/src/container/document.rs +244 -0
  194. molframe-0.1.1/crates/molframe-bcif/src/container/mod.rs +5 -0
  195. molframe-0.1.1/crates/molframe-bcif/src/encode/float.rs +156 -0
  196. molframe-0.1.1/crates/molframe-bcif/src/encode/float_tests.rs +31 -0
  197. molframe-0.1.1/crates/molframe-bcif/src/encode/integer.rs +415 -0
  198. molframe-0.1.1/crates/molframe-bcif/src/encode/integer_tests.rs +74 -0
  199. molframe-0.1.1/crates/molframe-bcif/src/encode/mod.rs +11 -0
  200. molframe-0.1.1/crates/molframe-bcif/src/encode/strategy.rs +66 -0
  201. molframe-0.1.1/crates/molframe-bcif/src/encode/strategy_tests.rs +48 -0
  202. molframe-0.1.1/crates/molframe-bcif/src/encode/string.rs +119 -0
  203. molframe-0.1.1/crates/molframe-bcif/src/encode/string_tests.rs +25 -0
  204. molframe-0.1.1/crates/molframe-bcif/src/lib.rs +24 -0
  205. molframe-0.1.1/crates/molframe-bcif/src/messagepack.rs +175 -0
  206. molframe-0.1.1/crates/molframe-bcif/src/messagepack_tests.rs +41 -0
  207. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/append.rs +29 -0
  208. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/budget.rs +20 -0
  209. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/decoded.rs +89 -0
  210. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/pull.rs +151 -0
  211. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/stream/checkpoint.rs +162 -0
  212. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/stream/metrics.rs +27 -0
  213. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/stream.rs +491 -0
  214. molframe-0.1.1/crates/molframe-bcif/src/reader/batch/stream_primitive.rs +197 -0
  215. molframe-0.1.1/crates/molframe-bcif/src/reader/batch.rs +460 -0
  216. molframe-0.1.1/crates/molframe-bcif/src/reader/batch_tests.rs +301 -0
  217. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/column.rs +284 -0
  218. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/container.rs +159 -0
  219. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/container_tests.rs +22 -0
  220. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/ensemble.rs +108 -0
  221. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/external.rs +144 -0
  222. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/mod.rs +15 -0
  223. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/projection.rs +132 -0
  224. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/reader.rs +94 -0
  225. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/values.rs +204 -0
  226. molframe-0.1.1/crates/molframe-bcif/src/reader/direct/values_tests.rs +34 -0
  227. molframe-0.1.1/crates/molframe-bcif/src/reader/index/cursor.rs +116 -0
  228. molframe-0.1.1/crates/molframe-bcif/src/reader/index/marker.rs +124 -0
  229. molframe-0.1.1/crates/molframe-bcif/src/reader/index.rs +244 -0
  230. molframe-0.1.1/crates/molframe-bcif/src/reader/index_tests.rs +154 -0
  231. molframe-0.1.1/crates/molframe-bcif/src/reader/mod.rs +9 -0
  232. molframe-0.1.1/crates/molframe-bcif/src/reader/structure.rs +109 -0
  233. molframe-0.1.1/crates/molframe-bcif/src/reader/structure_tests.rs +239 -0
  234. molframe-0.1.1/crates/molframe-bcif/src/writer/atoms.rs +175 -0
  235. molframe-0.1.1/crates/molframe-bcif/src/writer/column.rs +195 -0
  236. molframe-0.1.1/crates/molframe-bcif/src/writer/connections.rs +184 -0
  237. molframe-0.1.1/crates/molframe-bcif/src/writer/document.rs +191 -0
  238. molframe-0.1.1/crates/molframe-bcif/src/writer/document_tests.rs +71 -0
  239. molframe-0.1.1/crates/molframe-bcif/src/writer/metadata.rs +282 -0
  240. molframe-0.1.1/crates/molframe-bcif/src/writer/mod.rs +14 -0
  241. molframe-0.1.1/crates/molframe-bcif/src/writer/structure.rs +246 -0
  242. molframe-0.1.1/crates/molframe-bcif/src/writer/structure_tests.rs +173 -0
  243. molframe-0.1.1/crates/molframe-bench/Cargo.toml +20 -0
  244. molframe-0.1.1/crates/molframe-bench/README.md +21 -0
  245. molframe-0.1.1/crates/molframe-bench/data/1aon.bcif +0 -0
  246. molframe-0.1.1/crates/molframe-bench/data/1aon.cif.gz +0 -0
  247. molframe-0.1.1/crates/molframe-bench/data/1crn.bcif +0 -0
  248. molframe-0.1.1/crates/molframe-bench/data/1crn.cif +1654 -0
  249. molframe-0.1.1/crates/molframe-bench/data/1crn.pdb +611 -0
  250. molframe-0.1.1/crates/molframe-bench/data/1ubq.bcif +0 -0
  251. molframe-0.1.1/crates/molframe-bench/data/1ubq.cif +2237 -0
  252. molframe-0.1.1/crates/molframe-bench/data/1ubq.pdb +970 -0
  253. molframe-0.1.1/crates/molframe-bench/data/2m7c.pdb +9910 -0
  254. molframe-0.1.1/crates/molframe-bench/data/4hhb.bcif +0 -0
  255. molframe-0.1.1/crates/molframe-bench/data/4hhb.cif +11053 -0
  256. molframe-0.1.1/crates/molframe-bench/data/4hhb.pdb +5849 -0
  257. molframe-0.1.1/crates/molframe-bench/data/ATP.cif +184 -0
  258. molframe-0.1.1/crates/molframe-bench/data/HEM.cif +276 -0
  259. molframe-0.1.1/crates/molframe-bench/src/coordinates.rs +41 -0
  260. molframe-0.1.1/crates/molframe-bench/src/fixtures.rs +124 -0
  261. molframe-0.1.1/crates/molframe-bench/src/lib.rs +16 -0
  262. molframe-0.1.1/crates/molframe-bench/src/lib_tests.rs +81 -0
  263. molframe-0.1.1/crates/molframe-bench/src/numeric.rs +34 -0
  264. molframe-0.1.1/crates/molframe-bench/src/samples.rs +100 -0
  265. molframe-0.1.1/crates/molframe-bench/src/synthetic/emit.rs +231 -0
  266. molframe-0.1.1/crates/molframe-bench/src/synthetic/emit_tests.rs +288 -0
  267. molframe-0.1.1/crates/molframe-bench/src/synthetic/format.rs +130 -0
  268. molframe-0.1.1/crates/molframe-bench/src/synthetic/format_tests.rs +119 -0
  269. molframe-0.1.1/crates/molframe-bench/src/synthetic/mod.rs +14 -0
  270. molframe-0.1.1/crates/molframe-bench/src/synthetic/seed.rs +87 -0
  271. molframe-0.1.1/crates/molframe-bench/src/synthetic/seed_tests.rs +55 -0
  272. molframe-0.1.1/crates/molframe-bench/src/synthetic/tile.rs +328 -0
  273. molframe-0.1.1/crates/molframe-bench/src/synthetic/tile_tests.rs +115 -0
  274. molframe-0.1.1/crates/molframe-chem/Cargo.toml +25 -0
  275. molframe-0.1.1/crates/molframe-chem/LICENSE +21 -0
  276. molframe-0.1.1/crates/molframe-chem/README.md +37 -0
  277. molframe-0.1.1/crates/molframe-chem/benches/chem.rs +94 -0
  278. molframe-0.1.1/crates/molframe-chem/data/LICENSE.mendeleev +21 -0
  279. molframe-0.1.1/crates/molframe-chem/data/README.md +15 -0
  280. molframe-0.1.1/crates/molframe-chem/data/ionic-radii.bin +0 -0
  281. molframe-0.1.1/crates/molframe-chem/src/annotate/atom_chemistry.rs +217 -0
  282. molframe-0.1.1/crates/molframe-chem/src/annotate/component_index.rs +202 -0
  283. molframe-0.1.1/crates/molframe-chem/src/annotate/component_index_tests.rs +162 -0
  284. molframe-0.1.1/crates/molframe-chem/src/annotate.rs +413 -0
  285. molframe-0.1.1/crates/molframe-chem/src/annotate_tests.rs +199 -0
  286. molframe-0.1.1/crates/molframe-chem/src/coverage.rs +108 -0
  287. molframe-0.1.1/crates/molframe-chem/src/coverage_tests.rs +96 -0
  288. molframe-0.1.1/crates/molframe-chem/src/element.rs +290 -0
  289. molframe-0.1.1/crates/molframe-chem/src/element_data.rs +128 -0
  290. molframe-0.1.1/crates/molframe-chem/src/element_tests.rs +15 -0
  291. molframe-0.1.1/crates/molframe-chem/src/equivalence.rs +428 -0
  292. molframe-0.1.1/crates/molframe-chem/src/equivalence_tests.rs +171 -0
  293. molframe-0.1.1/crates/molframe-chem/src/ionic.rs +191 -0
  294. molframe-0.1.1/crates/molframe-chem/src/ionic_tests.rs +37 -0
  295. molframe-0.1.1/crates/molframe-chem/src/lib.rs +52 -0
  296. molframe-0.1.1/crates/molframe-chem/src/model.rs +241 -0
  297. molframe-0.1.1/crates/molframe-chem/src/mol/mod.rs +16 -0
  298. molframe-0.1.1/crates/molframe-chem/src/mol/model.rs +123 -0
  299. molframe-0.1.1/crates/molframe-chem/src/mol/mol_tests.rs +57 -0
  300. molframe-0.1.1/crates/molframe-chem/src/mol/parse.rs +323 -0
  301. molframe-0.1.1/crates/molframe-chem/src/mol/write.rs +243 -0
  302. molframe-0.1.1/crates/molframe-chem/src/mol2/mod.rs +13 -0
  303. molframe-0.1.1/crates/molframe-chem/src/mol2/model.rs +98 -0
  304. molframe-0.1.1/crates/molframe-chem/src/mol2/mol2_tests.rs +27 -0
  305. molframe-0.1.1/crates/molframe-chem/src/mol2/parse.rs +211 -0
  306. molframe-0.1.1/crates/molframe-chem/src/mol2/write.rs +183 -0
  307. molframe-0.1.1/crates/molframe-chem/src/numeric.rs +8 -0
  308. molframe-0.1.1/crates/molframe-chem/src/peoe/calculate.rs +131 -0
  309. molframe-0.1.1/crates/molframe-chem/src/peoe/parameters.rs +68 -0
  310. molframe-0.1.1/crates/molframe-chem/src/peoe/perceive.rs +177 -0
  311. molframe-0.1.1/crates/molframe-chem/src/peoe/types.rs +211 -0
  312. molframe-0.1.1/crates/molframe-chem/src/peoe.rs +16 -0
  313. molframe-0.1.1/crates/molframe-chem/src/peoe_tests.rs +129 -0
  314. molframe-0.1.1/crates/molframe-chem/src/provider/validation.rs +56 -0
  315. molframe-0.1.1/crates/molframe-chem/src/provider.rs +484 -0
  316. molframe-0.1.1/crates/molframe-chem/src/provider_tests.rs +144 -0
  317. molframe-0.1.1/crates/molframe-chem/src/roles.rs +151 -0
  318. molframe-0.1.1/crates/molframe-chem/src/roles_tests.rs +64 -0
  319. molframe-0.1.1/crates/molframe-chem/src/side_chain.rs +181 -0
  320. molframe-0.1.1/crates/molframe-chem/src/side_chain_tests.rs +140 -0
  321. molframe-0.1.1/crates/molframe-chem/src/smarts.rs +164 -0
  322. molframe-0.1.1/crates/molframe-chem/src/smarts_match/matcher.rs +240 -0
  323. molframe-0.1.1/crates/molframe-chem/src/smarts_match.rs +340 -0
  324. molframe-0.1.1/crates/molframe-chem/src/smarts_parse/nesting.rs +38 -0
  325. molframe-0.1.1/crates/molframe-chem/src/smarts_parse.rs +479 -0
  326. molframe-0.1.1/crates/molframe-chem/src/smarts_tests.rs +171 -0
  327. molframe-0.1.1/crates/molframe-cif/Cargo.toml +30 -0
  328. molframe-0.1.1/crates/molframe-cif/LICENSE +21 -0
  329. molframe-0.1.1/crates/molframe-cif/README.md +37 -0
  330. molframe-0.1.1/crates/molframe-cif/benches/cif.rs +140 -0
  331. molframe-0.1.1/crates/molframe-cif/src/batch/budget.rs +28 -0
  332. molframe-0.1.1/crates/molframe-cif/src/batch/token.rs +264 -0
  333. molframe-0.1.1/crates/molframe-cif/src/batch.rs +488 -0
  334. molframe-0.1.1/crates/molframe-cif/src/batch_tests.rs +183 -0
  335. molframe-0.1.1/crates/molframe-cif/src/document/mod.rs +6 -0
  336. molframe-0.1.1/crates/molframe-cif/src/document/model.rs +462 -0
  337. molframe-0.1.1/crates/molframe-cif/src/document/model_tests.rs +106 -0
  338. molframe-0.1.1/crates/molframe-cif/src/document/number.rs +78 -0
  339. molframe-0.1.1/crates/molframe-cif/src/document/number_tests.rs +75 -0
  340. molframe-0.1.1/crates/molframe-cif/src/lexer/mod.rs +5 -0
  341. molframe-0.1.1/crates/molframe-cif/src/lexer/tokenize.rs +403 -0
  342. molframe-0.1.1/crates/molframe-cif/src/lexer/tokenize_tests.rs +192 -0
  343. molframe-0.1.1/crates/molframe-cif/src/lib.rs +47 -0
  344. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/chains.rs +120 -0
  345. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/fields.rs +118 -0
  346. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/finish.rs +55 -0
  347. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/models.rs +227 -0
  348. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/names.rs +67 -0
  349. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/names_tests.rs +44 -0
  350. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/row.rs +194 -0
  351. molframe-0.1.1/crates/molframe-cif/src/lower/atoms/row_tests.rs +0 -0
  352. molframe-0.1.1/crates/molframe-cif/src/lower/atoms.rs +408 -0
  353. molframe-0.1.1/crates/molframe-cif/src/lower/bonds.rs +332 -0
  354. molframe-0.1.1/crates/molframe-cif/src/lower/bonds_tests.rs +67 -0
  355. molframe-0.1.1/crates/molframe-cif/src/lower/diagnostics.rs +8 -0
  356. molframe-0.1.1/crates/molframe-cif/src/lower/ensemble.rs +92 -0
  357. molframe-0.1.1/crates/molframe-cif/src/lower/ensemble_tests.rs +41 -0
  358. molframe-0.1.1/crates/molframe-cif/src/lower/entry.rs +457 -0
  359. molframe-0.1.1/crates/molframe-cif/src/lower/keys.rs +83 -0
  360. molframe-0.1.1/crates/molframe-cif/src/lower/keys_tests.rs +56 -0
  361. molframe-0.1.1/crates/molframe-cif/src/lower/metadata.rs +147 -0
  362. molframe-0.1.1/crates/molframe-cif/src/lower/mod.rs +25 -0
  363. molframe-0.1.1/crates/molframe-cif/src/lower/ragged.rs +103 -0
  364. molframe-0.1.1/crates/molframe-cif/src/lower/references.rs +106 -0
  365. molframe-0.1.1/crates/molframe-cif/src/lower/references_tests.rs +94 -0
  366. molframe-0.1.1/crates/molframe-cif/src/lower/stream.rs +260 -0
  367. molframe-0.1.1/crates/molframe-cif/src/parser/document/state.rs +151 -0
  368. molframe-0.1.1/crates/molframe-cif/src/parser/document.rs +459 -0
  369. molframe-0.1.1/crates/molframe-cif/src/parser/document_tests.rs +244 -0
  370. molframe-0.1.1/crates/molframe-cif/src/parser/mod.rs +5 -0
  371. molframe-0.1.1/crates/molframe-cif/src/pdbml/codec.rs +369 -0
  372. molframe-0.1.1/crates/molframe-cif/src/pdbml/codec_tests.rs +54 -0
  373. molframe-0.1.1/crates/molframe-cif/src/pdbml/mod.rs +5 -0
  374. molframe-0.1.1/crates/molframe-cif/src/reader/direct/extra.rs +79 -0
  375. molframe-0.1.1/crates/molframe-cif/src/reader/direct/mod.rs +13 -0
  376. molframe-0.1.1/crates/molframe-cif/src/reader/direct/projection.rs +179 -0
  377. molframe-0.1.1/crates/molframe-cif/src/reader/direct/reader.rs +113 -0
  378. molframe-0.1.1/crates/molframe-cif/src/reader/direct/row.rs +67 -0
  379. molframe-0.1.1/crates/molframe-cif/src/reader/direct/stream.rs +270 -0
  380. molframe-0.1.1/crates/molframe-cif/src/reader/mod.rs +6 -0
  381. molframe-0.1.1/crates/molframe-cif/src/reader/structure.rs +121 -0
  382. molframe-0.1.1/crates/molframe-cif/src/reader/structure_model_tests.rs +209 -0
  383. molframe-0.1.1/crates/molframe-cif/src/reader/structure_tests.rs +420 -0
  384. molframe-0.1.1/crates/molframe-cif/src/small_cif/mod.rs +5 -0
  385. molframe-0.1.1/crates/molframe-cif/src/small_cif/model.rs +391 -0
  386. molframe-0.1.1/crates/molframe-cif/src/small_cif/model_tests.rs +73 -0
  387. molframe-0.1.1/crates/molframe-cif/src/write/bonds.rs +204 -0
  388. molframe-0.1.1/crates/molframe-cif/src/write/canonical.rs +297 -0
  389. molframe-0.1.1/crates/molframe-cif/src/write/canonical_tests.rs +119 -0
  390. molframe-0.1.1/crates/molframe-cif/src/write/mod.rs +15 -0
  391. molframe-0.1.1/crates/molframe-cif/src/write/options.rs +207 -0
  392. molframe-0.1.1/crates/molframe-cif/src/write/preserving.rs +120 -0
  393. molframe-0.1.1/crates/molframe-cif/src/write/preserving_tests.rs +285 -0
  394. molframe-0.1.1/crates/molframe-cif/src/write/projection.rs +400 -0
  395. molframe-0.1.1/crates/molframe-cif/src/write/references.rs +90 -0
  396. molframe-0.1.1/crates/molframe-cif/src/write/value.rs +82 -0
  397. molframe-0.1.1/crates/molframe-cif/src/write/value_tests.rs +61 -0
  398. molframe-0.1.1/crates/molframe-compare/Cargo.toml +31 -0
  399. molframe-0.1.1/crates/molframe-compare/LICENSE +21 -0
  400. molframe-0.1.1/crates/molframe-compare/README.md +37 -0
  401. molframe-0.1.1/crates/molframe-compare/benches/compare.rs +302 -0
  402. molframe-0.1.1/crates/molframe-compare/src/cad.rs +215 -0
  403. molframe-0.1.1/crates/molframe-compare/src/cad_tests.rs +94 -0
  404. molframe-0.1.1/crates/molframe-compare/src/ce/finish.rs +133 -0
  405. molframe-0.1.1/crates/molframe-compare/src/ce/search.rs +337 -0
  406. molframe-0.1.1/crates/molframe-compare/src/ce/workspace.rs +292 -0
  407. molframe-0.1.1/crates/molframe-compare/src/ce.rs +225 -0
  408. molframe-0.1.1/crates/molframe-compare/src/ce_reference_tests.rs +326 -0
  409. molframe-0.1.1/crates/molframe-compare/src/ce_tests.rs +229 -0
  410. molframe-0.1.1/crates/molframe-compare/src/dockq.rs +218 -0
  411. molframe-0.1.1/crates/molframe-compare/src/dockq_tests.rs +66 -0
  412. molframe-0.1.1/crates/molframe-compare/src/equivalent.rs +97 -0
  413. molframe-0.1.1/crates/molframe-compare/src/equivalent_tests.rs +56 -0
  414. molframe-0.1.1/crates/molframe-compare/src/error.rs +51 -0
  415. molframe-0.1.1/crates/molframe-compare/src/governed/common.rs +90 -0
  416. molframe-0.1.1/crates/molframe-compare/src/governed/equivalence.rs +62 -0
  417. molframe-0.1.1/crates/molframe-compare/src/governed/interfaces.rs +72 -0
  418. molframe-0.1.1/crates/molframe-compare/src/governed/mapping.rs +220 -0
  419. molframe-0.1.1/crates/molframe-compare/src/governed/mod.rs +24 -0
  420. molframe-0.1.1/crates/molframe-compare/src/governed/scores.rs +245 -0
  421. molframe-0.1.1/crates/molframe-compare/src/governed_parameters.rs +33 -0
  422. molframe-0.1.1/crates/molframe-compare/src/governed_tests.rs +80 -0
  423. molframe-0.1.1/crates/molframe-compare/src/interface.rs +62 -0
  424. molframe-0.1.1/crates/molframe-compare/src/lddt.rs +263 -0
  425. molframe-0.1.1/crates/molframe-compare/src/lddt_tests.rs +230 -0
  426. molframe-0.1.1/crates/molframe-compare/src/lib.rs +75 -0
  427. molframe-0.1.1/crates/molframe-compare/src/mapping/assignment.rs +313 -0
  428. molframe-0.1.1/crates/molframe-compare/src/mapping/chain.rs +109 -0
  429. molframe-0.1.1/crates/molframe-compare/src/mapping/mod.rs +13 -0
  430. molframe-0.1.1/crates/molframe-compare/src/mapping/sequence.rs +71 -0
  431. molframe-0.1.1/crates/molframe-compare/src/mapping_tests.rs +206 -0
  432. molframe-0.1.1/crates/molframe-compare/src/numeric.rs +18 -0
  433. molframe-0.1.1/crates/molframe-compare/src/qs.rs +131 -0
  434. molframe-0.1.1/crates/molframe-compare/src/qs_tests.rs +67 -0
  435. molframe-0.1.1/crates/molframe-compare/src/region.rs +46 -0
  436. molframe-0.1.1/crates/molframe-compare/src/region_tests.rs +40 -0
  437. molframe-0.1.1/crates/molframe-compare/src/similarity.rs +57 -0
  438. molframe-0.1.1/crates/molframe-compare/src/similarity_tests.rs +45 -0
  439. molframe-0.1.1/crates/molframe-compare/src/superposed.rs +172 -0
  440. molframe-0.1.1/crates/molframe-compare/src/superposed_tests.rs +86 -0
  441. molframe-0.1.1/crates/molframe-compare/src/workflow.rs +144 -0
  442. molframe-0.1.1/crates/molframe-compare/src/workflow_tests.rs +42 -0
  443. molframe-0.1.1/crates/molframe-core/Cargo.toml +41 -0
  444. molframe-0.1.1/crates/molframe-core/LICENSE +21 -0
  445. molframe-0.1.1/crates/molframe-core/README.md +49 -0
  446. molframe-0.1.1/crates/molframe-core/benches/core.rs +168 -0
  447. molframe-0.1.1/crates/molframe-core/src/annotation/mod.rs +5 -0
  448. molframe-0.1.1/crates/molframe-core/src/annotation/model.rs +229 -0
  449. molframe-0.1.1/crates/molframe-core/src/annotation/model_tests.rs +32 -0
  450. molframe-0.1.1/crates/molframe-core/src/bond/mod.rs +5 -0
  451. molframe-0.1.1/crates/molframe-core/src/bond/model.rs +283 -0
  452. molframe-0.1.1/crates/molframe-core/src/bond/model_tests.rs +52 -0
  453. molframe-0.1.1/crates/molframe-core/src/chunk/atom.rs +252 -0
  454. molframe-0.1.1/crates/molframe-core/src/chunk/builder.rs +368 -0
  455. molframe-0.1.1/crates/molframe-core/src/chunk/builder_tests.rs +192 -0
  456. molframe-0.1.1/crates/molframe-core/src/chunk/mod.rs +17 -0
  457. molframe-0.1.1/crates/molframe-core/src/chunk/parent.rs +165 -0
  458. molframe-0.1.1/crates/molframe-core/src/chunk/parent_tests.rs +86 -0
  459. molframe-0.1.1/crates/molframe-core/src/chunk/stats.rs +170 -0
  460. molframe-0.1.1/crates/molframe-core/src/chunk/stats_tests.rs +75 -0
  461. molframe-0.1.1/crates/molframe-core/src/column/bits.rs +445 -0
  462. molframe-0.1.1/crates/molframe-core/src/column/bits_tests.rs +110 -0
  463. molframe-0.1.1/crates/molframe-core/src/column/encoded/iter.rs +95 -0
  464. molframe-0.1.1/crates/molframe-core/src/column/encoded/mod.rs +7 -0
  465. molframe-0.1.1/crates/molframe-core/src/column/encoded/model.rs +455 -0
  466. molframe-0.1.1/crates/molframe-core/src/column/encoded/model_tests.rs +133 -0
  467. molframe-0.1.1/crates/molframe-core/src/column/mod.rs +9 -0
  468. molframe-0.1.1/crates/molframe-core/src/column/validity.rs +237 -0
  469. molframe-0.1.1/crates/molframe-core/src/column/validity_tests.rs +53 -0
  470. molframe-0.1.1/crates/molframe-core/src/contract/analysis.rs +284 -0
  471. molframe-0.1.1/crates/molframe-core/src/contract/analysis_tests.rs +97 -0
  472. molframe-0.1.1/crates/molframe-core/src/contract/mod.rs +26 -0
  473. molframe-0.1.1/crates/molframe-core/src/contract/policy/fields.rs +350 -0
  474. molframe-0.1.1/crates/molframe-core/src/contract/policy/fingerprint.rs +78 -0
  475. molframe-0.1.1/crates/molframe-core/src/contract/policy/mod.rs +13 -0
  476. molframe-0.1.1/crates/molframe-core/src/contract/policy/profile.rs +172 -0
  477. molframe-0.1.1/crates/molframe-core/src/contract/policy/profile_tests.rs +117 -0
  478. molframe-0.1.1/crates/molframe-core/src/contract/provenance.rs +274 -0
  479. molframe-0.1.1/crates/molframe-core/src/contract/provenance_tests.rs +70 -0
  480. molframe-0.1.1/crates/molframe-core/src/contract/reexecution.rs +134 -0
  481. molframe-0.1.1/crates/molframe-core/src/contract/reexecution_tests.rs +52 -0
  482. molframe-0.1.1/crates/molframe-core/src/contract/serialise.rs +196 -0
  483. molframe-0.1.1/crates/molframe-core/src/contract/serialise_tests.rs +25 -0
  484. molframe-0.1.1/crates/molframe-core/src/coords/mod.rs +5 -0
  485. molframe-0.1.1/crates/molframe-core/src/coords/storage.rs +486 -0
  486. molframe-0.1.1/crates/molframe-core/src/coords/storage_tests.rs +129 -0
  487. molframe-0.1.1/crates/molframe-core/src/diagnostic/code.rs +251 -0
  488. molframe-0.1.1/crates/molframe-core/src/diagnostic/code_tests.rs +34 -0
  489. molframe-0.1.1/crates/molframe-core/src/diagnostic/finding.rs +420 -0
  490. molframe-0.1.1/crates/molframe-core/src/diagnostic/finding_tests.rs +154 -0
  491. molframe-0.1.1/crates/molframe-core/src/diagnostic/findings.rs +121 -0
  492. molframe-0.1.1/crates/molframe-core/src/diagnostic/findings_tests.rs +82 -0
  493. molframe-0.1.1/crates/molframe-core/src/diagnostic/mod.rs +22 -0
  494. molframe-0.1.1/crates/molframe-core/src/diagnostic/registry.rs +332 -0
  495. molframe-0.1.1/crates/molframe-core/src/diagnostic/registry_tests.rs +38 -0
  496. molframe-0.1.1/crates/molframe-core/src/diagnostic/render.rs +235 -0
  497. molframe-0.1.1/crates/molframe-core/src/diagnostic/render_tests.rs +72 -0
  498. molframe-0.1.1/crates/molframe-core/src/element/mod.rs +5 -0
  499. molframe-0.1.1/crates/molframe-core/src/element/table.rs +301 -0
  500. molframe-0.1.1/crates/molframe-core/src/element/table_tests.rs +57 -0
  501. molframe-0.1.1/crates/molframe-core/src/execution/admission.rs +97 -0
  502. molframe-0.1.1/crates/molframe-core/src/execution/admission_tests.rs +59 -0
  503. molframe-0.1.1/crates/molframe-core/src/execution/batch.rs +306 -0
  504. molframe-0.1.1/crates/molframe-core/src/execution/batch_tests.rs +252 -0
  505. molframe-0.1.1/crates/molframe-core/src/execution/cancellation.rs +58 -0
  506. molframe-0.1.1/crates/molframe-core/src/execution/cancellation_tests.rs +10 -0
  507. molframe-0.1.1/crates/molframe-core/src/execution/context.rs +273 -0
  508. molframe-0.1.1/crates/molframe-core/src/execution/context_tests.rs +58 -0
  509. molframe-0.1.1/crates/molframe-core/src/execution/memory.rs +251 -0
  510. molframe-0.1.1/crates/molframe-core/src/execution/memory_tests.rs +40 -0
  511. molframe-0.1.1/crates/molframe-core/src/execution/mod.rs +25 -0
  512. molframe-0.1.1/crates/molframe-core/src/execution/retained.rs +57 -0
  513. molframe-0.1.1/crates/molframe-core/src/execution/retained_tests.rs +53 -0
  514. molframe-0.1.1/crates/molframe-core/src/execution/spill.rs +407 -0
  515. molframe-0.1.1/crates/molframe-core/src/execution/spill_tests.rs +137 -0
  516. molframe-0.1.1/crates/molframe-core/src/execution/storage.rs +77 -0
  517. molframe-0.1.1/crates/molframe-core/src/execution/storage_tests.rs +15 -0
  518. molframe-0.1.1/crates/molframe-core/src/hashing/mix.rs +103 -0
  519. molframe-0.1.1/crates/molframe-core/src/hashing/mix_tests.rs +79 -0
  520. molframe-0.1.1/crates/molframe-core/src/hashing/mod.rs +5 -0
  521. molframe-0.1.1/crates/molframe-core/src/index/mod.rs +5 -0
  522. molframe-0.1.1/crates/molframe-core/src/index/typed.rs +121 -0
  523. molframe-0.1.1/crates/molframe-core/src/index/typed_tests.rs +40 -0
  524. molframe-0.1.1/crates/molframe-core/src/io/collect_structure.rs +408 -0
  525. molframe-0.1.1/crates/molframe-core/src/io/collect_structure_tests.rs +119 -0
  526. molframe-0.1.1/crates/molframe-core/src/io/format/detect.rs +250 -0
  527. molframe-0.1.1/crates/molframe-core/src/io/format/mod.rs +19 -0
  528. molframe-0.1.1/crates/molframe-core/src/io/format/options.rs +207 -0
  529. molframe-0.1.1/crates/molframe-core/src/io/format_tests.rs +105 -0
  530. molframe-0.1.1/crates/molframe-core/src/io/input/buffer.rs +282 -0
  531. molframe-0.1.1/crates/molframe-core/src/io/input/collect.rs +227 -0
  532. molframe-0.1.1/crates/molframe-core/src/io/input/compression.rs +26 -0
  533. molframe-0.1.1/crates/molframe-core/src/io/input/decode.rs +225 -0
  534. molframe-0.1.1/crates/molframe-core/src/io/input/limits.rs +53 -0
  535. molframe-0.1.1/crates/molframe-core/src/io/input/source.rs +181 -0
  536. molframe-0.1.1/crates/molframe-core/src/io/input/source_file.rs +200 -0
  537. molframe-0.1.1/crates/molframe-core/src/io/input/source_file_tests.rs +90 -0
  538. molframe-0.1.1/crates/molframe-core/src/io/input/source_tests.rs +85 -0
  539. molframe-0.1.1/crates/molframe-core/src/io/input/spill_source.rs +177 -0
  540. molframe-0.1.1/crates/molframe-core/src/io/input.rs +30 -0
  541. molframe-0.1.1/crates/molframe-core/src/io/input_tests.rs +277 -0
  542. molframe-0.1.1/crates/molframe-core/src/io/mod.rs +29 -0
  543. molframe-0.1.1/crates/molframe-core/src/io/output.rs +327 -0
  544. molframe-0.1.1/crates/molframe-core/src/io/output_tests.rs +132 -0
  545. molframe-0.1.1/crates/molframe-core/src/io/structure_batch.rs +339 -0
  546. molframe-0.1.1/crates/molframe-core/src/io/structure_batch_buffer.rs +34 -0
  547. molframe-0.1.1/crates/molframe-core/src/io/structure_batch_builder.rs +184 -0
  548. molframe-0.1.1/crates/molframe-core/src/io/structure_batch_pool.rs +115 -0
  549. molframe-0.1.1/crates/molframe-core/src/io/structure_batch_pool_tests.rs +81 -0
  550. molframe-0.1.1/crates/molframe-core/src/lib.rs +97 -0
  551. molframe-0.1.1/crates/molframe-core/src/limits/mod.rs +5 -0
  552. molframe-0.1.1/crates/molframe-core/src/limits/storage.rs +64 -0
  553. molframe-0.1.1/crates/molframe-core/src/optional/mod.rs +5 -0
  554. molframe-0.1.1/crates/molframe-core/src/optional/value.rs +188 -0
  555. molframe-0.1.1/crates/molframe-core/src/optional/value_tests.rs +33 -0
  556. molframe-0.1.1/crates/molframe-core/src/parallel/consume.rs +131 -0
  557. molframe-0.1.1/crates/molframe-core/src/parallel/consume_tests.rs +189 -0
  558. molframe-0.1.1/crates/molframe-core/src/parallel/execute.rs +194 -0
  559. molframe-0.1.1/crates/molframe-core/src/parallel/execute_tests.rs +94 -0
  560. molframe-0.1.1/crates/molframe-core/src/parallel/mod.rs +18 -0
  561. molframe-0.1.1/crates/molframe-core/src/parallel/ordered.rs +93 -0
  562. molframe-0.1.1/crates/molframe-core/src/parallel/plan.rs +115 -0
  563. molframe-0.1.1/crates/molframe-core/src/parallel/plan_tests.rs +65 -0
  564. molframe-0.1.1/crates/molframe-core/src/parallel/policy.rs +54 -0
  565. molframe-0.1.1/crates/molframe-core/src/parallel/policy_tests.rs +19 -0
  566. molframe-0.1.1/crates/molframe-core/src/provider/bond_payload.rs +220 -0
  567. molframe-0.1.1/crates/molframe-core/src/provider/bond_payload_tests.rs +25 -0
  568. molframe-0.1.1/crates/molframe-core/src/provider/bond_source_tests.rs +112 -0
  569. molframe-0.1.1/crates/molframe-core/src/provider/catalog.rs +332 -0
  570. molframe-0.1.1/crates/molframe-core/src/provider/catalog_tests.rs +87 -0
  571. molframe-0.1.1/crates/molframe-core/src/provider/error.rs +122 -0
  572. molframe-0.1.1/crates/molframe-core/src/provider/ids.rs +91 -0
  573. molframe-0.1.1/crates/molframe-core/src/provider/mod.rs +25 -0
  574. molframe-0.1.1/crates/molframe-core/src/provider/payload.rs +440 -0
  575. molframe-0.1.1/crates/molframe-core/src/provider/payload_tests.rs +46 -0
  576. molframe-0.1.1/crates/molframe-core/src/provider/source.rs +427 -0
  577. molframe-0.1.1/crates/molframe-core/src/provider/source_tests.rs +82 -0
  578. molframe-0.1.1/crates/molframe-core/src/selection/mod.rs +5 -0
  579. molframe-0.1.1/crates/molframe-core/src/selection/query/merge.rs +126 -0
  580. molframe-0.1.1/crates/molframe-core/src/selection/query/operations.rs +101 -0
  581. molframe-0.1.1/crates/molframe-core/src/selection/query/representation.rs +283 -0
  582. molframe-0.1.1/crates/molframe-core/src/selection/query/runs.rs +222 -0
  583. molframe-0.1.1/crates/molframe-core/src/selection/query.rs +12 -0
  584. molframe-0.1.1/crates/molframe-core/src/selection/query_tests.rs +226 -0
  585. molframe-0.1.1/crates/molframe-core/src/span/location.rs +170 -0
  586. molframe-0.1.1/crates/molframe-core/src/span/location_tests.rs +67 -0
  587. molframe-0.1.1/crates/molframe-core/src/span/mod.rs +5 -0
  588. molframe-0.1.1/crates/molframe-core/src/structure/data.rs +419 -0
  589. molframe-0.1.1/crates/molframe-core/src/structure/data_tests.rs +93 -0
  590. molframe-0.1.1/crates/molframe-core/src/structure/diff.rs +322 -0
  591. molframe-0.1.1/crates/molframe-core/src/structure/diff_tests.rs +49 -0
  592. molframe-0.1.1/crates/molframe-core/src/structure/disorder.rs +489 -0
  593. molframe-0.1.1/crates/molframe-core/src/structure/disorder_tests.rs +148 -0
  594. molframe-0.1.1/crates/molframe-core/src/structure/edit.rs +117 -0
  595. molframe-0.1.1/crates/molframe-core/src/structure/edit_tests.rs +104 -0
  596. molframe-0.1.1/crates/molframe-core/src/structure/extensions.rs +103 -0
  597. molframe-0.1.1/crates/molframe-core/src/structure/extensions_tests.rs +36 -0
  598. molframe-0.1.1/crates/molframe-core/src/structure/fixture.rs +128 -0
  599. molframe-0.1.1/crates/molframe-core/src/structure/handle.rs +495 -0
  600. molframe-0.1.1/crates/molframe-core/src/structure/handle_helpers.rs +62 -0
  601. molframe-0.1.1/crates/molframe-core/src/structure/handle_helpers_tests.rs +157 -0
  602. molframe-0.1.1/crates/molframe-core/src/structure/handle_tests.rs +94 -0
  603. molframe-0.1.1/crates/molframe-core/src/structure/materialize.rs +257 -0
  604. molframe-0.1.1/crates/molframe-core/src/structure/merge.rs +428 -0
  605. molframe-0.1.1/crates/molframe-core/src/structure/merge_annotations.rs +133 -0
  606. molframe-0.1.1/crates/molframe-core/src/structure/merge_tests.rs +115 -0
  607. molframe-0.1.1/crates/molframe-core/src/structure/mod.rs +36 -0
  608. molframe-0.1.1/crates/molframe-core/src/structure/overlay/helpers.rs +261 -0
  609. molframe-0.1.1/crates/molframe-core/src/structure/overlay.rs +210 -0
  610. molframe-0.1.1/crates/molframe-core/src/structure/overlay_tests.rs +294 -0
  611. molframe-0.1.1/crates/molframe-core/src/structure/sequence.rs +186 -0
  612. molframe-0.1.1/crates/molframe-core/src/structure/validate.rs +450 -0
  613. molframe-0.1.1/crates/molframe-core/src/structure/validate_tests.rs +164 -0
  614. molframe-0.1.1/crates/molframe-core/src/structure/view.rs +162 -0
  615. molframe-0.1.1/crates/molframe-core/src/structure/view_tests.rs +63 -0
  616. molframe-0.1.1/crates/molframe-core/src/symbol/altloc.rs +105 -0
  617. molframe-0.1.1/crates/molframe-core/src/symbol/altloc_tests.rs +26 -0
  618. molframe-0.1.1/crates/molframe-core/src/symbol/canonical.rs +172 -0
  619. molframe-0.1.1/crates/molframe-core/src/symbol/canonical_tests.rs +35 -0
  620. molframe-0.1.1/crates/molframe-core/src/symbol/interner.rs +490 -0
  621. molframe-0.1.1/crates/molframe-core/src/symbol/interner_tests.rs +104 -0
  622. molframe-0.1.1/crates/molframe-core/src/symbol/mod.rs +23 -0
  623. molframe-0.1.1/crates/molframe-core/src/topology/chain.rs +231 -0
  624. molframe-0.1.1/crates/molframe-core/src/topology/csr.rs +218 -0
  625. molframe-0.1.1/crates/molframe-core/src/topology/csr_tests.rs +114 -0
  626. molframe-0.1.1/crates/molframe-core/src/topology/entity.rs +193 -0
  627. molframe-0.1.1/crates/molframe-core/src/topology/hierarchy.rs +35 -0
  628. molframe-0.1.1/crates/molframe-core/src/topology/hierarchy_tests.rs +177 -0
  629. molframe-0.1.1/crates/molframe-core/src/topology/mod.rs +21 -0
  630. molframe-0.1.1/crates/molframe-core/src/topology/model.rs +78 -0
  631. molframe-0.1.1/crates/molframe-core/src/topology/residue.rs +207 -0
  632. molframe-0.1.1/crates/molframe-engine/Cargo.toml +41 -0
  633. molframe-0.1.1/crates/molframe-engine/LICENSE +21 -0
  634. molframe-0.1.1/crates/molframe-engine/src/compile.rs +330 -0
  635. molframe-0.1.1/crates/molframe-engine/src/graph.rs +437 -0
  636. molframe-0.1.1/crates/molframe-engine/src/lib.rs +22 -0
  637. molframe-0.1.1/crates/molframe-engine/src/runtime.rs +222 -0
  638. molframe-0.1.1/crates/molframe-engine/src/workflow_tests.rs +228 -0
  639. molframe-0.1.1/crates/molframe-fx/Cargo.toml +32 -0
  640. molframe-0.1.1/crates/molframe-fx/LICENSE +21 -0
  641. molframe-0.1.1/crates/molframe-fx/README.md +25 -0
  642. molframe-0.1.1/crates/molframe-fx/benches/fx.rs +35 -0
  643. molframe-0.1.1/crates/molframe-fx/src/alignment.rs +46 -0
  644. molframe-0.1.1/crates/molframe-fx/src/alignment_tests.rs +24 -0
  645. molframe-0.1.1/crates/molframe-fx/src/benchmark.rs +156 -0
  646. molframe-0.1.1/crates/molframe-fx/src/benchmark_tests.rs +55 -0
  647. molframe-0.1.1/crates/molframe-fx/src/config.rs +358 -0
  648. molframe-0.1.1/crates/molframe-fx/src/config_tests.rs +41 -0
  649. molframe-0.1.1/crates/molframe-fx/src/evaluation.rs +84 -0
  650. molframe-0.1.1/crates/molframe-fx/src/evaluation_tests.rs +68 -0
  651. molframe-0.1.1/crates/molframe-fx/src/lib.rs +36 -0
  652. molframe-0.1.1/crates/molframe-fx/src/mapping.rs +266 -0
  653. molframe-0.1.1/crates/molframe-fx/src/mapping_tests.rs +76 -0
  654. molframe-0.1.1/crates/molframe-fx/src/measurement.rs +408 -0
  655. molframe-0.1.1/crates/molframe-fx/src/measurement_tests.rs +95 -0
  656. molframe-0.1.1/crates/molframe-fx/src/numeric.rs +17 -0
  657. molframe-0.1.1/crates/molframe-fx/src/profile.rs +214 -0
  658. molframe-0.1.1/crates/molframe-fx/src/profile_tests.rs +74 -0
  659. molframe-0.1.1/crates/molframe-fx/src/specification.rs +301 -0
  660. molframe-0.1.1/crates/molframe-fx/src/specification_tests.rs +55 -0
  661. molframe-0.1.1/crates/molframe-fx/src/verdict.rs +152 -0
  662. molframe-0.1.1/crates/molframe-fx/src/verdict_tests.rs +43 -0
  663. molframe-0.1.1/crates/molframe-geom/Cargo.toml +25 -0
  664. molframe-0.1.1/crates/molframe-geom/LICENSE +21 -0
  665. molframe-0.1.1/crates/molframe-geom/README.md +23 -0
  666. molframe-0.1.1/crates/molframe-geom/benches/geom.rs +132 -0
  667. molframe-0.1.1/crates/molframe-geom/src/backbone/geometry.rs +194 -0
  668. molframe-0.1.1/crates/molframe-geom/src/backbone/geometry_tests.rs +43 -0
  669. molframe-0.1.1/crates/molframe-geom/src/backbone/mod.rs +3 -0
  670. molframe-0.1.1/crates/molframe-geom/src/batch_measure.rs +109 -0
  671. molframe-0.1.1/crates/molframe-geom/src/batch_measure_tests.rs +74 -0
  672. molframe-0.1.1/crates/molframe-geom/src/eigen/mod.rs +3 -0
  673. molframe-0.1.1/crates/molframe-geom/src/eigen/solver.rs +365 -0
  674. molframe-0.1.1/crates/molframe-geom/src/eigen/solver_tests.rs +145 -0
  675. molframe-0.1.1/crates/molframe-geom/src/fluctuation/mod.rs +3 -0
  676. molframe-0.1.1/crates/molframe-geom/src/fluctuation/rmsf.rs +95 -0
  677. molframe-0.1.1/crates/molframe-geom/src/fluctuation/rmsf_tests.rs +97 -0
  678. molframe-0.1.1/crates/molframe-geom/src/lib.rs +73 -0
  679. molframe-0.1.1/crates/molframe-geom/src/matrix/distance.rs +271 -0
  680. molframe-0.1.1/crates/molframe-geom/src/matrix/distance_tests.rs +85 -0
  681. molframe-0.1.1/crates/molframe-geom/src/matrix/mod.rs +3 -0
  682. molframe-0.1.1/crates/molframe-geom/src/measure.rs +228 -0
  683. molframe-0.1.1/crates/molframe-geom/src/measure_tests.rs +118 -0
  684. molframe-0.1.1/crates/molframe-geom/src/moments.rs +339 -0
  685. molframe-0.1.1/crates/molframe-geom/src/moments_tests.rs +134 -0
  686. molframe-0.1.1/crates/molframe-geom/src/numeric.rs +17 -0
  687. molframe-0.1.1/crates/molframe-geom/src/path/mod.rs +3 -0
  688. molframe-0.1.1/crates/molframe-geom/src/path/torsion.rs +23 -0
  689. molframe-0.1.1/crates/molframe-geom/src/path/torsion_tests.rs +18 -0
  690. molframe-0.1.1/crates/molframe-geom/src/periodic_angle.rs +218 -0
  691. molframe-0.1.1/crates/molframe-geom/src/periodic_angle_tests.rs +79 -0
  692. molframe-0.1.1/crates/molframe-geom/src/planar.rs +156 -0
  693. molframe-0.1.1/crates/molframe-geom/src/planar_tests.rs +69 -0
  694. molframe-0.1.1/crates/molframe-geom/src/polymer.rs +91 -0
  695. molframe-0.1.1/crates/molframe-geom/src/polymer_tests.rs +34 -0
  696. molframe-0.1.1/crates/molframe-geom/src/rotation/mod.rs +3 -0
  697. molframe-0.1.1/crates/molframe-geom/src/rotation/model.rs +409 -0
  698. molframe-0.1.1/crates/molframe-geom/src/rotation/model_tests.rs +70 -0
  699. molframe-0.1.1/crates/molframe-geom/src/simd.rs +356 -0
  700. molframe-0.1.1/crates/molframe-geom/src/simd_measure.rs +123 -0
  701. molframe-0.1.1/crates/molframe-geom/src/superpose/fit.rs +364 -0
  702. molframe-0.1.1/crates/molframe-geom/src/superpose/fit_statistics.rs +171 -0
  703. molframe-0.1.1/crates/molframe-geom/src/superpose/fit_statistics_tests.rs +179 -0
  704. molframe-0.1.1/crates/molframe-geom/src/superpose/fit_tests.rs +163 -0
  705. molframe-0.1.1/crates/molframe-geom/src/superpose/mod.rs +3 -0
  706. molframe-0.1.1/crates/molframe-geom/src/transform.rs +221 -0
  707. molframe-0.1.1/crates/molframe-geom/src/transform_tests.rs +82 -0
  708. molframe-0.1.1/crates/molframe-ic/Cargo.toml +26 -0
  709. molframe-0.1.1/crates/molframe-ic/LICENSE +21 -0
  710. molframe-0.1.1/crates/molframe-ic/README.md +25 -0
  711. molframe-0.1.1/crates/molframe-ic/benches/ic.rs +38 -0
  712. molframe-0.1.1/crates/molframe-ic/src/coordinates.rs +241 -0
  713. molframe-0.1.1/crates/molframe-ic/src/lib.rs +11 -0
  714. molframe-0.1.1/crates/molframe-ic/src/place.rs +54 -0
  715. molframe-0.1.1/crates/molframe-ic/src/place_tests.rs +46 -0
  716. molframe-0.1.1/crates/molframe-ic/src/structure.rs +107 -0
  717. molframe-0.1.1/crates/molframe-ic/src/structure_tests.rs +83 -0
  718. molframe-0.1.1/crates/molframe-interop/Cargo.toml +34 -0
  719. molframe-0.1.1/crates/molframe-interop/LICENSE +21 -0
  720. molframe-0.1.1/crates/molframe-interop/README.md +130 -0
  721. molframe-0.1.1/crates/molframe-interop/benches/interop.rs +70 -0
  722. molframe-0.1.1/crates/molframe-interop/src/columnar/atoms.rs +323 -0
  723. molframe-0.1.1/crates/molframe-interop/src/columnar/atoms_tests.rs +237 -0
  724. molframe-0.1.1/crates/molframe-interop/src/columnar/bond.rs +107 -0
  725. molframe-0.1.1/crates/molframe-interop/src/columnar/chain.rs +105 -0
  726. molframe-0.1.1/crates/molframe-interop/src/columnar/contact.rs +86 -0
  727. molframe-0.1.1/crates/molframe-interop/src/columnar/contact_tests.rs +28 -0
  728. molframe-0.1.1/crates/molframe-interop/src/columnar/extension.rs +116 -0
  729. molframe-0.1.1/crates/molframe-interop/src/columnar/extension_tests.rs +21 -0
  730. molframe-0.1.1/crates/molframe-interop/src/columnar/ipc.rs +44 -0
  731. molframe-0.1.1/crates/molframe-interop/src/columnar/mod.rs +35 -0
  732. molframe-0.1.1/crates/molframe-interop/src/columnar/owner.rs +71 -0
  733. molframe-0.1.1/crates/molframe-interop/src/columnar/parquet.rs +47 -0
  734. molframe-0.1.1/crates/molframe-interop/src/columnar/residue.rs +130 -0
  735. molframe-0.1.1/crates/molframe-interop/src/columnar/stream.rs +98 -0
  736. molframe-0.1.1/crates/molframe-interop/src/columnar/stream_tests.rs +149 -0
  737. molframe-0.1.1/crates/molframe-interop/src/columnar/table.rs +127 -0
  738. molframe-0.1.1/crates/molframe-interop/src/columnar/table_file.rs +51 -0
  739. molframe-0.1.1/crates/molframe-interop/src/columnar/table_file_tests.rs +99 -0
  740. molframe-0.1.1/crates/molframe-interop/src/columnar/table_tests.rs +58 -0
  741. molframe-0.1.1/crates/molframe-interop/src/dataset/filtering.rs +54 -0
  742. molframe-0.1.1/crates/molframe-interop/src/dataset/manifest.rs +333 -0
  743. molframe-0.1.1/crates/molframe-interop/src/dataset/manifest_tests.rs +41 -0
  744. molframe-0.1.1/crates/molframe-interop/src/dataset/mod.rs +9 -0
  745. molframe-0.1.1/crates/molframe-interop/src/dataset/splitting.rs +354 -0
  746. molframe-0.1.1/crates/molframe-interop/src/dataset/splitting_tests.rs +138 -0
  747. molframe-0.1.1/crates/molframe-interop/src/graph/build.rs +98 -0
  748. molframe-0.1.1/crates/molframe-interop/src/graph/edges.rs +269 -0
  749. molframe-0.1.1/crates/molframe-interop/src/graph/features.rs +257 -0
  750. molframe-0.1.1/crates/molframe-interop/src/graph/graph_tests.rs +104 -0
  751. molframe-0.1.1/crates/molframe-interop/src/graph/mod.rs +17 -0
  752. molframe-0.1.1/crates/molframe-interop/src/graph/model.rs +181 -0
  753. molframe-0.1.1/crates/molframe-interop/src/graph/nodes.rs +113 -0
  754. molframe-0.1.1/crates/molframe-interop/src/lib.rs +28 -0
  755. molframe-0.1.1/crates/molframe-interop/src/numeric.rs +62 -0
  756. molframe-0.1.1/crates/molframe-interop/src/tensor/dlpack.rs +210 -0
  757. molframe-0.1.1/crates/molframe-interop/src/tensor/dlpack_tests.rs +98 -0
  758. molframe-0.1.1/crates/molframe-interop/src/tensor/mod.rs +5 -0
  759. molframe-0.1.1/crates/molframe-mmap/Cargo.toml +23 -0
  760. molframe-0.1.1/crates/molframe-mmap/LICENSE +21 -0
  761. molframe-0.1.1/crates/molframe-mmap/README.md +25 -0
  762. molframe-0.1.1/crates/molframe-mmap/benches/snapshot.rs +38 -0
  763. molframe-0.1.1/crates/molframe-mmap/src/lib.rs +7 -0
  764. molframe-0.1.1/crates/molframe-mmap/src/mapped.rs +249 -0
  765. molframe-0.1.1/crates/molframe-mmap/src/mapped_tests.rs +217 -0
  766. molframe-0.1.1/crates/molframe-modelcif/Cargo.toml +26 -0
  767. molframe-0.1.1/crates/molframe-modelcif/LICENSE +21 -0
  768. molframe-0.1.1/crates/molframe-modelcif/README.md +26 -0
  769. molframe-0.1.1/crates/molframe-modelcif/benches/modelcif.rs +104 -0
  770. molframe-0.1.1/crates/molframe-modelcif/src/lib.rs +13 -0
  771. molframe-0.1.1/crates/molframe-modelcif/src/lower/mod.rs +6 -0
  772. molframe-0.1.1/crates/molframe-modelcif/src/lower/plddt.rs +112 -0
  773. molframe-0.1.1/crates/molframe-modelcif/src/lower/plddt_tests.rs +48 -0
  774. molframe-0.1.1/crates/molframe-modelcif/src/lower/project.rs +200 -0
  775. molframe-0.1.1/crates/molframe-modelcif/src/lower/project_tests.rs +123 -0
  776. molframe-0.1.1/crates/molframe-modelcif/src/model/category.rs +498 -0
  777. molframe-0.1.1/crates/molframe-modelcif/src/model/confidence.rs +396 -0
  778. molframe-0.1.1/crates/molframe-modelcif/src/model/error.rs +169 -0
  779. molframe-0.1.1/crates/molframe-modelcif/src/model/metadata.rs +127 -0
  780. molframe-0.1.1/crates/molframe-modelcif/src/model/mod.rs +17 -0
  781. molframe-0.1.1/crates/molframe-modelcif/src/model/packed.rs +112 -0
  782. molframe-0.1.1/crates/molframe-modelcif/src/model/schema.rs +45 -0
  783. molframe-0.1.1/crates/molframe-modelcif/src/model/view.rs +94 -0
  784. molframe-0.1.1/crates/molframe-modelcif/src/read/batch.rs +59 -0
  785. molframe-0.1.1/crates/molframe-modelcif/src/read/category.rs +306 -0
  786. molframe-0.1.1/crates/molframe-modelcif/src/read/column.rs +442 -0
  787. molframe-0.1.1/crates/molframe-modelcif/src/read/mod.rs +16 -0
  788. molframe-0.1.1/crates/molframe-modelcif/src/read/packed.rs +231 -0
  789. molframe-0.1.1/crates/molframe-modelcif/src/read/projection.rs +81 -0
  790. molframe-0.1.1/crates/molframe-modelcif/src/read/read_tests.rs +119 -0
  791. molframe-0.1.1/crates/molframe-modelcif/src/read/reader.rs +35 -0
  792. molframe-0.1.1/crates/molframe-modelcif/src/write/canonical.rs +110 -0
  793. molframe-0.1.1/crates/molframe-modelcif/src/write/canonical_tests.rs +36 -0
  794. molframe-0.1.1/crates/molframe-modelcif/src/write/mod.rs +5 -0
  795. molframe-0.1.1/crates/molframe-modelcif/tests/fixtures/modelcif_plddt.cif +46 -0
  796. molframe-0.1.1/crates/molframe-pdb/Cargo.toml +29 -0
  797. molframe-0.1.1/crates/molframe-pdb/LICENSE +21 -0
  798. molframe-0.1.1/crates/molframe-pdb/README.md +28 -0
  799. molframe-0.1.1/crates/molframe-pdb/benches/pdb.rs +74 -0
  800. molframe-0.1.1/crates/molframe-pdb/proptest-regressions/writer_tests.txt +7 -0
  801. molframe-0.1.1/crates/molframe-pdb/src/batch.rs +392 -0
  802. molframe-0.1.1/crates/molframe-pdb/src/batch_tests.rs +87 -0
  803. molframe-0.1.1/crates/molframe-pdb/src/fixed/fields.rs +67 -0
  804. molframe-0.1.1/crates/molframe-pdb/src/fixed/fields_tests.rs +44 -0
  805. molframe-0.1.1/crates/molframe-pdb/src/fixed/mod.rs +5 -0
  806. molframe-0.1.1/crates/molframe-pdb/src/header/mod.rs +5 -0
  807. molframe-0.1.1/crates/molframe-pdb/src/header/records.rs +142 -0
  808. molframe-0.1.1/crates/molframe-pdb/src/hybrid36/codec.rs +134 -0
  809. molframe-0.1.1/crates/molframe-pdb/src/hybrid36/codec_tests.rs +83 -0
  810. molframe-0.1.1/crates/molframe-pdb/src/hybrid36/mod.rs +10 -0
  811. molframe-0.1.1/crates/molframe-pdb/src/lib.rs +30 -0
  812. molframe-0.1.1/crates/molframe-pdb/src/mmtf/codec.rs +375 -0
  813. molframe-0.1.1/crates/molframe-pdb/src/mmtf/codec_tests.rs +100 -0
  814. molframe-0.1.1/crates/molframe-pdb/src/mmtf/mod.rs +17 -0
  815. molframe-0.1.1/crates/molframe-pdb/src/mmtf/model.rs +64 -0
  816. molframe-0.1.1/crates/molframe-pdb/src/mmtf/reader/base.rs +58 -0
  817. molframe-0.1.1/crates/molframe-pdb/src/mmtf/reader/bonds.rs +93 -0
  818. molframe-0.1.1/crates/molframe-pdb/src/mmtf/reader/ensemble.rs +90 -0
  819. molframe-0.1.1/crates/molframe-pdb/src/mmtf/reader/helpers.rs +416 -0
  820. molframe-0.1.1/crates/molframe-pdb/src/mmtf/reader/validation.rs +218 -0
  821. molframe-0.1.1/crates/molframe-pdb/src/mmtf/reader.rs +485 -0
  822. molframe-0.1.1/crates/molframe-pdb/src/mmtf/schema.rs +89 -0
  823. molframe-0.1.1/crates/molframe-pdb/src/mmtf/writer/helpers.rs +155 -0
  824. molframe-0.1.1/crates/molframe-pdb/src/mmtf/writer.rs +486 -0
  825. molframe-0.1.1/crates/molframe-pdb/src/mmtf/writer_tests.rs +232 -0
  826. molframe-0.1.1/crates/molframe-pdb/src/reader/ensemble.rs +146 -0
  827. molframe-0.1.1/crates/molframe-pdb/src/reader/ensemble_tests.rs +75 -0
  828. molframe-0.1.1/crates/molframe-pdb/src/reader/entry.rs +74 -0
  829. molframe-0.1.1/crates/molframe-pdb/src/reader/entry_tests.rs +480 -0
  830. molframe-0.1.1/crates/molframe-pdb/src/reader/lines.rs +61 -0
  831. molframe-0.1.1/crates/molframe-pdb/src/reader/mod.rs +18 -0
  832. molframe-0.1.1/crates/molframe-pdb/src/reader/state/connectivity.rs +68 -0
  833. molframe-0.1.1/crates/molframe-pdb/src/reader/state/finalize.rs +69 -0
  834. molframe-0.1.1/crates/molframe-pdb/src/reader/state/metadata.rs +68 -0
  835. molframe-0.1.1/crates/molframe-pdb/src/reader/state/models.rs +235 -0
  836. molframe-0.1.1/crates/molframe-pdb/src/reader/state/variants.rs +155 -0
  837. molframe-0.1.1/crates/molframe-pdb/src/reader/state.rs +448 -0
  838. molframe-0.1.1/crates/molframe-pdb/src/writer/identity.rs +57 -0
  839. molframe-0.1.1/crates/molframe-pdb/src/writer/mod.rs +9 -0
  840. molframe-0.1.1/crates/molframe-pdb/src/writer/pdb.rs +475 -0
  841. molframe-0.1.1/crates/molframe-pdb/src/writer/pdb_tests.rs +355 -0
  842. molframe-0.1.1/crates/molframe-pdb/src/writer/stream.rs +43 -0
  843. molframe-0.1.1/crates/molframe-pdb/src/writer/variants.rs +313 -0
  844. molframe-0.1.1/crates/molframe-pdb/src/writer/variants_tests.rs +70 -0
  845. molframe-0.1.1/crates/molframe-py/Cargo.toml +36 -0
  846. molframe-0.1.1/crates/molframe-py/README.md +26 -0
  847. molframe-0.1.1/crates/molframe-py/src/bindings/analysis.rs +161 -0
  848. molframe-0.1.1/crates/molframe-py/src/bindings.rs +404 -0
  849. molframe-0.1.1/crates/molframe-py/src/catalog.rs +84 -0
  850. molframe-0.1.1/crates/molframe-py/src/hierarchy.rs +344 -0
  851. molframe-0.1.1/crates/molframe-py/src/lib.rs +121 -0
  852. molframe-0.1.1/crates/molframe-py/src/module_tests.rs +38 -0
  853. molframe-0.1.1/crates/molframe-py/src/native_source.rs +421 -0
  854. molframe-0.1.1/crates/molframe-py/src/native_source_tests.rs +70 -0
  855. molframe-0.1.1/crates/molframe-py/src/selection_expr.rs +102 -0
  856. molframe-0.1.1/crates/molframe-py/src/workflow.rs +408 -0
  857. molframe-0.1.1/crates/molframe-py/tests/data/base_pair.cif +15 -0
  858. molframe-0.1.1/crates/molframe-py/tests/data/base_pair_chemistry.cif +40 -0
  859. molframe-0.1.1/crates/molframe-py/tests/data/basic.cif +26 -0
  860. molframe-0.1.1/crates/molframe-py/tests/data/basic.pdb +3 -0
  861. molframe-0.1.1/crates/molframe-py/tests/data/chemistry.cif +30 -0
  862. molframe-0.1.1/crates/molframe-py/tests/data/dataset.json +26 -0
  863. molframe-0.1.1/crates/molframe-py/tests/data/modelcif_plddt.cif +46 -0
  864. molframe-0.1.1/crates/molframe-query/Cargo.toml +33 -0
  865. molframe-0.1.1/crates/molframe-query/LICENSE +21 -0
  866. molframe-0.1.1/crates/molframe-query/README.md +28 -0
  867. molframe-0.1.1/crates/molframe-query/benches/query.rs +62 -0
  868. molframe-0.1.1/crates/molframe-query/src/api/builder.rs +258 -0
  869. molframe-0.1.1/crates/molframe-query/src/api/builder_tests.rs +30 -0
  870. molframe-0.1.1/crates/molframe-query/src/api/mod.rs +5 -0
  871. molframe-0.1.1/crates/molframe-query/src/execution/annotation.rs +126 -0
  872. molframe-0.1.1/crates/molframe-query/src/execution/annotation_tests.rs +21 -0
  873. molframe-0.1.1/crates/molframe-query/src/execution/connectivity.rs +264 -0
  874. molframe-0.1.1/crates/molframe-query/src/execution/connectivity_tests.rs +54 -0
  875. molframe-0.1.1/crates/molframe-query/src/execution/eval.rs +497 -0
  876. molframe-0.1.1/crates/molframe-query/src/execution/eval_query.rs +183 -0
  877. molframe-0.1.1/crates/molframe-query/src/execution/eval_tests.rs +459 -0
  878. molframe-0.1.1/crates/molframe-query/src/execution/fingerprint.rs +201 -0
  879. molframe-0.1.1/crates/molframe-query/src/execution/mod.rs +13 -0
  880. molframe-0.1.1/crates/molframe-query/src/execution/plan.rs +218 -0
  881. molframe-0.1.1/crates/molframe-query/src/execution/plan_tests.rs +52 -0
  882. molframe-0.1.1/crates/molframe-query/src/execution/spatial.rs +110 -0
  883. molframe-0.1.1/crates/molframe-query/src/language/ast.rs +294 -0
  884. molframe-0.1.1/crates/molframe-query/src/language/expand.rs +263 -0
  885. molframe-0.1.1/crates/molframe-query/src/language/glob.rs +238 -0
  886. molframe-0.1.1/crates/molframe-query/src/language/glob_tests.rs +19 -0
  887. molframe-0.1.1/crates/molframe-query/src/language/lexer.rs +195 -0
  888. molframe-0.1.1/crates/molframe-query/src/language/lexer_tests.rs +22 -0
  889. molframe-0.1.1/crates/molframe-query/src/language/macros.rs +186 -0
  890. molframe-0.1.1/crates/molframe-query/src/language/mod.rs +11 -0
  891. molframe-0.1.1/crates/molframe-query/src/language/model_pattern.rs +37 -0
  892. molframe-0.1.1/crates/molframe-query/src/language/parser.rs +484 -0
  893. molframe-0.1.1/crates/molframe-query/src/language/parser_cursor.rs +125 -0
  894. molframe-0.1.1/crates/molframe-query/src/language/parser_helpers.rs +83 -0
  895. molframe-0.1.1/crates/molframe-query/src/language/parser_tests.rs +106 -0
  896. molframe-0.1.1/crates/molframe-query/src/language/predicate.rs +261 -0
  897. molframe-0.1.1/crates/molframe-query/src/language/predicate_helpers.rs +163 -0
  898. molframe-0.1.1/crates/molframe-query/src/language/predicate_pattern.rs +475 -0
  899. molframe-0.1.1/crates/molframe-query/src/language/predicate_scan.rs +114 -0
  900. molframe-0.1.1/crates/molframe-query/src/language/predicate_tests.rs +23 -0
  901. molframe-0.1.1/crates/molframe-query/src/language/predicate_values.rs +114 -0
  902. molframe-0.1.1/crates/molframe-query/src/lib.rs +19 -0
  903. molframe-0.1.1/crates/molframe-seq/Cargo.toml +21 -0
  904. molframe-0.1.1/crates/molframe-seq/LICENSE +21 -0
  905. molframe-0.1.1/crates/molframe-seq/README.md +27 -0
  906. molframe-0.1.1/crates/molframe-seq/benches/seq.rs +128 -0
  907. molframe-0.1.1/crates/molframe-seq/data/ncbi_matrices.txt +2286 -0
  908. molframe-0.1.1/crates/molframe-seq/src/a2m/codec.rs +113 -0
  909. molframe-0.1.1/crates/molframe-seq/src/a2m/codec_tests.rs +20 -0
  910. molframe-0.1.1/crates/molframe-seq/src/a2m/mod.rs +5 -0
  911. molframe-0.1.1/crates/molframe-seq/src/a3m/codec.rs +54 -0
  912. molframe-0.1.1/crates/molframe-seq/src/a3m/codec_tests.rs +22 -0
  913. molframe-0.1.1/crates/molframe-seq/src/a3m/mod.rs +5 -0
  914. molframe-0.1.1/crates/molframe-seq/src/align/api.rs +251 -0
  915. molframe-0.1.1/crates/molframe-seq/src/align/dynamic.rs +366 -0
  916. molframe-0.1.1/crates/molframe-seq/src/align/dynamic_tests.rs +95 -0
  917. molframe-0.1.1/crates/molframe-seq/src/align/linear.rs +432 -0
  918. molframe-0.1.1/crates/molframe-seq/src/align/linear_tests.rs +103 -0
  919. molframe-0.1.1/crates/molframe-seq/src/align/mod.rs +14 -0
  920. molframe-0.1.1/crates/molframe-seq/src/align/small.rs +190 -0
  921. molframe-0.1.1/crates/molframe-seq/src/align/types.rs +122 -0
  922. molframe-0.1.1/crates/molframe-seq/src/align_tests.rs +187 -0
  923. molframe-0.1.1/crates/molframe-seq/src/alphabet/mod.rs +5 -0
  924. molframe-0.1.1/crates/molframe-seq/src/alphabet/types.rs +260 -0
  925. molframe-0.1.1/crates/molframe-seq/src/alphabet/types_tests.rs +51 -0
  926. molframe-0.1.1/crates/molframe-seq/src/clustal/codec.rs +58 -0
  927. molframe-0.1.1/crates/molframe-seq/src/clustal/codec_tests.rs +30 -0
  928. molframe-0.1.1/crates/molframe-seq/src/clustal/mod.rs +5 -0
  929. molframe-0.1.1/crates/molframe-seq/src/fasta/codec.rs +87 -0
  930. molframe-0.1.1/crates/molframe-seq/src/fasta/codec_tests.rs +40 -0
  931. molframe-0.1.1/crates/molframe-seq/src/fasta/mod.rs +5 -0
  932. molframe-0.1.1/crates/molframe-seq/src/fastq/codec.rs +203 -0
  933. molframe-0.1.1/crates/molframe-seq/src/fastq/codec_tests.rs +31 -0
  934. molframe-0.1.1/crates/molframe-seq/src/fastq/mod.rs +5 -0
  935. molframe-0.1.1/crates/molframe-seq/src/format/codec.rs +207 -0
  936. molframe-0.1.1/crates/molframe-seq/src/format/codec_tests.rs +40 -0
  937. molframe-0.1.1/crates/molframe-seq/src/format/mod.rs +7 -0
  938. molframe-0.1.1/crates/molframe-seq/src/format/types.rs +93 -0
  939. molframe-0.1.1/crates/molframe-seq/src/kmer/counts.rs +82 -0
  940. molframe-0.1.1/crates/molframe-seq/src/kmer/counts_tests.rs +67 -0
  941. molframe-0.1.1/crates/molframe-seq/src/kmer/mod.rs +11 -0
  942. molframe-0.1.1/crates/molframe-seq/src/kmer/similar.rs +159 -0
  943. molframe-0.1.1/crates/molframe-seq/src/kmer/similar_tests.rs +57 -0
  944. molframe-0.1.1/crates/molframe-seq/src/kmer/spaced.rs +72 -0
  945. molframe-0.1.1/crates/molframe-seq/src/kmer/spaced_tests.rs +15 -0
  946. molframe-0.1.1/crates/molframe-seq/src/kmer/table.rs +173 -0
  947. molframe-0.1.1/crates/molframe-seq/src/kmer/table_tests.rs +42 -0
  948. molframe-0.1.1/crates/molframe-seq/src/lib.rs +70 -0
  949. molframe-0.1.1/crates/molframe-seq/src/matrix/mod.rs +7 -0
  950. molframe-0.1.1/crates/molframe-seq/src/matrix/profiles.rs +184 -0
  951. molframe-0.1.1/crates/molframe-seq/src/matrix/profiles_tests.rs +57 -0
  952. molframe-0.1.1/crates/molframe-seq/src/matrix/table.rs +182 -0
  953. molframe-0.1.1/crates/molframe-seq/src/matrix/table_tests.rs +48 -0
  954. molframe-0.1.1/crates/molframe-seq/src/msa/algorithm.rs +169 -0
  955. molframe-0.1.1/crates/molframe-seq/src/msa/algorithm_tests.rs +140 -0
  956. molframe-0.1.1/crates/molframe-seq/src/msa/guide.rs +327 -0
  957. molframe-0.1.1/crates/molframe-seq/src/msa/guide_tests.rs +112 -0
  958. molframe-0.1.1/crates/molframe-seq/src/msa/mod.rs +9 -0
  959. molframe-0.1.1/crates/molframe-seq/src/msa/profile/memory.rs +85 -0
  960. molframe-0.1.1/crates/molframe-seq/src/msa/profile/workspace.rs +471 -0
  961. molframe-0.1.1/crates/molframe-seq/src/msa/profile/workspace_tests.rs +88 -0
  962. molframe-0.1.1/crates/molframe-seq/src/msa/profile.rs +112 -0
  963. molframe-0.1.1/crates/molframe-seq/src/msa/types.rs +101 -0
  964. molframe-0.1.1/crates/molframe-seq/src/nj/algorithm.rs +135 -0
  965. molframe-0.1.1/crates/molframe-seq/src/nj/algorithm_tests.rs +31 -0
  966. molframe-0.1.1/crates/molframe-seq/src/nj/mod.rs +5 -0
  967. molframe-0.1.1/crates/molframe-seq/src/phylip/codec.rs +61 -0
  968. molframe-0.1.1/crates/molframe-seq/src/phylip/codec_tests.rs +17 -0
  969. molframe-0.1.1/crates/molframe-seq/src/phylip/mod.rs +5 -0
  970. molframe-0.1.1/crates/molframe-seq/src/scoring/mod.rs +5 -0
  971. molframe-0.1.1/crates/molframe-seq/src/scoring/model.rs +65 -0
  972. molframe-0.1.1/crates/molframe-seq/src/scoring/model_tests.rs +13 -0
  973. molframe-0.1.1/crates/molframe-seq/src/seed/mod.rs +5 -0
  974. molframe-0.1.1/crates/molframe-seq/src/seed/search.rs +45 -0
  975. molframe-0.1.1/crates/molframe-seq/src/seed/search_tests.rs +20 -0
  976. molframe-0.1.1/crates/molframe-seq/src/stockholm/codec.rs +60 -0
  977. molframe-0.1.1/crates/molframe-seq/src/stockholm/codec_tests.rs +35 -0
  978. molframe-0.1.1/crates/molframe-seq/src/stockholm/mod.rs +5 -0
  979. molframe-0.1.1/crates/molframe-seq/src/tree/mod.rs +5 -0
  980. molframe-0.1.1/crates/molframe-seq/src/tree/model.rs +429 -0
  981. molframe-0.1.1/crates/molframe-seq/src/tree/model_tests.rs +115 -0
  982. molframe-0.1.1/crates/molframe-seq/src/upgma/algorithm.rs +106 -0
  983. molframe-0.1.1/crates/molframe-seq/src/upgma/algorithm_tests.rs +36 -0
  984. molframe-0.1.1/crates/molframe-seq/src/upgma/mod.rs +5 -0
  985. molframe-0.1.1/crates/molframe-spatial/Cargo.toml +29 -0
  986. molframe-0.1.1/crates/molframe-spatial/LICENSE +21 -0
  987. molframe-0.1.1/crates/molframe-spatial/README.md +28 -0
  988. molframe-0.1.1/crates/molframe-spatial/benches/spatial.rs +261 -0
  989. molframe-0.1.1/crates/molframe-spatial/proptest-regressions/queries/search_tests.txt +7 -0
  990. molframe-0.1.1/crates/molframe-spatial/src/backends/brute.rs +315 -0
  991. molframe-0.1.1/crates/molframe-spatial/src/backends/brute_simd.rs +183 -0
  992. molframe-0.1.1/crates/molframe-spatial/src/backends/brute_tests.rs +55 -0
  993. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/budget.rs +87 -0
  994. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/budget_tests.rs +35 -0
  995. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/geometry.rs +86 -0
  996. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/owned.rs +68 -0
  997. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/periodic.rs +367 -0
  998. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/unique.rs +358 -0
  999. molframe-0.1.1/crates/molframe-spatial/src/backends/cell/visit.rs +62 -0
  1000. molframe-0.1.1/crates/molframe-spatial/src/backends/cell.rs +455 -0
  1001. molframe-0.1.1/crates/molframe-spatial/src/backends/cell_tests.rs +55 -0
  1002. molframe-0.1.1/crates/molframe-spatial/src/backends/kd.rs +493 -0
  1003. molframe-0.1.1/crates/molframe-spatial/src/backends/kd_periodic.rs +50 -0
  1004. molframe-0.1.1/crates/molframe-spatial/src/backends/kd_stream.rs +110 -0
  1005. molframe-0.1.1/crates/molframe-spatial/src/backends/kd_stream_tests.rs +91 -0
  1006. molframe-0.1.1/crates/molframe-spatial/src/backends/kd_tests.rs +93 -0
  1007. molframe-0.1.1/crates/molframe-spatial/src/backends/mod.rs +11 -0
  1008. molframe-0.1.1/crates/molframe-spatial/src/backends/neighbor.rs +248 -0
  1009. molframe-0.1.1/crates/molframe-spatial/src/backends/neighbor_tests.rs +55 -0
  1010. molframe-0.1.1/crates/molframe-spatial/src/geometry/mod.rs +6 -0
  1011. molframe-0.1.1/crates/molframe-spatial/src/geometry/numeric.rs +61 -0
  1012. molframe-0.1.1/crates/molframe-spatial/src/geometry/periodic.rs +414 -0
  1013. molframe-0.1.1/crates/molframe-spatial/src/geometry/periodic_tests.rs +77 -0
  1014. molframe-0.1.1/crates/molframe-spatial/src/lib.rs +25 -0
  1015. molframe-0.1.1/crates/molframe-spatial/src/model/mod.rs +5 -0
  1016. molframe-0.1.1/crates/molframe-spatial/src/model/types.rs +181 -0
  1017. molframe-0.1.1/crates/molframe-spatial/src/model/types_tests.rs +14 -0
  1018. molframe-0.1.1/crates/molframe-spatial/src/planning/mod.rs +10 -0
  1019. molframe-0.1.1/crates/molframe-spatial/src/planning/options.rs +345 -0
  1020. molframe-0.1.1/crates/molframe-spatial/src/planning/options_tests.rs +50 -0
  1021. molframe-0.1.1/crates/molframe-spatial/src/planning/resolver.rs +467 -0
  1022. molframe-0.1.1/crates/molframe-spatial/src/planning/resolver_dispatch.rs +67 -0
  1023. molframe-0.1.1/crates/molframe-spatial/src/planning/resolver_helpers.rs +224 -0
  1024. molframe-0.1.1/crates/molframe-spatial/src/planning/resolver_tests.rs +351 -0
  1025. molframe-0.1.1/crates/molframe-spatial/src/planning/resolver_visit.rs +84 -0
  1026. molframe-0.1.1/crates/molframe-spatial/src/queries/count.rs +89 -0
  1027. molframe-0.1.1/crates/molframe-spatial/src/queries/count_tests.rs +77 -0
  1028. molframe-0.1.1/crates/molframe-spatial/src/queries/indices.rs +63 -0
  1029. molframe-0.1.1/crates/molframe-spatial/src/queries/indices_tests.rs +64 -0
  1030. molframe-0.1.1/crates/molframe-spatial/src/queries/mod.rs +17 -0
  1031. molframe-0.1.1/crates/molframe-spatial/src/queries/reduce.rs +170 -0
  1032. molframe-0.1.1/crates/molframe-spatial/src/queries/reduce_tests.rs +136 -0
  1033. molframe-0.1.1/crates/molframe-spatial/src/queries/search.rs +362 -0
  1034. molframe-0.1.1/crates/molframe-spatial/src/queries/search_tests.rs +445 -0
  1035. molframe-0.1.1/crates/molframe-spatial/src/queries/visit.rs +161 -0
  1036. molframe-0.1.1/crates/molframe-spatial/src/queries/within.rs +135 -0
  1037. molframe-0.1.1/crates/molframe-surface/Cargo.toml +27 -0
  1038. molframe-0.1.1/crates/molframe-surface/LICENSE +21 -0
  1039. molframe-0.1.1/crates/molframe-surface/README.md +26 -0
  1040. molframe-0.1.1/crates/molframe-surface/benches/surface.rs +178 -0
  1041. molframe-0.1.1/crates/molframe-surface/src/buried.rs +245 -0
  1042. molframe-0.1.1/crates/molframe-surface/src/buried_tests.rs +103 -0
  1043. molframe-0.1.1/crates/molframe-surface/src/cavity.rs +325 -0
  1044. molframe-0.1.1/crates/molframe-surface/src/cavity_flood.rs +242 -0
  1045. molframe-0.1.1/crates/molframe-surface/src/cavity_geometry.rs +44 -0
  1046. molframe-0.1.1/crates/molframe-surface/src/cavity_tests.rs +162 -0
  1047. molframe-0.1.1/crates/molframe-surface/src/collect.rs +58 -0
  1048. molframe-0.1.1/crates/molframe-surface/src/components.rs +203 -0
  1049. molframe-0.1.1/crates/molframe-surface/src/components_tests.rs +55 -0
  1050. molframe-0.1.1/crates/molframe-surface/src/curvature.rs +233 -0
  1051. molframe-0.1.1/crates/molframe-surface/src/curvature_tests.rs +53 -0
  1052. molframe-0.1.1/crates/molframe-surface/src/depth.rs +353 -0
  1053. molframe-0.1.1/crates/molframe-surface/src/depth_tests.rs +34 -0
  1054. molframe-0.1.1/crates/molframe-surface/src/geodesic.rs +169 -0
  1055. molframe-0.1.1/crates/molframe-surface/src/geodesic_tests.rs +26 -0
  1056. molframe-0.1.1/crates/molframe-surface/src/governed.rs +109 -0
  1057. molframe-0.1.1/crates/molframe-surface/src/grid_options.rs +44 -0
  1058. molframe-0.1.1/crates/molframe-surface/src/io.rs +39 -0
  1059. molframe-0.1.1/crates/molframe-surface/src/io_tests.rs +24 -0
  1060. molframe-0.1.1/crates/molframe-surface/src/lee_richards.rs +320 -0
  1061. molframe-0.1.1/crates/molframe-surface/src/lee_richards_tests.rs +108 -0
  1062. molframe-0.1.1/crates/molframe-surface/src/lib.rs +70 -0
  1063. molframe-0.1.1/crates/molframe-surface/src/mesh.rs +275 -0
  1064. molframe-0.1.1/crates/molframe-surface/src/mesh_tests.rs +38 -0
  1065. molframe-0.1.1/crates/molframe-surface/src/neighbourhood.rs +334 -0
  1066. molframe-0.1.1/crates/molframe-surface/src/numeric.rs +65 -0
  1067. molframe-0.1.1/crates/molframe-surface/src/sampling_plan.rs +82 -0
  1068. molframe-0.1.1/crates/molframe-surface/src/sasa/contact.rs +166 -0
  1069. molframe-0.1.1/crates/molframe-surface/src/sasa.rs +449 -0
  1070. molframe-0.1.1/crates/molframe-surface/src/sasa_tests.rs +200 -0
  1071. molframe-0.1.1/crates/molframe-surface/src/ses.rs +158 -0
  1072. molframe-0.1.1/crates/molframe-surface/src/ses_distance.rs +155 -0
  1073. molframe-0.1.1/crates/molframe-surface/src/ses_distance_tests.rs +64 -0
  1074. molframe-0.1.1/crates/molframe-surface/src/ses_mesh.rs +409 -0
  1075. molframe-0.1.1/crates/molframe-surface/src/ses_tests.rs +60 -0
  1076. molframe-0.1.1/crates/molframe-surface/src/sphere.rs +64 -0
  1077. molframe-0.1.1/crates/molframe-surface/src/sphere_tests.rs +37 -0
  1078. molframe-0.1.1/crates/molframe-surface/src/stream.rs +228 -0
  1079. molframe-0.1.1/crates/molframe-surface/src/stream_tests.rs +222 -0
  1080. molframe-0.1.1/crates/molframe-surface/src/workspace.rs +144 -0
  1081. molframe-0.1.1/crates/molframe-surface/src/workspace_tests.rs +60 -0
  1082. molframe-0.1.1/crates/molframe-traj/Cargo.toml +40 -0
  1083. molframe-0.1.1/crates/molframe-traj/LICENSE +21 -0
  1084. molframe-0.1.1/crates/molframe-traj/README.md +29 -0
  1085. molframe-0.1.1/crates/molframe-traj/benches/traj/decode.rs +73 -0
  1086. molframe-0.1.1/crates/molframe-traj/benches/traj/main.rs +470 -0
  1087. molframe-0.1.1/crates/molframe-traj/src/aims.rs +210 -0
  1088. molframe-0.1.1/crates/molframe-traj/src/aims_tests.rs +38 -0
  1089. molframe-0.1.1/crates/molframe-traj/src/amber.rs +261 -0
  1090. molframe-0.1.1/crates/molframe-traj/src/amber_netcdf/amber_netcdf_tests.rs +166 -0
  1091. molframe-0.1.1/crates/molframe-traj/src/amber_netcdf/error.rs +52 -0
  1092. molframe-0.1.1/crates/molframe-traj/src/amber_netcdf/mod.rs +16 -0
  1093. molframe-0.1.1/crates/molframe-traj/src/amber_netcdf/read.rs +300 -0
  1094. molframe-0.1.1/crates/molframe-traj/src/amber_netcdf/schema.rs +90 -0
  1095. molframe-0.1.1/crates/molframe-traj/src/amber_netcdf/write.rs +372 -0
  1096. molframe-0.1.1/crates/molframe-traj/src/amber_restart/mod.rs +7 -0
  1097. molframe-0.1.1/crates/molframe-traj/src/amber_restart/model.rs +14 -0
  1098. molframe-0.1.1/crates/molframe-traj/src/amber_restart/write.rs +131 -0
  1099. molframe-0.1.1/crates/molframe-traj/src/amber_tests.rs +110 -0
  1100. molframe-0.1.1/crates/molframe-traj/src/amber_topology.rs +497 -0
  1101. molframe-0.1.1/crates/molframe-traj/src/amber_topology_tests.rs +53 -0
  1102. molframe-0.1.1/crates/molframe-traj/src/analysis.rs +116 -0
  1103. molframe-0.1.1/crates/molframe-traj/src/analysis_tests.rs +119 -0
  1104. molframe-0.1.1/crates/molframe-traj/src/batch.rs +242 -0
  1105. molframe-0.1.1/crates/molframe-traj/src/batch_tests.rs +202 -0
  1106. molframe-0.1.1/crates/molframe-traj/src/cell.rs +63 -0
  1107. molframe-0.1.1/crates/molframe-traj/src/charmm.rs +308 -0
  1108. molframe-0.1.1/crates/molframe-traj/src/charmm_tests.rs +31 -0
  1109. molframe-0.1.1/crates/molframe-traj/src/clustering/agglomerative.rs +126 -0
  1110. molframe-0.1.1/crates/molframe-traj/src/clustering/dbscan.rs +81 -0
  1111. molframe-0.1.1/crates/molframe-traj/src/clustering/helpers.rs +462 -0
  1112. molframe-0.1.1/crates/molframe-traj/src/clustering/medoid.rs +12 -0
  1113. molframe-0.1.1/crates/molframe-traj/src/clustering/types.rs +173 -0
  1114. molframe-0.1.1/crates/molframe-traj/src/clustering.rs +16 -0
  1115. molframe-0.1.1/crates/molframe-traj/src/clustering_tests.rs +31 -0
  1116. molframe-0.1.1/crates/molframe-traj/src/dcd/reader.rs +490 -0
  1117. molframe-0.1.1/crates/molframe-traj/src/dcd/reader_support.rs +128 -0
  1118. molframe-0.1.1/crates/molframe-traj/src/dcd/reader_tests.rs +190 -0
  1119. molframe-0.1.1/crates/molframe-traj/src/dcd.rs +444 -0
  1120. molframe-0.1.1/crates/molframe-traj/src/dcd_tests.rs +129 -0
  1121. molframe-0.1.1/crates/molframe-traj/src/dcd_write.rs +156 -0
  1122. molframe-0.1.1/crates/molframe-traj/src/dielectric.rs +85 -0
  1123. molframe-0.1.1/crates/molframe-traj/src/dielectric_tests.rs +33 -0
  1124. molframe-0.1.1/crates/molframe-traj/src/diffusion.rs +116 -0
  1125. molframe-0.1.1/crates/molframe-traj/src/diffusion_tests.rs +26 -0
  1126. molframe-0.1.1/crates/molframe-traj/src/dispatch/accounted.rs +106 -0
  1127. molframe-0.1.1/crates/molframe-traj/src/dispatch/accounted_tests.rs +101 -0
  1128. molframe-0.1.1/crates/molframe-traj/src/dispatch/dispatch_tests.rs +493 -0
  1129. molframe-0.1.1/crates/molframe-traj/src/dispatch/error.rs +101 -0
  1130. molframe-0.1.1/crates/molframe-traj/src/dispatch/mod.rs +22 -0
  1131. molframe-0.1.1/crates/molframe-traj/src/dispatch/model.rs +372 -0
  1132. molframe-0.1.1/crates/molframe-traj/src/dispatch/read/binary.rs +101 -0
  1133. molframe-0.1.1/crates/molframe-traj/src/dispatch/read/mod.rs +211 -0
  1134. molframe-0.1.1/crates/molframe-traj/src/dispatch/read/text.rs +222 -0
  1135. molframe-0.1.1/crates/molframe-traj/src/dispatch/stream.rs +69 -0
  1136. molframe-0.1.1/crates/molframe-traj/src/dispatch/write.rs +490 -0
  1137. molframe-0.1.1/crates/molframe-traj/src/dlpoly.rs +363 -0
  1138. molframe-0.1.1/crates/molframe-traj/src/dlpoly_tests.rs +54 -0
  1139. molframe-0.1.1/crates/molframe-traj/src/dlpoly_write.rs +150 -0
  1140. molframe-0.1.1/crates/molframe-traj/src/dms/dms_tests.rs +204 -0
  1141. molframe-0.1.1/crates/molframe-traj/src/dms/error.rs +64 -0
  1142. molframe-0.1.1/crates/molframe-traj/src/dms/mod.rs +16 -0
  1143. molframe-0.1.1/crates/molframe-traj/src/dms/model.rs +100 -0
  1144. molframe-0.1.1/crates/molframe-traj/src/dms/reader.rs +231 -0
  1145. molframe-0.1.1/crates/molframe-traj/src/dms/schema.rs +194 -0
  1146. molframe-0.1.1/crates/molframe-traj/src/dms/writer.rs +259 -0
  1147. molframe-0.1.1/crates/molframe-traj/src/ensemble.rs +326 -0
  1148. molframe-0.1.1/crates/molframe-traj/src/ensemble_similarity.rs +219 -0
  1149. molframe-0.1.1/crates/molframe-traj/src/ensemble_similarity_tests.rs +44 -0
  1150. molframe-0.1.1/crates/molframe-traj/src/ensemble_statistics.rs +219 -0
  1151. molframe-0.1.1/crates/molframe-traj/src/ensemble_statistics_tests.rs +55 -0
  1152. molframe-0.1.1/crates/molframe-traj/src/ensemble_tests.rs +103 -0
  1153. molframe-0.1.1/crates/molframe-traj/src/frame_view.rs +142 -0
  1154. molframe-0.1.1/crates/molframe-traj/src/frame_view_tests.rs +34 -0
  1155. molframe-0.1.1/crates/molframe-traj/src/gamess.rs +372 -0
  1156. molframe-0.1.1/crates/molframe-traj/src/gamess_tests.rs +43 -0
  1157. molframe-0.1.1/crates/molframe-traj/src/governed/dimensionality.rs +139 -0
  1158. molframe-0.1.1/crates/molframe-traj/src/governed/ensemble.rs +459 -0
  1159. molframe-0.1.1/crates/molframe-traj/src/governed/ensemble_tests.rs +85 -0
  1160. molframe-0.1.1/crates/molframe-traj/src/governed/kmeans.rs +71 -0
  1161. molframe-0.1.1/crates/molframe-traj/src/governed/kmeans_tests.rs +22 -0
  1162. molframe-0.1.1/crates/molframe-traj/src/governed/mod.rs +19 -0
  1163. molframe-0.1.1/crates/molframe-traj/src/gro.rs +222 -0
  1164. molframe-0.1.1/crates/molframe-traj/src/gro_tests.rs +53 -0
  1165. molframe-0.1.1/crates/molframe-traj/src/gromacs_itp.rs +291 -0
  1166. molframe-0.1.1/crates/molframe-traj/src/gromacs_itp_tests.rs +46 -0
  1167. molframe-0.1.1/crates/molframe-traj/src/gsd.rs +254 -0
  1168. molframe-0.1.1/crates/molframe-traj/src/gsd_tests.rs +34 -0
  1169. molframe-0.1.1/crates/molframe-traj/src/h5md/error.rs +52 -0
  1170. molframe-0.1.1/crates/molframe-traj/src/h5md/h5md_tests.rs +173 -0
  1171. molframe-0.1.1/crates/molframe-traj/src/h5md/mod.rs +19 -0
  1172. molframe-0.1.1/crates/molframe-traj/src/h5md/options.rs +107 -0
  1173. molframe-0.1.1/crates/molframe-traj/src/h5md/read.rs +486 -0
  1174. molframe-0.1.1/crates/molframe-traj/src/h5md/schema.rs +37 -0
  1175. molframe-0.1.1/crates/molframe-traj/src/h5md/write.rs +347 -0
  1176. molframe-0.1.1/crates/molframe-traj/src/hoomd_xml.rs +330 -0
  1177. molframe-0.1.1/crates/molframe-traj/src/hoomd_xml_tests.rs +52 -0
  1178. molframe-0.1.1/crates/molframe-traj/src/imd/client.rs +195 -0
  1179. molframe-0.1.1/crates/molframe-traj/src/imd/error.rs +30 -0
  1180. molframe-0.1.1/crates/molframe-traj/src/imd/imd_tests.rs +278 -0
  1181. molframe-0.1.1/crates/molframe-traj/src/imd/mod.rs +16 -0
  1182. molframe-0.1.1/crates/molframe-traj/src/imd/model.rs +110 -0
  1183. molframe-0.1.1/crates/molframe-traj/src/imd/wire.rs +270 -0
  1184. molframe-0.1.1/crates/molframe-traj/src/interpolation.rs +125 -0
  1185. molframe-0.1.1/crates/molframe-traj/src/interpolation_tests.rs +60 -0
  1186. molframe-0.1.1/crates/molframe-traj/src/kmeans.rs +282 -0
  1187. molframe-0.1.1/crates/molframe-traj/src/kmeans_tests.rs +60 -0
  1188. molframe-0.1.1/crates/molframe-traj/src/lammps.rs +339 -0
  1189. molframe-0.1.1/crates/molframe-traj/src/lammps_data.rs +431 -0
  1190. molframe-0.1.1/crates/molframe-traj/src/lammps_data_tests.rs +43 -0
  1191. molframe-0.1.1/crates/molframe-traj/src/lammps_tests.rs +85 -0
  1192. molframe-0.1.1/crates/molframe-traj/src/lib.rs +321 -0
  1193. molframe-0.1.1/crates/molframe-traj/src/minimal.rs +43 -0
  1194. molframe-0.1.1/crates/molframe-traj/src/minimal_tests.rs +19 -0
  1195. molframe-0.1.1/crates/molframe-traj/src/msd.rs +165 -0
  1196. molframe-0.1.1/crates/molframe-traj/src/msd_tests.rs +44 -0
  1197. molframe-0.1.1/crates/molframe-traj/src/namd.rs +135 -0
  1198. molframe-0.1.1/crates/molframe-traj/src/namd_tests.rs +37 -0
  1199. molframe-0.1.1/crates/molframe-traj/src/neighbors.rs +109 -0
  1200. molframe-0.1.1/crates/molframe-traj/src/neighbors_tests.rs +52 -0
  1201. molframe-0.1.1/crates/molframe-traj/src/numeric.rs +34 -0
  1202. molframe-0.1.1/crates/molframe-traj/src/path_similarity.rs +175 -0
  1203. molframe-0.1.1/crates/molframe-traj/src/path_similarity_tests.rs +278 -0
  1204. molframe-0.1.1/crates/molframe-traj/src/pca.rs +461 -0
  1205. molframe-0.1.1/crates/molframe-traj/src/pca_tests.rs +144 -0
  1206. molframe-0.1.1/crates/molframe-traj/src/periodic_transform.rs +172 -0
  1207. molframe-0.1.1/crates/molframe-traj/src/periodic_transform_tests.rs +41 -0
  1208. molframe-0.1.1/crates/molframe-traj/src/psf.rs +253 -0
  1209. molframe-0.1.1/crates/molframe-traj/src/psf_tests.rs +27 -0
  1210. molframe-0.1.1/crates/molframe-traj/src/reader.rs +483 -0
  1211. molframe-0.1.1/crates/molframe-traj/src/reader_tests.rs +115 -0
  1212. molframe-0.1.1/crates/molframe-traj/src/selection.rs +128 -0
  1213. molframe-0.1.1/crates/molframe-traj/src/selection_tests.rs +78 -0
  1214. molframe-0.1.1/crates/molframe-traj/src/stream_consume.rs +92 -0
  1215. molframe-0.1.1/crates/molframe-traj/src/stream_consume_tests.rs +54 -0
  1216. molframe-0.1.1/crates/molframe-traj/src/stream_contacts.rs +47 -0
  1217. molframe-0.1.1/crates/molframe-traj/src/stream_contacts_tests.rs +73 -0
  1218. molframe-0.1.1/crates/molframe-traj/src/stream_metrics.rs +118 -0
  1219. molframe-0.1.1/crates/molframe-traj/src/stream_metrics_tests.rs +27 -0
  1220. molframe-0.1.1/crates/molframe-traj/src/tng/error.rs +39 -0
  1221. molframe-0.1.1/crates/molframe-traj/src/tng/mod.rs +15 -0
  1222. molframe-0.1.1/crates/molframe-traj/src/tng/model.rs +54 -0
  1223. molframe-0.1.1/crates/molframe-traj/src/tng/reader.rs +242 -0
  1224. molframe-0.1.1/crates/molframe-traj/src/tng/tng_tests.rs +109 -0
  1225. molframe-0.1.1/crates/molframe-traj/src/tng/writer.rs +333 -0
  1226. molframe-0.1.1/crates/molframe-traj/src/tpr/constants.rs +162 -0
  1227. molframe-0.1.1/crates/molframe-traj/src/tpr/error.rs +61 -0
  1228. molframe-0.1.1/crates/molframe-traj/src/tpr/mod.rs +17 -0
  1229. molframe-0.1.1/crates/molframe-traj/src/tpr/model.rs +74 -0
  1230. molframe-0.1.1/crates/molframe-traj/src/tpr/parameters.rs +119 -0
  1231. molframe-0.1.1/crates/molframe-traj/src/tpr/parser.rs +141 -0
  1232. molframe-0.1.1/crates/molframe-traj/src/tpr/topology.rs +424 -0
  1233. molframe-0.1.1/crates/molframe-traj/src/tpr/tpr_tests.rs +164 -0
  1234. molframe-0.1.1/crates/molframe-traj/src/tpr/xdr.rs +142 -0
  1235. molframe-0.1.1/crates/molframe-traj/src/trajectory.rs +158 -0
  1236. molframe-0.1.1/crates/molframe-traj/src/trajectory_tests.rs +52 -0
  1237. molframe-0.1.1/crates/molframe-traj/src/transform.rs +213 -0
  1238. molframe-0.1.1/crates/molframe-traj/src/transform_tests.rs +43 -0
  1239. molframe-0.1.1/crates/molframe-traj/src/trc.rs +350 -0
  1240. molframe-0.1.1/crates/molframe-traj/src/trc_tests.rs +39 -0
  1241. molframe-0.1.1/crates/molframe-traj/src/trr.rs +368 -0
  1242. molframe-0.1.1/crates/molframe-traj/src/trr_reader.rs +331 -0
  1243. molframe-0.1.1/crates/molframe-traj/src/trr_reader_tests.rs +61 -0
  1244. molframe-0.1.1/crates/molframe-traj/src/trr_tests.rs +85 -0
  1245. molframe-0.1.1/crates/molframe-traj/src/trr_write.rs +191 -0
  1246. molframe-0.1.1/crates/molframe-traj/src/trz.rs +274 -0
  1247. molframe-0.1.1/crates/molframe-traj/src/trz_tests.rs +36 -0
  1248. molframe-0.1.1/crates/molframe-traj/src/trz_write.rs +191 -0
  1249. molframe-0.1.1/crates/molframe-traj/src/txyz.rs +170 -0
  1250. molframe-0.1.1/crates/molframe-traj/src/txyz_tests.rs +31 -0
  1251. molframe-0.1.1/crates/molframe-traj/src/water_dynamics.rs +153 -0
  1252. molframe-0.1.1/crates/molframe-traj/src/water_dynamics_tests.rs +33 -0
  1253. molframe-0.1.1/crates/molframe-traj/src/xtc/reader.rs +434 -0
  1254. molframe-0.1.1/crates/molframe-traj/src/xtc/reader_support.rs +112 -0
  1255. molframe-0.1.1/crates/molframe-traj/src/xtc/reader_tests.rs +149 -0
  1256. molframe-0.1.1/crates/molframe-traj/src/xtc/reader_trait.rs +79 -0
  1257. molframe-0.1.1/crates/molframe-traj/src/xtc.rs +269 -0
  1258. molframe-0.1.1/crates/molframe-traj/src/xtc_tests.rs +55 -0
  1259. molframe-0.1.1/crates/molframe-traj/src/xvg.rs +257 -0
  1260. molframe-0.1.1/crates/molframe-traj/src/xvg_tests.rs +113 -0
  1261. molframe-0.1.1/crates/molframe-traj/src/xyz.rs +102 -0
  1262. molframe-0.1.1/crates/molframe-traj/src/xyz_tests.rs +51 -0
  1263. molframe-0.1.1/crates/molframe-validate/Cargo.toml +31 -0
  1264. molframe-0.1.1/crates/molframe-validate/LICENSE +21 -0
  1265. molframe-0.1.1/crates/molframe-validate/README.md +27 -0
  1266. molframe-0.1.1/crates/molframe-validate/benches/validate.rs +242 -0
  1267. molframe-0.1.1/crates/molframe-validate/src/backbone.rs +74 -0
  1268. molframe-0.1.1/crates/molframe-validate/src/bfactor/distribution.rs +121 -0
  1269. molframe-0.1.1/crates/molframe-validate/src/bfactor/mod.rs +11 -0
  1270. molframe-0.1.1/crates/molframe-validate/src/bfactor/tls.rs +152 -0
  1271. molframe-0.1.1/crates/molframe-validate/src/bfactor_tests.rs +60 -0
  1272. molframe-0.1.1/crates/molframe-validate/src/bond_length.rs +79 -0
  1273. molframe-0.1.1/crates/molframe-validate/src/bond_length_tests.rs +60 -0
  1274. molframe-0.1.1/crates/molframe-validate/src/ccd_completeness.rs +152 -0
  1275. molframe-0.1.1/crates/molframe-validate/src/chirality.rs +283 -0
  1276. molframe-0.1.1/crates/molframe-validate/src/chirality_tests.rs +135 -0
  1277. molframe-0.1.1/crates/molframe-validate/src/clash.rs +219 -0
  1278. molframe-0.1.1/crates/molframe-validate/src/clash_tests.rs +149 -0
  1279. molframe-0.1.1/crates/molframe-validate/src/completeness.rs +89 -0
  1280. molframe-0.1.1/crates/molframe-validate/src/completeness_tests.rs +54 -0
  1281. molframe-0.1.1/crates/molframe-validate/src/covalent.rs +46 -0
  1282. molframe-0.1.1/crates/molframe-validate/src/governed/basic.rs +287 -0
  1283. molframe-0.1.1/crates/molframe-validate/src/governed/bfactor.rs +129 -0
  1284. molframe-0.1.1/crates/molframe-validate/src/governed/chemistry.rs +310 -0
  1285. molframe-0.1.1/crates/molframe-validate/src/governed/maps.rs +131 -0
  1286. molframe-0.1.1/crates/molframe-validate/src/governed/maps_tests.rs +53 -0
  1287. molframe-0.1.1/crates/molframe-validate/src/governed/mod.rs +26 -0
  1288. molframe-0.1.1/crates/molframe-validate/src/governed/planes.rs +82 -0
  1289. molframe-0.1.1/crates/molframe-validate/src/lib.rs +115 -0
  1290. molframe-0.1.1/crates/molframe-validate/src/ligand.rs +103 -0
  1291. molframe-0.1.1/crates/molframe-validate/src/ligand_tests.rs +53 -0
  1292. molframe-0.1.1/crates/molframe-validate/src/nucleic.rs +355 -0
  1293. molframe-0.1.1/crates/molframe-validate/src/nucleic_tests.rs +158 -0
  1294. molframe-0.1.1/crates/molframe-validate/src/numeric.rs +18 -0
  1295. molframe-0.1.1/crates/molframe-validate/src/occupancy.rs +174 -0
  1296. molframe-0.1.1/crates/molframe-validate/src/occupancy_tests.rs +50 -0
  1297. molframe-0.1.1/crates/molframe-validate/src/peptide.rs +98 -0
  1298. molframe-0.1.1/crates/molframe-validate/src/peptide_tests.rs +80 -0
  1299. molframe-0.1.1/crates/molframe-validate/src/planarity.rs +98 -0
  1300. molframe-0.1.1/crates/molframe-validate/src/planarity_tests.rs +106 -0
  1301. molframe-0.1.1/crates/molframe-validate/src/plane_restraint.rs +80 -0
  1302. molframe-0.1.1/crates/molframe-validate/src/quality.rs +70 -0
  1303. molframe-0.1.1/crates/molframe-validate/src/quality_tests.rs +46 -0
  1304. molframe-0.1.1/crates/molframe-validate/src/ramachandran.rs +370 -0
  1305. molframe-0.1.1/crates/molframe-validate/src/ramachandran_tests.rs +168 -0
  1306. molframe-0.1.1/crates/molframe-validate/src/real_space.rs +177 -0
  1307. molframe-0.1.1/crates/molframe-validate/src/real_space_tests.rs +62 -0
  1308. molframe-0.1.1/crates/molframe-validate/src/reference.rs +375 -0
  1309. molframe-0.1.1/crates/molframe-validate/src/reference_geometry.rs +299 -0
  1310. molframe-0.1.1/crates/molframe-validate/src/reference_geometry_tests.rs +105 -0
  1311. molframe-0.1.1/crates/molframe-validate/src/reference_tests.rs +85 -0
  1312. molframe-0.1.1/crates/molframe-validate/src/rotamer.rs +320 -0
  1313. molframe-0.1.1/crates/molframe-validate/src/rotamer_tests.rs +140 -0
  1314. molframe-0.1.1/crates/molframe-validate/src/valence.rs +74 -0
  1315. molframe-0.1.1/crates/molframe-validate/src/valence_tests.rs +56 -0
  1316. molframe-0.1.1/crates/molframe-xtal/Cargo.toml +28 -0
  1317. molframe-0.1.1/crates/molframe-xtal/LICENSE +21 -0
  1318. molframe-0.1.1/crates/molframe-xtal/README.md +31 -0
  1319. molframe-0.1.1/crates/molframe-xtal/benches/xtal.rs +390 -0
  1320. molframe-0.1.1/crates/molframe-xtal/data/LICENSE.spglib +24 -0
  1321. molframe-0.1.1/crates/molframe-xtal/data/README.md +13 -0
  1322. molframe-0.1.1/crates/molframe-xtal/data/space-groups.bin +0 -0
  1323. molframe-0.1.1/crates/molframe-xtal/src/affine.rs +82 -0
  1324. molframe-0.1.1/crates/molframe-xtal/src/affine_tests.rs +33 -0
  1325. molframe-0.1.1/crates/molframe-xtal/src/assembly.rs +94 -0
  1326. molframe-0.1.1/crates/molframe-xtal/src/assembly_spatial.rs +93 -0
  1327. molframe-0.1.1/crates/molframe-xtal/src/assembly_spatial_tests.rs +36 -0
  1328. molframe-0.1.1/crates/molframe-xtal/src/category_transform.rs +48 -0
  1329. molframe-0.1.1/crates/molframe-xtal/src/cell.rs +106 -0
  1330. molframe-0.1.1/crates/molframe-xtal/src/cell_tests.rs +37 -0
  1331. molframe-0.1.1/crates/molframe-xtal/src/crystal.rs +413 -0
  1332. molframe-0.1.1/crates/molframe-xtal/src/crystal_batch.rs +202 -0
  1333. molframe-0.1.1/crates/molframe-xtal/src/crystal_images.rs +217 -0
  1334. molframe-0.1.1/crates/molframe-xtal/src/crystal_tests.rs +158 -0
  1335. molframe-0.1.1/crates/molframe-xtal/src/expression.rs +182 -0
  1336. molframe-0.1.1/crates/molframe-xtal/src/expression_tests.rs +52 -0
  1337. molframe-0.1.1/crates/molframe-xtal/src/grid/cube.rs +341 -0
  1338. molframe-0.1.1/crates/molframe-xtal/src/grid/dx.rs +201 -0
  1339. molframe-0.1.1/crates/molframe-xtal/src/grid.rs +204 -0
  1340. molframe-0.1.1/crates/molframe-xtal/src/grid_tests.rs +194 -0
  1341. molframe-0.1.1/crates/molframe-xtal/src/lib.rs +76 -0
  1342. molframe-0.1.1/crates/molframe-xtal/src/lower.rs +232 -0
  1343. molframe-0.1.1/crates/molframe-xtal/src/lower_tests.rs +102 -0
  1344. molframe-0.1.1/crates/molframe-xtal/src/map_statistics.rs +149 -0
  1345. molframe-0.1.1/crates/molframe-xtal/src/map_statistics_tests.rs +37 -0
  1346. molframe-0.1.1/crates/molframe-xtal/src/materialize/helpers.rs +215 -0
  1347. molframe-0.1.1/crates/molframe-xtal/src/materialize/impl.rs +475 -0
  1348. molframe-0.1.1/crates/molframe-xtal/src/materialize.rs +43 -0
  1349. molframe-0.1.1/crates/molframe-xtal/src/materialize_tests.rs +79 -0
  1350. molframe-0.1.1/crates/molframe-xtal/src/mrc.rs +484 -0
  1351. molframe-0.1.1/crates/molframe-xtal/src/mrc_block.rs +335 -0
  1352. molframe-0.1.1/crates/molframe-xtal/src/mrc_block_support.rs +309 -0
  1353. molframe-0.1.1/crates/molframe-xtal/src/mrc_block_tests.rs +224 -0
  1354. molframe-0.1.1/crates/molframe-xtal/src/mrc_brick.rs +469 -0
  1355. molframe-0.1.1/crates/molframe-xtal/src/mrc_brick_tests.rs +180 -0
  1356. molframe-0.1.1/crates/molframe-xtal/src/mrc_sampling.rs +215 -0
  1357. molframe-0.1.1/crates/molframe-xtal/src/mrc_tests.rs +95 -0
  1358. molframe-0.1.1/crates/molframe-xtal/src/mrc_values.rs +83 -0
  1359. molframe-0.1.1/crates/molframe-xtal/src/mtz.rs +463 -0
  1360. molframe-0.1.1/crates/molframe-xtal/src/mtz_header_parse.rs +161 -0
  1361. molframe-0.1.1/crates/molframe-xtal/src/mtz_header_write.rs +167 -0
  1362. molframe-0.1.1/crates/molframe-xtal/src/mtz_tests.rs +104 -0
  1363. molframe-0.1.1/crates/molframe-xtal/src/ncs.rs +219 -0
  1364. molframe-0.1.1/crates/molframe-xtal/src/ncs_tests.rs +88 -0
  1365. molframe-0.1.1/crates/molframe-xtal/src/numeric.rs +80 -0
  1366. molframe-0.1.1/crates/molframe-xtal/src/reflection.rs +237 -0
  1367. molframe-0.1.1/crates/molframe-xtal/src/reflection_cif.rs +268 -0
  1368. molframe-0.1.1/crates/molframe-xtal/src/reflection_cif_tests.rs +57 -0
  1369. molframe-0.1.1/crates/molframe-xtal/src/restraints.rs +455 -0
  1370. molframe-0.1.1/crates/molframe-xtal/src/restraints_tests.rs +41 -0
  1371. molframe-0.1.1/crates/molframe-xtal/src/space_group.rs +242 -0
  1372. molframe-0.1.1/crates/molframe-xtal/src/space_group_tests.rs +59 -0
  1373. molframe-0.1.1/crates/molframe-xtal/src/symmetry.rs +390 -0
  1374. molframe-0.1.1/crates/molframe-xtal/src/symmetry_inverse.rs +82 -0
  1375. molframe-0.1.1/crates/molframe-xtal/src/symmetry_parse.rs +121 -0
  1376. molframe-0.1.1/crates/molframe-xtal/src/symmetry_tests.rs +108 -0
  1377. molframe-0.1.1/crates/molframe-xtal/src/view.rs +303 -0
  1378. molframe-0.1.1/crates/molframe-xtal/src/view_tests.rs +115 -0
  1379. molframe-0.1.1/pyproject.toml +38 -0
  1380. molframe-0.1.1/python/molframe/__init__.py +72 -0
  1381. molframe-0.1.1/python/molframe/__init__.pyi +147 -0
  1382. molframe-0.1.1/python/molframe/analysis/__init__.py +3 -0
  1383. molframe-0.1.1/python/molframe/analysis/__init__.pyi +18 -0
  1384. molframe-0.1.1/python/molframe/chemistry/__init__.py +3 -0
  1385. molframe-0.1.1/python/molframe/chemistry/__init__.pyi +1 -0
  1386. molframe-0.1.1/python/molframe/compare/__init__.py +3 -0
  1387. molframe-0.1.1/python/molframe/compare/__init__.pyi +1 -0
  1388. molframe-0.1.1/python/molframe/crystal/__init__.py +3 -0
  1389. molframe-0.1.1/python/molframe/crystal/__init__.pyi +1 -0
  1390. molframe-0.1.1/python/molframe/formats/__init__.py +4 -0
  1391. molframe-0.1.1/python/molframe/formats/__init__.pyi +5 -0
  1392. molframe-0.1.1/python/molframe/formats/bcif/__init__.py +3 -0
  1393. molframe-0.1.1/python/molframe/formats/bcif/__init__.pyi +1 -0
  1394. molframe-0.1.1/python/molframe/formats/cif/__init__.py +3 -0
  1395. molframe-0.1.1/python/molframe/formats/cif/__init__.pyi +1 -0
  1396. molframe-0.1.1/python/molframe/formats/modelcif/__init__.py +3 -0
  1397. molframe-0.1.1/python/molframe/formats/modelcif/__init__.pyi +1 -0
  1398. molframe-0.1.1/python/molframe/formats/pdb/__init__.py +3 -0
  1399. molframe-0.1.1/python/molframe/formats/pdb/__init__.pyi +1 -0
  1400. molframe-0.1.1/python/molframe/geometry/__init__.py +4 -0
  1401. molframe-0.1.1/python/molframe/geometry/__init__.pyi +14 -0
  1402. molframe-0.1.1/python/molframe/motif/__init__.py +3 -0
  1403. molframe-0.1.1/python/molframe/motif/__init__.pyi +1 -0
  1404. molframe-0.1.1/python/molframe/py.typed +1 -0
  1405. molframe-0.1.1/python/molframe/query/__init__.py +3 -0
  1406. molframe-0.1.1/python/molframe/query/__init__.pyi +2 -0
  1407. molframe-0.1.1/python/molframe/sel/__init__.py +55 -0
  1408. molframe-0.1.1/python/molframe/sel/__init__.pyi +26 -0
  1409. molframe-0.1.1/python/molframe/sequence/__init__.py +3 -0
  1410. molframe-0.1.1/python/molframe/sequence/__init__.pyi +1 -0
  1411. molframe-0.1.1/python/molframe/spatial/__init__.py +3 -0
  1412. molframe-0.1.1/python/molframe/spatial/__init__.pyi +1 -0
  1413. molframe-0.1.1/python/molframe/surface/__init__.py +3 -0
  1414. molframe-0.1.1/python/molframe/surface/__init__.pyi +1 -0
  1415. molframe-0.1.1/python/molframe/trajectory/__init__.py +3 -0
  1416. molframe-0.1.1/python/molframe/trajectory/__init__.pyi +1 -0
  1417. molframe-0.1.1/python/molframe/validation/__init__.py +3 -0
  1418. molframe-0.1.1/python/molframe/validation/__init__.pyi +1 -0
@@ -0,0 +1,4747 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.5"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "allocator-api2"
36
+ version = "0.2.21"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
39
+
40
+ [[package]]
41
+ name = "android_system_properties"
42
+ version = "0.1.6"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
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 0.61.2",
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 0.61.2",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "approx"
107
+ version = "0.5.1"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
110
+ dependencies = [
111
+ "num-traits",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "approx-derive"
116
+ version = "0.2.8"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "a7d4712bcff4a775f6f3b89f44dd563bcd699e70c4d35dea56645f22d65ca465"
119
+ dependencies = [
120
+ "proc-macro-crate",
121
+ "proc-macro2",
122
+ "quote",
123
+ "syn 2.0.119",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "approxim"
128
+ version = "0.6.10"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "816825ba1726f300e5558f701bf3be2d2d2d2b6bdd0e648f338366c9ce12798a"
131
+ dependencies = [
132
+ "approx-derive",
133
+ "num-traits",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "arrow"
138
+ version = "59.2.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "61d285d16bce7d0be61912f7928342b673067b6b7d7ef6cc179258ba7de1fecf"
141
+ dependencies = [
142
+ "arrow-arith",
143
+ "arrow-array",
144
+ "arrow-buffer",
145
+ "arrow-cast",
146
+ "arrow-data",
147
+ "arrow-ipc",
148
+ "arrow-ord",
149
+ "arrow-row",
150
+ "arrow-schema",
151
+ "arrow-select",
152
+ "arrow-string",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "arrow-arith"
157
+ version = "59.2.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "757ef1836251e88222542a7da2623bc1c9cb9e20afefa6db2c41e79991cd91d4"
160
+ dependencies = [
161
+ "arrow-array",
162
+ "arrow-buffer",
163
+ "arrow-data",
164
+ "arrow-schema",
165
+ "chrono",
166
+ "num-traits",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "arrow-array"
171
+ version = "59.2.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "bc9a4a4b2b5ecd0e04df03471661cb61f28bed3c7fd50994715129b01b2edb97"
174
+ dependencies = [
175
+ "ahash",
176
+ "arrow-buffer",
177
+ "arrow-data",
178
+ "arrow-schema",
179
+ "chrono",
180
+ "half",
181
+ "hashbrown 0.17.1",
182
+ "libc",
183
+ "num-complex",
184
+ "num-integer",
185
+ "num-traits",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "arrow-buffer"
190
+ version = "59.2.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "c12b576ef18c1deb80925a248b25ad84f419198d791b8e293fc6aaa60441fe90"
193
+ dependencies = [
194
+ "bytes",
195
+ "half",
196
+ "num-bigint 0.5.1",
197
+ "num-traits",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "arrow-cast"
202
+ version = "59.2.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "68338a9096a5dc9bc11927c58c43a8526d96bf6abd2012ef6c0c9f505991cc79"
205
+ dependencies = [
206
+ "arrow-array",
207
+ "arrow-buffer",
208
+ "arrow-data",
209
+ "arrow-ord",
210
+ "arrow-schema",
211
+ "arrow-select",
212
+ "atoi",
213
+ "base64 0.23.1",
214
+ "chrono",
215
+ "half",
216
+ "lexical-core",
217
+ "num-traits",
218
+ "ryu",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "arrow-data"
223
+ version = "59.2.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "723fe4aeed7604e00b9883a465af4ff0a0e6c44c03e41a68c3d1cbc403e0e44d"
226
+ dependencies = [
227
+ "arrow-buffer",
228
+ "arrow-schema",
229
+ "half",
230
+ "num-integer",
231
+ "num-traits",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "arrow-ipc"
236
+ version = "59.2.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "149437b14371f5b9ec60f5ddc751483ae99d7a7072653c0075e5e469156eea7b"
239
+ dependencies = [
240
+ "arrow-array",
241
+ "arrow-buffer",
242
+ "arrow-data",
243
+ "arrow-schema",
244
+ "arrow-select",
245
+ "flatbuffers",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "arrow-ord"
250
+ version = "59.2.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "e6c08dff0686cf23ca4f562803f191ccbeb726dbae6309cd4b4aaf65e0f2c979"
253
+ dependencies = [
254
+ "arrow-array",
255
+ "arrow-buffer",
256
+ "arrow-data",
257
+ "arrow-schema",
258
+ "arrow-select",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "arrow-row"
263
+ version = "59.2.0"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "bbec439386df71ad570e6758a946111322b9e9dc8db83b5527321f0b4c9119c2"
266
+ dependencies = [
267
+ "arrow-array",
268
+ "arrow-buffer",
269
+ "arrow-data",
270
+ "arrow-schema",
271
+ "half",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "arrow-schema"
276
+ version = "59.2.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "e6fed2ca0d1eade57e811cbe73b98ad50cc08a1183e13b2d2aa43a7df593f40e"
279
+ dependencies = [
280
+ "bitflags",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "arrow-select"
285
+ version = "59.2.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "466b19cf75130b891dc1b23a84b343c714c62c64c9c62e365c76aa0ff90a53fb"
288
+ dependencies = [
289
+ "ahash",
290
+ "arrow-array",
291
+ "arrow-buffer",
292
+ "arrow-data",
293
+ "arrow-schema",
294
+ "num-traits",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "arrow-string"
299
+ version = "59.2.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "c838a25bb3691e919e0f617616ac51a4ff8517a952e29ca133cf0c22b2ce65b1"
302
+ dependencies = [
303
+ "arrow-array",
304
+ "arrow-buffer",
305
+ "arrow-data",
306
+ "arrow-schema",
307
+ "arrow-select",
308
+ "memchr",
309
+ "num-traits",
310
+ "regex",
311
+ "regex-syntax",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "atoi"
316
+ version = "2.0.0"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
319
+ dependencies = [
320
+ "num-traits",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "atomic-wait"
325
+ version = "1.1.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "a55b94919229f2c42292fd71ffa4b75e83193bffdd77b1e858cd55fd2d0b0ea8"
328
+ dependencies = [
329
+ "libc",
330
+ "windows-sys 0.42.0",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "atomic-waker"
335
+ version = "1.1.2"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
338
+
339
+ [[package]]
340
+ name = "autocfg"
341
+ version = "1.5.1"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
344
+
345
+ [[package]]
346
+ name = "base64"
347
+ version = "0.22.1"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
350
+
351
+ [[package]]
352
+ name = "base64"
353
+ version = "0.23.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
356
+
357
+ [[package]]
358
+ name = "bit-set"
359
+ version = "0.8.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
362
+ dependencies = [
363
+ "bit-vec",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "bit-vec"
368
+ version = "0.8.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
371
+
372
+ [[package]]
373
+ name = "bitflags"
374
+ version = "2.13.1"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
377
+
378
+ [[package]]
379
+ name = "block-buffer"
380
+ version = "0.10.4"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
383
+ dependencies = [
384
+ "generic-array",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "block-buffer"
389
+ version = "0.12.1"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
392
+ dependencies = [
393
+ "hybrid-array",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "bs58"
398
+ version = "0.5.1"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
401
+ dependencies = [
402
+ "tinyvec",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "bumpalo"
407
+ version = "3.20.3"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
410
+
411
+ [[package]]
412
+ name = "bytemuck"
413
+ version = "1.25.2"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
416
+ dependencies = [
417
+ "bytemuck_derive",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "bytemuck_derive"
422
+ version = "1.11.0"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
425
+ dependencies = [
426
+ "proc-macro2",
427
+ "quote",
428
+ "syn 2.0.119",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "byteorder"
433
+ version = "1.5.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
436
+
437
+ [[package]]
438
+ name = "bytes"
439
+ version = "1.12.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
442
+
443
+ [[package]]
444
+ name = "cast"
445
+ version = "0.3.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
448
+
449
+ [[package]]
450
+ name = "cc"
451
+ version = "1.4.3"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
454
+ dependencies = [
455
+ "find-msvc-tools",
456
+ "jobserver",
457
+ "libc",
458
+ "shlex",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "cfg-if"
463
+ version = "1.0.4"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
466
+
467
+ [[package]]
468
+ name = "cfg_aliases"
469
+ version = "0.2.2"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
472
+
473
+ [[package]]
474
+ name = "chacha20"
475
+ version = "0.10.2"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
478
+ dependencies = [
479
+ "cfg-if",
480
+ "cpufeatures 0.3.0",
481
+ "rand_core 0.10.1",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "chrono"
486
+ version = "0.4.45"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
489
+ dependencies = [
490
+ "iana-time-zone",
491
+ "num-traits",
492
+ "serde",
493
+ "windows-link",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "ciborium"
498
+ version = "0.2.2"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
501
+ dependencies = [
502
+ "ciborium-io",
503
+ "ciborium-ll",
504
+ "serde",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "ciborium-io"
509
+ version = "0.2.2"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
512
+
513
+ [[package]]
514
+ name = "ciborium-ll"
515
+ version = "0.2.2"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
518
+ dependencies = [
519
+ "ciborium-io",
520
+ "half",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "clap"
525
+ version = "4.6.5"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "301b56658598e48f3648647ac6fc887be7e7108eddfa4e9b63fcf3ec58c0cadf"
528
+ dependencies = [
529
+ "clap_builder",
530
+ "clap_derive",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "clap_builder"
535
+ version = "4.6.5"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "94a65403d1a1bd28f7dc68eb8506e8874808ee5eecb59298de588e2e1407a078"
538
+ dependencies = [
539
+ "anstream",
540
+ "anstyle",
541
+ "clap_lex",
542
+ "strsim",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "clap_complete"
547
+ version = "4.6.9"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "3be2ad0423bdbbb0e25bc89add796f3559706d4a95e1bc98e4d9662a957b6a19"
550
+ dependencies = [
551
+ "clap",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "clap_derive"
556
+ version = "4.6.4"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
559
+ dependencies = [
560
+ "heck",
561
+ "proc-macro2",
562
+ "quote",
563
+ "syn 3.0.3",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "clap_lex"
568
+ version = "1.1.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
571
+
572
+ [[package]]
573
+ name = "clap_mangen"
574
+ version = "0.2.33"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "7e30ffc187e2e3aeafcd1c6e2aa416e29739454c0ccaa419226d5ecd181f2d78"
577
+ dependencies = [
578
+ "clap",
579
+ "roff",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "colorchoice"
584
+ version = "1.0.5"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
587
+
588
+ [[package]]
589
+ name = "const-oid"
590
+ version = "0.10.2"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
593
+
594
+ [[package]]
595
+ name = "const-random"
596
+ version = "0.1.18"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
599
+ dependencies = [
600
+ "const-random-macro",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "const-random-macro"
605
+ version = "0.1.16"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
608
+ dependencies = [
609
+ "getrandom 0.2.17",
610
+ "once_cell",
611
+ "tiny-keccak",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "core-foundation-sys"
616
+ version = "0.8.7"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
619
+
620
+ [[package]]
621
+ name = "cpufeatures"
622
+ version = "0.2.17"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
625
+ dependencies = [
626
+ "libc",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "cpufeatures"
631
+ version = "0.3.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
634
+ dependencies = [
635
+ "libc",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "crc32fast"
640
+ version = "1.5.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
643
+ dependencies = [
644
+ "cfg-if",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "criterion"
649
+ version = "0.5.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
652
+ dependencies = [
653
+ "anes",
654
+ "cast",
655
+ "ciborium",
656
+ "clap",
657
+ "criterion-plot",
658
+ "is-terminal",
659
+ "itertools 0.10.5",
660
+ "num-traits",
661
+ "once_cell",
662
+ "oorandom",
663
+ "regex",
664
+ "serde",
665
+ "serde_derive",
666
+ "serde_json",
667
+ "tinytemplate",
668
+ "walkdir",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "criterion-plot"
673
+ version = "0.5.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
676
+ dependencies = [
677
+ "cast",
678
+ "itertools 0.10.5",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "crossbeam"
683
+ version = "0.8.4"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
686
+ dependencies = [
687
+ "crossbeam-channel",
688
+ "crossbeam-deque",
689
+ "crossbeam-epoch",
690
+ "crossbeam-queue",
691
+ "crossbeam-utils",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "crossbeam-channel"
696
+ version = "0.5.16"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
699
+ dependencies = [
700
+ "crossbeam-utils",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "crossbeam-deque"
705
+ version = "0.8.7"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
708
+ dependencies = [
709
+ "crossbeam-epoch",
710
+ "crossbeam-utils",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "crossbeam-epoch"
715
+ version = "0.9.20"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
718
+ dependencies = [
719
+ "crossbeam-utils",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "crossbeam-queue"
724
+ version = "0.3.13"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
727
+ dependencies = [
728
+ "crossbeam-utils",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "crossbeam-utils"
733
+ version = "0.8.22"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
736
+
737
+ [[package]]
738
+ name = "crunchy"
739
+ version = "0.2.4"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
742
+
743
+ [[package]]
744
+ name = "crypto-common"
745
+ version = "0.1.7"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
748
+ dependencies = [
749
+ "generic-array",
750
+ "typenum",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "crypto-common"
755
+ version = "0.2.2"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
758
+ dependencies = [
759
+ "hybrid-array",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "darling"
764
+ version = "0.23.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
767
+ dependencies = [
768
+ "darling_core",
769
+ "darling_macro",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "darling_core"
774
+ version = "0.23.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
777
+ dependencies = [
778
+ "ident_case",
779
+ "proc-macro2",
780
+ "quote",
781
+ "strsim",
782
+ "syn 2.0.119",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "darling_macro"
787
+ version = "0.23.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
790
+ dependencies = [
791
+ "darling_core",
792
+ "quote",
793
+ "syn 2.0.119",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "defer"
798
+ version = "0.2.1"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "930c7171c8df9fb1782bdf9b918ed9ed2d33d1d22300abb754f9085bc48bf8e8"
801
+
802
+ [[package]]
803
+ name = "deranged"
804
+ version = "0.5.8"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
807
+ dependencies = [
808
+ "serde_core",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "digest"
813
+ version = "0.10.7"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
816
+ dependencies = [
817
+ "block-buffer 0.10.4",
818
+ "crypto-common 0.1.7",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "digest"
823
+ version = "0.11.3"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
826
+ dependencies = [
827
+ "block-buffer 0.12.1",
828
+ "const-oid",
829
+ "crypto-common 0.2.2",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "displaydoc"
834
+ version = "0.2.7"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
837
+ dependencies = [
838
+ "proc-macro2",
839
+ "quote",
840
+ "syn 3.0.3",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "dyn-clone"
845
+ version = "1.0.20"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
848
+
849
+ [[package]]
850
+ name = "dyn-stack"
851
+ version = "0.13.2"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
854
+ dependencies = [
855
+ "bytemuck",
856
+ "dyn-stack-macros",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "dyn-stack-macros"
861
+ version = "0.1.3"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
864
+
865
+ [[package]]
866
+ name = "either"
867
+ version = "1.17.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
870
+
871
+ [[package]]
872
+ name = "enum-as-inner"
873
+ version = "0.6.1"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
876
+ dependencies = [
877
+ "heck",
878
+ "proc-macro2",
879
+ "quote",
880
+ "syn 2.0.119",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "equator"
885
+ version = "0.2.2"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
888
+ dependencies = [
889
+ "equator-macro 0.2.1",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "equator"
894
+ version = "0.4.2"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
897
+ dependencies = [
898
+ "equator-macro 0.4.2",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "equator"
903
+ version = "0.6.0"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "02da895aab06bbebefb6b2595f6d637b18c9ff629b4cd840965bb3164e4194b0"
906
+ dependencies = [
907
+ "equator-macro 0.6.0",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "equator-macro"
912
+ version = "0.2.1"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
915
+ dependencies = [
916
+ "proc-macro2",
917
+ "quote",
918
+ "syn 2.0.119",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "equator-macro"
923
+ version = "0.4.2"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
926
+ dependencies = [
927
+ "proc-macro2",
928
+ "quote",
929
+ "syn 2.0.119",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "equator-macro"
934
+ version = "0.6.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "2b14b339eb76d07f052cdbad76ca7c1310e56173a138095d3bf42a23c06ef5d8"
937
+
938
+ [[package]]
939
+ name = "equivalent"
940
+ version = "1.0.2"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
943
+
944
+ [[package]]
945
+ name = "errno"
946
+ version = "0.3.14"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
949
+ dependencies = [
950
+ "libc",
951
+ "windows-sys 0.61.2",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "faer"
956
+ version = "0.24.4"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "5ab6df3dd147fe8d702a288b95bcd8fcc499ab572fc80da6828f60cd4d524d67"
959
+ dependencies = [
960
+ "bytemuck",
961
+ "dyn-stack",
962
+ "equator 0.6.0",
963
+ "faer-traits",
964
+ "gemm",
965
+ "generativity",
966
+ "libm",
967
+ "nano-gemm",
968
+ "num-complex",
969
+ "num-traits",
970
+ "private-gemm-x86",
971
+ "pulp",
972
+ "rayon",
973
+ "reborrow",
974
+ "spindle",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "faer-traits"
979
+ version = "0.24.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "b87d23ed7ab1f26c0cba0e5b9e061a796fbb7dc170fa8bee6970055a1308bb0f"
982
+ dependencies = [
983
+ "bytemuck",
984
+ "dyn-stack",
985
+ "generativity",
986
+ "libm",
987
+ "num-complex",
988
+ "num-traits",
989
+ "pulp",
990
+ "qd",
991
+ "reborrow",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "fallible-iterator"
996
+ version = "0.3.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
999
+
1000
+ [[package]]
1001
+ name = "fallible-streaming-iterator"
1002
+ version = "0.1.9"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
1005
+
1006
+ [[package]]
1007
+ name = "fastrand"
1008
+ version = "2.5.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
1011
+
1012
+ [[package]]
1013
+ name = "find-msvc-tools"
1014
+ version = "0.1.11"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
1017
+
1018
+ [[package]]
1019
+ name = "flatbuffers"
1020
+ version = "25.12.19"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1023
+ dependencies = [
1024
+ "bitflags",
1025
+ "rustc_version",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "flate2"
1030
+ version = "1.1.9"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1033
+ dependencies = [
1034
+ "crc32fast",
1035
+ "miniz_oxide",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "fnv"
1040
+ version = "1.0.7"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1043
+
1044
+ [[package]]
1045
+ name = "foldhash"
1046
+ version = "0.2.0"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1049
+
1050
+ [[package]]
1051
+ name = "form_urlencoded"
1052
+ version = "1.2.2"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1055
+ dependencies = [
1056
+ "percent-encoding",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "futures-channel"
1061
+ version = "0.3.33"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
1064
+ dependencies = [
1065
+ "futures-core",
1066
+ "futures-sink",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "futures-core"
1071
+ version = "0.3.33"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
1074
+
1075
+ [[package]]
1076
+ name = "futures-io"
1077
+ version = "0.3.33"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
1080
+
1081
+ [[package]]
1082
+ name = "futures-sink"
1083
+ version = "0.3.33"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
1086
+
1087
+ [[package]]
1088
+ name = "futures-task"
1089
+ version = "0.3.33"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
1092
+
1093
+ [[package]]
1094
+ name = "futures-util"
1095
+ version = "0.3.33"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
1098
+ dependencies = [
1099
+ "futures-core",
1100
+ "futures-io",
1101
+ "futures-sink",
1102
+ "futures-task",
1103
+ "memchr",
1104
+ "pin-project-lite",
1105
+ "slab",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "gemm"
1110
+ version = "0.19.0"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
1113
+ dependencies = [
1114
+ "dyn-stack",
1115
+ "gemm-c32",
1116
+ "gemm-c64",
1117
+ "gemm-common",
1118
+ "gemm-f16",
1119
+ "gemm-f32",
1120
+ "gemm-f64",
1121
+ "num-complex",
1122
+ "num-traits",
1123
+ "paste",
1124
+ "raw-cpuid",
1125
+ "seq-macro",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "gemm-c32"
1130
+ version = "0.19.0"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
1133
+ dependencies = [
1134
+ "dyn-stack",
1135
+ "gemm-common",
1136
+ "num-complex",
1137
+ "num-traits",
1138
+ "paste",
1139
+ "raw-cpuid",
1140
+ "seq-macro",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "gemm-c64"
1145
+ version = "0.19.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
1148
+ dependencies = [
1149
+ "dyn-stack",
1150
+ "gemm-common",
1151
+ "num-complex",
1152
+ "num-traits",
1153
+ "paste",
1154
+ "raw-cpuid",
1155
+ "seq-macro",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "gemm-common"
1160
+ version = "0.19.0"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
1163
+ dependencies = [
1164
+ "bytemuck",
1165
+ "dyn-stack",
1166
+ "half",
1167
+ "libm",
1168
+ "num-complex",
1169
+ "num-traits",
1170
+ "once_cell",
1171
+ "paste",
1172
+ "pulp",
1173
+ "raw-cpuid",
1174
+ "rayon",
1175
+ "seq-macro",
1176
+ "sysctl",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "gemm-f16"
1181
+ version = "0.19.0"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
1184
+ dependencies = [
1185
+ "dyn-stack",
1186
+ "gemm-common",
1187
+ "gemm-f32",
1188
+ "half",
1189
+ "num-complex",
1190
+ "num-traits",
1191
+ "paste",
1192
+ "raw-cpuid",
1193
+ "rayon",
1194
+ "seq-macro",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "gemm-f32"
1199
+ version = "0.19.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
1202
+ dependencies = [
1203
+ "dyn-stack",
1204
+ "gemm-common",
1205
+ "num-complex",
1206
+ "num-traits",
1207
+ "paste",
1208
+ "raw-cpuid",
1209
+ "seq-macro",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "gemm-f64"
1214
+ version = "0.19.0"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
1217
+ dependencies = [
1218
+ "dyn-stack",
1219
+ "gemm-common",
1220
+ "num-complex",
1221
+ "num-traits",
1222
+ "paste",
1223
+ "raw-cpuid",
1224
+ "seq-macro",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "generativity"
1229
+ version = "1.2.1"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "d2c81fb5260e37854d09d5c87183309fd8c555b75289427884b25660bc87a85e"
1232
+
1233
+ [[package]]
1234
+ name = "generator"
1235
+ version = "0.8.9"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
1238
+ dependencies = [
1239
+ "cc",
1240
+ "cfg-if",
1241
+ "libc",
1242
+ "log",
1243
+ "rustversion",
1244
+ "windows-link",
1245
+ "windows-result",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "generic-array"
1250
+ version = "0.14.7"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1253
+ dependencies = [
1254
+ "typenum",
1255
+ "version_check",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "getrandom"
1260
+ version = "0.2.17"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1263
+ dependencies = [
1264
+ "cfg-if",
1265
+ "js-sys",
1266
+ "libc",
1267
+ "wasi",
1268
+ "wasm-bindgen",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "getrandom"
1273
+ version = "0.3.4"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1276
+ dependencies = [
1277
+ "cfg-if",
1278
+ "libc",
1279
+ "r-efi 5.3.0",
1280
+ "wasip2",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "getrandom"
1285
+ version = "0.4.3"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1288
+ dependencies = [
1289
+ "cfg-if",
1290
+ "js-sys",
1291
+ "libc",
1292
+ "r-efi 6.0.0",
1293
+ "rand_core 0.10.1",
1294
+ "wasm-bindgen",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "glam"
1299
+ version = "0.30.10"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
1302
+
1303
+ [[package]]
1304
+ name = "glam"
1305
+ version = "0.31.1"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
1308
+
1309
+ [[package]]
1310
+ name = "glam"
1311
+ version = "0.32.1"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
1314
+
1315
+ [[package]]
1316
+ name = "glam"
1317
+ version = "0.33.3"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "7360bd2cd76e0cd9032d42cf2922155cecea2685b0cfa4630c3246df030bcfd6"
1320
+
1321
+ [[package]]
1322
+ name = "glob"
1323
+ version = "0.3.4"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
1326
+
1327
+ [[package]]
1328
+ name = "half"
1329
+ version = "2.7.1"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1332
+ dependencies = [
1333
+ "bytemuck",
1334
+ "cfg-if",
1335
+ "crunchy",
1336
+ "num-traits",
1337
+ "zerocopy",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "hashbrown"
1342
+ version = "0.12.3"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1345
+
1346
+ [[package]]
1347
+ name = "hashbrown"
1348
+ version = "0.16.1"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1351
+ dependencies = [
1352
+ "allocator-api2",
1353
+ "equivalent",
1354
+ "foldhash",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "hashbrown"
1359
+ version = "0.17.1"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1362
+
1363
+ [[package]]
1364
+ name = "hashlink"
1365
+ version = "0.11.1"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
1368
+ dependencies = [
1369
+ "hashbrown 0.16.1",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "hdf5-core"
1374
+ version = "0.9.1"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "c91b525024c4692a02df5164c5fc29ee6a01546b6afc1be1d4401186c4099d00"
1377
+ dependencies = [
1378
+ "thiserror 2.0.20",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "hdf5-reader"
1383
+ version = "0.9.1"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "4926d5e2cae25a7a46db06cf03da6c3208d3d181badac5fa28dccc49871907f9"
1386
+ dependencies = [
1387
+ "flate2",
1388
+ "hdf5-core",
1389
+ "libc",
1390
+ "lru",
1391
+ "memmap2",
1392
+ "ndarray",
1393
+ "parking_lot",
1394
+ "smallvec",
1395
+ "thiserror 2.0.20",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "hdf5-writer"
1400
+ version = "0.9.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "a292270e76950c2160cc2ea996cb0a4511299b3cc1481b59e40828a4dc9fcf82"
1403
+ dependencies = [
1404
+ "flate2",
1405
+ "hdf5-core",
1406
+ "thiserror 2.0.20",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "heck"
1411
+ version = "0.5.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1414
+
1415
+ [[package]]
1416
+ name = "hermit-abi"
1417
+ version = "0.5.2"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1420
+
1421
+ [[package]]
1422
+ name = "hex"
1423
+ version = "0.4.3"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1426
+
1427
+ [[package]]
1428
+ name = "hoomd-gsd"
1429
+ version = "1.1.0"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "194738a2f9d8d955eef9bbeb78c17345e5e26c744f7ee4f9e5ce1b3902255c0c"
1432
+ dependencies = [
1433
+ "hoomd-vector",
1434
+ "itertools 0.14.0",
1435
+ "memmap2",
1436
+ "thiserror 2.0.20",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "hoomd-linear-algebra"
1441
+ version = "1.1.0"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "71cdc3ecd5a9301198375544d900e83603effd4608adb7e2fe50cf8a4cec2d46"
1444
+ dependencies = [
1445
+ "serde",
1446
+ "serde_with",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "hoomd-utility"
1451
+ version = "1.1.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "9174f96aa110e76dd39c1d61cea1d414ba59d5f0ad3c86a58a4aeb82e552201b"
1454
+ dependencies = [
1455
+ "parquet 58.4.0",
1456
+ "parquet_derive",
1457
+ "serde",
1458
+ "thiserror 2.0.20",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "hoomd-vector"
1463
+ version = "1.1.0"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "fbb457e90d8c763336856a2d3b0e8c69219e96b71be92ebafd4a843f8bfd993d"
1466
+ dependencies = [
1467
+ "approxim",
1468
+ "hoomd-linear-algebra",
1469
+ "hoomd-utility",
1470
+ "rand 0.10.2",
1471
+ "rand_distr",
1472
+ "serde",
1473
+ "serde_with",
1474
+ "thiserror 2.0.20",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "http"
1479
+ version = "1.5.0"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
1482
+ dependencies = [
1483
+ "bytes",
1484
+ "itoa",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "http-body"
1489
+ version = "1.1.0"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
1492
+ dependencies = [
1493
+ "bytes",
1494
+ "http",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "http-body-util"
1499
+ version = "0.1.4"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
1502
+ dependencies = [
1503
+ "bytes",
1504
+ "futures-core",
1505
+ "http",
1506
+ "http-body",
1507
+ "pin-project-lite",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "httparse"
1512
+ version = "1.10.1"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1515
+
1516
+ [[package]]
1517
+ name = "hybrid-array"
1518
+ version = "0.4.14"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
1521
+ dependencies = [
1522
+ "typenum",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "hyper"
1527
+ version = "1.11.0"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
1530
+ dependencies = [
1531
+ "atomic-waker",
1532
+ "bytes",
1533
+ "futures-channel",
1534
+ "futures-core",
1535
+ "http",
1536
+ "http-body",
1537
+ "httparse",
1538
+ "itoa",
1539
+ "pin-project-lite",
1540
+ "smallvec",
1541
+ "tokio",
1542
+ "want",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "hyper-rustls"
1547
+ version = "0.27.9"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1550
+ dependencies = [
1551
+ "http",
1552
+ "hyper",
1553
+ "hyper-util",
1554
+ "rustls",
1555
+ "tokio",
1556
+ "tokio-rustls",
1557
+ "tower-service",
1558
+ "webpki-roots",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "hyper-util"
1563
+ version = "0.1.20"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1566
+ dependencies = [
1567
+ "base64 0.22.1",
1568
+ "bytes",
1569
+ "futures-channel",
1570
+ "futures-util",
1571
+ "http",
1572
+ "http-body",
1573
+ "hyper",
1574
+ "ipnet",
1575
+ "libc",
1576
+ "percent-encoding",
1577
+ "pin-project-lite",
1578
+ "socket2",
1579
+ "tokio",
1580
+ "tower-service",
1581
+ "tracing",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "iana-time-zone"
1586
+ version = "0.1.65"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1589
+ dependencies = [
1590
+ "android_system_properties",
1591
+ "core-foundation-sys",
1592
+ "iana-time-zone-haiku",
1593
+ "js-sys",
1594
+ "log",
1595
+ "wasm-bindgen",
1596
+ "windows-core",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "iana-time-zone-haiku"
1601
+ version = "0.1.2"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1604
+ dependencies = [
1605
+ "cc",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "icu_collections"
1610
+ version = "2.2.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1613
+ dependencies = [
1614
+ "displaydoc",
1615
+ "potential_utf",
1616
+ "utf8_iter",
1617
+ "yoke",
1618
+ "zerofrom",
1619
+ "zerovec",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "icu_locale_core"
1624
+ version = "2.2.0"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1627
+ dependencies = [
1628
+ "displaydoc",
1629
+ "litemap",
1630
+ "tinystr",
1631
+ "writeable",
1632
+ "zerovec",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "icu_normalizer"
1637
+ version = "2.2.0"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1640
+ dependencies = [
1641
+ "icu_collections",
1642
+ "icu_normalizer_data",
1643
+ "icu_properties",
1644
+ "icu_provider",
1645
+ "smallvec",
1646
+ "zerovec",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "icu_normalizer_data"
1651
+ version = "2.2.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1654
+
1655
+ [[package]]
1656
+ name = "icu_properties"
1657
+ version = "2.2.0"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1660
+ dependencies = [
1661
+ "icu_collections",
1662
+ "icu_locale_core",
1663
+ "icu_properties_data",
1664
+ "icu_provider",
1665
+ "zerotrie",
1666
+ "zerovec",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "icu_properties_data"
1671
+ version = "2.2.0"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1674
+
1675
+ [[package]]
1676
+ name = "icu_provider"
1677
+ version = "2.2.0"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1680
+ dependencies = [
1681
+ "displaydoc",
1682
+ "icu_locale_core",
1683
+ "writeable",
1684
+ "yoke",
1685
+ "zerofrom",
1686
+ "zerotrie",
1687
+ "zerovec",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "ident_case"
1692
+ version = "1.0.1"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1695
+
1696
+ [[package]]
1697
+ name = "idna"
1698
+ version = "1.1.0"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1701
+ dependencies = [
1702
+ "idna_adapter",
1703
+ "smallvec",
1704
+ "utf8_iter",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "idna_adapter"
1709
+ version = "1.2.2"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1712
+ dependencies = [
1713
+ "icu_normalizer",
1714
+ "icu_properties",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "indexmap"
1719
+ version = "1.9.3"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1722
+ dependencies = [
1723
+ "autocfg",
1724
+ "hashbrown 0.12.3",
1725
+ "serde",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "indexmap"
1730
+ version = "2.14.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1733
+ dependencies = [
1734
+ "equivalent",
1735
+ "hashbrown 0.17.1",
1736
+ "serde",
1737
+ "serde_core",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "integer-encoding"
1742
+ version = "3.0.4"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1745
+
1746
+ [[package]]
1747
+ name = "interpol"
1748
+ version = "0.2.1"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "eb58032ba748f4010d15912a1855a8a0b1ba9eaad3395b0c171c09b3b356ae50"
1751
+ dependencies = [
1752
+ "proc-macro2",
1753
+ "quote",
1754
+ "syn 1.0.109",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "ipnet"
1759
+ version = "2.12.1"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
1762
+
1763
+ [[package]]
1764
+ name = "is-terminal"
1765
+ version = "0.4.17"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1768
+ dependencies = [
1769
+ "hermit-abi",
1770
+ "libc",
1771
+ "windows-sys 0.61.2",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "is_terminal_polyfill"
1776
+ version = "1.70.2"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1779
+
1780
+ [[package]]
1781
+ name = "itertools"
1782
+ version = "0.10.5"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1785
+ dependencies = [
1786
+ "either",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "itertools"
1791
+ version = "0.14.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1794
+ dependencies = [
1795
+ "either",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "itoa"
1800
+ version = "1.0.18"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1803
+
1804
+ [[package]]
1805
+ name = "jobserver"
1806
+ version = "0.1.35"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1809
+ dependencies = [
1810
+ "getrandom 0.4.3",
1811
+ "libc",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "js-sys"
1816
+ version = "0.3.103"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1819
+ dependencies = [
1820
+ "cfg-if",
1821
+ "futures-util",
1822
+ "wasm-bindgen",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "lazy_static"
1827
+ version = "1.5.0"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1830
+
1831
+ [[package]]
1832
+ name = "lexical-core"
1833
+ version = "1.0.6"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1836
+ dependencies = [
1837
+ "lexical-parse-float",
1838
+ "lexical-parse-integer",
1839
+ "lexical-util",
1840
+ "lexical-write-float",
1841
+ "lexical-write-integer",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "lexical-parse-float"
1846
+ version = "1.0.6"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1849
+ dependencies = [
1850
+ "lexical-parse-integer",
1851
+ "lexical-util",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "lexical-parse-integer"
1856
+ version = "1.0.6"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1859
+ dependencies = [
1860
+ "lexical-util",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "lexical-util"
1865
+ version = "1.0.7"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1868
+
1869
+ [[package]]
1870
+ name = "lexical-write-float"
1871
+ version = "1.0.6"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1874
+ dependencies = [
1875
+ "lexical-util",
1876
+ "lexical-write-integer",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "lexical-write-integer"
1881
+ version = "1.0.6"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1884
+ dependencies = [
1885
+ "lexical-util",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "libc"
1890
+ version = "0.2.189"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1893
+
1894
+ [[package]]
1895
+ name = "libm"
1896
+ version = "0.2.16"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1899
+
1900
+ [[package]]
1901
+ name = "libsqlite3-sys"
1902
+ version = "0.36.0"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "95b4103cffefa72eb8428cb6b47d6627161e51c2739fc5e3b734584157bc642a"
1905
+ dependencies = [
1906
+ "cc",
1907
+ "pkg-config",
1908
+ "vcpkg",
1909
+ ]
1910
+
1911
+ [[package]]
1912
+ name = "linux-raw-sys"
1913
+ version = "0.12.1"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1916
+
1917
+ [[package]]
1918
+ name = "litemap"
1919
+ version = "0.8.2"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1922
+
1923
+ [[package]]
1924
+ name = "lock_api"
1925
+ version = "0.4.14"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1928
+ dependencies = [
1929
+ "scopeguard",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "log"
1934
+ version = "0.4.33"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1937
+
1938
+ [[package]]
1939
+ name = "loom"
1940
+ version = "0.7.2"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1943
+ dependencies = [
1944
+ "cfg-if",
1945
+ "generator",
1946
+ "scoped-tls",
1947
+ "tracing",
1948
+ "tracing-subscriber",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "lru"
1953
+ version = "0.16.4"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
1956
+ dependencies = [
1957
+ "hashbrown 0.16.1",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "lru-slab"
1962
+ version = "0.1.2"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1965
+
1966
+ [[package]]
1967
+ name = "matchers"
1968
+ version = "0.2.0"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1971
+ dependencies = [
1972
+ "regex-automata",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "matrixmultiply"
1977
+ version = "0.3.11"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
1980
+ dependencies = [
1981
+ "autocfg",
1982
+ "rawpointer",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "md-5"
1987
+ version = "0.11.0"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1990
+ dependencies = [
1991
+ "cfg-if",
1992
+ "digest 0.11.3",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "memchr"
1997
+ version = "2.8.3"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
2000
+
2001
+ [[package]]
2002
+ name = "memmap2"
2003
+ version = "0.9.11"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
2006
+ dependencies = [
2007
+ "libc",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "miniz_oxide"
2012
+ version = "0.8.9"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2015
+ dependencies = [
2016
+ "adler2",
2017
+ "simd-adler32",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "mio"
2022
+ version = "1.2.2"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
2025
+ dependencies = [
2026
+ "libc",
2027
+ "wasi",
2028
+ "windows-sys 0.61.2",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "molframe"
2033
+ version = "0.1.1"
2034
+ dependencies = [
2035
+ "criterion",
2036
+ "flate2",
2037
+ "molframe-adapters",
2038
+ "molframe-analysis",
2039
+ "molframe-audit",
2040
+ "molframe-bcif",
2041
+ "molframe-bench",
2042
+ "molframe-chem",
2043
+ "molframe-cif",
2044
+ "molframe-compare",
2045
+ "molframe-core",
2046
+ "molframe-engine",
2047
+ "molframe-fx",
2048
+ "molframe-geom",
2049
+ "molframe-ic",
2050
+ "molframe-interop",
2051
+ "molframe-modelcif",
2052
+ "molframe-pdb",
2053
+ "molframe-query",
2054
+ "molframe-seq",
2055
+ "molframe-spatial",
2056
+ "molframe-surface",
2057
+ "molframe-traj",
2058
+ "molframe-validate",
2059
+ "molframe-xtal",
2060
+ "serde",
2061
+ "serde_json",
2062
+ "tempfile",
2063
+ "thiserror 2.0.20",
2064
+ "toml",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "molframe-adapters"
2069
+ version = "0.1.1"
2070
+ dependencies = [
2071
+ "criterion",
2072
+ "molframe-bench",
2073
+ "molframe-chem",
2074
+ "molframe-core",
2075
+ "molframe-pdb",
2076
+ "reqwest",
2077
+ "sha2",
2078
+ "thiserror 2.0.20",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "molframe-analysis"
2083
+ version = "0.1.1"
2084
+ dependencies = [
2085
+ "criterion",
2086
+ "faer",
2087
+ "molframe-bench",
2088
+ "molframe-chem",
2089
+ "molframe-cif",
2090
+ "molframe-core",
2091
+ "molframe-geom",
2092
+ "molframe-spatial",
2093
+ "molframe-surface",
2094
+ "molframe-traj",
2095
+ "nalgebra",
2096
+ "num-traits",
2097
+ "thiserror 2.0.20",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "molframe-audit"
2102
+ version = "0.1.1"
2103
+ dependencies = [
2104
+ "criterion",
2105
+ "molframe-bench",
2106
+ "molframe-core",
2107
+ "num-traits",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "molframe-bcif"
2112
+ version = "0.1.1"
2113
+ dependencies = [
2114
+ "criterion",
2115
+ "indexmap 2.14.0",
2116
+ "molframe-bench",
2117
+ "molframe-cif",
2118
+ "molframe-core",
2119
+ "num-traits",
2120
+ "proptest",
2121
+ "rmp-serde",
2122
+ "serde",
2123
+ "serde_bytes",
2124
+ "serde_repr",
2125
+ "wide",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "molframe-bench"
2130
+ version = "0.1.1"
2131
+ dependencies = [
2132
+ "molframe-bcif",
2133
+ "molframe-cif",
2134
+ "molframe-core",
2135
+ "molframe-pdb",
2136
+ "num-traits",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "molframe-chem"
2141
+ version = "0.1.1"
2142
+ dependencies = [
2143
+ "criterion",
2144
+ "molframe-bench",
2145
+ "molframe-cif",
2146
+ "molframe-core",
2147
+ "num-traits",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "molframe-cif"
2152
+ version = "0.1.1"
2153
+ dependencies = [
2154
+ "criterion",
2155
+ "indexmap 2.14.0",
2156
+ "memchr",
2157
+ "molframe-bench",
2158
+ "molframe-core",
2159
+ "num-traits",
2160
+ "proptest",
2161
+ "quick-xml",
2162
+ "thiserror 2.0.20",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "molframe-cli"
2167
+ version = "0.1.1"
2168
+ dependencies = [
2169
+ "clap",
2170
+ "clap_complete",
2171
+ "clap_mangen",
2172
+ "glob",
2173
+ "molframe",
2174
+ "molframe-adapters",
2175
+ "molframe-core",
2176
+ "tempfile",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "molframe-compare"
2181
+ version = "0.1.1"
2182
+ dependencies = [
2183
+ "criterion",
2184
+ "molframe-bench",
2185
+ "molframe-chem",
2186
+ "molframe-cif",
2187
+ "molframe-core",
2188
+ "molframe-geom",
2189
+ "molframe-seq",
2190
+ "molframe-spatial",
2191
+ "molframe-surface",
2192
+ "num-traits",
2193
+ "thiserror 2.0.20",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "molframe-core"
2198
+ version = "0.1.1"
2199
+ dependencies = [
2200
+ "bytemuck",
2201
+ "criterion",
2202
+ "flate2",
2203
+ "hashbrown 0.16.1",
2204
+ "molframe-bench",
2205
+ "molframe-mmap",
2206
+ "num-traits",
2207
+ "rayon",
2208
+ "smallvec",
2209
+ "thiserror 2.0.20",
2210
+ "zstd",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "molframe-engine"
2215
+ version = "0.1.1"
2216
+ dependencies = [
2217
+ "molframe-core",
2218
+ "thiserror 2.0.20",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "molframe-fx"
2223
+ version = "0.1.1"
2224
+ dependencies = [
2225
+ "criterion",
2226
+ "molframe-bench",
2227
+ "molframe-chem",
2228
+ "molframe-cif",
2229
+ "molframe-core",
2230
+ "molframe-geom",
2231
+ "num-traits",
2232
+ "serde",
2233
+ "serde_json",
2234
+ "tempfile",
2235
+ "thiserror 2.0.20",
2236
+ "toml",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "molframe-geom"
2241
+ version = "0.1.1"
2242
+ dependencies = [
2243
+ "criterion",
2244
+ "molframe-bench",
2245
+ "molframe-core",
2246
+ "num-traits",
2247
+ "wide",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "molframe-ic"
2252
+ version = "0.1.1"
2253
+ dependencies = [
2254
+ "criterion",
2255
+ "molframe-bench",
2256
+ "molframe-cif",
2257
+ "molframe-core",
2258
+ "molframe-geom",
2259
+ "num-traits",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "molframe-interop"
2264
+ version = "0.1.1"
2265
+ dependencies = [
2266
+ "arrow",
2267
+ "criterion",
2268
+ "molframe-analysis",
2269
+ "molframe-bench",
2270
+ "molframe-cif",
2271
+ "molframe-core",
2272
+ "molframe-seq",
2273
+ "molframe-spatial",
2274
+ "num-traits",
2275
+ "parquet 59.2.0",
2276
+ "serde",
2277
+ "serde_json",
2278
+ "tempfile",
2279
+ "thiserror 2.0.20",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "molframe-mmap"
2284
+ version = "0.1.1"
2285
+ dependencies = [
2286
+ "criterion",
2287
+ "memmap2",
2288
+ "tempfile",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "molframe-modelcif"
2293
+ version = "0.1.1"
2294
+ dependencies = [
2295
+ "criterion",
2296
+ "molframe-bench",
2297
+ "molframe-cif",
2298
+ "molframe-core",
2299
+ "num-traits",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "molframe-pdb"
2304
+ version = "0.1.1"
2305
+ dependencies = [
2306
+ "criterion",
2307
+ "molframe-bench",
2308
+ "molframe-cif",
2309
+ "molframe-core",
2310
+ "num-traits",
2311
+ "proptest",
2312
+ "rmp-serde",
2313
+ "serde",
2314
+ "serde_bytes",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "molframe-py"
2319
+ version = "0.1.1"
2320
+ dependencies = [
2321
+ "molframe",
2322
+ "numpy",
2323
+ "pyo3",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "molframe-query"
2328
+ version = "0.1.1"
2329
+ dependencies = [
2330
+ "criterion",
2331
+ "molframe-bench",
2332
+ "molframe-chem",
2333
+ "molframe-cif",
2334
+ "molframe-core",
2335
+ "molframe-spatial",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "molframe-resource-bench"
2340
+ version = "0.1.1"
2341
+ dependencies = [
2342
+ "arrow",
2343
+ "molframe",
2344
+ "molframe-bench",
2345
+ "molframe-core",
2346
+ "molframe-mmap",
2347
+ "rmp-serde",
2348
+ "serde",
2349
+ "serde_json",
2350
+ "tempfile",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "molframe-seq"
2355
+ version = "0.1.1"
2356
+ dependencies = [
2357
+ "criterion",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "molframe-spatial"
2362
+ version = "0.1.1"
2363
+ dependencies = [
2364
+ "criterion",
2365
+ "molframe-bench",
2366
+ "molframe-cif",
2367
+ "molframe-core",
2368
+ "molframe-query",
2369
+ "num-traits",
2370
+ "proptest",
2371
+ "thiserror 2.0.20",
2372
+ "wide",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "molframe-surface"
2377
+ version = "0.1.1"
2378
+ dependencies = [
2379
+ "criterion",
2380
+ "molframe-bench",
2381
+ "molframe-core",
2382
+ "molframe-spatial",
2383
+ "num-traits",
2384
+ "tempfile",
2385
+ "thiserror 2.0.20",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "molframe-traj"
2390
+ version = "0.1.1"
2391
+ dependencies = [
2392
+ "criterion",
2393
+ "hdf5-reader",
2394
+ "hdf5-writer",
2395
+ "hoomd-gsd",
2396
+ "molframe-bench",
2397
+ "molframe-cif",
2398
+ "molframe-core",
2399
+ "molframe-geom",
2400
+ "molframe-query",
2401
+ "molframe-spatial",
2402
+ "molly",
2403
+ "nalgebra",
2404
+ "netcdf-reader",
2405
+ "netcdf-writer",
2406
+ "num-traits",
2407
+ "quick-xml",
2408
+ "rusqlite",
2409
+ "tempfile",
2410
+ "thiserror 2.0.20",
2411
+ "tng-rs",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "molframe-validate"
2416
+ version = "0.1.1"
2417
+ dependencies = [
2418
+ "criterion",
2419
+ "molframe-analysis",
2420
+ "molframe-bench",
2421
+ "molframe-chem",
2422
+ "molframe-cif",
2423
+ "molframe-core",
2424
+ "molframe-geom",
2425
+ "molframe-spatial",
2426
+ "molframe-xtal",
2427
+ "num-traits",
2428
+ "thiserror 2.0.20",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "molframe-xtal"
2433
+ version = "0.1.1"
2434
+ dependencies = [
2435
+ "criterion",
2436
+ "molframe-bench",
2437
+ "molframe-cif",
2438
+ "molframe-core",
2439
+ "molframe-geom",
2440
+ "molframe-spatial",
2441
+ "num-traits",
2442
+ "thiserror 2.0.20",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "molly"
2447
+ version = "0.6.1"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "80fc11cdd24f997d0db799faf11a20c1902a49e6b45157977137188ef13f3848"
2450
+
2451
+ [[package]]
2452
+ name = "nalgebra"
2453
+ version = "0.35.0"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "adc43a60c217b0c6ff46e47f26911015ad8d2e5a8be1af668c67e370d99a4346"
2456
+ dependencies = [
2457
+ "approx",
2458
+ "glam 0.30.10",
2459
+ "glam 0.31.1",
2460
+ "glam 0.32.1",
2461
+ "glam 0.33.3",
2462
+ "matrixmultiply",
2463
+ "num-complex",
2464
+ "num-rational",
2465
+ "num-traits",
2466
+ "simba",
2467
+ "typenum",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "nano-gemm"
2472
+ version = "0.2.2"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "9e04345dc84b498ff89fe0d38543d1f170da9e43a2c2bcee73a0f9069f72d081"
2475
+ dependencies = [
2476
+ "equator 0.2.2",
2477
+ "nano-gemm-c32",
2478
+ "nano-gemm-c64",
2479
+ "nano-gemm-codegen",
2480
+ "nano-gemm-core",
2481
+ "nano-gemm-f32",
2482
+ "nano-gemm-f64",
2483
+ "num-complex",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "nano-gemm-c32"
2488
+ version = "0.2.1"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "0775b1e2520e64deee8fc78b7732e3091fb7585017c0b0f9f4b451757bbbc562"
2491
+ dependencies = [
2492
+ "nano-gemm-codegen",
2493
+ "nano-gemm-core",
2494
+ "num-complex",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "nano-gemm-c64"
2499
+ version = "0.2.1"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "9af49a20d58816e6b5ee65f64142e50edb5eba152678d4bb7377fcbf63f8437a"
2502
+ dependencies = [
2503
+ "nano-gemm-codegen",
2504
+ "nano-gemm-core",
2505
+ "num-complex",
2506
+ ]
2507
+
2508
+ [[package]]
2509
+ name = "nano-gemm-codegen"
2510
+ version = "0.2.1"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "6cc8d495c791627779477a2cf5df60049f5b165342610eb0d76bee5ff5c5d74c"
2513
+
2514
+ [[package]]
2515
+ name = "nano-gemm-core"
2516
+ version = "0.2.1"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "d998dfa644de87a0f8660e5ea511d7cb5c33b5a2d9847b7af57a2565105089f0"
2519
+
2520
+ [[package]]
2521
+ name = "nano-gemm-f32"
2522
+ version = "0.2.1"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "879d962e79bc8952e4ad21ca4845a21132540ed3f5e01184b2ff7f720e666523"
2525
+ dependencies = [
2526
+ "nano-gemm-codegen",
2527
+ "nano-gemm-core",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "nano-gemm-f64"
2532
+ version = "0.2.1"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "b9a513473dce7dc00c7e7c318481ca4494034e76997218d8dad51bd9f007a815"
2535
+ dependencies = [
2536
+ "nano-gemm-codegen",
2537
+ "nano-gemm-core",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "ndarray"
2542
+ version = "0.17.2"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
2545
+ dependencies = [
2546
+ "matrixmultiply",
2547
+ "num-complex",
2548
+ "num-integer",
2549
+ "num-traits",
2550
+ "portable-atomic",
2551
+ "portable-atomic-util",
2552
+ "rawpointer",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "netcdf-core"
2557
+ version = "0.9.1"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "25a7215ebd56ede9f76768a895593673ca072b67764f3abff7393be0de0dbaf4"
2560
+ dependencies = [
2561
+ "thiserror 2.0.20",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "netcdf-reader"
2566
+ version = "0.9.1"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "33e22b42b44c58a4fdb3c6969fdcf9bbcae71efad0ff94e2d63e21728a843f82"
2569
+ dependencies = [
2570
+ "memmap2",
2571
+ "ndarray",
2572
+ "netcdf-core",
2573
+ "thiserror 2.0.20",
2574
+ ]
2575
+
2576
+ [[package]]
2577
+ name = "netcdf-writer"
2578
+ version = "0.9.1"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "23183a2ee350dfaf042f7d3b2b07623ffe20124fd6a70e7fd2255b87a5691d9a"
2581
+ dependencies = [
2582
+ "netcdf-core",
2583
+ "thiserror 2.0.20",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "nu-ansi-term"
2588
+ version = "0.50.3"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2591
+ dependencies = [
2592
+ "windows-sys 0.61.2",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "num-bigint"
2597
+ version = "0.4.8"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
2600
+ dependencies = [
2601
+ "num-integer",
2602
+ "num-traits",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "num-bigint"
2607
+ version = "0.5.1"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
2610
+ dependencies = [
2611
+ "num-integer",
2612
+ "num-traits",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "num-complex"
2617
+ version = "0.4.6"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2620
+ dependencies = [
2621
+ "bytemuck",
2622
+ "num-traits",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "num-conv"
2627
+ version = "0.2.2"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
2630
+
2631
+ [[package]]
2632
+ name = "num-integer"
2633
+ version = "0.1.46"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2636
+ dependencies = [
2637
+ "num-traits",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "num-rational"
2642
+ version = "0.4.2"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2645
+ dependencies = [
2646
+ "num-bigint 0.4.8",
2647
+ "num-integer",
2648
+ "num-traits",
2649
+ ]
2650
+
2651
+ [[package]]
2652
+ name = "num-traits"
2653
+ version = "0.2.19"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2656
+ dependencies = [
2657
+ "autocfg",
2658
+ "libm",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "num_cpus"
2663
+ version = "1.17.0"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2666
+ dependencies = [
2667
+ "hermit-abi",
2668
+ "libc",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "numpy"
2673
+ version = "0.29.0"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
2676
+ dependencies = [
2677
+ "libc",
2678
+ "ndarray",
2679
+ "num-complex",
2680
+ "num-integer",
2681
+ "num-traits",
2682
+ "pyo3",
2683
+ "pyo3-build-config",
2684
+ "rustc-hash",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "once_cell"
2689
+ version = "1.21.4"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2692
+
2693
+ [[package]]
2694
+ name = "once_cell_polyfill"
2695
+ version = "1.70.2"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2698
+
2699
+ [[package]]
2700
+ name = "oorandom"
2701
+ version = "11.1.5"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2704
+
2705
+ [[package]]
2706
+ name = "ordered-float"
2707
+ version = "2.10.1"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2710
+ dependencies = [
2711
+ "num-traits",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "parking_lot"
2716
+ version = "0.12.5"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2719
+ dependencies = [
2720
+ "lock_api",
2721
+ "parking_lot_core",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "parking_lot_core"
2726
+ version = "0.9.12"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2729
+ dependencies = [
2730
+ "cfg-if",
2731
+ "libc",
2732
+ "redox_syscall",
2733
+ "smallvec",
2734
+ "windows-link",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "parquet"
2739
+ version = "58.4.0"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "d298093b2dec60289dce0684c986d0f7679e9dd15771c2c65406e1aaf604a704"
2742
+ dependencies = [
2743
+ "ahash",
2744
+ "bytes",
2745
+ "chrono",
2746
+ "half",
2747
+ "hashbrown 0.17.1",
2748
+ "num-bigint 0.4.8",
2749
+ "num-integer",
2750
+ "num-traits",
2751
+ "paste",
2752
+ "seq-macro",
2753
+ "thrift",
2754
+ "twox-hash",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "parquet"
2759
+ version = "59.2.0"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "7065842956a20c2a536924ce8e4d9955f7422451511b9eb7500d7bfe5077e59c"
2762
+ dependencies = [
2763
+ "ahash",
2764
+ "arrow-array",
2765
+ "arrow-buffer",
2766
+ "arrow-data",
2767
+ "arrow-ipc",
2768
+ "arrow-schema",
2769
+ "arrow-select",
2770
+ "base64 0.23.1",
2771
+ "bytes",
2772
+ "chrono",
2773
+ "half",
2774
+ "hashbrown 0.17.1",
2775
+ "num-bigint 0.5.1",
2776
+ "num-integer",
2777
+ "num-traits",
2778
+ "seq-macro",
2779
+ "twox-hash",
2780
+ "zstd",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "parquet_derive"
2785
+ version = "58.4.0"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "c4674cadd65f652ad1e8d1cd5ff635a60df533ffe6479951f6a6505b81f47b16"
2788
+ dependencies = [
2789
+ "parquet 58.4.0",
2790
+ "proc-macro2",
2791
+ "quote",
2792
+ "syn 2.0.119",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "paste"
2797
+ version = "1.0.15"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2800
+
2801
+ [[package]]
2802
+ name = "percent-encoding"
2803
+ version = "2.3.2"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2806
+
2807
+ [[package]]
2808
+ name = "pin-project-lite"
2809
+ version = "0.2.17"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2812
+
2813
+ [[package]]
2814
+ name = "pkg-config"
2815
+ version = "0.3.33"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2818
+
2819
+ [[package]]
2820
+ name = "portable-atomic"
2821
+ version = "1.14.0"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
2824
+
2825
+ [[package]]
2826
+ name = "portable-atomic-util"
2827
+ version = "0.2.7"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
2830
+ dependencies = [
2831
+ "portable-atomic",
2832
+ ]
2833
+
2834
+ [[package]]
2835
+ name = "potential_utf"
2836
+ version = "0.1.5"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2839
+ dependencies = [
2840
+ "zerovec",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "powerfmt"
2845
+ version = "0.2.0"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2848
+
2849
+ [[package]]
2850
+ name = "ppv-lite86"
2851
+ version = "0.2.21"
2852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2853
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2854
+ dependencies = [
2855
+ "zerocopy",
2856
+ ]
2857
+
2858
+ [[package]]
2859
+ name = "private-gemm-x86"
2860
+ version = "0.1.20"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "0af8c3e5087969c323f667ccb4b789fa0954f5aa650550e38e81cf9108be21b5"
2863
+ dependencies = [
2864
+ "crossbeam",
2865
+ "defer",
2866
+ "interpol",
2867
+ "num_cpus",
2868
+ "raw-cpuid",
2869
+ "rayon",
2870
+ "spindle",
2871
+ "sysctl",
2872
+ ]
2873
+
2874
+ [[package]]
2875
+ name = "proc-macro-crate"
2876
+ version = "3.5.0"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2879
+ dependencies = [
2880
+ "toml_edit",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "proc-macro2"
2885
+ version = "1.0.107"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
2888
+ dependencies = [
2889
+ "unicode-ident",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "proptest"
2894
+ version = "1.11.0"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2897
+ dependencies = [
2898
+ "bit-set",
2899
+ "bit-vec",
2900
+ "bitflags",
2901
+ "num-traits",
2902
+ "rand 0.9.5",
2903
+ "rand_chacha",
2904
+ "rand_xorshift",
2905
+ "regex-syntax",
2906
+ "rusty-fork",
2907
+ "tempfile",
2908
+ "unarray",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "pulp"
2913
+ version = "0.22.3"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "046aa45b989642ec2e4717c8e72d677b13edd831a4d3b6cf37d9a3e54912496a"
2916
+ dependencies = [
2917
+ "bytemuck",
2918
+ "cfg-if",
2919
+ "libm",
2920
+ "num-complex",
2921
+ "paste",
2922
+ "pulp-wasm-simd-flag",
2923
+ "raw-cpuid",
2924
+ "reborrow",
2925
+ "version_check",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "pulp-wasm-simd-flag"
2930
+ version = "0.1.1"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "1d8f70e07b9c3962945a74e59ca1c511bba65b6419468acc217c457d93f3c740"
2933
+
2934
+ [[package]]
2935
+ name = "pyo3"
2936
+ version = "0.29.2"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
2939
+ dependencies = [
2940
+ "libc",
2941
+ "once_cell",
2942
+ "portable-atomic",
2943
+ "pyo3-build-config",
2944
+ "pyo3-ffi",
2945
+ "pyo3-macros",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "pyo3-build-config"
2950
+ version = "0.29.2"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
2953
+ dependencies = [
2954
+ "target-lexicon",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "pyo3-ffi"
2959
+ version = "0.29.2"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
2962
+ dependencies = [
2963
+ "libc",
2964
+ "pyo3-build-config",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "pyo3-macros"
2969
+ version = "0.29.2"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
2972
+ dependencies = [
2973
+ "proc-macro2",
2974
+ "pyo3-macros-backend",
2975
+ "quote",
2976
+ "syn 2.0.119",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "pyo3-macros-backend"
2981
+ version = "0.29.2"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
2984
+ dependencies = [
2985
+ "heck",
2986
+ "proc-macro2",
2987
+ "quote",
2988
+ "syn 2.0.119",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "qd"
2993
+ version = "0.8.0"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "15f1304a5aecdcfe9ee72fbba90aa37b3aa067a69d14cb7f3d9deada0be7c07c"
2996
+ dependencies = [
2997
+ "bytemuck",
2998
+ "libm",
2999
+ "num-traits",
3000
+ "pulp",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "quick-error"
3005
+ version = "1.2.3"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
3008
+
3009
+ [[package]]
3010
+ name = "quick-xml"
3011
+ version = "0.41.0"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
3014
+ dependencies = [
3015
+ "memchr",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "quinn"
3020
+ version = "0.11.11"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
3023
+ dependencies = [
3024
+ "bytes",
3025
+ "cfg_aliases",
3026
+ "pin-project-lite",
3027
+ "quinn-proto",
3028
+ "quinn-udp",
3029
+ "rustc-hash",
3030
+ "rustls",
3031
+ "socket2",
3032
+ "thiserror 2.0.20",
3033
+ "tokio",
3034
+ "tracing",
3035
+ "web-time",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "quinn-proto"
3040
+ version = "0.11.16"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
3043
+ dependencies = [
3044
+ "bytes",
3045
+ "getrandom 0.4.3",
3046
+ "lru-slab",
3047
+ "rand 0.10.2",
3048
+ "rand_pcg",
3049
+ "ring",
3050
+ "rustc-hash",
3051
+ "rustls",
3052
+ "rustls-pki-types",
3053
+ "slab",
3054
+ "thiserror 2.0.20",
3055
+ "tinyvec",
3056
+ "tracing",
3057
+ "web-time",
3058
+ ]
3059
+
3060
+ [[package]]
3061
+ name = "quinn-udp"
3062
+ version = "0.5.15"
3063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
3065
+ dependencies = [
3066
+ "cfg_aliases",
3067
+ "libc",
3068
+ "once_cell",
3069
+ "socket2",
3070
+ "tracing",
3071
+ "windows-sys 0.61.2",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "quote"
3076
+ version = "1.0.47"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
3079
+ dependencies = [
3080
+ "proc-macro2",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "r-efi"
3085
+ version = "5.3.0"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3088
+
3089
+ [[package]]
3090
+ name = "r-efi"
3091
+ version = "6.0.0"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
3094
+
3095
+ [[package]]
3096
+ name = "rand"
3097
+ version = "0.9.5"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
3100
+ dependencies = [
3101
+ "rand_chacha",
3102
+ "rand_core 0.9.5",
3103
+ ]
3104
+
3105
+ [[package]]
3106
+ name = "rand"
3107
+ version = "0.10.2"
3108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
3110
+ dependencies = [
3111
+ "chacha20",
3112
+ "getrandom 0.4.3",
3113
+ "rand_core 0.10.1",
3114
+ ]
3115
+
3116
+ [[package]]
3117
+ name = "rand_chacha"
3118
+ version = "0.9.0"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3121
+ dependencies = [
3122
+ "ppv-lite86",
3123
+ "rand_core 0.9.5",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "rand_core"
3128
+ version = "0.9.5"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
3131
+ dependencies = [
3132
+ "getrandom 0.3.4",
3133
+ ]
3134
+
3135
+ [[package]]
3136
+ name = "rand_core"
3137
+ version = "0.10.1"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
3140
+
3141
+ [[package]]
3142
+ name = "rand_distr"
3143
+ version = "0.6.0"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
3146
+ dependencies = [
3147
+ "num-traits",
3148
+ "rand 0.10.2",
3149
+ ]
3150
+
3151
+ [[package]]
3152
+ name = "rand_pcg"
3153
+ version = "0.10.2"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
3156
+ dependencies = [
3157
+ "rand_core 0.10.1",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "rand_xorshift"
3162
+ version = "0.4.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
3165
+ dependencies = [
3166
+ "rand_core 0.9.5",
3167
+ ]
3168
+
3169
+ [[package]]
3170
+ name = "raw-cpuid"
3171
+ version = "11.6.0"
3172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3173
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
3174
+ dependencies = [
3175
+ "bitflags",
3176
+ ]
3177
+
3178
+ [[package]]
3179
+ name = "rawpointer"
3180
+ version = "0.2.1"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
3183
+
3184
+ [[package]]
3185
+ name = "rayon"
3186
+ version = "1.12.0"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
3189
+ dependencies = [
3190
+ "either",
3191
+ "rayon-core",
3192
+ ]
3193
+
3194
+ [[package]]
3195
+ name = "rayon-core"
3196
+ version = "1.13.0"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
3199
+ dependencies = [
3200
+ "crossbeam-deque",
3201
+ "crossbeam-utils",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "reborrow"
3206
+ version = "0.5.5"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
3209
+
3210
+ [[package]]
3211
+ name = "redox_syscall"
3212
+ version = "0.5.18"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3215
+ dependencies = [
3216
+ "bitflags",
3217
+ ]
3218
+
3219
+ [[package]]
3220
+ name = "ref-cast"
3221
+ version = "1.0.26"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
3224
+ dependencies = [
3225
+ "ref-cast-impl",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "ref-cast-impl"
3230
+ version = "1.0.26"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
3233
+ dependencies = [
3234
+ "proc-macro2",
3235
+ "quote",
3236
+ "syn 3.0.3",
3237
+ ]
3238
+
3239
+ [[package]]
3240
+ name = "regex"
3241
+ version = "1.13.1"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
3244
+ dependencies = [
3245
+ "aho-corasick",
3246
+ "memchr",
3247
+ "regex-automata",
3248
+ "regex-syntax",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "regex-automata"
3253
+ version = "0.4.18"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
3256
+ dependencies = [
3257
+ "aho-corasick",
3258
+ "memchr",
3259
+ "regex-syntax",
3260
+ ]
3261
+
3262
+ [[package]]
3263
+ name = "regex-syntax"
3264
+ version = "0.8.11"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
3267
+
3268
+ [[package]]
3269
+ name = "reqwest"
3270
+ version = "0.12.28"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3273
+ dependencies = [
3274
+ "base64 0.22.1",
3275
+ "bytes",
3276
+ "futures-channel",
3277
+ "futures-core",
3278
+ "futures-util",
3279
+ "http",
3280
+ "http-body",
3281
+ "http-body-util",
3282
+ "hyper",
3283
+ "hyper-rustls",
3284
+ "hyper-util",
3285
+ "js-sys",
3286
+ "log",
3287
+ "percent-encoding",
3288
+ "pin-project-lite",
3289
+ "quinn",
3290
+ "rustls",
3291
+ "rustls-pki-types",
3292
+ "serde",
3293
+ "serde_json",
3294
+ "serde_urlencoded",
3295
+ "sync_wrapper",
3296
+ "tokio",
3297
+ "tokio-rustls",
3298
+ "tower",
3299
+ "tower-http",
3300
+ "tower-service",
3301
+ "url",
3302
+ "wasm-bindgen",
3303
+ "wasm-bindgen-futures",
3304
+ "web-sys",
3305
+ "webpki-roots",
3306
+ ]
3307
+
3308
+ [[package]]
3309
+ name = "ring"
3310
+ version = "0.17.14"
3311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3312
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3313
+ dependencies = [
3314
+ "cc",
3315
+ "cfg-if",
3316
+ "getrandom 0.2.17",
3317
+ "libc",
3318
+ "untrusted",
3319
+ "windows-sys 0.52.0",
3320
+ ]
3321
+
3322
+ [[package]]
3323
+ name = "rmp"
3324
+ version = "0.8.15"
3325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3326
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
3327
+ dependencies = [
3328
+ "num-traits",
3329
+ ]
3330
+
3331
+ [[package]]
3332
+ name = "rmp-serde"
3333
+ version = "1.3.1"
3334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
3336
+ dependencies = [
3337
+ "rmp",
3338
+ "serde",
3339
+ ]
3340
+
3341
+ [[package]]
3342
+ name = "roff"
3343
+ version = "1.1.1"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189"
3346
+
3347
+ [[package]]
3348
+ name = "rsqlite-vfs"
3349
+ version = "0.1.1"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "c51c9ae4df8a7fba42103df5c621fa3c37eccf3a3c650879e90fc48b11cc192c"
3352
+ dependencies = [
3353
+ "hashbrown 0.16.1",
3354
+ "thiserror 2.0.20",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "rusqlite"
3359
+ version = "0.38.0"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "f1c93dd1c9683b438c392c492109cb702b8090b2bfc8fed6f6e4eb4523f17af3"
3362
+ dependencies = [
3363
+ "bitflags",
3364
+ "fallible-iterator",
3365
+ "fallible-streaming-iterator",
3366
+ "hashlink",
3367
+ "libsqlite3-sys",
3368
+ "smallvec",
3369
+ "sqlite-wasm-rs",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "rustc-hash"
3374
+ version = "2.1.3"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
3377
+
3378
+ [[package]]
3379
+ name = "rustc_version"
3380
+ version = "0.4.1"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3383
+ dependencies = [
3384
+ "semver",
3385
+ ]
3386
+
3387
+ [[package]]
3388
+ name = "rustix"
3389
+ version = "1.1.4"
3390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3391
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3392
+ dependencies = [
3393
+ "bitflags",
3394
+ "errno",
3395
+ "libc",
3396
+ "linux-raw-sys",
3397
+ "windows-sys 0.61.2",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "rustls"
3402
+ version = "0.23.45"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "0d41d731c7d2f962d1ccc364cec258de3c0e93b38c2fb3ba97ac74513048d634"
3405
+ dependencies = [
3406
+ "once_cell",
3407
+ "ring",
3408
+ "rustls-pki-types",
3409
+ "rustls-webpki",
3410
+ "subtle",
3411
+ "zeroize",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "rustls-pki-types"
3416
+ version = "1.15.1"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
3419
+ dependencies = [
3420
+ "web-time",
3421
+ "zeroize",
3422
+ ]
3423
+
3424
+ [[package]]
3425
+ name = "rustls-webpki"
3426
+ version = "0.103.15"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
3429
+ dependencies = [
3430
+ "ring",
3431
+ "rustls-pki-types",
3432
+ "untrusted",
3433
+ ]
3434
+
3435
+ [[package]]
3436
+ name = "rustversion"
3437
+ version = "1.0.23"
3438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3439
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
3440
+
3441
+ [[package]]
3442
+ name = "rusty-fork"
3443
+ version = "0.3.1"
3444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3445
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
3446
+ dependencies = [
3447
+ "fnv",
3448
+ "quick-error",
3449
+ "tempfile",
3450
+ "wait-timeout",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "ryu"
3455
+ version = "1.0.23"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3458
+
3459
+ [[package]]
3460
+ name = "safe_arch"
3461
+ version = "1.2.0"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f"
3464
+ dependencies = [
3465
+ "bytemuck",
3466
+ ]
3467
+
3468
+ [[package]]
3469
+ name = "same-file"
3470
+ version = "1.0.6"
3471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3472
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3473
+ dependencies = [
3474
+ "winapi-util",
3475
+ ]
3476
+
3477
+ [[package]]
3478
+ name = "schemars"
3479
+ version = "0.9.0"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3482
+ dependencies = [
3483
+ "dyn-clone",
3484
+ "ref-cast",
3485
+ "serde",
3486
+ "serde_json",
3487
+ ]
3488
+
3489
+ [[package]]
3490
+ name = "schemars"
3491
+ version = "1.2.2"
3492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3493
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
3494
+ dependencies = [
3495
+ "dyn-clone",
3496
+ "ref-cast",
3497
+ "serde",
3498
+ "serde_json",
3499
+ ]
3500
+
3501
+ [[package]]
3502
+ name = "scoped-tls"
3503
+ version = "1.0.1"
3504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3505
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
3506
+
3507
+ [[package]]
3508
+ name = "scopeguard"
3509
+ version = "1.2.0"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3512
+
3513
+ [[package]]
3514
+ name = "semver"
3515
+ version = "1.0.28"
3516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3517
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3518
+
3519
+ [[package]]
3520
+ name = "seq-macro"
3521
+ version = "0.3.6"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
3524
+
3525
+ [[package]]
3526
+ name = "serde"
3527
+ version = "1.0.229"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
3530
+ dependencies = [
3531
+ "serde_core",
3532
+ "serde_derive",
3533
+ ]
3534
+
3535
+ [[package]]
3536
+ name = "serde_bytes"
3537
+ version = "0.11.19"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
3540
+ dependencies = [
3541
+ "serde",
3542
+ "serde_core",
3543
+ ]
3544
+
3545
+ [[package]]
3546
+ name = "serde_core"
3547
+ version = "1.0.229"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
3550
+ dependencies = [
3551
+ "serde_derive",
3552
+ ]
3553
+
3554
+ [[package]]
3555
+ name = "serde_derive"
3556
+ version = "1.0.229"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
3559
+ dependencies = [
3560
+ "proc-macro2",
3561
+ "quote",
3562
+ "syn 3.0.3",
3563
+ ]
3564
+
3565
+ [[package]]
3566
+ name = "serde_json"
3567
+ version = "1.0.151"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
3570
+ dependencies = [
3571
+ "itoa",
3572
+ "memchr",
3573
+ "serde",
3574
+ "serde_core",
3575
+ "zmij",
3576
+ ]
3577
+
3578
+ [[package]]
3579
+ name = "serde_repr"
3580
+ version = "0.1.21"
3581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3582
+ checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
3583
+ dependencies = [
3584
+ "proc-macro2",
3585
+ "quote",
3586
+ "syn 3.0.3",
3587
+ ]
3588
+
3589
+ [[package]]
3590
+ name = "serde_spanned"
3591
+ version = "1.1.1"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
3594
+ dependencies = [
3595
+ "serde_core",
3596
+ ]
3597
+
3598
+ [[package]]
3599
+ name = "serde_urlencoded"
3600
+ version = "0.7.1"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3603
+ dependencies = [
3604
+ "form_urlencoded",
3605
+ "itoa",
3606
+ "ryu",
3607
+ "serde",
3608
+ ]
3609
+
3610
+ [[package]]
3611
+ name = "serde_with"
3612
+ version = "3.21.0"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
3615
+ dependencies = [
3616
+ "base64 0.22.1",
3617
+ "bs58",
3618
+ "chrono",
3619
+ "hex",
3620
+ "indexmap 1.9.3",
3621
+ "indexmap 2.14.0",
3622
+ "schemars 0.9.0",
3623
+ "schemars 1.2.2",
3624
+ "serde_core",
3625
+ "serde_json",
3626
+ "serde_with_macros",
3627
+ "time",
3628
+ ]
3629
+
3630
+ [[package]]
3631
+ name = "serde_with_macros"
3632
+ version = "3.21.0"
3633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3634
+ checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
3635
+ dependencies = [
3636
+ "darling",
3637
+ "proc-macro2",
3638
+ "quote",
3639
+ "syn 2.0.119",
3640
+ ]
3641
+
3642
+ [[package]]
3643
+ name = "sha2"
3644
+ version = "0.10.9"
3645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3646
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3647
+ dependencies = [
3648
+ "cfg-if",
3649
+ "cpufeatures 0.2.17",
3650
+ "digest 0.10.7",
3651
+ ]
3652
+
3653
+ [[package]]
3654
+ name = "sharded-slab"
3655
+ version = "0.1.7"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3658
+ dependencies = [
3659
+ "lazy_static",
3660
+ ]
3661
+
3662
+ [[package]]
3663
+ name = "shlex"
3664
+ version = "2.0.1"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3667
+
3668
+ [[package]]
3669
+ name = "simba"
3670
+ version = "0.10.2"
3671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3672
+ checksum = "f1a7200d82ff1c7b4235efd12f11e2537a402c91cf83a5cb97ce80eef787fde7"
3673
+ dependencies = [
3674
+ "approx",
3675
+ "num-complex",
3676
+ "num-traits",
3677
+ "wide",
3678
+ ]
3679
+
3680
+ [[package]]
3681
+ name = "simd-adler32"
3682
+ version = "0.3.10"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
3685
+
3686
+ [[package]]
3687
+ name = "slab"
3688
+ version = "0.4.12"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3691
+
3692
+ [[package]]
3693
+ name = "smallvec"
3694
+ version = "1.15.2"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3697
+
3698
+ [[package]]
3699
+ name = "socket2"
3700
+ version = "0.6.5"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
3703
+ dependencies = [
3704
+ "libc",
3705
+ "windows-sys 0.61.2",
3706
+ ]
3707
+
3708
+ [[package]]
3709
+ name = "spindle"
3710
+ version = "0.2.6"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "673aaca3d8aa5387a6eba861fbf984af5348d9df5d940c25c6366b19556fdf64"
3713
+ dependencies = [
3714
+ "atomic-wait",
3715
+ "crossbeam",
3716
+ "equator 0.4.2",
3717
+ "loom",
3718
+ "rayon",
3719
+ ]
3720
+
3721
+ [[package]]
3722
+ name = "sqlite-wasm-rs"
3723
+ version = "0.5.5"
3724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3725
+ checksum = "dc3efc0da82635d7e1ced0053bbbfa8c7ab9645d0bf36ceb4f7127bb85315d75"
3726
+ dependencies = [
3727
+ "cc",
3728
+ "js-sys",
3729
+ "rsqlite-vfs",
3730
+ "wasm-bindgen",
3731
+ ]
3732
+
3733
+ [[package]]
3734
+ name = "stable_deref_trait"
3735
+ version = "1.2.1"
3736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3737
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3738
+
3739
+ [[package]]
3740
+ name = "strsim"
3741
+ version = "0.11.1"
3742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3743
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3744
+
3745
+ [[package]]
3746
+ name = "subtle"
3747
+ version = "2.6.1"
3748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3749
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3750
+
3751
+ [[package]]
3752
+ name = "syn"
3753
+ version = "1.0.109"
3754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3755
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3756
+ dependencies = [
3757
+ "proc-macro2",
3758
+ "quote",
3759
+ "unicode-ident",
3760
+ ]
3761
+
3762
+ [[package]]
3763
+ name = "syn"
3764
+ version = "2.0.119"
3765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3766
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
3767
+ dependencies = [
3768
+ "proc-macro2",
3769
+ "quote",
3770
+ "unicode-ident",
3771
+ ]
3772
+
3773
+ [[package]]
3774
+ name = "syn"
3775
+ version = "3.0.3"
3776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3777
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
3778
+ dependencies = [
3779
+ "proc-macro2",
3780
+ "quote",
3781
+ "unicode-ident",
3782
+ ]
3783
+
3784
+ [[package]]
3785
+ name = "sync_wrapper"
3786
+ version = "1.0.2"
3787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3788
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3789
+ dependencies = [
3790
+ "futures-core",
3791
+ ]
3792
+
3793
+ [[package]]
3794
+ name = "synstructure"
3795
+ version = "0.13.2"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3798
+ dependencies = [
3799
+ "proc-macro2",
3800
+ "quote",
3801
+ "syn 2.0.119",
3802
+ ]
3803
+
3804
+ [[package]]
3805
+ name = "sysctl"
3806
+ version = "0.6.0"
3807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3808
+ checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
3809
+ dependencies = [
3810
+ "bitflags",
3811
+ "byteorder",
3812
+ "enum-as-inner",
3813
+ "libc",
3814
+ "thiserror 1.0.69",
3815
+ "walkdir",
3816
+ ]
3817
+
3818
+ [[package]]
3819
+ name = "target-lexicon"
3820
+ version = "0.13.5"
3821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3822
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3823
+
3824
+ [[package]]
3825
+ name = "tempfile"
3826
+ version = "3.27.0"
3827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3828
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3829
+ dependencies = [
3830
+ "fastrand",
3831
+ "getrandom 0.4.3",
3832
+ "once_cell",
3833
+ "rustix",
3834
+ "windows-sys 0.61.2",
3835
+ ]
3836
+
3837
+ [[package]]
3838
+ name = "thiserror"
3839
+ version = "1.0.69"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3842
+ dependencies = [
3843
+ "thiserror-impl 1.0.69",
3844
+ ]
3845
+
3846
+ [[package]]
3847
+ name = "thiserror"
3848
+ version = "2.0.20"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
3851
+ dependencies = [
3852
+ "thiserror-impl 2.0.20",
3853
+ ]
3854
+
3855
+ [[package]]
3856
+ name = "thiserror-impl"
3857
+ version = "1.0.69"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3860
+ dependencies = [
3861
+ "proc-macro2",
3862
+ "quote",
3863
+ "syn 2.0.119",
3864
+ ]
3865
+
3866
+ [[package]]
3867
+ name = "thiserror-impl"
3868
+ version = "2.0.20"
3869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3870
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
3871
+ dependencies = [
3872
+ "proc-macro2",
3873
+ "quote",
3874
+ "syn 3.0.3",
3875
+ ]
3876
+
3877
+ [[package]]
3878
+ name = "thread_local"
3879
+ version = "1.1.10"
3880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3881
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
3882
+ dependencies = [
3883
+ "cfg-if",
3884
+ ]
3885
+
3886
+ [[package]]
3887
+ name = "thrift"
3888
+ version = "0.17.0"
3889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3890
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
3891
+ dependencies = [
3892
+ "byteorder",
3893
+ "integer-encoding",
3894
+ "ordered-float",
3895
+ ]
3896
+
3897
+ [[package]]
3898
+ name = "time"
3899
+ version = "0.3.55"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
3902
+ dependencies = [
3903
+ "deranged",
3904
+ "num-conv",
3905
+ "powerfmt",
3906
+ "serde_core",
3907
+ "time-core",
3908
+ "time-macros",
3909
+ ]
3910
+
3911
+ [[package]]
3912
+ name = "time-core"
3913
+ version = "0.1.9"
3914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3915
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3916
+
3917
+ [[package]]
3918
+ name = "time-macros"
3919
+ version = "0.2.32"
3920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3921
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
3922
+ dependencies = [
3923
+ "num-conv",
3924
+ "time-core",
3925
+ ]
3926
+
3927
+ [[package]]
3928
+ name = "tiny-keccak"
3929
+ version = "2.0.2"
3930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3931
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3932
+ dependencies = [
3933
+ "crunchy",
3934
+ ]
3935
+
3936
+ [[package]]
3937
+ name = "tinystr"
3938
+ version = "0.8.3"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3941
+ dependencies = [
3942
+ "displaydoc",
3943
+ "zerovec",
3944
+ ]
3945
+
3946
+ [[package]]
3947
+ name = "tinytemplate"
3948
+ version = "1.2.1"
3949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3950
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3951
+ dependencies = [
3952
+ "serde",
3953
+ "serde_json",
3954
+ ]
3955
+
3956
+ [[package]]
3957
+ name = "tinyvec"
3958
+ version = "1.12.0"
3959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3960
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
3961
+ dependencies = [
3962
+ "tinyvec_macros",
3963
+ ]
3964
+
3965
+ [[package]]
3966
+ name = "tinyvec_macros"
3967
+ version = "0.1.1"
3968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3969
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3970
+
3971
+ [[package]]
3972
+ name = "tng-rs"
3973
+ version = "0.3.0"
3974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3975
+ checksum = "4824bc83e36e9ec8c3437dcac3eed8149fedc39dc31a422703d0989132046f28"
3976
+ dependencies = [
3977
+ "cc",
3978
+ "flate2",
3979
+ "log",
3980
+ "md-5",
3981
+ "thiserror 2.0.20",
3982
+ "zerocopy",
3983
+ ]
3984
+
3985
+ [[package]]
3986
+ name = "tokio"
3987
+ version = "1.53.1"
3988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3989
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
3990
+ dependencies = [
3991
+ "bytes",
3992
+ "libc",
3993
+ "mio",
3994
+ "pin-project-lite",
3995
+ "socket2",
3996
+ "windows-sys 0.61.2",
3997
+ ]
3998
+
3999
+ [[package]]
4000
+ name = "tokio-rustls"
4001
+ version = "0.26.4"
4002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4003
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4004
+ dependencies = [
4005
+ "rustls",
4006
+ "tokio",
4007
+ ]
4008
+
4009
+ [[package]]
4010
+ name = "toml"
4011
+ version = "0.9.12+spec-1.1.0"
4012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4013
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
4014
+ dependencies = [
4015
+ "indexmap 2.14.0",
4016
+ "serde_core",
4017
+ "serde_spanned",
4018
+ "toml_datetime 0.7.5+spec-1.1.0",
4019
+ "toml_parser",
4020
+ "toml_writer",
4021
+ "winnow 0.7.15",
4022
+ ]
4023
+
4024
+ [[package]]
4025
+ name = "toml_datetime"
4026
+ version = "0.7.5+spec-1.1.0"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
4029
+ dependencies = [
4030
+ "serde_core",
4031
+ ]
4032
+
4033
+ [[package]]
4034
+ name = "toml_datetime"
4035
+ version = "1.1.1+spec-1.1.0"
4036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4037
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
4038
+ dependencies = [
4039
+ "serde_core",
4040
+ ]
4041
+
4042
+ [[package]]
4043
+ name = "toml_edit"
4044
+ version = "0.25.13+spec-1.1.0"
4045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4046
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
4047
+ dependencies = [
4048
+ "indexmap 2.14.0",
4049
+ "toml_datetime 1.1.1+spec-1.1.0",
4050
+ "toml_parser",
4051
+ "winnow 1.0.4",
4052
+ ]
4053
+
4054
+ [[package]]
4055
+ name = "toml_parser"
4056
+ version = "1.1.3+spec-1.1.0"
4057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4058
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
4059
+ dependencies = [
4060
+ "winnow 1.0.4",
4061
+ ]
4062
+
4063
+ [[package]]
4064
+ name = "toml_writer"
4065
+ version = "1.1.2+spec-1.1.0"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
4068
+
4069
+ [[package]]
4070
+ name = "tower"
4071
+ version = "0.5.3"
4072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4073
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4074
+ dependencies = [
4075
+ "futures-core",
4076
+ "futures-util",
4077
+ "pin-project-lite",
4078
+ "sync_wrapper",
4079
+ "tokio",
4080
+ "tower-layer",
4081
+ "tower-service",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "tower-http"
4086
+ version = "0.6.11"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
4089
+ dependencies = [
4090
+ "bitflags",
4091
+ "bytes",
4092
+ "futures-util",
4093
+ "http",
4094
+ "http-body",
4095
+ "pin-project-lite",
4096
+ "tower",
4097
+ "tower-layer",
4098
+ "tower-service",
4099
+ "url",
4100
+ ]
4101
+
4102
+ [[package]]
4103
+ name = "tower-layer"
4104
+ version = "0.3.3"
4105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4106
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4107
+
4108
+ [[package]]
4109
+ name = "tower-service"
4110
+ version = "0.3.3"
4111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4112
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4113
+
4114
+ [[package]]
4115
+ name = "tracing"
4116
+ version = "0.1.44"
4117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4118
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4119
+ dependencies = [
4120
+ "pin-project-lite",
4121
+ "tracing-core",
4122
+ ]
4123
+
4124
+ [[package]]
4125
+ name = "tracing-core"
4126
+ version = "0.1.36"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4129
+ dependencies = [
4130
+ "once_cell",
4131
+ "valuable",
4132
+ ]
4133
+
4134
+ [[package]]
4135
+ name = "tracing-log"
4136
+ version = "0.2.0"
4137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4138
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
4139
+ dependencies = [
4140
+ "log",
4141
+ "once_cell",
4142
+ "tracing-core",
4143
+ ]
4144
+
4145
+ [[package]]
4146
+ name = "tracing-subscriber"
4147
+ version = "0.3.23"
4148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4149
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
4150
+ dependencies = [
4151
+ "matchers",
4152
+ "nu-ansi-term",
4153
+ "once_cell",
4154
+ "regex-automata",
4155
+ "sharded-slab",
4156
+ "smallvec",
4157
+ "thread_local",
4158
+ "tracing",
4159
+ "tracing-core",
4160
+ "tracing-log",
4161
+ ]
4162
+
4163
+ [[package]]
4164
+ name = "try-lock"
4165
+ version = "0.2.5"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4168
+
4169
+ [[package]]
4170
+ name = "twox-hash"
4171
+ version = "2.1.3"
4172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4173
+ checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
4174
+
4175
+ [[package]]
4176
+ name = "typenum"
4177
+ version = "1.20.1"
4178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4179
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4180
+
4181
+ [[package]]
4182
+ name = "unarray"
4183
+ version = "0.1.4"
4184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4185
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
4186
+
4187
+ [[package]]
4188
+ name = "unicode-ident"
4189
+ version = "1.0.24"
4190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4191
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4192
+
4193
+ [[package]]
4194
+ name = "untrusted"
4195
+ version = "0.9.0"
4196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4197
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4198
+
4199
+ [[package]]
4200
+ name = "url"
4201
+ version = "2.5.8"
4202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4203
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4204
+ dependencies = [
4205
+ "form_urlencoded",
4206
+ "idna",
4207
+ "percent-encoding",
4208
+ "serde",
4209
+ ]
4210
+
4211
+ [[package]]
4212
+ name = "utf8_iter"
4213
+ version = "1.0.4"
4214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4215
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4216
+
4217
+ [[package]]
4218
+ name = "utf8parse"
4219
+ version = "0.2.2"
4220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4221
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4222
+
4223
+ [[package]]
4224
+ name = "valuable"
4225
+ version = "0.1.1"
4226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4227
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4228
+
4229
+ [[package]]
4230
+ name = "vcpkg"
4231
+ version = "0.2.15"
4232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4233
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4234
+
4235
+ [[package]]
4236
+ name = "version_check"
4237
+ version = "0.9.5"
4238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4239
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4240
+
4241
+ [[package]]
4242
+ name = "wait-timeout"
4243
+ version = "0.2.1"
4244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4245
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4246
+ dependencies = [
4247
+ "libc",
4248
+ ]
4249
+
4250
+ [[package]]
4251
+ name = "walkdir"
4252
+ version = "2.5.0"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4255
+ dependencies = [
4256
+ "same-file",
4257
+ "winapi-util",
4258
+ ]
4259
+
4260
+ [[package]]
4261
+ name = "want"
4262
+ version = "0.3.1"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4265
+ dependencies = [
4266
+ "try-lock",
4267
+ ]
4268
+
4269
+ [[package]]
4270
+ name = "wasi"
4271
+ version = "0.11.1+wasi-snapshot-preview1"
4272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4273
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4274
+
4275
+ [[package]]
4276
+ name = "wasip2"
4277
+ version = "1.0.4+wasi-0.2.12"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
4280
+ dependencies = [
4281
+ "wit-bindgen",
4282
+ ]
4283
+
4284
+ [[package]]
4285
+ name = "wasm-bindgen"
4286
+ version = "0.2.126"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
4289
+ dependencies = [
4290
+ "cfg-if",
4291
+ "once_cell",
4292
+ "rustversion",
4293
+ "wasm-bindgen-macro",
4294
+ "wasm-bindgen-shared",
4295
+ ]
4296
+
4297
+ [[package]]
4298
+ name = "wasm-bindgen-futures"
4299
+ version = "0.4.76"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
4302
+ dependencies = [
4303
+ "js-sys",
4304
+ "wasm-bindgen",
4305
+ ]
4306
+
4307
+ [[package]]
4308
+ name = "wasm-bindgen-macro"
4309
+ version = "0.2.126"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
4312
+ dependencies = [
4313
+ "quote",
4314
+ "wasm-bindgen-macro-support",
4315
+ ]
4316
+
4317
+ [[package]]
4318
+ name = "wasm-bindgen-macro-support"
4319
+ version = "0.2.126"
4320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4321
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
4322
+ dependencies = [
4323
+ "bumpalo",
4324
+ "proc-macro2",
4325
+ "quote",
4326
+ "syn 2.0.119",
4327
+ "wasm-bindgen-shared",
4328
+ ]
4329
+
4330
+ [[package]]
4331
+ name = "wasm-bindgen-shared"
4332
+ version = "0.2.126"
4333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4334
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
4335
+ dependencies = [
4336
+ "unicode-ident",
4337
+ ]
4338
+
4339
+ [[package]]
4340
+ name = "web-sys"
4341
+ version = "0.3.103"
4342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4343
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
4344
+ dependencies = [
4345
+ "js-sys",
4346
+ "wasm-bindgen",
4347
+ ]
4348
+
4349
+ [[package]]
4350
+ name = "web-time"
4351
+ version = "1.1.0"
4352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4353
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4354
+ dependencies = [
4355
+ "js-sys",
4356
+ "wasm-bindgen",
4357
+ ]
4358
+
4359
+ [[package]]
4360
+ name = "webpki-roots"
4361
+ version = "1.0.9"
4362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4363
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
4364
+ dependencies = [
4365
+ "rustls-pki-types",
4366
+ ]
4367
+
4368
+ [[package]]
4369
+ name = "wide"
4370
+ version = "1.7.1"
4371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4372
+ checksum = "d920ac99c3c8edce110cb8d07dbb324d6d026011dce85b1e9355b70f0adacc4f"
4373
+ dependencies = [
4374
+ "bytemuck",
4375
+ "safe_arch",
4376
+ ]
4377
+
4378
+ [[package]]
4379
+ name = "winapi-util"
4380
+ version = "0.1.11"
4381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4382
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4383
+ dependencies = [
4384
+ "windows-sys 0.61.2",
4385
+ ]
4386
+
4387
+ [[package]]
4388
+ name = "windows-core"
4389
+ version = "0.62.2"
4390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4391
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4392
+ dependencies = [
4393
+ "windows-implement",
4394
+ "windows-interface",
4395
+ "windows-link",
4396
+ "windows-result",
4397
+ "windows-strings",
4398
+ ]
4399
+
4400
+ [[package]]
4401
+ name = "windows-implement"
4402
+ version = "0.60.2"
4403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4404
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4405
+ dependencies = [
4406
+ "proc-macro2",
4407
+ "quote",
4408
+ "syn 2.0.119",
4409
+ ]
4410
+
4411
+ [[package]]
4412
+ name = "windows-interface"
4413
+ version = "0.59.3"
4414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4415
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4416
+ dependencies = [
4417
+ "proc-macro2",
4418
+ "quote",
4419
+ "syn 2.0.119",
4420
+ ]
4421
+
4422
+ [[package]]
4423
+ name = "windows-link"
4424
+ version = "0.2.1"
4425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4426
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4427
+
4428
+ [[package]]
4429
+ name = "windows-result"
4430
+ version = "0.4.1"
4431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4432
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4433
+ dependencies = [
4434
+ "windows-link",
4435
+ ]
4436
+
4437
+ [[package]]
4438
+ name = "windows-strings"
4439
+ version = "0.5.1"
4440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4441
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4442
+ dependencies = [
4443
+ "windows-link",
4444
+ ]
4445
+
4446
+ [[package]]
4447
+ name = "windows-sys"
4448
+ version = "0.42.0"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
4451
+ dependencies = [
4452
+ "windows_aarch64_gnullvm 0.42.2",
4453
+ "windows_aarch64_msvc 0.42.2",
4454
+ "windows_i686_gnu 0.42.2",
4455
+ "windows_i686_msvc 0.42.2",
4456
+ "windows_x86_64_gnu 0.42.2",
4457
+ "windows_x86_64_gnullvm 0.42.2",
4458
+ "windows_x86_64_msvc 0.42.2",
4459
+ ]
4460
+
4461
+ [[package]]
4462
+ name = "windows-sys"
4463
+ version = "0.52.0"
4464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4465
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4466
+ dependencies = [
4467
+ "windows-targets",
4468
+ ]
4469
+
4470
+ [[package]]
4471
+ name = "windows-sys"
4472
+ version = "0.61.2"
4473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4474
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4475
+ dependencies = [
4476
+ "windows-link",
4477
+ ]
4478
+
4479
+ [[package]]
4480
+ name = "windows-targets"
4481
+ version = "0.52.6"
4482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4483
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4484
+ dependencies = [
4485
+ "windows_aarch64_gnullvm 0.52.6",
4486
+ "windows_aarch64_msvc 0.52.6",
4487
+ "windows_i686_gnu 0.52.6",
4488
+ "windows_i686_gnullvm",
4489
+ "windows_i686_msvc 0.52.6",
4490
+ "windows_x86_64_gnu 0.52.6",
4491
+ "windows_x86_64_gnullvm 0.52.6",
4492
+ "windows_x86_64_msvc 0.52.6",
4493
+ ]
4494
+
4495
+ [[package]]
4496
+ name = "windows_aarch64_gnullvm"
4497
+ version = "0.42.2"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4500
+
4501
+ [[package]]
4502
+ name = "windows_aarch64_gnullvm"
4503
+ version = "0.52.6"
4504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4505
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4506
+
4507
+ [[package]]
4508
+ name = "windows_aarch64_msvc"
4509
+ version = "0.42.2"
4510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4511
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4512
+
4513
+ [[package]]
4514
+ name = "windows_aarch64_msvc"
4515
+ version = "0.52.6"
4516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4517
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4518
+
4519
+ [[package]]
4520
+ name = "windows_i686_gnu"
4521
+ version = "0.42.2"
4522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4523
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4524
+
4525
+ [[package]]
4526
+ name = "windows_i686_gnu"
4527
+ version = "0.52.6"
4528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4529
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4530
+
4531
+ [[package]]
4532
+ name = "windows_i686_gnullvm"
4533
+ version = "0.52.6"
4534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4535
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4536
+
4537
+ [[package]]
4538
+ name = "windows_i686_msvc"
4539
+ version = "0.42.2"
4540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4541
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4542
+
4543
+ [[package]]
4544
+ name = "windows_i686_msvc"
4545
+ version = "0.52.6"
4546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4547
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4548
+
4549
+ [[package]]
4550
+ name = "windows_x86_64_gnu"
4551
+ version = "0.42.2"
4552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4553
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4554
+
4555
+ [[package]]
4556
+ name = "windows_x86_64_gnu"
4557
+ version = "0.52.6"
4558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4559
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4560
+
4561
+ [[package]]
4562
+ name = "windows_x86_64_gnullvm"
4563
+ version = "0.42.2"
4564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4565
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4566
+
4567
+ [[package]]
4568
+ name = "windows_x86_64_gnullvm"
4569
+ version = "0.52.6"
4570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4571
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4572
+
4573
+ [[package]]
4574
+ name = "windows_x86_64_msvc"
4575
+ version = "0.42.2"
4576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4577
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4578
+
4579
+ [[package]]
4580
+ name = "windows_x86_64_msvc"
4581
+ version = "0.52.6"
4582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4583
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4584
+
4585
+ [[package]]
4586
+ name = "winnow"
4587
+ version = "0.7.15"
4588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4589
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4590
+
4591
+ [[package]]
4592
+ name = "winnow"
4593
+ version = "1.0.4"
4594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4595
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
4596
+ dependencies = [
4597
+ "memchr",
4598
+ ]
4599
+
4600
+ [[package]]
4601
+ name = "wit-bindgen"
4602
+ version = "0.57.1"
4603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4604
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4605
+
4606
+ [[package]]
4607
+ name = "writeable"
4608
+ version = "0.6.3"
4609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4610
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4611
+
4612
+ [[package]]
4613
+ name = "yoke"
4614
+ version = "0.8.3"
4615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4616
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4617
+ dependencies = [
4618
+ "stable_deref_trait",
4619
+ "yoke-derive",
4620
+ "zerofrom",
4621
+ ]
4622
+
4623
+ [[package]]
4624
+ name = "yoke-derive"
4625
+ version = "0.8.2"
4626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4627
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4628
+ dependencies = [
4629
+ "proc-macro2",
4630
+ "quote",
4631
+ "syn 2.0.119",
4632
+ "synstructure",
4633
+ ]
4634
+
4635
+ [[package]]
4636
+ name = "zerocopy"
4637
+ version = "0.8.56"
4638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4639
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
4640
+ dependencies = [
4641
+ "zerocopy-derive",
4642
+ ]
4643
+
4644
+ [[package]]
4645
+ name = "zerocopy-derive"
4646
+ version = "0.8.56"
4647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4648
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
4649
+ dependencies = [
4650
+ "proc-macro2",
4651
+ "quote",
4652
+ "syn 2.0.119",
4653
+ ]
4654
+
4655
+ [[package]]
4656
+ name = "zerofrom"
4657
+ version = "0.1.8"
4658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4659
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4660
+ dependencies = [
4661
+ "zerofrom-derive",
4662
+ ]
4663
+
4664
+ [[package]]
4665
+ name = "zerofrom-derive"
4666
+ version = "0.1.7"
4667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4668
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4669
+ dependencies = [
4670
+ "proc-macro2",
4671
+ "quote",
4672
+ "syn 2.0.119",
4673
+ "synstructure",
4674
+ ]
4675
+
4676
+ [[package]]
4677
+ name = "zeroize"
4678
+ version = "1.9.0"
4679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4680
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4681
+
4682
+ [[package]]
4683
+ name = "zerotrie"
4684
+ version = "0.2.4"
4685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4686
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4687
+ dependencies = [
4688
+ "displaydoc",
4689
+ "yoke",
4690
+ "zerofrom",
4691
+ ]
4692
+
4693
+ [[package]]
4694
+ name = "zerovec"
4695
+ version = "0.11.6"
4696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4697
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4698
+ dependencies = [
4699
+ "yoke",
4700
+ "zerofrom",
4701
+ "zerovec-derive",
4702
+ ]
4703
+
4704
+ [[package]]
4705
+ name = "zerovec-derive"
4706
+ version = "0.11.3"
4707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4708
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4709
+ dependencies = [
4710
+ "proc-macro2",
4711
+ "quote",
4712
+ "syn 2.0.119",
4713
+ ]
4714
+
4715
+ [[package]]
4716
+ name = "zmij"
4717
+ version = "1.0.23"
4718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4719
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
4720
+
4721
+ [[package]]
4722
+ name = "zstd"
4723
+ version = "0.13.3"
4724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4725
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4726
+ dependencies = [
4727
+ "zstd-safe",
4728
+ ]
4729
+
4730
+ [[package]]
4731
+ name = "zstd-safe"
4732
+ version = "7.2.4"
4733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4734
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4735
+ dependencies = [
4736
+ "zstd-sys",
4737
+ ]
4738
+
4739
+ [[package]]
4740
+ name = "zstd-sys"
4741
+ version = "2.0.16+zstd.1.5.7"
4742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4743
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4744
+ dependencies = [
4745
+ "cc",
4746
+ "pkg-config",
4747
+ ]