oxiphysics 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (246) hide show
  1. oxiphysics-0.1.0/Cargo.lock +1631 -0
  2. oxiphysics-0.1.0/Cargo.toml +40 -0
  3. oxiphysics-0.1.0/PKG-INFO +91 -0
  4. oxiphysics-0.1.0/README.md +66 -0
  5. oxiphysics-0.1.0/crates/oxiphysics-core/Cargo.toml +18 -0
  6. oxiphysics-0.1.0/crates/oxiphysics-core/README.md +64 -0
  7. oxiphysics-0.1.0/crates/oxiphysics-core/TODO.md +59 -0
  8. oxiphysics-0.1.0/crates/oxiphysics-core/src/adaptive_timestepping.rs +717 -0
  9. oxiphysics-0.1.0/crates/oxiphysics-core/src/autodiff.rs +887 -0
  10. oxiphysics-0.1.0/crates/oxiphysics-core/src/bayesian_inference.rs +1708 -0
  11. oxiphysics-0.1.0/crates/oxiphysics-core/src/bayesian_opt.rs +955 -0
  12. oxiphysics-0.1.0/crates/oxiphysics-core/src/cache_layout.rs +1211 -0
  13. oxiphysics-0.1.0/crates/oxiphysics-core/src/category_theory/functions.rs +920 -0
  14. oxiphysics-0.1.0/crates/oxiphysics-core/src/category_theory/mod.rs +11 -0
  15. oxiphysics-0.1.0/crates/oxiphysics-core/src/category_theory/namedmorphism_traits.rs +26 -0
  16. oxiphysics-0.1.0/crates/oxiphysics-core/src/category_theory/namedobject_traits.rs +20 -0
  17. oxiphysics-0.1.0/crates/oxiphysics-core/src/category_theory/physicscategory_traits.rs +19 -0
  18. oxiphysics-0.1.0/crates/oxiphysics-core/src/category_theory/types.rs +1208 -0
  19. oxiphysics-0.1.0/crates/oxiphysics-core/src/causal_inference.rs +1823 -0
  20. oxiphysics-0.1.0/crates/oxiphysics-core/src/chaos_theory.rs +1673 -0
  21. oxiphysics-0.1.0/crates/oxiphysics-core/src/collision.rs +1814 -0
  22. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex/complex_traits.rs +61 -0
  23. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex/complexmatn_traits.rs +27 -0
  24. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex/functions.rs +1948 -0
  25. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex/mod.rs +11 -0
  26. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex/quatalgebra_traits.rs +28 -0
  27. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex/types.rs +595 -0
  28. oxiphysics-0.1.0/crates/oxiphysics-core/src/complex_analysis.rs +1167 -0
  29. oxiphysics-0.1.0/crates/oxiphysics-core/src/compressed_sensing.rs +1881 -0
  30. oxiphysics-0.1.0/crates/oxiphysics-core/src/continuation.rs +1324 -0
  31. oxiphysics-0.1.0/crates/oxiphysics-core/src/control.rs +1780 -0
  32. oxiphysics-0.1.0/crates/oxiphysics-core/src/control_systems/complex_traits.rs +23 -0
  33. oxiphysics-0.1.0/crates/oxiphysics-core/src/control_systems/functions.rs +1482 -0
  34. oxiphysics-0.1.0/crates/oxiphysics-core/src/control_systems/mod.rs +9 -0
  35. oxiphysics-0.1.0/crates/oxiphysics-core/src/control_systems/types.rs +489 -0
  36. oxiphysics-0.1.0/crates/oxiphysics-core/src/control_theory.rs +1973 -0
  37. oxiphysics-0.1.0/crates/oxiphysics-core/src/convex_analysis.rs +1440 -0
  38. oxiphysics-0.1.0/crates/oxiphysics-core/src/differential_geometry/functions.rs +1613 -0
  39. oxiphysics-0.1.0/crates/oxiphysics-core/src/differential_geometry/mod.rs +10 -0
  40. oxiphysics-0.1.0/crates/oxiphysics-core/src/differential_geometry/se3_traits.rs +19 -0
  41. oxiphysics-0.1.0/crates/oxiphysics-core/src/differential_geometry/so3_traits.rs +19 -0
  42. oxiphysics-0.1.0/crates/oxiphysics-core/src/differential_geometry/types.rs +917 -0
  43. oxiphysics-0.1.0/crates/oxiphysics-core/src/dimensionless.rs +434 -0
  44. oxiphysics-0.1.0/crates/oxiphysics-core/src/dual_quaternion.rs +1536 -0
  45. oxiphysics-0.1.0/crates/oxiphysics-core/src/dynamic_systems.rs +1713 -0
  46. oxiphysics-0.1.0/crates/oxiphysics-core/src/dynamical_systems.rs +1984 -0
  47. oxiphysics-0.1.0/crates/oxiphysics-core/src/ergodic_theory.rs +1654 -0
  48. oxiphysics-0.1.0/crates/oxiphysics-core/src/error.rs +1268 -0
  49. oxiphysics-0.1.0/crates/oxiphysics-core/src/finite_difference.rs +1717 -0
  50. oxiphysics-0.1.0/crates/oxiphysics-core/src/formal_verification.rs +1424 -0
  51. oxiphysics-0.1.0/crates/oxiphysics-core/src/fractional_calculus.rs +1407 -0
  52. oxiphysics-0.1.0/crates/oxiphysics-core/src/functional_analysis.rs +1772 -0
  53. oxiphysics-0.1.0/crates/oxiphysics-core/src/game_theory/behaviouralstrategy_traits.rs +19 -0
  54. oxiphysics-0.1.0/crates/oxiphysics-core/src/game_theory/functions.rs +770 -0
  55. oxiphysics-0.1.0/crates/oxiphysics-core/src/game_theory/grimtrigger_traits.rs +19 -0
  56. oxiphysics-0.1.0/crates/oxiphysics-core/src/game_theory/mod.rs +10 -0
  57. oxiphysics-0.1.0/crates/oxiphysics-core/src/game_theory/types.rs +1230 -0
  58. oxiphysics-0.1.0/crates/oxiphysics-core/src/geometry_primitives.rs +1223 -0
  59. oxiphysics-0.1.0/crates/oxiphysics-core/src/graph/astarstate_traits.rs +31 -0
  60. oxiphysics-0.1.0/crates/oxiphysics-core/src/graph/functions.rs +1788 -0
  61. oxiphysics-0.1.0/crates/oxiphysics-core/src/graph/mod.rs +10 -0
  62. oxiphysics-0.1.0/crates/oxiphysics-core/src/graph/state_traits.rs +34 -0
  63. oxiphysics-0.1.0/crates/oxiphysics-core/src/graph/types.rs +140 -0
  64. oxiphysics-0.1.0/crates/oxiphysics-core/src/information_geometry.rs +1024 -0
  65. oxiphysics-0.1.0/crates/oxiphysics-core/src/information_theory/functions.rs +1009 -0
  66. oxiphysics-0.1.0/crates/oxiphysics-core/src/information_theory/functions_2.rs +527 -0
  67. oxiphysics-0.1.0/crates/oxiphysics-core/src/information_theory/mod.rs +9 -0
  68. oxiphysics-0.1.0/crates/oxiphysics-core/src/information_theory/types.rs +260 -0
  69. oxiphysics-0.1.0/crates/oxiphysics-core/src/interpolation/functions.rs +1518 -0
  70. oxiphysics-0.1.0/crates/oxiphysics-core/src/interpolation/mod.rs +8 -0
  71. oxiphysics-0.1.0/crates/oxiphysics-core/src/interpolation/types.rs +849 -0
  72. oxiphysics-0.1.0/crates/oxiphysics-core/src/interval/boundconstraint_traits.rs +26 -0
  73. oxiphysics-0.1.0/crates/oxiphysics-core/src/interval/functions.rs +1377 -0
  74. oxiphysics-0.1.0/crates/oxiphysics-core/src/interval/interval_traits.rs +92 -0
  75. oxiphysics-0.1.0/crates/oxiphysics-core/src/interval/linearconstraint_traits.rs +40 -0
  76. oxiphysics-0.1.0/crates/oxiphysics-core/src/interval/mod.rs +11 -0
  77. oxiphysics-0.1.0/crates/oxiphysics-core/src/interval/types.rs +710 -0
  78. oxiphysics-0.1.0/crates/oxiphysics-core/src/lib.rs +126 -0
  79. oxiphysics-0.1.0/crates/oxiphysics-core/src/linalg/functions.rs +2033 -0
  80. oxiphysics-0.1.0/crates/oxiphysics-core/src/linalg/mod.rs +6 -0
  81. oxiphysics-0.1.0/crates/oxiphysics-core/src/machine_learning/functions.rs +1605 -0
  82. oxiphysics-0.1.0/crates/oxiphysics-core/src/machine_learning/matrix_traits.rs +27 -0
  83. oxiphysics-0.1.0/crates/oxiphysics-core/src/machine_learning/mod.rs +9 -0
  84. oxiphysics-0.1.0/crates/oxiphysics-core/src/machine_learning/types.rs +1497 -0
  85. oxiphysics-0.1.0/crates/oxiphysics-core/src/math/dual_traits.rs +64 -0
  86. oxiphysics-0.1.0/crates/oxiphysics-core/src/math/geometry.rs +1794 -0
  87. oxiphysics-0.1.0/crates/oxiphysics-core/src/math/linear_algebra.rs +1894 -0
  88. oxiphysics-0.1.0/crates/oxiphysics-core/src/math/mod.rs +17 -0
  89. oxiphysics-0.1.0/crates/oxiphysics-core/src/math/types.rs +455 -0
  90. oxiphysics-0.1.0/crates/oxiphysics-core/src/measure_theory.rs +1396 -0
  91. oxiphysics-0.1.0/crates/oxiphysics-core/src/metric_spaces.rs +1452 -0
  92. oxiphysics-0.1.0/crates/oxiphysics-core/src/monte_carlo.rs +1488 -0
  93. oxiphysics-0.1.0/crates/oxiphysics-core/src/multiscale_methods/concurrentdomaindecomposition_traits.rs +19 -0
  94. oxiphysics-0.1.0/crates/oxiphysics-core/src/multiscale_methods/functions.rs +611 -0
  95. oxiphysics-0.1.0/crates/oxiphysics-core/src/multiscale_methods/functions_2.rs +442 -0
  96. oxiphysics-0.1.0/crates/oxiphysics-core/src/multiscale_methods/mod.rs +10 -0
  97. oxiphysics-0.1.0/crates/oxiphysics-core/src/multiscale_methods/types.rs +836 -0
  98. oxiphysics-0.1.0/crates/oxiphysics-core/src/network_dynamics.rs +1747 -0
  99. oxiphysics-0.1.0/crates/oxiphysics-core/src/neural_ode.rs +1176 -0
  100. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_integration.rs +657 -0
  101. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/functions.rs +618 -0
  102. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/ilu0preconditioner_traits.rs +49 -0
  103. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/ilutpreconditioner_traits.rs +43 -0
  104. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/jacobipreconditioner_traits.rs +23 -0
  105. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/mod.rs +13 -0
  106. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/spaipreconditioner_traits.rs +26 -0
  107. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/ssorpreconditioner_traits.rs +57 -0
  108. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_linear_algebra/types.rs +1714 -0
  109. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_methods.rs +1686 -0
  110. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_methods_ext.rs +1479 -0
  111. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerical_ode.rs +1371 -0
  112. oxiphysics-0.1.0/crates/oxiphysics-core/src/numerics.rs +1792 -0
  113. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/adams4_traits.rs +19 -0
  114. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/adamsbashforthmoulton4_traits.rs +19 -0
  115. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/bdf2_traits.rs +19 -0
  116. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/bdforder2_traits.rs +19 -0
  117. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/fehlberg45_traits.rs +19 -0
  118. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/functions.rs +1297 -0
  119. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/impliciteulernewton_traits.rs +19 -0
  120. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/leapfrog_traits.rs +19 -0
  121. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/mod.rs +16 -0
  122. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/types.rs +1223 -0
  123. oxiphysics-0.1.0/crates/oxiphysics-core/src/ode/verlet_traits.rs +19 -0
  124. oxiphysics-0.1.0/crates/oxiphysics-core/src/optimization/functions.rs +1403 -0
  125. oxiphysics-0.1.0/crates/oxiphysics-core/src/optimization/functions_2.rs +907 -0
  126. oxiphysics-0.1.0/crates/oxiphysics-core/src/optimization/mod.rs +10 -0
  127. oxiphysics-0.1.0/crates/oxiphysics-core/src/optimization/optimizer_traits.rs +19 -0
  128. oxiphysics-0.1.0/crates/oxiphysics-core/src/optimization/types.rs +557 -0
  129. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/functions.rs +548 -0
  130. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/functions_2.rs +802 -0
  131. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/mod.rs +14 -0
  132. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/parallelfor_traits.rs +19 -0
  133. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/serialworkqueue_traits.rs +19 -0
  134. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/soavec3_traits.rs +19 -0
  135. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/types.rs +466 -0
  136. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel/workstealingdeque_traits.rs +19 -0
  137. oxiphysics-0.1.0/crates/oxiphysics-core/src/parallel_orchestrator.rs +834 -0
  138. oxiphysics-0.1.0/crates/oxiphysics-core/src/pde/functions.rs +715 -0
  139. oxiphysics-0.1.0/crates/oxiphysics-core/src/pde/mod.rs +8 -0
  140. oxiphysics-0.1.0/crates/oxiphysics-core/src/pde/types.rs +2146 -0
  141. oxiphysics-0.1.0/crates/oxiphysics-core/src/pde_solvers.rs +749 -0
  142. oxiphysics-0.1.0/crates/oxiphysics-core/src/persistent_homology.rs +1172 -0
  143. oxiphysics-0.1.0/crates/oxiphysics-core/src/petri_nets.rs +1359 -0
  144. oxiphysics-0.1.0/crates/oxiphysics-core/src/probabilistic_models.rs +1608 -0
  145. oxiphysics-0.1.0/crates/oxiphysics-core/src/quadrature.rs +1127 -0
  146. oxiphysics-0.1.0/crates/oxiphysics-core/src/random/functions.rs +1177 -0
  147. oxiphysics-0.1.0/crates/oxiphysics-core/src/random/mod.rs +8 -0
  148. oxiphysics-0.1.0/crates/oxiphysics-core/src/random/types.rs +1635 -0
  149. oxiphysics-0.1.0/crates/oxiphysics-core/src/random_processes.rs +1525 -0
  150. oxiphysics-0.1.0/crates/oxiphysics-core/src/renormalization_group.rs +1440 -0
  151. oxiphysics-0.1.0/crates/oxiphysics-core/src/sampling/functions.rs +1500 -0
  152. oxiphysics-0.1.0/crates/oxiphysics-core/src/sampling/functions_2.rs +1276 -0
  153. oxiphysics-0.1.0/crates/oxiphysics-core/src/sampling/mod.rs +11 -0
  154. oxiphysics-0.1.0/crates/oxiphysics-core/src/sampling/sobol_traits.rs +21 -0
  155. oxiphysics-0.1.0/crates/oxiphysics-core/src/sampling/types.rs +468 -0
  156. oxiphysics-0.1.0/crates/oxiphysics-core/src/signal/functions.rs +1651 -0
  157. oxiphysics-0.1.0/crates/oxiphysics-core/src/signal/mod.rs +8 -0
  158. oxiphysics-0.1.0/crates/oxiphysics-core/src/signal/types.rs +854 -0
  159. oxiphysics-0.1.0/crates/oxiphysics-core/src/signal_analysis.rs +1352 -0
  160. oxiphysics-0.1.0/crates/oxiphysics-core/src/signal_processing.rs +1940 -0
  161. oxiphysics-0.1.0/crates/oxiphysics-core/src/simd_math.rs +991 -0
  162. oxiphysics-0.1.0/crates/oxiphysics-core/src/sparse/functions.rs +1955 -0
  163. oxiphysics-0.1.0/crates/oxiphysics-core/src/sparse/functions_2.rs +430 -0
  164. oxiphysics-0.1.0/crates/oxiphysics-core/src/sparse/mod.rs +10 -0
  165. oxiphysics-0.1.0/crates/oxiphysics-core/src/sparse/types.rs +862 -0
  166. oxiphysics-0.1.0/crates/oxiphysics-core/src/spatial/functions.rs +954 -0
  167. oxiphysics-0.1.0/crates/oxiphysics-core/src/spatial/mod.rs +8 -0
  168. oxiphysics-0.1.0/crates/oxiphysics-core/src/spatial/types.rs +1414 -0
  169. oxiphysics-0.1.0/crates/oxiphysics-core/src/spectral_methods.rs +1139 -0
  170. oxiphysics-0.1.0/crates/oxiphysics-core/src/stability.rs +332 -0
  171. oxiphysics-0.1.0/crates/oxiphysics-core/src/statistical_mechanics.rs +1407 -0
  172. oxiphysics-0.1.0/crates/oxiphysics-core/src/statistics/functions.rs +1735 -0
  173. oxiphysics-0.1.0/crates/oxiphysics-core/src/statistics/functions_2.rs +245 -0
  174. oxiphysics-0.1.0/crates/oxiphysics-core/src/statistics/mod.rs +10 -0
  175. oxiphysics-0.1.0/crates/oxiphysics-core/src/statistics/types.rs +485 -0
  176. oxiphysics-0.1.0/crates/oxiphysics-core/src/statistics/welfordonline_traits.rs +19 -0
  177. oxiphysics-0.1.0/crates/oxiphysics-core/src/stochastic/functions.rs +1166 -0
  178. oxiphysics-0.1.0/crates/oxiphysics-core/src/stochastic/mod.rs +8 -0
  179. oxiphysics-0.1.0/crates/oxiphysics-core/src/stochastic/types.rs +1306 -0
  180. oxiphysics-0.1.0/crates/oxiphysics-core/src/stochastic_processes.rs +1668 -0
  181. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/expr_traits.rs +38 -0
  182. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/functions.rs +784 -0
  183. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/functions_2.rs +418 -0
  184. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/mod.rs +12 -0
  185. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/polynomial_traits.rs +49 -0
  186. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/rationalfunction_traits.rs +20 -0
  187. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_algebra/types.rs +419 -0
  188. oxiphysics-0.1.0/crates/oxiphysics-core/src/symbolic_math.rs +756 -0
  189. oxiphysics-0.1.0/crates/oxiphysics-core/src/tensor/decomposition.rs +751 -0
  190. oxiphysics-0.1.0/crates/oxiphysics-core/src/tensor/mod.rs +18 -0
  191. oxiphysics-0.1.0/crates/oxiphysics-core/src/tensor/operations.rs +1883 -0
  192. oxiphysics-0.1.0/crates/oxiphysics-core/src/tensor/types.rs +1466 -0
  193. oxiphysics-0.1.0/crates/oxiphysics-core/src/time_series_analysis.rs +1399 -0
  194. oxiphysics-0.1.0/crates/oxiphysics-core/src/topological_data.rs +1630 -0
  195. oxiphysics-0.1.0/crates/oxiphysics-core/src/topology.rs +1306 -0
  196. oxiphysics-0.1.0/crates/oxiphysics-core/src/topology_optimization.rs +1625 -0
  197. oxiphysics-0.1.0/crates/oxiphysics-core/src/traits.rs +1593 -0
  198. oxiphysics-0.1.0/crates/oxiphysics-core/src/types.rs +2442 -0
  199. oxiphysics-0.1.0/crates/oxiphysics-core/src/uncertainty_quantification.rs +1984 -0
  200. oxiphysics-0.1.0/crates/oxiphysics-core/src/unit_conversion.rs +612 -0
  201. oxiphysics-0.1.0/crates/oxiphysics-core/src/wavelet_transform/functions.rs +942 -0
  202. oxiphysics-0.1.0/crates/oxiphysics-core/src/wavelet_transform/functions_2.rs +437 -0
  203. oxiphysics-0.1.0/crates/oxiphysics-core/src/wavelet_transform/mod.rs +9 -0
  204. oxiphysics-0.1.0/crates/oxiphysics-core/src/wavelet_transform/types.rs +333 -0
  205. oxiphysics-0.1.0/crates/oxiphysics-core/src/wavelets.rs +1875 -0
  206. oxiphysics-0.1.0/crates/oxiphysics-core/src/world/body_traits.rs +37 -0
  207. oxiphysics-0.1.0/crates/oxiphysics-core/src/world/functions.rs +770 -0
  208. oxiphysics-0.1.0/crates/oxiphysics-core/src/world/mod.rs +14 -0
  209. oxiphysics-0.1.0/crates/oxiphysics-core/src/world/physicsworld_traits.rs +32 -0
  210. oxiphysics-0.1.0/crates/oxiphysics-core/src/world/types.rs +1449 -0
  211. oxiphysics-0.1.0/crates/oxiphysics-python/Cargo.toml +21 -0
  212. oxiphysics-0.1.0/crates/oxiphysics-python/README.md +66 -0
  213. oxiphysics-0.1.0/crates/oxiphysics-python/TODO.md +48 -0
  214. oxiphysics-0.1.0/crates/oxiphysics-python/src/analytics_api.rs +1102 -0
  215. oxiphysics-0.1.0/crates/oxiphysics-python/src/constraints_api.rs +1474 -0
  216. oxiphysics-0.1.0/crates/oxiphysics-python/src/error.rs +561 -0
  217. oxiphysics-0.1.0/crates/oxiphysics-python/src/fem_api.rs +1577 -0
  218. oxiphysics-0.1.0/crates/oxiphysics-python/src/geometry_api.rs +1862 -0
  219. oxiphysics-0.1.0/crates/oxiphysics-python/src/io_api.rs +952 -0
  220. oxiphysics-0.1.0/crates/oxiphysics-python/src/lbm_api.rs +1612 -0
  221. oxiphysics-0.1.0/crates/oxiphysics-python/src/lib.rs +61 -0
  222. oxiphysics-0.1.0/crates/oxiphysics-python/src/materials_api.rs +973 -0
  223. oxiphysics-0.1.0/crates/oxiphysics-python/src/md_api.rs +1132 -0
  224. oxiphysics-0.1.0/crates/oxiphysics-python/src/rigid_api.rs +1686 -0
  225. oxiphysics-0.1.0/crates/oxiphysics-python/src/serialization/functions.rs +1023 -0
  226. oxiphysics-0.1.0/crates/oxiphysics-python/src/serialization/functions_2.rs +154 -0
  227. oxiphysics-0.1.0/crates/oxiphysics-python/src/serialization/incrementalexportconfig_traits.rs +23 -0
  228. oxiphysics-0.1.0/crates/oxiphysics-python/src/serialization/mod.rs +11 -0
  229. oxiphysics-0.1.0/crates/oxiphysics-python/src/serialization/types.rs +827 -0
  230. oxiphysics-0.1.0/crates/oxiphysics-python/src/sph_api.rs +1357 -0
  231. oxiphysics-0.1.0/crates/oxiphysics-python/src/types.rs +1014 -0
  232. oxiphysics-0.1.0/crates/oxiphysics-python/src/vehicle_api.rs +1619 -0
  233. oxiphysics-0.1.0/crates/oxiphysics-python/src/viz_api.rs +1760 -0
  234. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/constraints.rs +227 -0
  235. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/extensions.rs +209 -0
  236. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/fem.rs +229 -0
  237. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/geometry.rs +269 -0
  238. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/lbm.rs +240 -0
  239. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/materials.rs +161 -0
  240. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/math_helpers.rs +91 -0
  241. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/mod.rs +1057 -0
  242. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/py_bindings.rs +763 -0
  243. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/sph.rs +273 -0
  244. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/stats.rs +149 -0
  245. oxiphysics-0.1.0/crates/oxiphysics-python/src/world_api/tests.rs +1502 -0
  246. oxiphysics-0.1.0/pyproject.toml +37 -0
