2020-07-14 00:44:40 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-sparse"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-11-12 18:49:19 +08:00
|
|
|
[features]
|
|
|
|
proptest-support = ["proptest", "nalgebra/proptest"]
|
2021-01-13 20:10:21 +08:00
|
|
|
compare = [ "matrixcompare-core" ]
|
2020-11-12 18:49:19 +08:00
|
|
|
|
2020-11-18 20:54:14 +08:00
|
|
|
# Enable to enable running some tests that take a lot of time to run
|
|
|
|
slow-tests = []
|
|
|
|
|
2020-07-14 00:44:40 +08:00
|
|
|
[dependencies]
|
2020-11-11 16:28:48 +08:00
|
|
|
nalgebra = { version="0.23", path = "../" }
|
|
|
|
num-traits = { version = "0.2", default-features = false }
|
2020-11-12 18:49:19 +08:00
|
|
|
proptest = { version = "0.10", optional = true }
|
2021-01-13 20:10:21 +08:00
|
|
|
matrixcompare-core = { version = "0.1.0", optional = true }
|
2020-11-18 20:54:14 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
itertools = "0.9"
|
2021-01-13 20:28:15 +08:00
|
|
|
matrixcompare = { version = "0.2.0", features = [ "proptest-support" ] }
|
2021-01-11 22:14:54 +08:00
|
|
|
nalgebra = { version="0.23", path = "../", features = ["compare"] }
|