SummationByParts/euler/Cargo.toml

26 lines
581 B
TOML
Raw Normal View History

[package]
name = "euler"
version = "0.1.0"
2021-03-16 18:00:24 +00:00
authors = ["Magnus Ulimoen <magnus@ulimoen.dev>"]
edition = "2018"
[features]
# Internal feature flag to gate the expensive tests
# which should be run only in release builds
expensive_tests = []
2020-09-03 19:30:28 +00:00
serde1 = ["serde", "arrayvec/serde"]
[dependencies]
2021-03-16 18:03:13 +00:00
ndarray = "0.14.0"
sbp = { path = "../sbp" }
arrayvec = "0.5.1"
2020-09-03 19:30:28 +00:00
serde = { version = "1.0.115", default-features = false, optional = true, features = ["derive"] }
2021-03-22 16:49:35 +00:00
integrate = { path = "../utils/integrate" }
[dev-dependencies]
2020-06-14 20:00:32 +00:00
criterion = "0.3.2"
[[bench]]
name = "bench"
harness = false