2020-01-30 17:28:22 +00:00
|
|
|
[package]
|
|
|
|
name = "sbp"
|
|
|
|
version = "0.1.1"
|
|
|
|
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-04-22 15:59:13 +00:00
|
|
|
ndarray = { version = "0.13.1", features = ["approx"] }
|
2020-01-30 17:28:22 +00:00
|
|
|
approx = "0.3.2"
|
|
|
|
packed_simd = "0.3.3"
|
2020-04-12 10:35:16 +00:00
|
|
|
rayon = { version = "1.3.0", optional = true }
|
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
|
|
|
|
f32 = []
|
2020-02-25 18:44:13 +00:00
|
|
|
|
2020-01-30 17:28:22 +00:00
|
|
|
[dev-dependencies]
|
2020-04-04 21:39:41 +00:00
|
|
|
criterion = "0.3.1"
|
2020-01-30 17:28:22 +00:00
|
|
|
|
2020-04-20 19:33:54 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "sbpoperators"
|
|
|
|
harness = false
|