SummationByParts/heat-equation/Cargo.toml

16 lines
474 B
TOML
Raw Normal View History

2020-09-18 15:57:57 +00:00
[package]
name = "heat-equation"
version = "0.1.0"
authors = ["Magnus Ulimoen <magnus@ulimoen.dev>"]
edition = "2018"
[dependencies]
2020-09-19 12:00:18 +00:00
sbp = { path = "../sbp", features = ["sparse"] }
2021-03-16 18:03:13 +00:00
ndarray = "0.14.0"
2020-09-18 15:57:57 +00:00
plotters = { version = "0.3.0", default-features = false, features = ["bitmap_gif", "bitmap_backend", "line_series"] }
2021-03-18 22:27:03 +00:00
sprs = { version = "0.10.0", default-features = false }
2020-11-10 16:49:53 +00:00
[dev-dependencies]
arpack = { git = "https://github.com/mulimoen/arpack-rs", branch = "main" }