SummationByParts/sbp/Cargo.toml

30 lines
824 B
TOML
Raw Normal View History

2020-01-30 17:28:22 +00:00
[package]
name = "sbp"
version = "0.1.1"
2021-03-16 18:00:24 +00:00
authors = ["Magnus Ulimoen <magnus@ulimoen.dev>"]
2020-01-30 17:28:22 +00:00
edition = "2018"
[dependencies]
2021-10-23 19:35:37 +00:00
ndarray = { version = "0.15.0", features = ["approx"] }
2021-03-16 18:03:13 +00:00
approx = "0.4.0"
2021-03-18 22:27:03 +00:00
sprs = { version = "0.10.0", optional = true, default-features = false }
2020-09-03 19:30:28 +00:00
serde = { version = "1.0.115", optional = true, default-features = false, features = ["derive"] }
2021-02-01 22:58:13 +00:00
num-traits = "0.2.14"
2021-03-22 15:17:27 +00:00
float = { path = "../utils/float" }
2021-03-22 15:24:32 +00:00
constmatrix = { path = "../utils/constmatrix" }
2021-09-30 05:15:31 +00:00
core_simd = { git = "https://github.com/rust-lang/portable-simd" }
2022-07-05 17:51:48 +00:00
std_float = { git = "https://github.com/rust-lang/portable-simd" }
2020-01-30 17:28:22 +00:00
2020-02-25 18:44:13 +00:00
[features]
# Use f32 as precision, default is f64
2021-03-22 15:17:27 +00:00
f32 = ["float/f32"]
2022-05-17 06:03:05 +00:00
sparse = ["dep:sprs"]
serde1 = ["dep:serde", "ndarray/serde"]
2020-02-25 18:44:13 +00:00
2020-01-30 17:28:22 +00:00
[dev-dependencies]
2021-01-25 19:51:59 +00:00
iai = "0.1.1"
2020-01-30 17:28:22 +00:00
2020-04-20 19:33:54 +00:00
[[bench]]
name = "sbpoperators"
harness = false