Co-authored-by: Connor Johnstone <connor.johnstone@arcfield.com> Reviewed-on: #1
38 lines
838 B
TOML
38 lines
838 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
|
|
|
|
[[bench]]
|
|
name = "bs3_vs_dp5"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "vern7_comparison"
|
|
harness = false
|