SummationByParts/euler/Cargo.toml

27 lines
601 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>"]
2022-07-05 18:19:49 +00:00
edition = "2021"
[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-10-23 19:35:37 +00:00
ndarray = "0.15.0"
sbp = { path = "../sbp" }
2021-03-27 10:46:02 +00:00
arrayvec = "0.6.0"
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" }
2021-06-30 16:20:44 +00:00
once_cell = "1.7.2"
[dev-dependencies]
2020-06-14 20:00:32 +00:00
criterion = "0.3.2"
[[bench]]
name = "bench"
harness = false