SummationByParts/sbp/Cargo.toml

38 lines
680 B
TOML
Raw Normal View History

2020-01-30 17:28:22 +00:00
[package]
name = "sbp"
version = "0.1.1"
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
edition = "2018"
[dependencies]
ndarray = { version = "0.13.0", features = ["approx"] }
approx = "0.3.2"
packed_simd = "0.3.3"
2020-02-22 16:45:28 +00:00
json = "0.12.1"
2020-01-30 17:28:22 +00:00
2020-02-25 18:44:13 +00:00
[features]
# Internal feature flag to gate the expensive tests
# which should be run only in release builds
expensive_tests = []
# Use f32 as precision, default is f64
f32 = []
2020-02-25 18:44:13 +00:00
2020-01-30 17:28:22 +00:00
[dev-dependencies]
criterion = "0.3.0"
2020-04-02 19:36:56 +00:00
structopt = "0.3.12"
2020-04-02 20:32:07 +00:00
indicatif = "0.14.0"
2020-04-02 21:36:20 +00:00
rayon = "1.3.0"
2020-04-04 20:14:15 +00:00
hdf5 = "0.6.0"
2020-01-30 17:28:22 +00:00
[[bench]]
name = "maxwell"
harness = false
[[bench]]
name = "euler"
harness = false
2020-04-04 20:14:15 +00:00
2020-04-04 20:57:34 +00:00
[[example]]
name = "multigrid"
path = "examples/multigrid/bin.rs"