umol-py 0.6.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (572) hide show
  1. umol_py-0.6.0/Cargo.lock +2637 -0
  2. umol_py-0.6.0/Cargo.toml +23 -0
  3. umol_py-0.6.0/LICENSE-APACHE +201 -0
  4. umol_py-0.6.0/LICENSE-MIT +21 -0
  5. umol_py-0.6.0/PKG-INFO +66 -0
  6. umol_py-0.6.0/README.md +46 -0
  7. umol_py-0.6.0/pyproject.toml +35 -0
  8. umol_py-0.6.0/python/umol/__init__.py +463 -0
  9. umol_py-0.6.0/python/umol/elements.py +31 -0
  10. umol_py-0.6.0/umol-chem/Cargo.toml +44 -0
  11. umol_py-0.6.0/umol-chem/LICENSE-APACHE +201 -0
  12. umol_py-0.6.0/umol-chem/LICENSE-MIT +21 -0
  13. umol_py-0.6.0/umol-chem/README.md +46 -0
  14. umol_py-0.6.0/umol-chem/benches/elements.rs +105 -0
  15. umol_py-0.6.0/umol-chem/src/configuration.rs +388 -0
  16. umol_py-0.6.0/umol-chem/src/element.rs +1478 -0
  17. umol_py-0.6.0/umol-chem/src/error.rs +91 -0
  18. umol_py-0.6.0/umol-chem/src/isotope.rs +564 -0
  19. umol_py-0.6.0/umol-chem/src/isotope_data.rs +3486 -0
  20. umol_py-0.6.0/umol-chem/src/lib.rs +11 -0
  21. umol_py-0.6.0/umol-chem/src/occupation.rs +206 -0
  22. umol_py-0.6.0/umol-chem/src/spin.rs +667 -0
  23. umol_py-0.6.0/umol-chem/src/units/angle.rs +139 -0
  24. umol_py-0.6.0/umol-chem/src/units/length.rs +142 -0
  25. umol_py-0.6.0/umol-chem/src/units/time.rs +173 -0
  26. umol_py-0.6.0/umol-chem/src/units.rs +8 -0
  27. umol_py-0.6.0/umol-edn/Cargo.toml +60 -0
  28. umol_py-0.6.0/umol-edn/LICENSE-APACHE +201 -0
  29. umol_py-0.6.0/umol-edn/LICENSE-MIT +21 -0
  30. umol_py-0.6.0/umol-edn/README.md +86 -0
  31. umol_py-0.6.0/umol-edn/benches/memory.rs +138 -0
  32. umol_py-0.6.0/umol-edn/benches/parsing.rs +508 -0
  33. umol_py-0.6.0/umol-edn/spec/edn-spec.md +256 -0
  34. umol_py-0.6.0/umol-edn/src/bigdecimal.rs +204 -0
  35. umol_py-0.6.0/umol-edn/src/bigint.rs +224 -0
  36. umol_py-0.6.0/umol-edn/src/collections.rs +1039 -0
  37. umol_py-0.6.0/umol-edn/src/config.rs +102 -0
  38. umol_py-0.6.0/umol-edn/src/de.rs +1390 -0
  39. umol_py-0.6.0/umol-edn/src/display.rs +260 -0
  40. umol_py-0.6.0/umol-edn/src/dyn_edn.rs +935 -0
  41. umol_py-0.6.0/umol-edn/src/edn.rs +1079 -0
  42. umol_py-0.6.0/umol-edn/src/error.rs +202 -0
  43. umol_py-0.6.0/umol-edn/src/formatter.rs +782 -0
  44. umol_py-0.6.0/umol-edn/src/lib.rs +189 -0
  45. umol_py-0.6.0/umol-edn/src/list.rs +289 -0
  46. umol_py-0.6.0/umol-edn/src/parser.rs +1188 -0
  47. umol_py-0.6.0/umol-edn/src/reader.rs +81 -0
  48. umol_py-0.6.0/umol-edn/src/ser.rs +1690 -0
  49. umol_py-0.6.0/umol-edn/src/serde.rs +44 -0
  50. umol_py-0.6.0/umol-edn/src/set.rs +320 -0
  51. umol_py-0.6.0/umol-edn/src/streaming.rs +785 -0
  52. umol_py-0.6.0/umol-edn/src/tagged.rs +246 -0
  53. umol_py-0.6.0/umol-edn/src/tags.rs +69 -0
  54. umol_py-0.6.0/umol-edn/src/traits.rs +1198 -0
  55. umol_py-0.6.0/umol-edn/tests/conformance.rs +1092 -0
  56. umol_py-0.6.0/umol-edn/tests/derives.rs +684 -0
  57. umol_py-0.6.0/umol-edn/tests/import_paths.rs +37 -0
  58. umol_py-0.6.0/umol-edn/tests/macros.rs +144 -0
  59. umol_py-0.6.0/umol-edn/tests/parity.rs +468 -0
  60. umol_py-0.6.0/umol-edn/tests/property.rs +223 -0
  61. umol_py-0.6.0/umol-edn-macros/Cargo.toml +20 -0
  62. umol_py-0.6.0/umol-edn-macros/LICENSE-APACHE +201 -0
  63. umol_py-0.6.0/umol-edn-macros/LICENSE-MIT +21 -0
  64. umol_py-0.6.0/umol-edn-macros/README.md +46 -0
  65. umol_py-0.6.0/umol-edn-macros/src/derive_from_edn.rs +983 -0
  66. umol_py-0.6.0/umol-edn-macros/src/derive_to_edn.rs +412 -0
  67. umol_py-0.6.0/umol-edn-macros/src/lib.rs +329 -0
  68. umol_py-0.6.0/umol-geometric-core/Cargo.toml +24 -0
  69. umol_py-0.6.0/umol-geometric-core/LICENSE-APACHE +201 -0
  70. umol_py-0.6.0/umol-geometric-core/LICENSE-MIT +21 -0
  71. umol_py-0.6.0/umol-geometric-core/README.md +46 -0
  72. umol_py-0.6.0/umol-geometric-core/src/lib.rs +9 -0
  73. umol_py-0.6.0/umol-geometric-core/src/orientation.rs +50 -0
  74. umol_py-0.6.0/umol-geometric-core/src/plane.rs +43 -0
  75. umol_py-0.6.0/umol-geometric-core/src/point.rs +29 -0
  76. umol_py-0.6.0/umol-graph/.cargo/config.toml +8 -0
  77. umol_py-0.6.0/umol-graph/Cargo.toml +102 -0
  78. umol_py-0.6.0/umol-graph/LICENSE-APACHE +201 -0
  79. umol_py-0.6.0/umol-graph/LICENSE-MIT +21 -0
  80. umol_py-0.6.0/umol-graph/README.md +46 -0
  81. umol_py-0.6.0/umol-graph/benches/fingerprint.rs +203 -0
  82. umol_py-0.6.0/umol-graph/benches/morgan_rdkit.py +60 -0
  83. umol_py-0.6.0/umol-graph/benches/resolve.rs +34 -0
  84. umol_py-0.6.0/umol-graph/benches/substructure.rs +209 -0
  85. umol_py-0.6.0/umol-graph/benches/substructure_rdkit.py +38 -0
  86. umol_py-0.6.0/umol-graph/config/default-registry.toml +1221 -0
  87. umol_py-0.6.0/umol-graph/config/default-valence-table.toml +156 -0
  88. umol_py-0.6.0/umol-graph/config/mdl-valence-table.toml +165 -0
  89. umol_py-0.6.0/umol-graph/config/smiles-valence-table.toml +194 -0
  90. umol_py-0.6.0/umol-graph/insta.yaml +28 -0
  91. umol_py-0.6.0/umol-graph/src/bin/classify_mol_files.rs +443 -0
  92. umol_py-0.6.0/umol-graph/src/bin/classify_sdf_files.rs +443 -0
  93. umol_py-0.6.0/umol-graph/src/bin/classify_smiles_strings.rs +832 -0
  94. umol_py-0.6.0/umol-graph/src/bin/test_mol_file.rs +119 -0
  95. umol_py-0.6.0/umol-graph/src/bin/test_smiles.rs +92 -0
  96. umol_py-0.6.0/umol-graph/src/bin/verify_stereo.rs +241 -0
  97. umol_py-0.6.0/umol-graph/src/fingerprint/bit_fp.rs +293 -0
  98. umol_py-0.6.0/umol-graph/src/fingerprint/ecfp.rs +204 -0
  99. umol_py-0.6.0/umol-graph/src/fingerprint/feature_set.rs +301 -0
  100. umol_py-0.6.0/umol-graph/src/fingerprint/featurizer.rs +57 -0
  101. umol_py-0.6.0/umol-graph/src/fingerprint/morgan.rs +175 -0
  102. umol_py-0.6.0/umol-graph/src/fingerprint/pattern.rs +280 -0
  103. umol_py-0.6.0/umol-graph/src/fingerprint/reaction.rs +145 -0
  104. umol_py-0.6.0/umol-graph/src/fingerprint/substructure.rs +186 -0
  105. umol_py-0.6.0/umol-graph/src/fingerprint/wl.rs +152 -0
  106. umol_py-0.6.0/umol-graph/src/fingerprint.rs +21 -0
  107. umol_py-0.6.0/umol-graph/src/hash.rs +497 -0
  108. umol_py-0.6.0/umol-graph/src/ingest.rs +1660 -0
  109. umol_py-0.6.0/umol-graph/src/lib.rs +8 -0
  110. umol_py-0.6.0/umol-graph/src/ops/aromaticity/clar.rs +411 -0
  111. umol_py-0.6.0/umol-graph/src/ops/aromaticity/hmo.rs +593 -0
  112. umol_py-0.6.0/umol-graph/src/ops/aromaticity/hueckel.rs +765 -0
  113. umol_py-0.6.0/umol-graph/src/ops/aromaticity.rs +1094 -0
  114. umol_py-0.6.0/umol-graph/src/ops/canonicalize.rs +66 -0
  115. umol_py-0.6.0/umol-graph/src/ops/invariant.rs +854 -0
  116. umol_py-0.6.0/umol-graph/src/ops/model.rs +654 -0
  117. umol_py-0.6.0/umol-graph/src/ops/resolve/aromaticity.rs +2012 -0
  118. umol_py-0.6.0/umol-graph/src/ops/resolve/bonds.rs +142 -0
  119. umol_py-0.6.0/umol-graph/src/ops/resolve/multicenter.rs +232 -0
  120. umol_py-0.6.0/umol-graph/src/ops/resolve/stereo.rs +1044 -0
  121. umol_py-0.6.0/umol-graph/src/ops/resolve/valence.rs +264 -0
  122. umol_py-0.6.0/umol-graph/src/ops/resolve.rs +1569 -0
  123. umol_py-0.6.0/umol-graph/src/ops/stereo.rs +679 -0
  124. umol_py-0.6.0/umol-graph/src/ops/transform/aromatizer.rs +228 -0
  125. umol_py-0.6.0/umol-graph/src/ops/transform/delocalize_charge.rs +231 -0
  126. umol_py-0.6.0/umol-graph/src/ops/transform/kekulizer.rs +917 -0
  127. umol_py-0.6.0/umol-graph/src/ops/transform.rs +35 -0
  128. umol_py-0.6.0/umol-graph/src/ops/valence/atom_typing.rs +382 -0
  129. umol_py-0.6.0/umol-graph/src/ops/valence/compare.rs +157 -0
  130. umol_py-0.6.0/umol-graph/src/ops/valence/completion.rs +345 -0
  131. umol_py-0.6.0/umol-graph/src/ops/valence/counts.rs +797 -0
  132. umol_py-0.6.0/umol-graph/src/ops/valence/registry.rs +346 -0
  133. umol_py-0.6.0/umol-graph/src/ops/valence/table.rs +392 -0
  134. umol_py-0.6.0/umol-graph/src/ops/valence.rs +16 -0
  135. umol_py-0.6.0/umol-graph/src/ops/validate/aromaticity.rs +291 -0
  136. umol_py-0.6.0/umol-graph/src/ops/validate/connectivity.rs +331 -0
  137. umol_py-0.6.0/umol-graph/src/ops/validate/constraint/incidence.rs +874 -0
  138. umol_py-0.6.0/umol-graph/src/ops/validate/constraint/molecule.rs +384 -0
  139. umol_py-0.6.0/umol-graph/src/ops/validate/constraint/relational.rs +859 -0
  140. umol_py-0.6.0/umol-graph/src/ops/validate/constraint/ring.rs +408 -0
  141. umol_py-0.6.0/umol-graph/src/ops/validate/constraint.rs +889 -0
  142. umol_py-0.6.0/umol-graph/src/ops/validate/spin.rs +614 -0
  143. umol_py-0.6.0/umol-graph/src/ops/validate/stereo.rs +548 -0
  144. umol_py-0.6.0/umol-graph/src/ops/validate/valence.rs +115 -0
  145. umol_py-0.6.0/umol-graph/src/ops/validate.rs +629 -0
  146. umol_py-0.6.0/umol-graph/src/ops.rs +15 -0
  147. umol_py-0.6.0/umol-graph/src/parse.rs +202 -0
  148. umol_py-0.6.0/umol-graph/src/utils.rs +9 -0
  149. umol_py-0.6.0/umol-graph-core/Cargo.toml +40 -0
  150. umol_py-0.6.0/umol-graph-core/LICENSE-APACHE +201 -0
  151. umol_py-0.6.0/umol-graph-core/LICENSE-MIT +21 -0
  152. umol_py-0.6.0/umol-graph-core/README.md +84 -0
  153. umol_py-0.6.0/umol-graph-core/benches/algorithms.rs +1367 -0
  154. umol_py-0.6.0/umol-graph-core/benches/matching/data/azulene_planar.toml +22 -0
  155. umol_py-0.6.0/umol-graph-core/benches/matching/data/benzene_planar.toml +16 -0
  156. umol_py-0.6.0/umol-graph-core/benches/matching/data/coronene_planar.toml +46 -0
  157. umol_py-0.6.0/umol-graph-core/benches/matching/data/four_disconnected_hexagons.toml +33 -0
  158. umol_py-0.6.0/umol-graph-core/benches/matching/data/fullerene_c60_planar.toml +130 -0
  159. umol_py-0.6.0/umol-graph-core/benches/matching/data/grid_3x3_planar.toml +25 -0
  160. umol_py-0.6.0/umol-graph-core/benches/matching/data/ladder_2x4_planar.toml +22 -0
  161. umol_py-0.6.0/umol-graph-core/benches/matching/data/naphthalene_planar.toml +22 -0
  162. umol_py-0.6.0/umol-graph-core/src/algorithms/automorphism.rs +643 -0
  163. umol_py-0.6.0/umol-graph-core/src/algorithms/bipartite.rs +152 -0
  164. umol_py-0.6.0/umol-graph-core/src/algorithms/common_subgraph/enumeration.rs +692 -0
  165. umol_py-0.6.0/umol-graph-core/src/algorithms/common_subgraph/maximum.rs +1010 -0
  166. umol_py-0.6.0/umol-graph-core/src/algorithms/common_subgraph.rs +15 -0
  167. umol_py-0.6.0/umol-graph-core/src/algorithms/connected_subgraphs.rs +242 -0
  168. umol_py-0.6.0/umol-graph-core/src/algorithms/connectivity/biconnected.rs +158 -0
  169. umol_py-0.6.0/umol-graph-core/src/algorithms/connectivity/components.rs +80 -0
  170. umol_py-0.6.0/umol-graph-core/src/algorithms/connectivity.rs +14 -0
  171. umol_py-0.6.0/umol-graph-core/src/algorithms/cycles/basis.rs +400 -0
  172. umol_py-0.6.0/umol-graph-core/src/algorithms/cycles/relevant.rs +1065 -0
  173. umol_py-0.6.0/umol-graph-core/src/algorithms/cycles/simple.rs +249 -0
  174. umol_py-0.6.0/umol-graph-core/src/algorithms/cycles/urf.rs +314 -0
  175. umol_py-0.6.0/umol-graph-core/src/algorithms/cycles.rs +1960 -0
  176. umol_py-0.6.0/umol-graph-core/src/algorithms/independent_set.rs +113 -0
  177. umol_py-0.6.0/umol-graph-core/src/algorithms/matching/count.rs +695 -0
  178. umol_py-0.6.0/umol-graph-core/src/algorithms/matching/enumeration.rs +336 -0
  179. umol_py-0.6.0/umol-graph-core/src/algorithms/matching/maximum.rs +1734 -0
  180. umol_py-0.6.0/umol-graph-core/src/algorithms/matching.rs +22 -0
  181. umol_py-0.6.0/umol-graph-core/src/algorithms/paths.rs +217 -0
  182. umol_py-0.6.0/umol-graph-core/src/algorithms/refinement.rs +369 -0
  183. umol_py-0.6.0/umol-graph-core/src/algorithms/subgraph_isomorphism.rs +2503 -0
  184. umol_py-0.6.0/umol-graph-core/src/algorithms/topological_sort.rs +87 -0
  185. umol_py-0.6.0/umol-graph-core/src/algorithms/traversal.rs +89 -0
  186. umol_py-0.6.0/umol-graph-core/src/algorithms.rs +21 -0
  187. umol_py-0.6.0/umol-graph-core/src/correspondence.rs +1024 -0
  188. umol_py-0.6.0/umol-graph-core/src/digraph.rs +102 -0
  189. umol_py-0.6.0/umol-graph-core/src/graph.rs +1263 -0
  190. umol_py-0.6.0/umol-graph-core/src/lib.rs +60 -0
  191. umol_py-0.6.0/umol-graph-core/src/relation.rs +3276 -0
  192. umol_py-0.6.0/umol-graph-core/src/rewriting.rs +410 -0
  193. umol_py-0.6.0/umol-graph-core/src/union_find.rs +114 -0
  194. umol_py-0.6.0/umol-graph-ir/Cargo.toml +90 -0
  195. umol_py-0.6.0/umol-graph-ir/LICENSE-APACHE +201 -0
  196. umol_py-0.6.0/umol-graph-ir/LICENSE-MIT +21 -0
  197. umol_py-0.6.0/umol-graph-ir/README.md +46 -0
  198. umol_py-0.6.0/umol-graph-ir/benches/canonicalize.rs +505 -0
  199. umol_py-0.6.0/umol-graph-ir/benches/concrete.rs +130 -0
  200. umol_py-0.6.0/umol-graph-ir/benches/conversion.rs +65 -0
  201. umol_py-0.6.0/umol-graph-ir/benches/fixtures.rs +60 -0
  202. umol_py-0.6.0/umol-graph-ir/benches/parsing.rs +159 -0
  203. umol_py-0.6.0/umol-graph-ir/benches/rendering.rs +41 -0
  204. umol_py-0.6.0/umol-graph-ir/examples/profile_indole.rs +26 -0
  205. umol_py-0.6.0/umol-graph-ir/spec/umol-dsl-spec.md +1395 -0
  206. umol_py-0.6.0/umol-graph-ir/src/dsl/aromatic.rs +871 -0
  207. umol_py-0.6.0/umol-graph-ir/src/dsl/atom.rs +1933 -0
  208. umol_py-0.6.0/umol-graph-ir/src/dsl/bond.rs +979 -0
  209. umol_py-0.6.0/umol-graph-ir/src/dsl/boolean.rs +182 -0
  210. umol_py-0.6.0/umol-graph-ir/src/dsl/config.rs +903 -0
  211. umol_py-0.6.0/umol-graph-ir/src/dsl/constraint.rs +2157 -0
  212. umol_py-0.6.0/umol-graph-ir/src/dsl/dative.rs +786 -0
  213. umol_py-0.6.0/umol-graph-ir/src/dsl/edit.rs +5302 -0
  214. umol_py-0.6.0/umol-graph-ir/src/dsl/edn_utils.rs +234 -0
  215. umol_py-0.6.0/umol-graph-ir/src/dsl/electrons.rs +101 -0
  216. umol_py-0.6.0/umol-graph-ir/src/dsl/error.rs +137 -0
  217. umol_py-0.6.0/umol-graph-ir/src/dsl/metadata.rs +1594 -0
  218. umol_py-0.6.0/umol-graph-ir/src/dsl/molecule/tests.rs +1176 -0
  219. umol_py-0.6.0/umol-graph-ir/src/dsl/molecule.rs +1553 -0
  220. umol_py-0.6.0/umol-graph-ir/src/dsl/multicenter.rs +870 -0
  221. umol_py-0.6.0/umol-graph-ir/src/dsl/namespace.rs +1117 -0
  222. umol_py-0.6.0/umol-graph-ir/src/dsl/noncovalent.rs +762 -0
  223. umol_py-0.6.0/umol-graph-ir/src/dsl/num.rs +709 -0
  224. umol_py-0.6.0/umol-graph-ir/src/dsl/operators.rs +43 -0
  225. umol_py-0.6.0/umol-graph-ir/src/dsl/predicate.rs +594 -0
  226. umol_py-0.6.0/umol-graph-ir/src/dsl/reaction.rs +4172 -0
  227. umol_py-0.6.0/umol-graph-ir/src/dsl/reaction_span.rs +2725 -0
  228. umol_py-0.6.0/umol-graph-ir/src/dsl/refs.rs +1015 -0
  229. umol_py-0.6.0/umol-graph-ir/src/dsl/relational.rs +1237 -0
  230. umol_py-0.6.0/umol-graph-ir/src/dsl/stereo.rs +2581 -0
  231. umol_py-0.6.0/umol-graph-ir/src/dsl.rs +86 -0
  232. umol_py-0.6.0/umol-graph-ir/src/ir/aromatic.rs +430 -0
  233. umol_py-0.6.0/umol-graph-ir/src/ir/atom.rs +1381 -0
  234. umol_py-0.6.0/umol-graph-ir/src/ir/bond.rs +424 -0
  235. umol_py-0.6.0/umol-graph-ir/src/ir/boolean.rs +157 -0
  236. umol_py-0.6.0/umol-graph-ir/src/ir/canonicalize/tests.rs +4525 -0
  237. umol_py-0.6.0/umol-graph-ir/src/ir/canonicalize.rs +5261 -0
  238. umol_py-0.6.0/umol-graph-ir/src/ir/coloring.rs +376 -0
  239. umol_py-0.6.0/umol-graph-ir/src/ir/compose.rs +1005 -0
  240. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/aromatic.rs +775 -0
  241. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/atom.rs +1959 -0
  242. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/bond.rs +910 -0
  243. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/dative.rs +874 -0
  244. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/molecule.rs +1348 -0
  245. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/multicenter.rs +775 -0
  246. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/noncovalent.rs +787 -0
  247. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/relational.rs +952 -0
  248. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/ring.rs +207 -0
  249. umol_py-0.6.0/umol-graph-ir/src/ir/constraint/stereo.rs +1968 -0
  250. umol_py-0.6.0/umol-graph-ir/src/ir/constraint.rs +52 -0
  251. umol_py-0.6.0/umol-graph-ir/src/ir/correspondence.rs +1058 -0
  252. umol_py-0.6.0/umol-graph-ir/src/ir/dative.rs +346 -0
  253. umol_py-0.6.0/umol-graph-ir/src/ir/delta.rs +4246 -0
  254. umol_py-0.6.0/umol-graph-ir/src/ir/derivation.rs +280 -0
  255. umol_py-0.6.0/umol-graph-ir/src/ir/edit.rs +3502 -0
  256. umol_py-0.6.0/umol-graph-ir/src/ir/electrons.rs +225 -0
  257. umol_py-0.6.0/umol-graph-ir/src/ir/entity.rs +174 -0
  258. umol_py-0.6.0/umol-graph-ir/src/ir/error.rs +160 -0
  259. umol_py-0.6.0/umol-graph-ir/src/ir/id.rs +112 -0
  260. umol_py-0.6.0/umol-graph-ir/src/ir/incidence.rs +820 -0
  261. umol_py-0.6.0/umol-graph-ir/src/ir/ligand.rs +120 -0
  262. umol_py-0.6.0/umol-graph-ir/src/ir/matching.rs +163 -0
  263. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/build.rs +439 -0
  264. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/editor.rs +1909 -0
  265. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/fragment.rs +468 -0
  266. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/integrity.rs +539 -0
  267. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/pushout.rs +765 -0
  268. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/remapping.rs +230 -0
  269. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/spec.rs +818 -0
  270. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/tests.rs +3933 -0
  271. umol_py-0.6.0/umol-graph-ir/src/ir/molecule/transact.rs +5256 -0
  272. umol_py-0.6.0/umol-graph-ir/src/ir/molecule.rs +2671 -0
  273. umol_py-0.6.0/umol-graph-ir/src/ir/multicenter.rs +485 -0
  274. umol_py-0.6.0/umol-graph-ir/src/ir/noncovalent.rs +507 -0
  275. umol_py-0.6.0/umol-graph-ir/src/ir/num.rs +929 -0
  276. umol_py-0.6.0/umol-graph-ir/src/ir/operators.rs +22 -0
  277. umol_py-0.6.0/umol-graph-ir/src/ir/reaction/dpo.rs +258 -0
  278. umol_py-0.6.0/umol-graph-ir/src/ir/reaction/integrity.rs +573 -0
  279. umol_py-0.6.0/umol-graph-ir/src/ir/reaction.rs +3221 -0
  280. umol_py-0.6.0/umol-graph-ir/src/ir/reaction_span.rs +5173 -0
  281. umol_py-0.6.0/umol-graph-ir/src/ir/remap.rs +481 -0
  282. umol_py-0.6.0/umol-graph-ir/src/ir/ring.rs +1115 -0
  283. umol_py-0.6.0/umol-graph-ir/src/ir/spin.rs +381 -0
  284. umol_py-0.6.0/umol-graph-ir/src/ir/stereo.rs +2188 -0
  285. umol_py-0.6.0/umol-graph-ir/src/ir/substructure.rs +985 -0
  286. umol_py-0.6.0/umol-graph-ir/src/ir/symmetry.rs +868 -0
  287. umol_py-0.6.0/umol-graph-ir/src/ir/traits.rs +287 -0
  288. umol_py-0.6.0/umol-graph-ir/src/ir/view/aromatic.rs +644 -0
  289. umol_py-0.6.0/umol-graph-ir/src/ir/view/atom.rs +1355 -0
  290. umol_py-0.6.0/umol-graph-ir/src/ir/view/bond.rs +503 -0
  291. umol_py-0.6.0/umol-graph-ir/src/ir/view/constraints.rs +2325 -0
  292. umol_py-0.6.0/umol-graph-ir/src/ir/view/dative.rs +583 -0
  293. umol_py-0.6.0/umol-graph-ir/src/ir/view/graph.rs +496 -0
  294. umol_py-0.6.0/umol-graph-ir/src/ir/view/ligand.rs +32 -0
  295. umol_py-0.6.0/umol-graph-ir/src/ir/view/multicenter.rs +536 -0
  296. umol_py-0.6.0/umol-graph-ir/src/ir/view/neighbor.rs +105 -0
  297. umol_py-0.6.0/umol-graph-ir/src/ir/view/noncovalent.rs +424 -0
  298. umol_py-0.6.0/umol-graph-ir/src/ir/view/ring.rs +619 -0
  299. umol_py-0.6.0/umol-graph-ir/src/ir/view/stereo.rs +1899 -0
  300. umol_py-0.6.0/umol-graph-ir/src/ir/view.rs +78 -0
  301. umol_py-0.6.0/umol-graph-ir/src/ir.rs +138 -0
  302. umol_py-0.6.0/umol-graph-ir/src/lib.rs +8 -0
  303. umol_py-0.6.0/umol-graph-ir/src/macros.rs +511 -0
  304. umol_py-0.6.0/umol-graph-ir/tests/canonicalization/reaction_span.rs +68 -0
  305. umol_py-0.6.0/umol-graph-ir/tests/canonicalization.rs +318 -0
  306. umol_py-0.6.0/umol-graph-ir/tests/frag_macro.rs +72 -0
  307. umol_py-0.6.0/umol-graph-ir/tests/mol_macro.rs +194 -0
  308. umol_py-0.6.0/umol-graph-ir/tests/mol_macro_ui.rs +6 -0
  309. umol_py-0.6.0/umol-graph-ir/tests/property/constraint.rs +41 -0
  310. umol_py-0.6.0/umol-graph-ir/tests/property/delta.rs +480 -0
  311. umol_py-0.6.0/umol-graph-ir/tests/property/edit.proptest-regressions +8 -0
  312. umol_py-0.6.0/umol-graph-ir/tests/property/edit.rs +855 -0
  313. umol_py-0.6.0/umol-graph-ir/tests/property/entity.proptest-regressions +12 -0
  314. umol_py-0.6.0/umol-graph-ir/tests/property/entity.rs +459 -0
  315. umol_py-0.6.0/umol-graph-ir/tests/property/lattice.proptest-regressions +15 -0
  316. umol_py-0.6.0/umol-graph-ir/tests/property/lattice.rs +676 -0
  317. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/canonicalize.rs +112 -0
  318. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/compaction.rs +83 -0
  319. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/comparison.rs +177 -0
  320. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/correspondence.rs +128 -0
  321. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/iterators.rs +222 -0
  322. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/meet_pushout.rs +202 -0
  323. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/metadata.rs +183 -0
  324. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/references.rs +250 -0
  325. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/remapping.rs +296 -0
  326. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/ring.rs +153 -0
  327. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/serialization.rs +145 -0
  328. umol_py-0.6.0/umol-graph-ir/tests/property/molecule/structure.rs +143 -0
  329. umol_py-0.6.0/umol-graph-ir/tests/property/molecule.proptest-regressions +15 -0
  330. umol_py-0.6.0/umol-graph-ir/tests/property/molecule.rs +35 -0
  331. umol_py-0.6.0/umol-graph-ir/tests/property/num.rs +28 -0
  332. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/application.rs +902 -0
  333. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/canonicalize.rs +368 -0
  334. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/composition.rs +361 -0
  335. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/lifecycle.rs +96 -0
  336. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/malformed.rs +570 -0
  337. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/metadata.rs +153 -0
  338. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/serialization.rs +97 -0
  339. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/span/canonicalize.rs +148 -0
  340. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/span/remapping.rs +147 -0
  341. umol_py-0.6.0/umol-graph-ir/tests/property/reaction/span.rs +561 -0
  342. umol_py-0.6.0/umol-graph-ir/tests/property/reaction.proptest-regressions +30 -0
  343. umol_py-0.6.0/umol-graph-ir/tests/property/reaction.rs +27 -0
  344. umol_py-0.6.0/umol-graph-ir/tests/property/stereo/semantics.rs +163 -0
  345. umol_py-0.6.0/umol-graph-ir/tests/property/stereo/serialization.rs +176 -0
  346. umol_py-0.6.0/umol-graph-ir/tests/property/stereo.proptest-regressions +8 -0
  347. umol_py-0.6.0/umol-graph-ir/tests/property/stereo.rs +15 -0
  348. umol_py-0.6.0/umol-graph-ir/tests/property/strategies.rs +5117 -0
  349. umol_py-0.6.0/umol-graph-ir/tests/property/substructure.proptest-regressions +7 -0
  350. umol_py-0.6.0/umol-graph-ir/tests/property/substructure.rs +99 -0
  351. umol_py-0.6.0/umol-graph-ir/tests/property.proptest-regressions +23 -0
  352. umol_py-0.6.0/umol-graph-ir/tests/property.rs +35 -0
  353. umol_py-0.6.0/umol-graph-ir/tests/ui/mol_label_clash.rs +6 -0
  354. umol_py-0.6.0/umol-graph-ir/tests/ui/mol_label_clash.stderr +5 -0
  355. umol_py-0.6.0/umol-graph-ir/tests/ui/mol_port_rejected.rs +6 -0
  356. umol_py-0.6.0/umol-graph-ir/tests/ui/mol_port_rejected.stderr +5 -0
  357. umol_py-0.6.0/umol-graph-ir/tests/ui/mol_undeclared_ref.rs +6 -0
  358. umol_py-0.6.0/umol-graph-ir/tests/ui/mol_undeclared_ref.stderr +5 -0
  359. umol_py-0.6.0/umol-graph-ir-macros/Cargo.toml +22 -0
  360. umol_py-0.6.0/umol-graph-ir-macros/LICENSE-APACHE +201 -0
  361. umol_py-0.6.0/umol-graph-ir-macros/LICENSE-MIT +21 -0
  362. umol_py-0.6.0/umol-graph-ir-macros/README.md +46 -0
  363. umol_py-0.6.0/umol-graph-ir-macros/src/frag.rs +88 -0
  364. umol_py-0.6.0/umol-graph-ir-macros/src/lib.rs +134 -0
  365. umol_py-0.6.0/umol-graph-ir-macros/src/mol.rs +62 -0
  366. umol_py-0.6.0/umol-graph-ir-macros/src/parse.rs +655 -0
  367. umol_py-0.6.0/umol-io/Cargo.toml +59 -0
  368. umol_py-0.6.0/umol-io/LICENSE-APACHE +201 -0
  369. umol_py-0.6.0/umol-io/LICENSE-MIT +21 -0
  370. umol_py-0.6.0/umol-io/README.md +46 -0
  371. umol_py-0.6.0/umol-io/benches/mol_parsing.rs +333 -0
  372. umol_py-0.6.0/umol-io/benches/smiles_parsing.rs +514 -0
  373. umol_py-0.6.0/umol-io/spec/opensmiles-errors.md +114 -0
  374. umol_py-0.6.0/umol-io/spec/opensmiles-spec.md +308 -0
  375. umol_py-0.6.0/umol-io/src/ctfile/config.rs +252 -0
  376. umol_py-0.6.0/umol-io/src/ctfile/error.rs +223 -0
  377. umol_py-0.6.0/umol-io/src/ctfile/parser/accumulator/tests.rs +2120 -0
  378. umol_py-0.6.0/umol-io/src/ctfile/parser/accumulator.rs +1049 -0
  379. umol_py-0.6.0/umol-io/src/ctfile/parser/atom/tests.rs +1404 -0
  380. umol_py-0.6.0/umol-io/src/ctfile/parser/atom.rs +702 -0
  381. umol_py-0.6.0/umol-io/src/ctfile/parser/bond/tests.rs +381 -0
  382. umol_py-0.6.0/umol-io/src/ctfile/parser/bond.rs +278 -0
  383. umol_py-0.6.0/umol-io/src/ctfile/parser/context.rs +19 -0
  384. umol_py-0.6.0/umol-io/src/ctfile/parser/convert.rs +836 -0
  385. umol_py-0.6.0/umol-io/src/ctfile/parser/counts.rs +406 -0
  386. umol_py-0.6.0/umol-io/src/ctfile/parser/header.rs +76 -0
  387. umol_py-0.6.0/umol-io/src/ctfile/parser/legacy_atom_list.rs +234 -0
  388. umol_py-0.6.0/umol-io/src/ctfile/parser/properties/tests.rs +1645 -0
  389. umol_py-0.6.0/umol-io/src/ctfile/parser/properties.rs +1642 -0
  390. umol_py-0.6.0/umol-io/src/ctfile/parser/rgroup.rs +47 -0
  391. umol_py-0.6.0/umol-io/src/ctfile/parser/sdf_data.rs +265 -0
  392. umol_py-0.6.0/umol-io/src/ctfile/parser/sgroup.rs +499 -0
  393. umol_py-0.6.0/umol-io/src/ctfile/parser/tests/ctab.rs +164 -0
  394. umol_py-0.6.0/umol-io/src/ctfile/parser/tests/mol.rs +280 -0
  395. umol_py-0.6.0/umol-io/src/ctfile/parser/tests/sdf.rs +150 -0
  396. umol_py-0.6.0/umol-io/src/ctfile/parser/tests.rs +5 -0
  397. umol_py-0.6.0/umol-io/src/ctfile/parser/utils/tests.rs +695 -0
  398. umol_py-0.6.0/umol-io/src/ctfile/parser/utils.rs +456 -0
  399. umol_py-0.6.0/umol-io/src/ctfile/parser.rs +495 -0
  400. umol_py-0.6.0/umol-io/src/ctfile.rs +16 -0
  401. umol_py-0.6.0/umol-io/src/lib.rs +7 -0
  402. umol_py-0.6.0/umol-io/src/smiles/config.rs +273 -0
  403. umol_py-0.6.0/umol-io/src/smiles/error.rs +88 -0
  404. umol_py-0.6.0/umol-io/src/smiles/molecule.rs +119 -0
  405. umol_py-0.6.0/umol-io/src/smiles/parser/builder.rs +659 -0
  406. umol_py-0.6.0/umol-io/src/smiles/parser/cx.rs +2735 -0
  407. umol_py-0.6.0/umol-io/src/smiles/parser/tests/basic.rs +1270 -0
  408. umol_py-0.6.0/umol-io/src/smiles/parser/tests/cx.rs +1315 -0
  409. umol_py-0.6.0/umol-io/src/smiles/parser/tests/extended.rs +1177 -0
  410. umol_py-0.6.0/umol-io/src/smiles/parser/tests/reaction.rs +363 -0
  411. umol_py-0.6.0/umol-io/src/smiles/parser/tests/utils.rs +369 -0
  412. umol_py-0.6.0/umol-io/src/smiles/parser/tests.rs +5 -0
  413. umol_py-0.6.0/umol-io/src/smiles/parser/utils.rs +865 -0
  414. umol_py-0.6.0/umol-io/src/smiles/parser.rs +1288 -0
  415. umol_py-0.6.0/umol-io/src/smiles/reaction.rs +103 -0
  416. umol_py-0.6.0/umol-io/src/smiles.rs +18 -0
  417. umol_py-0.6.0/umol-io/src/table_ir/atom.rs +837 -0
  418. umol_py-0.6.0/umol-io/src/table_ir/bond.rs +719 -0
  419. umol_py-0.6.0/umol-io/src/table_ir/ctfile_data.rs +69 -0
  420. umol_py-0.6.0/umol-io/src/table_ir/cx_data.rs +204 -0
  421. umol_py-0.6.0/umol-io/src/table_ir/error.rs +10 -0
  422. umol_py-0.6.0/umol-io/src/table_ir/molecule/tests.rs +465 -0
  423. umol_py-0.6.0/umol-io/src/table_ir/molecule.rs +408 -0
  424. umol_py-0.6.0/umol-io/src/table_ir/multicenter.rs +314 -0
  425. umol_py-0.6.0/umol-io/src/table_ir/property.rs +8 -0
  426. umol_py-0.6.0/umol-io/src/table_ir/raise/utils.rs +315 -0
  427. umol_py-0.6.0/umol-io/src/table_ir/raise.rs +839 -0
  428. umol_py-0.6.0/umol-io/src/table_ir/reaction.rs +95 -0
  429. umol_py-0.6.0/umol-io/src/table_ir/rgroup.rs +42 -0
  430. umol_py-0.6.0/umol-io/src/table_ir/sgroup.rs +261 -0
  431. umol_py-0.6.0/umol-io/src/table_ir/source.rs +10 -0
  432. umol_py-0.6.0/umol-io/src/table_ir/span.rs +43 -0
  433. umol_py-0.6.0/umol-io/src/table_ir/stereo.rs +27 -0
  434. umol_py-0.6.0/umol-io/src/table_ir/utils.rs +61 -0
  435. umol_py-0.6.0/umol-io/src/table_ir.rs +33 -0
  436. umol_py-0.6.0/umol-io/src/utils.rs +36 -0
  437. umol_py-0.6.0/umol-nauty-sys/Cargo.toml +22 -0
  438. umol_py-0.6.0/umol-nauty-sys/LICENSE-APACHE +201 -0
  439. umol_py-0.6.0/umol-nauty-sys/README.md +46 -0
  440. umol_py-0.6.0/umol-nauty-sys/build.rs +161 -0
  441. umol_py-0.6.0/umol-nauty-sys/include/umol_nauty.h +63 -0
  442. umol_py-0.6.0/umol-nauty-sys/nauty/COPYRIGHT +44 -0
  443. umol_py-0.6.0/umol-nauty-sys/nauty/LICENSE-APACHE +201 -0
  444. umol_py-0.6.0/umol-nauty-sys/nauty/README +107 -0
  445. umol_py-0.6.0/umol-nauty-sys/nauty/This_is_nauty2_9_3.txt +0 -0
  446. umol_py-0.6.0/umol-nauty-sys/nauty/naurng.c +94 -0
  447. umol_py-0.6.0/umol-nauty-sys/nauty/naurng.h +49 -0
  448. umol_py-0.6.0/umol-nauty-sys/nauty/nausparse.c +1771 -0
  449. umol_py-0.6.0/umol-nauty-sys/nauty/nausparse.h +133 -0
  450. umol_py-0.6.0/umol-nauty-sys/nauty/nautil.c +750 -0
  451. umol_py-0.6.0/umol-nauty-sys/nauty/naututil.h +355 -0
  452. umol_py-0.6.0/umol-nauty-sys/nauty/nauty.c +1256 -0
  453. umol_py-0.6.0/umol-nauty-sys/nauty/nauty.h +1544 -0
  454. umol_py-0.6.0/umol-nauty-sys/nauty/schreier.c +1131 -0
  455. umol_py-0.6.0/umol-nauty-sys/nauty/schreier.h +70 -0
  456. umol_py-0.6.0/umol-nauty-sys/nauty/sorttemplates.c +580 -0
  457. umol_py-0.6.0/umol-nauty-sys/src/lib.rs +669 -0
  458. umol_py-0.6.0/umol-nauty-sys/src/umol_nauty.c +210 -0
  459. umol_py-0.6.0/umol-params/Cargo.toml +30 -0
  460. umol_py-0.6.0/umol-params/LICENSE-APACHE +201 -0
  461. umol_py-0.6.0/umol-params/LICENSE-MIT +21 -0
  462. umol_py-0.6.0/umol-params/README.md +46 -0
  463. umol_py-0.6.0/umol-params/src/covalent_radii.rs +239 -0
  464. umol_py-0.6.0/umol-params/src/lib.rs +2 -0
  465. umol_py-0.6.0/umol-params/src/quantum/ppp/van_catledge.rs +177 -0
  466. umol_py-0.6.0/umol-params/src/quantum/ppp.rs +3 -0
  467. umol_py-0.6.0/umol-params/src/quantum.rs +1 -0
  468. umol_py-0.6.0/umol-perm/Cargo.toml +37 -0
  469. umol_py-0.6.0/umol-perm/LICENSE-APACHE +201 -0
  470. umol_py-0.6.0/umol-perm/LICENSE-MIT +21 -0
  471. umol_py-0.6.0/umol-perm/README.md +46 -0
  472. umol_py-0.6.0/umol-perm/src/class.rs +401 -0
  473. umol_py-0.6.0/umol-perm/src/coset.rs +516 -0
  474. umol_py-0.6.0/umol-perm/src/error.rs +146 -0
  475. umol_py-0.6.0/umol-perm/src/group.rs +182 -0
  476. umol_py-0.6.0/umol-perm/src/lib.rs +18 -0
  477. umol_py-0.6.0/umol-perm/src/oriented.rs +390 -0
  478. umol_py-0.6.0/umol-perm/src/permutation.rs +561 -0
  479. umol_py-0.6.0/umol-perm/tests/property.rs +343 -0
  480. umol_py-0.6.0/umol-py/Cargo.toml +46 -0
  481. umol_py-0.6.0/umol-py/LICENSE-APACHE +201 -0
  482. umol_py-0.6.0/umol-py/LICENSE-MIT +21 -0
  483. umol_py-0.6.0/umol-py/README.md +46 -0
  484. umol_py-0.6.0/umol-py/benches/call_overhead.py +83 -0
  485. umol_py-0.6.0/umol-py/src/algorithm.rs +862 -0
  486. umol_py-0.6.0/umol-py/src/aromatic.rs +1760 -0
  487. umol_py-0.6.0/umol-py/src/atom.rs +2101 -0
  488. umol_py-0.6.0/umol-py/src/bond.rs +1553 -0
  489. umol_py-0.6.0/umol-py/src/boolean.rs +91 -0
  490. umol_py-0.6.0/umol-py/src/canonicalize.rs +483 -0
  491. umol_py-0.6.0/umol-py/src/constraint/aromatic.rs +768 -0
  492. umol_py-0.6.0/umol-py/src/constraint/atom.rs +1907 -0
  493. umol_py-0.6.0/umol-py/src/constraint/bond.rs +1005 -0
  494. umol_py-0.6.0/umol-py/src/constraint/dative.rs +1004 -0
  495. umol_py-0.6.0/umol-py/src/constraint/molecule.rs +1929 -0
  496. umol_py-0.6.0/umol-py/src/constraint/multicenter.rs +778 -0
  497. umol_py-0.6.0/umol-py/src/constraint/noncovalent.rs +782 -0
  498. umol_py-0.6.0/umol-py/src/constraint/ring.rs +141 -0
  499. umol_py-0.6.0/umol-py/src/constraint/stereo.rs +1262 -0
  500. umol_py-0.6.0/umol-py/src/constraint.rs +11 -0
  501. umol_py-0.6.0/umol-py/src/convert.rs +48 -0
  502. umol_py-0.6.0/umol-py/src/correspondence.rs +970 -0
  503. umol_py-0.6.0/umol-py/src/dative.rs +1511 -0
  504. umol_py-0.6.0/umol-py/src/defaults.rs +113 -0
  505. umol_py-0.6.0/umol-py/src/delta.rs +5195 -0
  506. umol_py-0.6.0/umol-py/src/edit.rs +2210 -0
  507. umol_py-0.6.0/umol-py/src/electrons.rs +128 -0
  508. umol_py-0.6.0/umol-py/src/element.rs +109 -0
  509. umol_py-0.6.0/umol-py/src/entity.rs +55 -0
  510. umol_py-0.6.0/umol-py/src/error.rs +524 -0
  511. umol_py-0.6.0/umol-py/src/fingerprint/config.rs +1235 -0
  512. umol_py-0.6.0/umol-py/src/fingerprint/reaction.rs +900 -0
  513. umol_py-0.6.0/umol-py/src/fingerprint/value.rs +1147 -0
  514. umol_py-0.6.0/umol-py/src/fingerprint.rs +5 -0
  515. umol_py-0.6.0/umol-py/src/lattice.rs +96 -0
  516. umol_py-0.6.0/umol-py/src/lib.rs +445 -0
  517. umol_py-0.6.0/umol-py/src/metadata.rs +553 -0
  518. umol_py-0.6.0/umol-py/src/model/aromaticity.rs +570 -0
  519. umol_py-0.6.0/umol-py/src/model/connectivity.rs +149 -0
  520. umol_py-0.6.0/umol-py/src/model/stereo.rs +503 -0
  521. umol_py-0.6.0/umol-py/src/model/valence.rs +923 -0
  522. umol_py-0.6.0/umol-py/src/model.rs +332 -0
  523. umol_py-0.6.0/umol-py/src/molecule.rs +1768 -0
  524. umol_py-0.6.0/umol-py/src/multicenter.rs +1762 -0
  525. umol_py-0.6.0/umol-py/src/noncovalent.rs +1632 -0
  526. umol_py-0.6.0/umol-py/src/num.rs +483 -0
  527. umol_py-0.6.0/umol-py/src/reaction.rs +3482 -0
  528. umol_py-0.6.0/umol-py/src/reaction_span.rs +1025 -0
  529. umol_py-0.6.0/umol-py/src/resolve.rs +1169 -0
  530. umol_py-0.6.0/umol-py/src/ring.rs +114 -0
  531. umol_py-0.6.0/umol-py/src/smiles.rs +357 -0
  532. umol_py-0.6.0/umol-py/src/spin.rs +401 -0
  533. umol_py-0.6.0/umol-py/src/stereo.rs +3672 -0
  534. umol_py-0.6.0/umol-py/src/substructure.rs +224 -0
  535. umol_py-0.6.0/umol-py/src/transaction.rs +377 -0
  536. umol_py-0.6.0/umol-py/tests/conftest.py +7 -0
  537. umol_py-0.6.0/umol-py/tests/test_algorithm.py +157 -0
  538. umol_py-0.6.0/umol-py/tests/test_aromatic.py +351 -0
  539. umol_py-0.6.0/umol-py/tests/test_atom.py +493 -0
  540. umol_py-0.6.0/umol-py/tests/test_bond.py +687 -0
  541. umol_py-0.6.0/umol-py/tests/test_class_constructor_signatures.py +103 -0
  542. umol_py-0.6.0/umol-py/tests/test_constraint.py +545 -0
  543. umol_py-0.6.0/umol-py/tests/test_dative.py +306 -0
  544. umol_py-0.6.0/umol-py/tests/test_delta.py +1964 -0
  545. umol_py-0.6.0/umol-py/tests/test_edit.py +712 -0
  546. umol_py-0.6.0/umol-py/tests/test_element.py +45 -0
  547. umol_py-0.6.0/umol-py/tests/test_fingerprint.py +958 -0
  548. umol_py-0.6.0/umol-py/tests/test_import.py +462 -0
  549. umol_py-0.6.0/umol-py/tests/test_metadata.py +184 -0
  550. umol_py-0.6.0/umol-py/tests/test_model.py +1407 -0
  551. umol_py-0.6.0/umol-py/tests/test_molecule.py +1279 -0
  552. umol_py-0.6.0/umol-py/tests/test_molecule_constraint.py +86 -0
  553. umol_py-0.6.0/umol-py/tests/test_multicenter.py +351 -0
  554. umol_py-0.6.0/umol-py/tests/test_noncovalent.py +308 -0
  555. umol_py-0.6.0/umol-py/tests/test_num.py +123 -0
  556. umol_py-0.6.0/umol-py/tests/test_reaction.py +1782 -0
  557. umol_py-0.6.0/umol-py/tests/test_reaction_span.py +264 -0
  558. umol_py-0.6.0/umol-py/tests/test_resolve.py +600 -0
  559. umol_py-0.6.0/umol-py/tests/test_ring.py +94 -0
  560. umol_py-0.6.0/umol-py/tests/test_smiles.py +140 -0
  561. umol_py-0.6.0/umol-py/tests/test_spin.py +165 -0
  562. umol_py-0.6.0/umol-py/tests/test_stereo.py +476 -0
  563. umol_py-0.6.0/umol-py/tests/test_structural_pattern_matching.py +1091 -0
  564. umol_py-0.6.0/umol-py/tests/test_substructure.py +176 -0
  565. umol_py-0.6.0/umol-py/tests/test_workflow.py +358 -0
  566. umol_py-0.6.0/umol-utils/Cargo.toml +22 -0
  567. umol_py-0.6.0/umol-utils/LICENSE-APACHE +201 -0
  568. umol_py-0.6.0/umol-utils/LICENSE-MIT +21 -0
  569. umol_py-0.6.0/umol-utils/README.md +46 -0
  570. umol_py-0.6.0/umol-utils/src/error.rs +19 -0
  571. umol_py-0.6.0/umol-utils/src/lib.rs +5 -0
  572. umol_py-0.6.0/umol-utils/src/solution.rs +314 -0
