2020-07-14 00:44:40 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-sparse"
|
2024-06-23 21:28:37 +08:00
|
|
|
version = "0.10.0"
|
|
|
|
authors = ["Andreas Longva", "Sébastien Crozet <developer@crozet.re>"]
|
2020-07-14 00:44:40 +08:00
|
|
|
edition = "2018"
|
2021-03-01 21:48:59 +08:00
|
|
|
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"
|
2024-06-23 21:28:37 +08:00
|
|
|
categories = ["science", "mathematics", "wasm", "no-std"]
|
|
|
|
keywords = ["linear", "algebra", "matrix", "vector", "math"]
|
2021-03-01 21:48:59 +08:00
|
|
|
license = "Apache-2.0"
|
2020-07-14 00:44:40 +08:00
|
|
|
|
2020-11-12 18:49:19 +08:00
|
|
|
[features]
|
2021-01-26 15:49:07 +08:00
|
|
|
proptest-support = ["proptest", "nalgebra/proptest-support"]
|
2024-06-23 21:28:37 +08:00
|
|
|
compare = ["matrixcompare-core"]
|
|
|
|
serde-serialize = ["serde/std"]
|
2021-12-01 18:07:47 +08:00
|
|
|
|
|
|
|
# Enable matrix market I/O
|
2024-06-23 21:28:37 +08:00
|
|
|
io = ["pest", "pest_derive"]
|
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]
|
2024-06-23 21:28:37 +08:00
|
|
|
nalgebra = { version = "0.33", path = "../" }
|
2020-11-11 16:28:48 +08:00
|
|
|
num-traits = { version = "0.2", default-features = false }
|
2021-03-01 00:52:14 +08:00
|
|
|
proptest = { version = "1.0", optional = true }
|
2021-01-13 20:10:21 +08:00
|
|
|
matrixcompare-core = { version = "0.1.0", optional = true }
|
2024-06-23 21:28:37 +08:00
|
|
|
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]
|
2024-06-23 00:50:08 +08:00
|
|
|
itertools = "0.13"
|
2024-06-23 21:28:37 +08:00
|
|
|
matrixcompare = { version = "0.3.0", features = ["proptest-support"] }
|
|
|
|
nalgebra = { version = "0.33", path = "../", features = ["compare"] }
|
2022-06-13 15:51:08 +08:00
|
|
|
tempfile = "3.3"
|
2021-11-08 04:32:11 +08:00
|
|
|
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
|
2024-06-23 21:28:37 +08:00
|
|
|
features = ["proptest-support", "compare", "io"]
|