rustmodel/Cargo.toml

30 lines
824 B
TOML

[package]
name = "rustmodel"
version = "0.1.0"
edition = "2021"
description = "simple ODE solving framework"
authors = ["tuxmain <tuxmain@zettascript.org>"]
repository = "https://git.txmn.tk/tuxmain/rustmodel"
license = "AGPL-3.0-only"
[dependencies]
derive_builder = { version = "0.12.0", optional = true }
nalgebra = "0.32.3"
num-traits = "0.2.17"
palette = { version = "0.7.3", optional = true }
plotters = { version = "0.3.5", optional = true }
#plotters = { git = "https://github.com/plotters-rs/plotters" }
#rand = {version = "0.8.5", optional = true }
#rayon = "1.8.0"
#sdl2 = "0.35.2"
[features]
default = ["plot"]
# opti is about numerical optimization methods, not computing speed!
#opti = ["nalgebra/rand", "rand"]
plot = ["derive_builder", "palette", "plotters"]
[workspace]
members = ["examples/epidemics"]