@@ -0,0 +1,2637 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "allocator-api2"
25
+ version = "0.2.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
28
+
29
+ [[package]]
30
+ name = "android_system_properties"
31
+ version = "0.1.5"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
34
+ dependencies = [
35
+ "libc",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anes"
40
+ version = "0.1.6"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
43
+
44
+ [[package]]
45
+ name = "anstream"
46
+ version = "0.6.20"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
49
+ dependencies = [
50
+ "anstyle",
51
+ "anstyle-parse",
52
+ "anstyle-query",
53
+ "anstyle-wincon",
54
+ "colorchoice",
55
+ "is_terminal_polyfill",
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle"
61
+ version = "1.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
64
+
65
+ [[package]]
66
+ name = "anstyle-parse"
67
+ version = "0.2.7"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
70
+ dependencies = [
71
+ "utf8parse",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-query"
76
+ version = "1.1.4"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
79
+ dependencies = [
80
+ "windows-sys 0.60.2",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle-wincon"
85
+ version = "3.0.10"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
88
+ dependencies = [
89
+ "anstyle",
90
+ "once_cell_polyfill",
91
+ "windows-sys 0.60.2",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anyhow"
96
+ version = "1.0.101"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
99
+
100
+ [[package]]
101
+ name = "approx"
102
+ version = "0.5.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
105
+ dependencies = [
106
+ "num-traits",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "autocfg"
111
+ version = "1.5.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
114
+
115
+ [[package]]
116
+ name = "bigdecimal"
117
+ version = "0.4.10"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
120
+ dependencies = [
121
+ "autocfg",
122
+ "libm",
123
+ "num-bigint",
124
+ "num-integer",
125
+ "num-traits",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "bimap"
130
+ version = "0.6.3"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
133
+
134
+ [[package]]
135
+ name = "bit-set"
136
+ version = "0.8.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
139
+ dependencies = [
140
+ "bit-vec",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "bit-vec"
145
+ version = "0.8.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
148
+
149
+ [[package]]
150
+ name = "bitflags"
151
+ version = "2.9.4"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
154
+
155
+ [[package]]
156
+ name = "bitvec"
157
+ version = "1.1.1"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
160
+ dependencies = [
161
+ "funty",
162
+ "radium",
163
+ "serde",
164
+ "tap",
165
+ "wyz",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "bstr"
170
+ version = "1.12.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
173
+ dependencies = [
174
+ "memchr",
175
+ "regex-automata",
176
+ "serde",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "bumpalo"
181
+ version = "3.19.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
184
+
185
+ [[package]]
186
+ name = "bytemuck"
187
+ version = "1.25.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
190
+
191
+ [[package]]
192
+ name = "cast"
193
+ version = "0.3.0"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
196
+
197
+ [[package]]
198
+ name = "cc"
199
+ version = "1.4.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e"
202
+ dependencies = [
203
+ "find-msvc-tools",
204
+ "shlex",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "cfg-if"
209
+ version = "1.0.3"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
212
+
213
+ [[package]]
214
+ name = "chacha20"
215
+ version = "0.10.0"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
218
+ dependencies = [
219
+ "cfg-if",
220
+ "cpufeatures",
221
+ "rand_core 0.10.0",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "chrono"
226
+ version = "0.4.44"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
229
+ dependencies = [
230
+ "iana-time-zone",
231
+ "js-sys",
232
+ "num-traits",
233
+ "wasm-bindgen",
234
+ "windows-link 0.2.1",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "ciborium"
239
+ version = "0.2.2"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
242
+ dependencies = [
243
+ "ciborium-io",
244
+ "ciborium-ll",
245
+ "serde",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "ciborium-io"
250
+ version = "0.2.2"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
253
+
254
+ [[package]]
255
+ name = "ciborium-ll"
256
+ version = "0.2.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
259
+ dependencies = [
260
+ "ciborium-io",
261
+ "half",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "clap"
266
+ version = "4.5.46"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57"
269
+ dependencies = [
270
+ "clap_builder",
271
+ "clap_derive",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap_builder"
276
+ version = "4.5.46"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41"
279
+ dependencies = [
280
+ "anstream",
281
+ "anstyle",
282
+ "clap_lex",
283
+ "strsim",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "clap_derive"
288
+ version = "4.5.45"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
291
+ dependencies = [
292
+ "heck",
293
+ "proc-macro2",
294
+ "quote",
295
+ "syn",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "clap_lex"
300
+ version = "0.7.5"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
303
+
304
+ [[package]]
305
+ name = "colorchoice"
306
+ version = "1.0.4"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
309
+
310
+ [[package]]
311
+ name = "console"
312
+ version = "0.15.11"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
315
+ dependencies = [
316
+ "encode_unicode",
317
+ "libc",
318
+ "once_cell",
319
+ "windows-sys 0.59.0",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "core-foundation-sys"
324
+ version = "0.8.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
327
+
328
+ [[package]]
329
+ name = "cpufeatures"
330
+ version = "0.3.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
333
+ dependencies = [
334
+ "libc",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "criterion"
339
+ version = "0.8.1"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
342
+ dependencies = [
343
+ "alloca",
344
+ "anes",
345
+ "cast",
346
+ "ciborium",
347
+ "clap",
348
+ "criterion-plot",
349
+ "itertools",
350
+ "num-traits",
351
+ "oorandom",
352
+ "page_size",
353
+ "plotters",
354
+ "rayon",
355
+ "regex",
356
+ "serde",
357
+ "serde_json",
358
+ "tinytemplate",
359
+ "walkdir",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "criterion-plot"
364
+ version = "0.8.1"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
367
+ dependencies = [
368
+ "cast",
369
+ "itertools",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "crossbeam-deque"
374
+ version = "0.8.6"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
377
+ dependencies = [
378
+ "crossbeam-epoch",
379
+ "crossbeam-utils",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "crossbeam-epoch"
384
+ version = "0.9.18"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
387
+ dependencies = [
388
+ "crossbeam-utils",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "crossbeam-utils"
393
+ version = "0.8.21"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
396
+
397
+ [[package]]
398
+ name = "crunchy"
399
+ version = "0.2.4"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
402
+
403
+ [[package]]
404
+ name = "diff"
405
+ version = "0.1.13"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
408
+
409
+ [[package]]
410
+ name = "either"
411
+ version = "1.15.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
414
+
415
+ [[package]]
416
+ name = "encode_unicode"
417
+ version = "1.0.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
420
+
421
+ [[package]]
422
+ name = "equivalent"
423
+ version = "1.0.2"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
426
+
427
+ [[package]]
428
+ name = "errno"
429
+ version = "0.3.13"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
432
+ dependencies = [
433
+ "libc",
434
+ "windows-sys 0.60.2",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "fast-float2"
439
+ version = "0.2.3"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
442
+
443
+ [[package]]
444
+ name = "fastrand"
445
+ version = "2.3.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
448
+
449
+ [[package]]
450
+ name = "find-msvc-tools"
451
+ version = "0.1.10"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de"
454
+
455
+ [[package]]
456
+ name = "float-cmp"
457
+ version = "0.10.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
460
+ dependencies = [
461
+ "num-traits",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "fnv"
466
+ version = "1.0.7"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
469
+
470
+ [[package]]
471
+ name = "foldhash"
472
+ version = "0.1.5"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
475
+
476
+ [[package]]
477
+ name = "foldhash"
478
+ version = "0.2.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
481
+
482
+ [[package]]
483
+ name = "funty"
484
+ version = "2.0.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
487
+
488
+ [[package]]
489
+ name = "futures-core"
490
+ version = "0.3.31"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
493
+
494
+ [[package]]
495
+ name = "futures-macro"
496
+ version = "0.3.31"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
499
+ dependencies = [
500
+ "proc-macro2",
501
+ "quote",
502
+ "syn",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "futures-task"
507
+ version = "0.3.31"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
510
+
511
+ [[package]]
512
+ name = "futures-timer"
513
+ version = "3.0.3"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
516
+
517
+ [[package]]
518
+ name = "futures-util"
519
+ version = "0.3.31"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
522
+ dependencies = [
523
+ "futures-core",
524
+ "futures-macro",
525
+ "futures-task",
526
+ "pin-project-lite",
527
+ "pin-utils",
528
+ "slab",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "getrandom"
533
+ version = "0.3.3"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
536
+ dependencies = [
537
+ "cfg-if",
538
+ "libc",
539
+ "r-efi",
540
+ "wasi",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "getrandom"
545
+ version = "0.4.1"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
548
+ dependencies = [
549
+ "cfg-if",
550
+ "libc",
551
+ "r-efi",
552
+ "rand_core 0.10.0",
553
+ "wasip2",
554
+ "wasip3",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "glam"
559
+ version = "0.14.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
562
+
563
+ [[package]]
564
+ name = "glam"
565
+ version = "0.15.2"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
568
+
569
+ [[package]]
570
+ name = "glam"
571
+ version = "0.16.0"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
574
+
575
+ [[package]]
576
+ name = "glam"
577
+ version = "0.17.3"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
580
+
581
+ [[package]]
582
+ name = "glam"
583
+ version = "0.18.0"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
586
+
587
+ [[package]]
588
+ name = "glam"
589
+ version = "0.19.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
592
+
593
+ [[package]]
594
+ name = "glam"
595
+ version = "0.20.5"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
598
+
599
+ [[package]]
600
+ name = "glam"
601
+ version = "0.21.3"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
604
+
605
+ [[package]]
606
+ name = "glam"
607
+ version = "0.22.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
610
+
611
+ [[package]]
612
+ name = "glam"
613
+ version = "0.23.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
616
+
617
+ [[package]]
618
+ name = "glam"
619
+ version = "0.24.2"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
622
+
623
+ [[package]]
624
+ name = "glam"
625
+ version = "0.25.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
628
+
629
+ [[package]]
630
+ name = "glam"
631
+ version = "0.27.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
634
+
635
+ [[package]]
636
+ name = "glam"
637
+ version = "0.28.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
640
+
641
+ [[package]]
642
+ name = "glam"
643
+ version = "0.29.3"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
646
+
647
+ [[package]]
648
+ name = "glam"
649
+ version = "0.30.5"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "f2d1aab06663bdce00d6ca5e5ed586ec8d18033a771906c993a1e3755b368d85"
652
+
653
+ [[package]]
654
+ name = "glob"
655
+ version = "0.3.3"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
658
+
659
+ [[package]]
660
+ name = "globset"
661
+ version = "0.4.16"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
664
+ dependencies = [
665
+ "aho-corasick",
666
+ "bstr",
667
+ "log",
668
+ "regex-automata",
669
+ "regex-syntax",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "half"
674
+ version = "2.6.0"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
677
+ dependencies = [
678
+ "cfg-if",
679
+ "crunchy",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "hashbrown"
684
+ version = "0.15.5"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
687
+ dependencies = [
688
+ "foldhash 0.1.5",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "hashbrown"
693
+ version = "0.16.0"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
696
+
697
+ [[package]]
698
+ name = "hashbrown"
699
+ version = "0.17.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
702
+ dependencies = [
703
+ "allocator-api2",
704
+ "equivalent",
705
+ "foldhash 0.2.0",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "heck"
710
+ version = "0.5.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
713
+
714
+ [[package]]
715
+ name = "iana-time-zone"
716
+ version = "0.1.65"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
719
+ dependencies = [
720
+ "android_system_properties",
721
+ "core-foundation-sys",
722
+ "iana-time-zone-haiku",
723
+ "js-sys",
724
+ "log",
725
+ "wasm-bindgen",
726
+ "windows-core",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "iana-time-zone-haiku"
731
+ version = "0.1.2"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
734
+ dependencies = [
735
+ "cc",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "id-arena"
740
+ version = "2.3.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
743
+
744
+ [[package]]
745
+ name = "indexmap"
746
+ version = "2.12.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
749
+ dependencies = [
750
+ "equivalent",
751
+ "hashbrown 0.16.0",
752
+ "serde",
753
+ "serde_core",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "insta"
758
+ version = "1.43.2"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
761
+ dependencies = [
762
+ "console",
763
+ "globset",
764
+ "once_cell",
765
+ "serde",
766
+ "similar",
767
+ "walkdir",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "inventory"
772
+ version = "0.3.24"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
775
+ dependencies = [
776
+ "rustversion",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "is_terminal_polyfill"
781
+ version = "1.70.1"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
784
+
785
+ [[package]]
786
+ name = "itertools"
787
+ version = "0.13.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
790
+ dependencies = [
791
+ "either",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "itoa"
796
+ version = "1.0.15"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
799
+
800
+ [[package]]
801
+ name = "js-sys"
802
+ version = "0.3.77"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
805
+ dependencies = [
806
+ "once_cell",
807
+ "wasm-bindgen",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "leb128fmt"
812
+ version = "0.1.0"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
815
+
816
+ [[package]]
817
+ name = "libc"
818
+ version = "0.2.175"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
821
+
822
+ [[package]]
823
+ name = "libm"
824
+ version = "0.2.16"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
827
+
828
+ [[package]]
829
+ name = "linux-raw-sys"
830
+ version = "0.9.4"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
833
+
834
+ [[package]]
835
+ name = "log"
836
+ version = "0.4.27"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
839
+
840
+ [[package]]
841
+ name = "map-macro"
842
+ version = "0.3.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "fb950a42259642e5a3483115aca87eebed2a64886993463af9c9739c205b8d3a"
845
+
846
+ [[package]]
847
+ name = "matrixmultiply"
848
+ version = "0.3.10"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
851
+ dependencies = [
852
+ "autocfg",
853
+ "rawpointer",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "memchr"
858
+ version = "2.7.5"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
861
+
862
+ [[package]]
863
+ name = "murmur3"
864
+ version = "0.5.2"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "9252111cf132ba0929b6f8e030cac2a24b507f3a4d6db6fb2896f27b354c714b"
867
+
868
+ [[package]]
869
+ name = "nalgebra"
870
+ version = "0.34.0"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "9cd59afb6639828b33677758314a4a1a745c15c02bc597095b851c8fd915cf49"
873
+ dependencies = [
874
+ "approx",
875
+ "glam 0.14.0",
876
+ "glam 0.15.2",
877
+ "glam 0.16.0",
878
+ "glam 0.17.3",
879
+ "glam 0.18.0",
880
+ "glam 0.19.0",
881
+ "glam 0.20.5",
882
+ "glam 0.21.3",
883
+ "glam 0.22.0",
884
+ "glam 0.23.0",
885
+ "glam 0.24.2",
886
+ "glam 0.25.0",
887
+ "glam 0.27.0",
888
+ "glam 0.28.0",
889
+ "glam 0.29.3",
890
+ "glam 0.30.5",
891
+ "matrixmultiply",
892
+ "nalgebra-macros",
893
+ "num-complex",
894
+ "num-rational",
895
+ "num-traits",
896
+ "simba",
897
+ "typenum",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "nalgebra-macros"
902
+ version = "0.3.0"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
905
+ dependencies = [
906
+ "proc-macro2",
907
+ "quote",
908
+ "syn",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "nom"
913
+ version = "8.0.0"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
916
+ dependencies = [
917
+ "memchr",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "num"
922
+ version = "0.4.3"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
925
+ dependencies = [
926
+ "num-bigint",
927
+ "num-complex",
928
+ "num-integer",
929
+ "num-iter",
930
+ "num-rational",
931
+ "num-traits",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "num-bigint"
936
+ version = "0.4.6"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
939
+ dependencies = [
940
+ "num-integer",
941
+ "num-traits",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "num-complex"
946
+ version = "0.4.6"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
949
+ dependencies = [
950
+ "num-traits",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "num-integer"
955
+ version = "0.1.46"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
958
+ dependencies = [
959
+ "num-traits",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "num-iter"
964
+ version = "0.1.45"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
967
+ dependencies = [
968
+ "autocfg",
969
+ "num-integer",
970
+ "num-traits",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "num-rational"
975
+ version = "0.4.2"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
978
+ dependencies = [
979
+ "num-bigint",
980
+ "num-integer",
981
+ "num-traits",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "num-traits"
986
+ version = "0.2.19"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
989
+ dependencies = [
990
+ "autocfg",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "once_cell"
995
+ version = "1.21.3"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
998
+
999
+ [[package]]
1000
+ name = "once_cell_polyfill"
1001
+ version = "1.70.1"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1004
+
1005
+ [[package]]
1006
+ name = "oorandom"
1007
+ version = "11.1.5"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1010
+
1011
+ [[package]]
1012
+ name = "page_size"
1013
+ version = "0.6.0"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1016
+ dependencies = [
1017
+ "libc",
1018
+ "winapi",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "paste"
1023
+ version = "1.0.15"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1026
+
1027
+ [[package]]
1028
+ name = "phf"
1029
+ version = "0.14.0"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6"
1032
+ dependencies = [
1033
+ "phf_macros",
1034
+ "phf_shared",
1035
+ "serde",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "phf_generator"
1040
+ version = "0.14.0"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100"
1043
+ dependencies = [
1044
+ "fastrand",
1045
+ "phf_shared",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "phf_macros"
1050
+ version = "0.14.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "5fa8d0ca26d424d27630da600c6624696e7dec8bf7b3b492b383c5dc49e5e085"
1053
+ dependencies = [
1054
+ "phf_generator",
1055
+ "phf_shared",
1056
+ "proc-macro2",
1057
+ "quote",
1058
+ "syn",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "phf_shared"
1063
+ version = "0.14.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89"
1066
+ dependencies = [
1067
+ "siphasher",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "pin-project-lite"
1072
+ version = "0.2.16"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1075
+
1076
+ [[package]]
1077
+ name = "pin-utils"
1078
+ version = "0.1.0"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1081
+
1082
+ [[package]]
1083
+ name = "plotters"
1084
+ version = "0.3.7"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1087
+ dependencies = [
1088
+ "num-traits",
1089
+ "plotters-backend",
1090
+ "plotters-svg",
1091
+ "wasm-bindgen",
1092
+ "web-sys",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "plotters-backend"
1097
+ version = "0.3.7"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1100
+
1101
+ [[package]]
1102
+ name = "plotters-svg"
1103
+ version = "0.3.7"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1106
+ dependencies = [
1107
+ "plotters-backend",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "portable-atomic"
1112
+ version = "1.13.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1115
+
1116
+ [[package]]
1117
+ name = "ppv-lite86"
1118
+ version = "0.2.21"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1121
+ dependencies = [
1122
+ "zerocopy",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "pretty_assertions"
1127
+ version = "1.4.1"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1130
+ dependencies = [
1131
+ "diff",
1132
+ "yansi",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "prettyplease"
1137
+ version = "0.2.37"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1140
+ dependencies = [
1141
+ "proc-macro2",
1142
+ "syn",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "proc-macro-crate"
1147
+ version = "3.3.0"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
1150
+ dependencies = [
1151
+ "toml_edit",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "proc-macro2"
1156
+ version = "1.0.101"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1159
+ dependencies = [
1160
+ "unicode-ident",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "proptest"
1165
+ version = "1.9.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
1168
+ dependencies = [
1169
+ "bit-set",
1170
+ "bit-vec",
1171
+ "bitflags",
1172
+ "num-traits",
1173
+ "rand 0.9.2",
1174
+ "rand_chacha 0.9.0",
1175
+ "rand_xorshift",
1176
+ "regex-syntax",
1177
+ "rusty-fork",
1178
+ "tempfile",
1179
+ "unarray",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "pyo3"
1184
+ version = "0.29.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1187
+ dependencies = [
1188
+ "inventory",
1189
+ "libc",
1190
+ "once_cell",
1191
+ "portable-atomic",
1192
+ "pyo3-build-config",
1193
+ "pyo3-ffi",
1194
+ "pyo3-macros",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "pyo3-build-config"
1199
+ version = "0.29.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1202
+ dependencies = [
1203
+ "target-lexicon",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "pyo3-ffi"
1208
+ version = "0.29.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1211
+ dependencies = [
1212
+ "libc",
1213
+ "pyo3-build-config",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "pyo3-macros"
1218
+ version = "0.29.0"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1221
+ dependencies = [
1222
+ "proc-macro2",
1223
+ "pyo3-macros-backend",
1224
+ "quote",
1225
+ "syn",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "pyo3-macros-backend"
1230
+ version = "0.29.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1233
+ dependencies = [
1234
+ "heck",
1235
+ "proc-macro2",
1236
+ "quote",
1237
+ "syn",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "quick-error"
1242
+ version = "1.2.3"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1245
+
1246
+ [[package]]
1247
+ name = "quote"
1248
+ version = "1.0.40"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1251
+ dependencies = [
1252
+ "proc-macro2",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "r-efi"
1257
+ version = "5.3.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1260
+
1261
+ [[package]]
1262
+ name = "radium"
1263
+ version = "0.7.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1266
+
1267
+ [[package]]
1268
+ name = "rand"
1269
+ version = "0.9.2"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1272
+ dependencies = [
1273
+ "rand_chacha 0.9.0",
1274
+ "rand_core 0.9.5",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "rand"
1279
+ version = "0.10.0"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
1282
+ dependencies = [
1283
+ "chacha20",
1284
+ "getrandom 0.4.1",
1285
+ "rand_core 0.10.0",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "rand_chacha"
1290
+ version = "0.9.0"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1293
+ dependencies = [
1294
+ "ppv-lite86",
1295
+ "rand_core 0.9.5",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "rand_chacha"
1300
+ version = "0.10.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
1303
+ dependencies = [
1304
+ "ppv-lite86",
1305
+ "rand_core 0.10.0",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "rand_core"
1310
+ version = "0.9.5"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1313
+ dependencies = [
1314
+ "getrandom 0.3.3",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "rand_core"
1319
+ version = "0.10.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
1322
+
1323
+ [[package]]
1324
+ name = "rand_xorshift"
1325
+ version = "0.4.0"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1328
+ dependencies = [
1329
+ "rand_core 0.9.5",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "rawpointer"
1334
+ version = "0.2.1"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1337
+
1338
+ [[package]]
1339
+ name = "rayon"
1340
+ version = "1.11.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1343
+ dependencies = [
1344
+ "either",
1345
+ "rayon-core",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "rayon-core"
1350
+ version = "1.13.0"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1353
+ dependencies = [
1354
+ "crossbeam-deque",
1355
+ "crossbeam-utils",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "regex"
1360
+ version = "1.11.2"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
1363
+ dependencies = [
1364
+ "aho-corasick",
1365
+ "memchr",
1366
+ "regex-automata",
1367
+ "regex-syntax",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "regex-automata"
1372
+ version = "0.4.10"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
1375
+ dependencies = [
1376
+ "aho-corasick",
1377
+ "memchr",
1378
+ "regex-syntax",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "regex-syntax"
1383
+ version = "0.8.6"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1386
+
1387
+ [[package]]
1388
+ name = "relative-path"
1389
+ version = "1.9.3"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
1392
+
1393
+ [[package]]
1394
+ name = "rstest"
1395
+ version = "0.26.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
1398
+ dependencies = [
1399
+ "futures-timer",
1400
+ "futures-util",
1401
+ "rstest_macros",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "rstest_macros"
1406
+ version = "0.26.1"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
1409
+ dependencies = [
1410
+ "cfg-if",
1411
+ "glob",
1412
+ "proc-macro-crate",
1413
+ "proc-macro2",
1414
+ "quote",
1415
+ "regex",
1416
+ "relative-path",
1417
+ "rustc_version",
1418
+ "syn",
1419
+ "unicode-ident",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "rustc_version"
1424
+ version = "0.4.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1427
+ dependencies = [
1428
+ "semver",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "rustix"
1433
+ version = "1.0.8"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1436
+ dependencies = [
1437
+ "bitflags",
1438
+ "errno",
1439
+ "libc",
1440
+ "linux-raw-sys",
1441
+ "windows-sys 0.60.2",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "rustversion"
1446
+ version = "1.0.22"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1449
+
1450
+ [[package]]
1451
+ name = "rusty-fork"
1452
+ version = "0.3.1"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1455
+ dependencies = [
1456
+ "fnv",
1457
+ "quick-error",
1458
+ "tempfile",
1459
+ "wait-timeout",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "ryu"
1464
+ version = "1.0.20"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1467
+
1468
+ [[package]]
1469
+ name = "safe_arch"
1470
+ version = "0.7.4"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
1473
+ dependencies = [
1474
+ "bytemuck",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "same-file"
1479
+ version = "1.0.6"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1482
+ dependencies = [
1483
+ "winapi-util",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "semver"
1488
+ version = "1.0.26"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
1491
+
1492
+ [[package]]
1493
+ name = "serde"
1494
+ version = "1.0.228"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1497
+ dependencies = [
1498
+ "serde_core",
1499
+ "serde_derive",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "serde_core"
1504
+ version = "1.0.228"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1507
+ dependencies = [
1508
+ "serde_derive",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "serde_derive"
1513
+ version = "1.0.228"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1516
+ dependencies = [
1517
+ "proc-macro2",
1518
+ "quote",
1519
+ "syn",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "serde_json"
1524
+ version = "1.0.145"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1527
+ dependencies = [
1528
+ "itoa",
1529
+ "memchr",
1530
+ "ryu",
1531
+ "serde",
1532
+ "serde_core",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "serde_spanned"
1537
+ version = "1.1.0"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "876ac351060d4f882bb1032b6369eb0aef79ad9df1ea8bc404874d8cc3d0cd98"
1540
+ dependencies = [
1541
+ "serde_core",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "shlex"
1546
+ version = "2.0.1"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1549
+
1550
+ [[package]]
1551
+ name = "simba"
1552
+ version = "0.9.0"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "b3a386a501cd104797982c15ae17aafe8b9261315b5d07e3ec803f2ea26be0fa"
1555
+ dependencies = [
1556
+ "approx",
1557
+ "num-complex",
1558
+ "num-traits",
1559
+ "paste",
1560
+ "wide",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "similar"
1565
+ version = "2.7.0"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1568
+
1569
+ [[package]]
1570
+ name = "siphasher"
1571
+ version = "1.0.1"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1574
+
1575
+ [[package]]
1576
+ name = "slab"
1577
+ version = "0.4.11"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1580
+
1581
+ [[package]]
1582
+ name = "smallvec"
1583
+ version = "1.15.1"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1586
+
1587
+ [[package]]
1588
+ name = "strsim"
1589
+ version = "0.11.1"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1592
+
1593
+ [[package]]
1594
+ name = "strum"
1595
+ version = "0.28.0"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
1598
+ dependencies = [
1599
+ "strum_macros",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "strum_macros"
1604
+ version = "0.28.0"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
1607
+ dependencies = [
1608
+ "heck",
1609
+ "proc-macro2",
1610
+ "quote",
1611
+ "syn",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "syn"
1616
+ version = "2.0.106"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1619
+ dependencies = [
1620
+ "proc-macro2",
1621
+ "quote",
1622
+ "unicode-ident",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "tap"
1627
+ version = "1.0.1"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1630
+
1631
+ [[package]]
1632
+ name = "target-lexicon"
1633
+ version = "0.13.5"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1636
+
1637
+ [[package]]
1638
+ name = "target-triple"
1639
+ version = "1.0.0"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "591ef38edfb78ca4771ee32cf494cb8771944bee237a9b91fc9c1424ac4b777b"
1642
+
1643
+ [[package]]
1644
+ name = "tempfile"
1645
+ version = "3.21.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
1648
+ dependencies = [
1649
+ "fastrand",
1650
+ "getrandom 0.3.3",
1651
+ "once_cell",
1652
+ "rustix",
1653
+ "windows-sys 0.60.2",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "termcolor"
1658
+ version = "1.4.1"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1661
+ dependencies = [
1662
+ "winapi-util",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "thiserror"
1667
+ version = "2.0.16"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
1670
+ dependencies = [
1671
+ "thiserror-impl",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "thiserror-impl"
1676
+ version = "2.0.16"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
1679
+ dependencies = [
1680
+ "proc-macro2",
1681
+ "quote",
1682
+ "syn",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "tinytemplate"
1687
+ version = "1.2.1"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1690
+ dependencies = [
1691
+ "serde",
1692
+ "serde_json",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "toml"
1697
+ version = "1.1.0+spec-1.1.0"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "f8195ca05e4eb728f4ba94f3e3291661320af739c4e43779cbdfae82ab239fcc"
1700
+ dependencies = [
1701
+ "indexmap",
1702
+ "serde_core",
1703
+ "serde_spanned",
1704
+ "toml_datetime 1.1.0+spec-1.1.0",
1705
+ "toml_parser",
1706
+ "toml_writer",
1707
+ "winnow 1.0.1",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "toml_datetime"
1712
+ version = "0.6.11"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1715
+
1716
+ [[package]]
1717
+ name = "toml_datetime"
1718
+ version = "1.1.0+spec-1.1.0"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "97251a7c317e03ad83774a8752a7e81fb6067740609f75ea2b585b569a59198f"
1721
+ dependencies = [
1722
+ "serde_core",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "toml_edit"
1727
+ version = "0.22.27"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1730
+ dependencies = [
1731
+ "indexmap",
1732
+ "toml_datetime 0.6.11",
1733
+ "winnow 0.7.13",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "toml_parser"
1738
+ version = "1.1.0+spec-1.1.0"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "2334f11ee363607eb04df9b8fc8a13ca1715a72ba8662a26ac285c98aabb4011"
1741
+ dependencies = [
1742
+ "winnow 1.0.1",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "toml_writer"
1747
+ version = "1.1.0+spec-1.1.0"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "d282ade6016312faf3e41e57ebbba0c073e4056dab1232ab1cb624199648f8ed"
1750
+
1751
+ [[package]]
1752
+ name = "trybuild"
1753
+ version = "1.0.117"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "0710d4dfbeae4f9c390baa784c49858a7468fa433f3fe5d0ec5ebef651cf59f9"
1756
+ dependencies = [
1757
+ "glob",
1758
+ "serde",
1759
+ "serde_derive",
1760
+ "serde_json",
1761
+ "target-triple",
1762
+ "termcolor",
1763
+ "toml",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "typenum"
1768
+ version = "1.18.0"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1771
+
1772
+ [[package]]
1773
+ name = "umol-chem"
1774
+ version = "0.6.0"
1775
+ dependencies = [
1776
+ "bitvec",
1777
+ "criterion",
1778
+ "float-cmp",
1779
+ "map-macro",
1780
+ "phf",
1781
+ "pretty_assertions",
1782
+ "regex",
1783
+ "rstest",
1784
+ "serde",
1785
+ "serde_json",
1786
+ "thiserror",
1787
+ "umol-utils",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "umol-edn"
1792
+ version = "0.6.0"
1793
+ dependencies = [
1794
+ "bigdecimal",
1795
+ "chrono",
1796
+ "criterion",
1797
+ "hashbrown 0.17.0",
1798
+ "indexmap",
1799
+ "itoa",
1800
+ "memchr",
1801
+ "num-bigint",
1802
+ "pretty_assertions",
1803
+ "proptest",
1804
+ "rstest",
1805
+ "serde",
1806
+ "serde_json",
1807
+ "thiserror",
1808
+ "umol-edn",
1809
+ "umol-edn-macros",
1810
+ "uuid",
1811
+ "winnow 1.0.1",
1812
+ "zmij",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "umol-edn-macros"
1817
+ version = "0.6.0"
1818
+ dependencies = [
1819
+ "heck",
1820
+ "proc-macro2",
1821
+ "quote",
1822
+ "syn",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "umol-geometric"
1827
+ version = "0.6.0"
1828
+ dependencies = [
1829
+ "criterion",
1830
+ "float-cmp",
1831
+ "insta",
1832
+ "nalgebra",
1833
+ "nom",
1834
+ "num",
1835
+ "num-traits",
1836
+ "pretty_assertions",
1837
+ "rstest",
1838
+ "serde",
1839
+ "umol-chem",
1840
+ "umol-msym",
1841
+ "umol-params",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "umol-geometric-core"
1846
+ version = "0.6.0"
1847
+ dependencies = [
1848
+ "pretty_assertions",
1849
+ "rstest",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "umol-geometric-graph"
1854
+ version = "0.6.0"
1855
+ dependencies = [
1856
+ "pretty_assertions",
1857
+ "rstest",
1858
+ "umol-chem",
1859
+ "umol-geometric",
1860
+ "umol-graph-ir",
1861
+ "umol-params",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "umol-graph"
1866
+ version = "0.6.0"
1867
+ dependencies = [
1868
+ "bitvec",
1869
+ "clap",
1870
+ "criterion",
1871
+ "fastrand",
1872
+ "float-cmp",
1873
+ "insta",
1874
+ "murmur3",
1875
+ "nalgebra",
1876
+ "pretty_assertions",
1877
+ "proptest",
1878
+ "rand 0.10.0",
1879
+ "rand_chacha 0.10.0",
1880
+ "regex",
1881
+ "rstest",
1882
+ "serde",
1883
+ "smallvec",
1884
+ "strum",
1885
+ "thiserror",
1886
+ "toml",
1887
+ "umol-chem",
1888
+ "umol-edn",
1889
+ "umol-graph-core",
1890
+ "umol-graph-ir",
1891
+ "umol-io",
1892
+ "umol-params",
1893
+ "umol-perm",
1894
+ "umol-utils",
1895
+ "walkdir",
1896
+ "xxhash-rust",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "umol-graph-core"
1901
+ version = "0.6.0"
1902
+ dependencies = [
1903
+ "bitvec",
1904
+ "criterion",
1905
+ "num-bigint",
1906
+ "pretty_assertions",
1907
+ "proptest",
1908
+ "rstest",
1909
+ "serde",
1910
+ "toml",
1911
+ "umol-nauty-sys",
1912
+ "xxhash-rust",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "umol-graph-ir"
1917
+ version = "0.6.0"
1918
+ dependencies = [
1919
+ "bimap",
1920
+ "bitflags",
1921
+ "criterion",
1922
+ "indexmap",
1923
+ "pretty_assertions",
1924
+ "proptest",
1925
+ "rstest",
1926
+ "smallvec",
1927
+ "strum",
1928
+ "thiserror",
1929
+ "trybuild",
1930
+ "umol-chem",
1931
+ "umol-edn",
1932
+ "umol-graph-core",
1933
+ "umol-graph-ir-macros",
1934
+ "umol-perm",
1935
+ "umol-utils",
1936
+ "winnow 1.0.1",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "umol-graph-ir-macros"
1941
+ version = "0.6.0"
1942
+ dependencies = [
1943
+ "proc-macro2",
1944
+ "quote",
1945
+ "rstest",
1946
+ "syn",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "umol-io"
1951
+ version = "0.6.0"
1952
+ dependencies = [
1953
+ "bitflags",
1954
+ "bstr",
1955
+ "criterion",
1956
+ "fast-float2",
1957
+ "float-cmp",
1958
+ "indexmap",
1959
+ "insta",
1960
+ "map-macro",
1961
+ "nom",
1962
+ "num",
1963
+ "pretty_assertions",
1964
+ "proptest",
1965
+ "regex",
1966
+ "rstest",
1967
+ "serde",
1968
+ "smallvec",
1969
+ "strum",
1970
+ "thiserror",
1971
+ "umol-chem",
1972
+ "umol-geometric-core",
1973
+ "umol-graph-ir",
1974
+ "umol-perm",
1975
+ "umol-utils",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "umol-msym"
1980
+ version = "0.6.0"
1981
+ dependencies = [
1982
+ "nalgebra",
1983
+ "rand 0.9.2",
1984
+ "rand_chacha 0.9.0",
1985
+ "rstest",
1986
+ "thiserror",
1987
+ "umol-msym-sys",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "umol-msym-sys"
1992
+ version = "0.6.0"
1993
+ dependencies = [
1994
+ "cc",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "umol-nauty-sys"
1999
+ version = "0.6.0"
2000
+ dependencies = [
2001
+ "cc",
2002
+ "rstest",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "umol-params"
2007
+ version = "0.6.0"
2008
+ dependencies = [
2009
+ "rstest",
2010
+ "umol-chem",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "umol-perm"
2015
+ version = "0.6.0"
2016
+ dependencies = [
2017
+ "pretty_assertions",
2018
+ "proptest",
2019
+ "rstest",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "umol-py"
2024
+ version = "0.6.0"
2025
+ dependencies = [
2026
+ "pyo3",
2027
+ "rstest",
2028
+ "umol-chem",
2029
+ "umol-graph",
2030
+ "umol-graph-core",
2031
+ "umol-graph-ir",
2032
+ "umol-io",
2033
+ "umol-perm",
2034
+ "umol-utils",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "umol-utils"
2039
+ version = "0.6.0"
2040
+ dependencies = [
2041
+ "pretty_assertions",
2042
+ "rstest",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "unarray"
2047
+ version = "0.1.4"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2050
+
2051
+ [[package]]
2052
+ name = "unicode-ident"
2053
+ version = "1.0.18"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2056
+
2057
+ [[package]]
2058
+ name = "unicode-xid"
2059
+ version = "0.2.6"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2062
+
2063
+ [[package]]
2064
+ name = "utf8parse"
2065
+ version = "0.2.2"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2068
+
2069
+ [[package]]
2070
+ name = "uuid"
2071
+ version = "1.23.0"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
2074
+ dependencies = [
2075
+ "js-sys",
2076
+ "wasm-bindgen",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "wait-timeout"
2081
+ version = "0.2.1"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2084
+ dependencies = [
2085
+ "libc",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "walkdir"
2090
+ version = "2.5.0"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2093
+ dependencies = [
2094
+ "same-file",
2095
+ "winapi-util",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "wasi"
2100
+ version = "0.14.3+wasi-0.2.4"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
2103
+ dependencies = [
2104
+ "wit-bindgen 0.45.0",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "wasip2"
2109
+ version = "1.0.2+wasi-0.2.9"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2112
+ dependencies = [
2113
+ "wit-bindgen 0.51.0",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "wasip3"
2118
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2121
+ dependencies = [
2122
+ "wit-bindgen 0.51.0",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "wasm-bindgen"
2127
+ version = "0.2.100"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2130
+ dependencies = [
2131
+ "cfg-if",
2132
+ "once_cell",
2133
+ "rustversion",
2134
+ "wasm-bindgen-macro",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "wasm-bindgen-backend"
2139
+ version = "0.2.100"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2142
+ dependencies = [
2143
+ "bumpalo",
2144
+ "log",
2145
+ "proc-macro2",
2146
+ "quote",
2147
+ "syn",
2148
+ "wasm-bindgen-shared",
2149
+ ]
2150
+
2151
+ [[package]]
2152
+ name = "wasm-bindgen-macro"
2153
+ version = "0.2.100"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2156
+ dependencies = [
2157
+ "quote",
2158
+ "wasm-bindgen-macro-support",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "wasm-bindgen-macro-support"
2163
+ version = "0.2.100"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2166
+ dependencies = [
2167
+ "proc-macro2",
2168
+ "quote",
2169
+ "syn",
2170
+ "wasm-bindgen-backend",
2171
+ "wasm-bindgen-shared",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "wasm-bindgen-shared"
2176
+ version = "0.2.100"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2179
+ dependencies = [
2180
+ "unicode-ident",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "wasm-encoder"
2185
+ version = "0.244.0"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2188
+ dependencies = [
2189
+ "leb128fmt",
2190
+ "wasmparser",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "wasm-metadata"
2195
+ version = "0.244.0"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2198
+ dependencies = [
2199
+ "anyhow",
2200
+ "indexmap",
2201
+ "wasm-encoder",
2202
+ "wasmparser",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "wasmparser"
2207
+ version = "0.244.0"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2210
+ dependencies = [
2211
+ "bitflags",
2212
+ "hashbrown 0.15.5",
2213
+ "indexmap",
2214
+ "semver",
2215
+ ]
2216
+
2217
+ [[package]]
2218
+ name = "web-sys"
2219
+ version = "0.3.77"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2222
+ dependencies = [
2223
+ "js-sys",
2224
+ "wasm-bindgen",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "wide"
2229
+ version = "0.7.33"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
2232
+ dependencies = [
2233
+ "bytemuck",
2234
+ "safe_arch",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "winapi"
2239
+ version = "0.3.9"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2242
+ dependencies = [
2243
+ "winapi-i686-pc-windows-gnu",
2244
+ "winapi-x86_64-pc-windows-gnu",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "winapi-i686-pc-windows-gnu"
2249
+ version = "0.4.0"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2252
+
2253
+ [[package]]
2254
+ name = "winapi-util"
2255
+ version = "0.1.10"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
2258
+ dependencies = [
2259
+ "windows-sys 0.60.2",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "winapi-x86_64-pc-windows-gnu"
2264
+ version = "0.4.0"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2267
+
2268
+ [[package]]
2269
+ name = "windows-core"
2270
+ version = "0.61.2"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2273
+ dependencies = [
2274
+ "windows-implement",
2275
+ "windows-interface",
2276
+ "windows-link 0.1.3",
2277
+ "windows-result",
2278
+ "windows-strings",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "windows-implement"
2283
+ version = "0.60.0"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
2286
+ dependencies = [
2287
+ "proc-macro2",
2288
+ "quote",
2289
+ "syn",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "windows-interface"
2294
+ version = "0.59.1"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
2297
+ dependencies = [
2298
+ "proc-macro2",
2299
+ "quote",
2300
+ "syn",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "windows-link"
2305
+ version = "0.1.3"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2308
+
2309
+ [[package]]
2310
+ name = "windows-link"
2311
+ version = "0.2.1"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2314
+
2315
+ [[package]]
2316
+ name = "windows-result"
2317
+ version = "0.3.4"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2320
+ dependencies = [
2321
+ "windows-link 0.1.3",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "windows-strings"
2326
+ version = "0.4.2"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2329
+ dependencies = [
2330
+ "windows-link 0.1.3",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "windows-sys"
2335
+ version = "0.59.0"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2338
+ dependencies = [
2339
+ "windows-targets 0.52.6",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "windows-sys"
2344
+ version = "0.60.2"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2347
+ dependencies = [
2348
+ "windows-targets 0.53.3",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "windows-targets"
2353
+ version = "0.52.6"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2356
+ dependencies = [
2357
+ "windows_aarch64_gnullvm 0.52.6",
2358
+ "windows_aarch64_msvc 0.52.6",
2359
+ "windows_i686_gnu 0.52.6",
2360
+ "windows_i686_gnullvm 0.52.6",
2361
+ "windows_i686_msvc 0.52.6",
2362
+ "windows_x86_64_gnu 0.52.6",
2363
+ "windows_x86_64_gnullvm 0.52.6",
2364
+ "windows_x86_64_msvc 0.52.6",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "windows-targets"
2369
+ version = "0.53.3"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2372
+ dependencies = [
2373
+ "windows-link 0.1.3",
2374
+ "windows_aarch64_gnullvm 0.53.0",
2375
+ "windows_aarch64_msvc 0.53.0",
2376
+ "windows_i686_gnu 0.53.0",
2377
+ "windows_i686_gnullvm 0.53.0",
2378
+ "windows_i686_msvc 0.53.0",
2379
+ "windows_x86_64_gnu 0.53.0",
2380
+ "windows_x86_64_gnullvm 0.53.0",
2381
+ "windows_x86_64_msvc 0.53.0",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "windows_aarch64_gnullvm"
2386
+ version = "0.52.6"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2389
+
2390
+ [[package]]
2391
+ name = "windows_aarch64_gnullvm"
2392
+ version = "0.53.0"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2395
+
2396
+ [[package]]
2397
+ name = "windows_aarch64_msvc"
2398
+ version = "0.52.6"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2401
+
2402
+ [[package]]
2403
+ name = "windows_aarch64_msvc"
2404
+ version = "0.53.0"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2407
+
2408
+ [[package]]
2409
+ name = "windows_i686_gnu"
2410
+ version = "0.52.6"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2413
+
2414
+ [[package]]
2415
+ name = "windows_i686_gnu"
2416
+ version = "0.53.0"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2419
+
2420
+ [[package]]
2421
+ name = "windows_i686_gnullvm"
2422
+ version = "0.52.6"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2425
+
2426
+ [[package]]
2427
+ name = "windows_i686_gnullvm"
2428
+ version = "0.53.0"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2431
+
2432
+ [[package]]
2433
+ name = "windows_i686_msvc"
2434
+ version = "0.52.6"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2437
+
2438
+ [[package]]
2439
+ name = "windows_i686_msvc"
2440
+ version = "0.53.0"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2443
+
2444
+ [[package]]
2445
+ name = "windows_x86_64_gnu"
2446
+ version = "0.52.6"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2449
+
2450
+ [[package]]
2451
+ name = "windows_x86_64_gnu"
2452
+ version = "0.53.0"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2455
+
2456
+ [[package]]
2457
+ name = "windows_x86_64_gnullvm"
2458
+ version = "0.52.6"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2461
+
2462
+ [[package]]
2463
+ name = "windows_x86_64_gnullvm"
2464
+ version = "0.53.0"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2467
+
2468
+ [[package]]
2469
+ name = "windows_x86_64_msvc"
2470
+ version = "0.52.6"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2473
+
2474
+ [[package]]
2475
+ name = "windows_x86_64_msvc"
2476
+ version = "0.53.0"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2479
+
2480
+ [[package]]
2481
+ name = "winnow"
2482
+ version = "0.7.13"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
2485
+ dependencies = [
2486
+ "memchr",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "winnow"
2491
+ version = "1.0.1"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
2494
+ dependencies = [
2495
+ "memchr",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "wit-bindgen"
2500
+ version = "0.45.0"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
2503
+
2504
+ [[package]]
2505
+ name = "wit-bindgen"
2506
+ version = "0.51.0"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2509
+ dependencies = [
2510
+ "wit-bindgen-rust-macro",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "wit-bindgen-core"
2515
+ version = "0.51.0"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2518
+ dependencies = [
2519
+ "anyhow",
2520
+ "heck",
2521
+ "wit-parser",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "wit-bindgen-rust"
2526
+ version = "0.51.0"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2529
+ dependencies = [
2530
+ "anyhow",
2531
+ "heck",
2532
+ "indexmap",
2533
+ "prettyplease",
2534
+ "syn",
2535
+ "wasm-metadata",
2536
+ "wit-bindgen-core",
2537
+ "wit-component",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "wit-bindgen-rust-macro"
2542
+ version = "0.51.0"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2545
+ dependencies = [
2546
+ "anyhow",
2547
+ "prettyplease",
2548
+ "proc-macro2",
2549
+ "quote",
2550
+ "syn",
2551
+ "wit-bindgen-core",
2552
+ "wit-bindgen-rust",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "wit-component"
2557
+ version = "0.244.0"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2560
+ dependencies = [
2561
+ "anyhow",
2562
+ "bitflags",
2563
+ "indexmap",
2564
+ "log",
2565
+ "serde",
2566
+ "serde_derive",
2567
+ "serde_json",
2568
+ "wasm-encoder",
2569
+ "wasm-metadata",
2570
+ "wasmparser",
2571
+ "wit-parser",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "wit-parser"
2576
+ version = "0.244.0"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2579
+ dependencies = [
2580
+ "anyhow",
2581
+ "id-arena",
2582
+ "indexmap",
2583
+ "log",
2584
+ "semver",
2585
+ "serde",
2586
+ "serde_derive",
2587
+ "serde_json",
2588
+ "unicode-xid",
2589
+ "wasmparser",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "wyz"
2594
+ version = "0.5.1"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2597
+ dependencies = [
2598
+ "tap",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "xxhash-rust"
2603
+ version = "0.8.15"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
2606
+
2607
+ [[package]]
2608
+ name = "yansi"
2609
+ version = "1.0.1"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
2612
+
2613
+ [[package]]
2614
+ name = "zerocopy"
2615
+ version = "0.8.33"
2616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2617
+ checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
2618
+ dependencies = [
2619
+ "zerocopy-derive",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "zerocopy-derive"
2624
+ version = "0.8.33"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
2627
+ dependencies = [
2628
+ "proc-macro2",
2629
+ "quote",
2630
+ "syn",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "zmij"
2635
+ version = "1.0.21"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"