35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
[package]
|
|
name = "nalgebra-sparse"
|
|
version = "0.4.0"
|
|
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
|
edition = "2018"
|
|
description = "Sparse matrix computation based on nalgebra."
|
|
documentation = "https://www.nalgebra.org/docs"
|
|
homepage = "https://nalgebra.org"
|
|
repository = "https://github.com/dimforge/nalgebra"
|
|
readme = "../README.md"
|
|
categories = [ "science", "mathematics", "wasm", "no-std" ]
|
|
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
|
|
license = "Apache-2.0"
|
|
|
|
[features]
|
|
proptest-support = ["proptest", "nalgebra/proptest-support"]
|
|
compare = [ "matrixcompare-core" ]
|
|
|
|
# Enable to enable running some tests that take a lot of time to run
|
|
slow-tests = []
|
|
|
|
[dependencies]
|
|
nalgebra = { version="0.28", path = "../" }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
proptest = { version = "1.0", optional = true }
|
|
matrixcompare-core = { version = "0.1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
itertools = "0.10"
|
|
matrixcompare = { version = "0.3.0", features = [ "proptest-support" ] }
|
|
nalgebra = { version="0.28", path = "../", features = ["compare"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
# Enable certain features when building docs for docs.rs
|
|
features = [ "proptest-support", "compare" ] |