forked from sparsemat/sprs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (35 loc) · 815 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "sprs"
description = "A sparse matrix library"
version = "0.6.2"
authors = ["Vincent Barrielle <[email protected]>"]
readme = "README.rst"
license = "MIT OR Apache-2.0"
repository = "https://github.com/vbarrielle/sprs"
documentation = "https://docs.rs/sprs"
keywords = ["sparse", "matrix", "linear", "algebra"]
exclude = [
"data/*"
]
[features]
default = ["alga"]
[dependencies]
num-traits = "0.1.32"
ndarray = "0.11.2"
alga = { version = "0.5", optional = true }
num-complex = "0.1.36"
[dev-dependencies]
bencher = "0.1"
tempdir = "0.3.5"
[[bench]]
name = "suite"
harness = false
[[bench]]
name = "sparse_dense_products"
harness = false
[workspace]
members = [
"sprs-ldl",
"suitesparse_bindings/suitesparse_ldl_sys",
"suitesparse_bindings/sprs_suitesparse_ldl",
]