nalgebra/nalgebra-sparse/Cargo.toml

45 lines
1.5 KiB
TOML
Raw Normal View History

2020-07-14 00:44:40 +08:00
[package]
name = "nalgebra-sparse"
2023-01-15 00:04:22 +08:00
version = "0.9.0"
2020-07-14 00:44:40 +08:00
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"
2020-07-14 00:44:40 +08:00
[features]
proptest-support = ["proptest", "nalgebra/proptest-support"]
compare = [ "matrixcompare-core" ]
serde-serialize = [ "serde/std" ]
2021-12-01 18:07:47 +08:00
# Enable matrix market I/O
io = [ "pest", "pest_derive" ]
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]
2023-01-15 00:04:22 +08:00
nalgebra = { version="0.32", path = "../" }
num-traits = { version = "0.2", default-features = false }
2021-03-01 00:52:14 +08:00
proptest = { version = "1.0", optional = true }
matrixcompare-core = { version = "0.1.0", optional = true }
pest = { version = "2", optional = true }
pest_derive = { version = "2", optional = true }
serde = { version = "1.0", default-features = false, features = [ "derive" ], optional = true }
2020-11-18 20:54:14 +08:00
[dev-dependencies]
2021-03-01 00:52:14 +08:00
itertools = "0.10"
matrixcompare = { version = "0.3.0", features = [ "proptest-support" ] }
2023-01-15 00:04:22 +08:00
nalgebra = { version="0.32", path = "../", features = ["compare"] }
tempfile = "3.3"
serde_json = "1.0"
2021-01-22 21:32:13 +08:00
[package.metadata.docs.rs]
# Enable certain features when building docs for docs.rs
features = [ "proptest-support", "compare", "io"]