30 lines
738 B
TOML
30 lines
738 B
TOML
[package]
|
|
name = "ordinary-diffeq"
|
|
version = "0.2.3"
|
|
edition = "2021"
|
|
authors = ["Connor Johnstone"]
|
|
description = "A library for solving differential equations based on the DifferentialEquations.jl julia library."
|
|
readme = "readme.md"
|
|
repository = "https://gitlab.rcjohnstone.com/connor/differential-equations"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
nalgebra = { version = "0.34", features = ["serde-serialize"] }
|
|
num-traits = "0.2.19"
|
|
roots = "0.0.8"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
criterion = "0.7.0"
|
|
|
|
[[bench]]
|
|
name = "simple_1d"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "orbit"
|
|
harness = false
|