SummationByParts/maxwell/Cargo.toml

21 lines
372 B
TOML
Raw Normal View History

[package]
name = "maxwell"
version = "0.1.0"
2021-03-16 18:00:24 +00:00
authors = ["Magnus Ulimoen <magnus@ulimoen.dev>"]
edition = "2018"
2020-06-14 19:59:22 +00:00
[features]
sparse = ["sbp/sparse", "sprs"]
[dependencies]
2021-03-16 18:03:13 +00:00
ndarray = "0.14.0"
sbp = { path = "../sbp" }
2021-03-18 22:27:03 +00:00
sprs = { version = "0.10.0", optional = true, default-features = false }
[dev-dependencies]
2020-06-14 19:59:22 +00:00
criterion = "0.3.2"
[[bench]]
name = "bench"
harness = false