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-03-16 18:03:13 +00:00
|
|
|
ndarray = { version = "0.14.0", features = ["approx"] }
|
|
|
|
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-07-27 18:32:22 +00:00
|
|
|
core_simd = { git = "https://github.com/rust-lang/stdsimd" }
|
2020-01-30 17:28:22 +00:00
|
|
|
|
2020-02-25 18:44:13 +00:00
|
|
|
[features]
|
2020-02-27 19:26:43 +00:00
|
|
|
# Use f32 as precision, default is f64
|
2021-03-22 15:17:27 +00:00
|
|
|
f32 = ["float/f32"]
|
2020-06-12 19:04:18 +00:00
|
|
|
sparse = ["sprs"]
|
2020-09-16 19:44:11 +00:00
|
|
|
serde1 = ["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
|