SummationByParts/heat-equation/Cargo.toml

16 lines
473 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"] }
2020-09-18 15:57:57 +00:00
ndarray = "0.13.1"
plotters = { version = "0.3.0", default-features = false, features = ["bitmap_gif", "bitmap_backend", "line_series"] }
2020-09-29 22:36:04 +00:00
sprs = { version = "0.9.0", default-features = false }
2020-11-10 16:49:53 +00:00
[dev-dependencies]
arpack = { git = "https://github.com/mulimoen/arpack-rs", branch = "main" }