@@ -0,0 +1,1631 @@
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.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
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 = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anyhow"
37
+ version = "1.0.102"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
40
+
41
+ [[package]]
42
+ name = "approx"
43
+ version = "0.5.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
46
+ dependencies = [
47
+ "num-traits",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "autocfg"
52
+ version = "1.5.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
55
+
56
+ [[package]]
57
+ name = "bit-set"
58
+ version = "0.8.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
61
+ dependencies = [
62
+ "bit-vec",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "bit-vec"
67
+ version = "0.8.0"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
70
+
71
+ [[package]]
72
+ name = "bitflags"
73
+ version = "2.11.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
76
+
77
+ [[package]]
78
+ name = "bumpalo"
79
+ version = "3.20.2"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
82
+
83
+ [[package]]
84
+ name = "bytemuck"
85
+ version = "1.25.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
88
+
89
+ [[package]]
90
+ name = "cast"
91
+ version = "0.3.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
94
+
95
+ [[package]]
96
+ name = "cc"
97
+ version = "1.2.59"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
100
+ dependencies = [
101
+ "find-msvc-tools",
102
+ "shlex",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "cfg-if"
107
+ version = "1.0.4"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
110
+
111
+ [[package]]
112
+ name = "chacha20"
113
+ version = "0.10.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
116
+ dependencies = [
117
+ "cfg-if",
118
+ "cpufeatures",
119
+ "rand_core 0.10.0",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "ciborium"
124
+ version = "0.2.2"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
127
+ dependencies = [
128
+ "ciborium-io",
129
+ "ciborium-ll",
130
+ "serde",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "ciborium-io"
135
+ version = "0.2.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
138
+
139
+ [[package]]
140
+ name = "ciborium-ll"
141
+ version = "0.2.2"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
144
+ dependencies = [
145
+ "ciborium-io",
146
+ "half",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "clap"
151
+ version = "4.6.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
154
+ dependencies = [
155
+ "clap_builder",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "clap_builder"
160
+ version = "4.6.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
163
+ dependencies = [
164
+ "anstyle",
165
+ "clap_lex",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "clap_lex"
170
+ version = "1.1.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
173
+
174
+ [[package]]
175
+ name = "cpufeatures"
176
+ version = "0.3.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
179
+ dependencies = [
180
+ "libc",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "criterion"
185
+ version = "0.8.2"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
188
+ dependencies = [
189
+ "alloca",
190
+ "anes",
191
+ "cast",
192
+ "ciborium",
193
+ "clap",
194
+ "criterion-plot",
195
+ "itertools",
196
+ "num-traits",
197
+ "oorandom",
198
+ "page_size",
199
+ "plotters",
200
+ "rayon",
201
+ "regex",
202
+ "serde",
203
+ "serde_json",
204
+ "tinytemplate",
205
+ "walkdir",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "criterion-plot"
210
+ version = "0.8.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
213
+ dependencies = [
214
+ "cast",
215
+ "itertools",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "crossbeam-deque"
220
+ version = "0.8.6"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
223
+ dependencies = [
224
+ "crossbeam-epoch",
225
+ "crossbeam-utils",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "crossbeam-epoch"
230
+ version = "0.9.18"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
233
+ dependencies = [
234
+ "crossbeam-utils",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "crossbeam-utils"
239
+ version = "0.8.21"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
242
+
243
+ [[package]]
244
+ name = "crunchy"
245
+ version = "0.2.4"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
248
+
249
+ [[package]]
250
+ name = "either"
251
+ version = "1.15.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
254
+
255
+ [[package]]
256
+ name = "equivalent"
257
+ version = "1.0.2"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
260
+
261
+ [[package]]
262
+ name = "errno"
263
+ version = "0.3.14"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
266
+ dependencies = [
267
+ "libc",
268
+ "windows-sys",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "fastrand"
273
+ version = "2.4.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
276
+
277
+ [[package]]
278
+ name = "find-msvc-tools"
279
+ version = "0.1.9"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
282
+
283
+ [[package]]
284
+ name = "fnv"
285
+ version = "1.0.7"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
288
+
289
+ [[package]]
290
+ name = "foldhash"
291
+ version = "0.1.5"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
294
+
295
+ [[package]]
296
+ name = "getrandom"
297
+ version = "0.3.4"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
300
+ dependencies = [
301
+ "cfg-if",
302
+ "libc",
303
+ "r-efi 5.3.0",
304
+ "wasip2",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "getrandom"
309
+ version = "0.4.2"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
312
+ dependencies = [
313
+ "cfg-if",
314
+ "libc",
315
+ "r-efi 6.0.0",
316
+ "rand_core 0.10.0",
317
+ "wasip2",
318
+ "wasip3",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "glam"
323
+ version = "0.14.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
326
+
327
+ [[package]]
328
+ name = "glam"
329
+ version = "0.15.2"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
332
+
333
+ [[package]]
334
+ name = "glam"
335
+ version = "0.16.0"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
338
+
339
+ [[package]]
340
+ name = "glam"
341
+ version = "0.17.3"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
344
+
345
+ [[package]]
346
+ name = "glam"
347
+ version = "0.18.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
350
+
351
+ [[package]]
352
+ name = "glam"
353
+ version = "0.19.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
356
+
357
+ [[package]]
358
+ name = "glam"
359
+ version = "0.20.5"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
362
+
363
+ [[package]]
364
+ name = "glam"
365
+ version = "0.21.3"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
368
+
369
+ [[package]]
370
+ name = "glam"
371
+ version = "0.22.0"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
374
+
375
+ [[package]]
376
+ name = "glam"
377
+ version = "0.23.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
380
+
381
+ [[package]]
382
+ name = "glam"
383
+ version = "0.24.2"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
386
+
387
+ [[package]]
388
+ name = "glam"
389
+ version = "0.25.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
392
+
393
+ [[package]]
394
+ name = "glam"
395
+ version = "0.27.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
398
+
399
+ [[package]]
400
+ name = "glam"
401
+ version = "0.28.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
404
+
405
+ [[package]]
406
+ name = "glam"
407
+ version = "0.29.3"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
410
+
411
+ [[package]]
412
+ name = "glam"
413
+ version = "0.30.10"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
416
+
417
+ [[package]]
418
+ name = "glam"
419
+ version = "0.31.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
422
+
423
+ [[package]]
424
+ name = "glam"
425
+ version = "0.32.1"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
428
+
429
+ [[package]]
430
+ name = "half"
431
+ version = "2.7.1"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
434
+ dependencies = [
435
+ "cfg-if",
436
+ "crunchy",
437
+ "zerocopy",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "hashbrown"
442
+ version = "0.15.5"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
445
+ dependencies = [
446
+ "foldhash",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "hashbrown"
451
+ version = "0.16.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
454
+
455
+ [[package]]
456
+ name = "heck"
457
+ version = "0.5.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
460
+
461
+ [[package]]
462
+ name = "id-arena"
463
+ version = "2.3.0"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
466
+
467
+ [[package]]
468
+ name = "indexmap"
469
+ version = "2.13.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
472
+ dependencies = [
473
+ "equivalent",
474
+ "hashbrown 0.16.1",
475
+ "serde",
476
+ "serde_core",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "itertools"
481
+ version = "0.13.0"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
484
+ dependencies = [
485
+ "either",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "itoa"
490
+ version = "1.0.18"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
493
+
494
+ [[package]]
495
+ name = "js-sys"
496
+ version = "0.3.94"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
499
+ dependencies = [
500
+ "once_cell",
501
+ "wasm-bindgen",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "leb128fmt"
506
+ version = "0.1.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
509
+
510
+ [[package]]
511
+ name = "libc"
512
+ version = "0.2.184"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
515
+
516
+ [[package]]
517
+ name = "linux-raw-sys"
518
+ version = "0.12.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
521
+
522
+ [[package]]
523
+ name = "log"
524
+ version = "0.4.29"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
527
+
528
+ [[package]]
529
+ name = "matrixmultiply"
530
+ version = "0.3.10"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
533
+ dependencies = [
534
+ "autocfg",
535
+ "rawpointer",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "memchr"
540
+ version = "2.8.0"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
543
+
544
+ [[package]]
545
+ name = "nalgebra"
546
+ version = "0.34.2"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "df76ea0ff5c7e6b88689085804d6132ded0ddb9de5ca5b8aeb9eeadc0508a70a"
549
+ dependencies = [
550
+ "approx",
551
+ "glam 0.14.0",
552
+ "glam 0.15.2",
553
+ "glam 0.16.0",
554
+ "glam 0.17.3",
555
+ "glam 0.18.0",
556
+ "glam 0.19.0",
557
+ "glam 0.20.5",
558
+ "glam 0.21.3",
559
+ "glam 0.22.0",
560
+ "glam 0.23.0",
561
+ "glam 0.24.2",
562
+ "glam 0.25.0",
563
+ "glam 0.27.0",
564
+ "glam 0.28.0",
565
+ "glam 0.29.3",
566
+ "glam 0.30.10",
567
+ "glam 0.31.1",
568
+ "glam 0.32.1",
569
+ "matrixmultiply",
570
+ "nalgebra-macros",
571
+ "num-complex",
572
+ "num-rational",
573
+ "num-traits",
574
+ "simba",
575
+ "typenum",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "nalgebra-macros"
580
+ version = "0.3.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
583
+ dependencies = [
584
+ "proc-macro2",
585
+ "quote",
586
+ "syn",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "num-bigint"
591
+ version = "0.4.6"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
594
+ dependencies = [
595
+ "num-integer",
596
+ "num-traits",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "num-complex"
601
+ version = "0.4.6"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
604
+ dependencies = [
605
+ "num-traits",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "num-integer"
610
+ version = "0.1.46"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
613
+ dependencies = [
614
+ "num-traits",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "num-rational"
619
+ version = "0.4.2"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
622
+ dependencies = [
623
+ "num-bigint",
624
+ "num-integer",
625
+ "num-traits",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "num-traits"
630
+ version = "0.2.19"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
633
+ dependencies = [
634
+ "autocfg",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "once_cell"
639
+ version = "1.21.4"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
642
+
643
+ [[package]]
644
+ name = "oorandom"
645
+ version = "11.1.5"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
648
+
649
+ [[package]]
650
+ name = "oxiphysics"
651
+ version = "0.1.0"
652
+ dependencies = [
653
+ "criterion",
654
+ "oxiphysics-collision",
655
+ "oxiphysics-constraints",
656
+ "oxiphysics-core",
657
+ "oxiphysics-fem",
658
+ "oxiphysics-geometry",
659
+ "oxiphysics-gpu",
660
+ "oxiphysics-io",
661
+ "oxiphysics-lbm",
662
+ "oxiphysics-materials",
663
+ "oxiphysics-md",
664
+ "oxiphysics-python",
665
+ "oxiphysics-rigid",
666
+ "oxiphysics-softbody",
667
+ "oxiphysics-sph",
668
+ "oxiphysics-vehicle",
669
+ "oxiphysics-viz",
670
+ "oxiphysics-wasm",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "oxiphysics-collision"
675
+ version = "0.1.0"
676
+ dependencies = [
677
+ "oxiphysics-core",
678
+ "oxiphysics-geometry",
679
+ "proptest",
680
+ "thiserror",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "oxiphysics-constraints"
685
+ version = "0.1.0"
686
+ dependencies = [
687
+ "oxiphysics-collision",
688
+ "oxiphysics-core",
689
+ "oxiphysics-rigid",
690
+ "rand 0.10.0",
691
+ "thiserror",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "oxiphysics-core"
696
+ version = "0.1.0"
697
+ dependencies = [
698
+ "nalgebra",
699
+ "proptest",
700
+ "rand 0.10.0",
701
+ "serde",
702
+ "thiserror",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "oxiphysics-fem"
707
+ version = "0.1.0"
708
+ dependencies = [
709
+ "oxiphysics-core",
710
+ "oxiphysics-materials",
711
+ "rand 0.10.0",
712
+ "thiserror",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "oxiphysics-geometry"
717
+ version = "0.1.0"
718
+ dependencies = [
719
+ "oxiphysics-core",
720
+ "proptest",
721
+ "rand 0.10.0",
722
+ "thiserror",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "oxiphysics-gpu"
727
+ version = "0.1.0"
728
+ dependencies = [
729
+ "oxiphysics-core",
730
+ "rand 0.10.0",
731
+ "rayon",
732
+ "thiserror",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "oxiphysics-io"
737
+ version = "0.1.0"
738
+ dependencies = [
739
+ "oxiphysics-core",
740
+ "rand 0.10.0",
741
+ "serde",
742
+ "thiserror",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "oxiphysics-lbm"
747
+ version = "0.1.0"
748
+ dependencies = [
749
+ "oxiphysics-core",
750
+ "rand 0.10.0",
751
+ "thiserror",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "oxiphysics-materials"
756
+ version = "0.1.0"
757
+ dependencies = [
758
+ "rand 0.10.0",
759
+ "serde",
760
+ "thiserror",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "oxiphysics-md"
765
+ version = "0.1.0"
766
+ dependencies = [
767
+ "oxiphysics-core",
768
+ "rand 0.10.0",
769
+ "thiserror",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "oxiphysics-python"
774
+ version = "0.1.0"
775
+ dependencies = [
776
+ "nalgebra",
777
+ "oxiphysics-core",
778
+ "pyo3",
779
+ "serde",
780
+ "serde_json",
781
+ "thiserror",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "oxiphysics-rigid"
786
+ version = "0.1.0"
787
+ dependencies = [
788
+ "nalgebra",
789
+ "oxiphysics-collision",
790
+ "oxiphysics-core",
791
+ "oxiphysics-geometry",
792
+ "rand 0.10.0",
793
+ "thiserror",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "oxiphysics-softbody"
798
+ version = "0.1.0"
799
+ dependencies = [
800
+ "oxiphysics-core",
801
+ "oxiphysics-geometry",
802
+ "rand 0.10.0",
803
+ "thiserror",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "oxiphysics-sph"
808
+ version = "0.1.0"
809
+ dependencies = [
810
+ "oxiphysics-core",
811
+ "rand 0.10.0",
812
+ "thiserror",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "oxiphysics-vehicle"
817
+ version = "0.1.0"
818
+ dependencies = [
819
+ "oxiphysics-constraints",
820
+ "oxiphysics-core",
821
+ "oxiphysics-rigid",
822
+ "rand 0.10.0",
823
+ "thiserror",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "oxiphysics-viz"
828
+ version = "0.1.0"
829
+ dependencies = [
830
+ "oxiphysics-core",
831
+ "rand 0.10.0",
832
+ "thiserror",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "oxiphysics-wasm"
837
+ version = "0.1.0"
838
+ dependencies = [
839
+ "serde",
840
+ "serde_json",
841
+ "thiserror",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "page_size"
846
+ version = "0.6.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
849
+ dependencies = [
850
+ "libc",
851
+ "winapi",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "paste"
856
+ version = "1.0.15"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
859
+
860
+ [[package]]
861
+ name = "plotters"
862
+ version = "0.3.7"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
865
+ dependencies = [
866
+ "num-traits",
867
+ "plotters-backend",
868
+ "plotters-svg",
869
+ "wasm-bindgen",
870
+ "web-sys",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "plotters-backend"
875
+ version = "0.3.7"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
878
+
879
+ [[package]]
880
+ name = "plotters-svg"
881
+ version = "0.3.7"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
884
+ dependencies = [
885
+ "plotters-backend",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "portable-atomic"
890
+ version = "1.13.1"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
893
+
894
+ [[package]]
895
+ name = "ppv-lite86"
896
+ version = "0.2.21"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
899
+ dependencies = [
900
+ "zerocopy",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "prettyplease"
905
+ version = "0.2.37"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
908
+ dependencies = [
909
+ "proc-macro2",
910
+ "syn",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "proc-macro2"
915
+ version = "1.0.106"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
918
+ dependencies = [
919
+ "unicode-ident",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "proptest"
924
+ version = "1.11.0"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
927
+ dependencies = [
928
+ "bit-set",
929
+ "bit-vec",
930
+ "bitflags",
931
+ "num-traits",
932
+ "rand 0.9.2",
933
+ "rand_chacha",
934
+ "rand_xorshift",
935
+ "regex-syntax",
936
+ "rusty-fork",
937
+ "tempfile",
938
+ "unarray",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "pyo3"
943
+ version = "0.28.3"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
946
+ dependencies = [
947
+ "libc",
948
+ "once_cell",
949
+ "portable-atomic",
950
+ "pyo3-build-config",
951
+ "pyo3-ffi",
952
+ "pyo3-macros",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "pyo3-build-config"
957
+ version = "0.28.3"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
960
+ dependencies = [
961
+ "target-lexicon",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "pyo3-ffi"
966
+ version = "0.28.3"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
969
+ dependencies = [
970
+ "libc",
971
+ "pyo3-build-config",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "pyo3-macros"
976
+ version = "0.28.3"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
979
+ dependencies = [
980
+ "proc-macro2",
981
+ "pyo3-macros-backend",
982
+ "quote",
983
+ "syn",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "pyo3-macros-backend"
988
+ version = "0.28.3"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
991
+ dependencies = [
992
+ "heck",
993
+ "proc-macro2",
994
+ "pyo3-build-config",
995
+ "quote",
996
+ "syn",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "quick-error"
1001
+ version = "1.2.3"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1004
+
1005
+ [[package]]
1006
+ name = "quote"
1007
+ version = "1.0.45"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1010
+ dependencies = [
1011
+ "proc-macro2",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "r-efi"
1016
+ version = "5.3.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1019
+
1020
+ [[package]]
1021
+ name = "r-efi"
1022
+ version = "6.0.0"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1025
+
1026
+ [[package]]
1027
+ name = "rand"
1028
+ version = "0.9.2"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1031
+ dependencies = [
1032
+ "rand_chacha",
1033
+ "rand_core 0.9.5",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "rand"
1038
+ version = "0.10.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
1041
+ dependencies = [
1042
+ "chacha20",
1043
+ "getrandom 0.4.2",
1044
+ "rand_core 0.10.0",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "rand_chacha"
1049
+ version = "0.9.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1052
+ dependencies = [
1053
+ "ppv-lite86",
1054
+ "rand_core 0.9.5",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "rand_core"
1059
+ version = "0.9.5"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1062
+ dependencies = [
1063
+ "getrandom 0.3.4",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "rand_core"
1068
+ version = "0.10.0"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
1071
+
1072
+ [[package]]
1073
+ name = "rand_xorshift"
1074
+ version = "0.4.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1077
+ dependencies = [
1078
+ "rand_core 0.9.5",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "rawpointer"
1083
+ version = "0.2.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1086
+
1087
+ [[package]]
1088
+ name = "rayon"
1089
+ version = "1.11.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1092
+ dependencies = [
1093
+ "either",
1094
+ "rayon-core",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "rayon-core"
1099
+ version = "1.13.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1102
+ dependencies = [
1103
+ "crossbeam-deque",
1104
+ "crossbeam-utils",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "regex"
1109
+ version = "1.12.3"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1112
+ dependencies = [
1113
+ "aho-corasick",
1114
+ "memchr",
1115
+ "regex-automata",
1116
+ "regex-syntax",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "regex-automata"
1121
+ version = "0.4.14"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1124
+ dependencies = [
1125
+ "aho-corasick",
1126
+ "memchr",
1127
+ "regex-syntax",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "regex-syntax"
1132
+ version = "0.8.10"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1135
+
1136
+ [[package]]
1137
+ name = "rustix"
1138
+ version = "1.1.4"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1141
+ dependencies = [
1142
+ "bitflags",
1143
+ "errno",
1144
+ "libc",
1145
+ "linux-raw-sys",
1146
+ "windows-sys",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rustversion"
1151
+ version = "1.0.22"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1154
+
1155
+ [[package]]
1156
+ name = "rusty-fork"
1157
+ version = "0.3.1"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1160
+ dependencies = [
1161
+ "fnv",
1162
+ "quick-error",
1163
+ "tempfile",
1164
+ "wait-timeout",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "safe_arch"
1169
+ version = "0.7.4"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
1172
+ dependencies = [
1173
+ "bytemuck",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "same-file"
1178
+ version = "1.0.6"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1181
+ dependencies = [
1182
+ "winapi-util",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "semver"
1187
+ version = "1.0.28"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1190
+
1191
+ [[package]]
1192
+ name = "serde"
1193
+ version = "1.0.228"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1196
+ dependencies = [
1197
+ "serde_core",
1198
+ "serde_derive",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "serde_core"
1203
+ version = "1.0.228"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1206
+ dependencies = [
1207
+ "serde_derive",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "serde_derive"
1212
+ version = "1.0.228"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1215
+ dependencies = [
1216
+ "proc-macro2",
1217
+ "quote",
1218
+ "syn",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "serde_json"
1223
+ version = "1.0.149"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1226
+ dependencies = [
1227
+ "itoa",
1228
+ "memchr",
1229
+ "serde",
1230
+ "serde_core",
1231
+ "zmij",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "shlex"
1236
+ version = "1.3.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1239
+
1240
+ [[package]]
1241
+ name = "simba"
1242
+ version = "0.9.1"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
1245
+ dependencies = [
1246
+ "approx",
1247
+ "num-complex",
1248
+ "num-traits",
1249
+ "paste",
1250
+ "wide",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "syn"
1255
+ version = "2.0.117"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1258
+ dependencies = [
1259
+ "proc-macro2",
1260
+ "quote",
1261
+ "unicode-ident",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "target-lexicon"
1266
+ version = "0.13.5"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1269
+
1270
+ [[package]]
1271
+ name = "tempfile"
1272
+ version = "3.27.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1275
+ dependencies = [
1276
+ "fastrand",
1277
+ "getrandom 0.4.2",
1278
+ "once_cell",
1279
+ "rustix",
1280
+ "windows-sys",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "thiserror"
1285
+ version = "2.0.18"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1288
+ dependencies = [
1289
+ "thiserror-impl",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "thiserror-impl"
1294
+ version = "2.0.18"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1297
+ dependencies = [
1298
+ "proc-macro2",
1299
+ "quote",
1300
+ "syn",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "tinytemplate"
1305
+ version = "1.2.1"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1308
+ dependencies = [
1309
+ "serde",
1310
+ "serde_json",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "typenum"
1315
+ version = "1.19.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1318
+
1319
+ [[package]]
1320
+ name = "unarray"
1321
+ version = "0.1.4"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1324
+
1325
+ [[package]]
1326
+ name = "unicode-ident"
1327
+ version = "1.0.24"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1330
+
1331
+ [[package]]
1332
+ name = "unicode-xid"
1333
+ version = "0.2.6"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1336
+
1337
+ [[package]]
1338
+ name = "wait-timeout"
1339
+ version = "0.2.1"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1342
+ dependencies = [
1343
+ "libc",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "walkdir"
1348
+ version = "2.5.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1351
+ dependencies = [
1352
+ "same-file",
1353
+ "winapi-util",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "wasip2"
1358
+ version = "1.0.2+wasi-0.2.9"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1361
+ dependencies = [
1362
+ "wit-bindgen",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "wasip3"
1367
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1370
+ dependencies = [
1371
+ "wit-bindgen",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "wasm-bindgen"
1376
+ version = "0.2.117"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1379
+ dependencies = [
1380
+ "cfg-if",
1381
+ "once_cell",
1382
+ "rustversion",
1383
+ "wasm-bindgen-macro",
1384
+ "wasm-bindgen-shared",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "wasm-bindgen-macro"
1389
+ version = "0.2.117"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1392
+ dependencies = [
1393
+ "quote",
1394
+ "wasm-bindgen-macro-support",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "wasm-bindgen-macro-support"
1399
+ version = "0.2.117"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1402
+ dependencies = [
1403
+ "bumpalo",
1404
+ "proc-macro2",
1405
+ "quote",
1406
+ "syn",
1407
+ "wasm-bindgen-shared",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "wasm-bindgen-shared"
1412
+ version = "0.2.117"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1415
+ dependencies = [
1416
+ "unicode-ident",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "wasm-encoder"
1421
+ version = "0.244.0"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1424
+ dependencies = [
1425
+ "leb128fmt",
1426
+ "wasmparser",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "wasm-metadata"
1431
+ version = "0.244.0"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1434
+ dependencies = [
1435
+ "anyhow",
1436
+ "indexmap",
1437
+ "wasm-encoder",
1438
+ "wasmparser",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "wasmparser"
1443
+ version = "0.244.0"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1446
+ dependencies = [
1447
+ "bitflags",
1448
+ "hashbrown 0.15.5",
1449
+ "indexmap",
1450
+ "semver",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "web-sys"
1455
+ version = "0.3.94"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
1458
+ dependencies = [
1459
+ "js-sys",
1460
+ "wasm-bindgen",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "wide"
1465
+ version = "0.7.33"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
1468
+ dependencies = [
1469
+ "bytemuck",
1470
+ "safe_arch",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "winapi"
1475
+ version = "0.3.9"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1478
+ dependencies = [
1479
+ "winapi-i686-pc-windows-gnu",
1480
+ "winapi-x86_64-pc-windows-gnu",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "winapi-i686-pc-windows-gnu"
1485
+ version = "0.4.0"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1488
+
1489
+ [[package]]
1490
+ name = "winapi-util"
1491
+ version = "0.1.11"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1494
+ dependencies = [
1495
+ "windows-sys",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "winapi-x86_64-pc-windows-gnu"
1500
+ version = "0.4.0"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1503
+
1504
+ [[package]]
1505
+ name = "windows-link"
1506
+ version = "0.2.1"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1509
+
1510
+ [[package]]
1511
+ name = "windows-sys"
1512
+ version = "0.61.2"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1515
+ dependencies = [
1516
+ "windows-link",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "wit-bindgen"
1521
+ version = "0.51.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1524
+ dependencies = [
1525
+ "wit-bindgen-rust-macro",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "wit-bindgen-core"
1530
+ version = "0.51.0"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1533
+ dependencies = [
1534
+ "anyhow",
1535
+ "heck",
1536
+ "wit-parser",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "wit-bindgen-rust"
1541
+ version = "0.51.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1544
+ dependencies = [
1545
+ "anyhow",
1546
+ "heck",
1547
+ "indexmap",
1548
+ "prettyplease",
1549
+ "syn",
1550
+ "wasm-metadata",
1551
+ "wit-bindgen-core",
1552
+ "wit-component",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "wit-bindgen-rust-macro"
1557
+ version = "0.51.0"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1560
+ dependencies = [
1561
+ "anyhow",
1562
+ "prettyplease",
1563
+ "proc-macro2",
1564
+ "quote",
1565
+ "syn",
1566
+ "wit-bindgen-core",
1567
+ "wit-bindgen-rust",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "wit-component"
1572
+ version = "0.244.0"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1575
+ dependencies = [
1576
+ "anyhow",
1577
+ "bitflags",
1578
+ "indexmap",
1579
+ "log",
1580
+ "serde",
1581
+ "serde_derive",
1582
+ "serde_json",
1583
+ "wasm-encoder",
1584
+ "wasm-metadata",
1585
+ "wasmparser",
1586
+ "wit-parser",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "wit-parser"
1591
+ version = "0.244.0"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1594
+ dependencies = [
1595
+ "anyhow",
1596
+ "id-arena",
1597
+ "indexmap",
1598
+ "log",
1599
+ "semver",
1600
+ "serde",
1601
+ "serde_derive",
1602
+ "serde_json",
1603
+ "unicode-xid",
1604
+ "wasmparser",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "zerocopy"
1609
+ version = "0.8.48"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1612
+ dependencies = [
1613
+ "zerocopy-derive",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "zerocopy-derive"
1618
+ version = "0.8.48"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1621
+ dependencies = [
1622
+ "proc-macro2",
1623
+ "quote",
1624
+ "syn",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "zmij"
1629
+ version = "1.0.21"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"