# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "dess" version = "0.1.0" authors = [ "Chad Baker, Lead Developer", "Robin Steuteville, Developer", "Nick Reinicke, Developer", ] description = "The Differential Equation System Solver (DESS) is a Rust crate implementing fixed-step and adaptive-step solvers and designed especially for modeling physical systems. Seven explicit ordinary differential equation (ODE) solver methods have been added so far: Euler’s, Heun’s, Midpoint, Ralston’s, Classic Runge-Kutta, Bogacki-Shampine, and Cash-Karp. These comprise five fixed-step methods and two adaptive-step methods. Few solver packages are implemented in the Rust ecosystem and none are intended specifically for physical system modeling, so the goal of DESS is to create a Rust ODE solver crate designed specifically to easily specify and model physical systems with modular, configurable solver options. In addition to allowing users to directly input equations to solve, DESS allows users to optionally specify and define relationships between nodes in their system, which the package then translates into a system of equations via the Rust macro system, leading to simpler and more intuitive code. See the dess-examples-pyo3 folder for examples how to use DESS in this manner." readme = "README.md" license = "BSD-3-Clause" repository = "https://github.com/NREL/de-system-solver" resolver = "1" [dependencies.anyhow] version = "1.0.57" [dependencies.bincode] version = "1.3.3" [dependencies.dess-proc-macros] version = "0.1.1" [dependencies.pyo3] version = "0.18.1" features = [ "extension-module", "anyhow", ] optional = true [dependencies.serde] version = "1.0.152" features = ["derive"] [dependencies.serde_json] version = "1.0.93" [dependencies.serde_yaml] version = "0.9.17" [features] pyo3 = ["dep:pyo3"]