SummationByParts/heat-equation/Cargo.toml

17 lines
518 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>"]
2022-07-05 18:19:49 +00:00
edition = "2021"
2020-09-18 15:57:57 +00:00
[dependencies]
2020-09-19 12:00:18 +00:00
sbp = { path = "../sbp", features = ["sparse"] }
2022-07-05 19:59:27 +00:00
ndarray = "0.15.4"
plotters = { version = "0.3.1", default-features = false, features = ["bitmap_gif", "bitmap_backend", "line_series"] }
sprs = { version = "0.11.0", default-features = false }
2021-03-22 16:49:35 +00:00
integrate = { path = "../utils/integrate" }
2020-11-10 16:49:53 +00:00
[dev-dependencies]
arpack = { git = "https://github.com/mulimoen/arpack-rs", branch = "main" }