SummationByParts/euler/Cargo.toml

27 lines
602 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]
2022-07-05 19:59:27 +00:00
ndarray = "0.15.4"
sbp = { path = "../sbp" }
2022-07-05 19:59:27 +00:00
arrayvec = "0.7.2"
serde = { version = "1.0.138", default-features = false, optional = true, features = ["derive"] }
2021-03-22 16:49:35 +00:00
integrate = { path = "../utils/integrate" }
2022-07-05 19:59:27 +00:00
once_cell = "1.13.0"
[dev-dependencies]
2022-07-05 19:59:27 +00:00
criterion = "0.3.5"
[[bench]]
name = "bench"
harness = false