SummationByParts/euler/Cargo.toml

23 lines
403 B
TOML
Raw Normal View History

[package]
name = "euler"
version = "0.1.0"
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
edition = "2018"
[features]
# Internal feature flag to gate the expensive tests
# which should be run only in release builds
expensive_tests = []
[dependencies]
ndarray = "0.13.1"
sbp = { path = "../sbp" }
arrayvec = "0.5.1"
[dev-dependencies]
2020-06-14 20:00:32 +00:00
criterion = "0.3.2"
[[bench]]
name = "bench"
harness = false