# 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 = "ode_solvers" version = "0.5.0" authors = ["Sylvain Renevey "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Numerical methods to solve ordinary differential equations (ODEs) in Rust." homepage = "https://srenevey.github.io/ode-solvers/" documentation = "https://docs.rs/ode_solvers/" readme = "README.md" keywords = [ "ode", "math", "solver", "equations", ] categories = ["science"] license = "BSD-3-Clause" repository = "https://github.com/srenevey/ode-solvers" [lib] name = "ode_solvers" path = "src/lib.rs" [[example]] name = "bouncing_ball" path = "examples/bouncing_ball.rs" [[example]] name = "chemical_reaction" path = "examples/chemical_reaction.rs" [[example]] name = "kepler_orbit" path = "examples/kepler_orbit.rs" [[example]] name = "kepler_orbit_dvector" path = "examples/kepler_orbit_dvector.rs" [[example]] name = "lorenz" path = "examples/lorenz.rs" [[example]] name = "three_body_system" path = "examples/three_body_system.rs" [[example]] name = "three_body_system_dvector" path = "examples/three_body_system_dvector.rs" [dependencies.nalgebra] version = "0.33.1" [dependencies.num-traits] version = "0.2.19" [dependencies.simba] version = "0.9.0" [dependencies.thiserror] version = "1.0.65"