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"
|
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"
|
|
|
|
categories = [ "science", "mathematics", "wasm", "no-std" ]
|
|
|
|
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
|
|
|
|
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"]
|
2021-01-13 20:10:21 +08:00
|
|
|
compare = [ "matrixcompare-core" ]
|
2021-11-08 04:32:11 +08:00
|
|
|
serde-serialize = [ "serde/std" ]
|
2021-12-01 18:07:47 +08:00
|
|
|
|
|
|
|
# Enable matrix market I/O
|
2021-11-02 00:25:16 +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]
|
2023-01-15 00:04:22 +08:00
|
|
|
nalgebra = { version="0.32", 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 }
|
2021-11-02 00:25:16 +08:00
|
|
|
pest = { version = "2", optional = true }
|
|
|
|
pest_derive = { version = "2", optional = true }
|
2021-11-08 04:32:11 +08:00
|
|
|
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"
|
2021-05-07 15:23:44 +08:00
|
|
|
matrixcompare = { version = "0.3.0", features = [ "proptest-support" ] }
|
2023-01-15 00:04:22 +08:00
|
|
|
nalgebra = { version="0.32", 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
|
2022-04-22 14:57:06 +08:00
|
|
|
features = [ "proptest-support", "compare", "io"]
|