-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 1.09 KB
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
[package]
name = "single_algebra"
version = "0.9.2"
edition = "2021"
license-file = "LICENSE.md"
description = "A linear algebra convenience library for the single-rust library. Can be used externally as well."
categories = ["science"]
repository = "https://github.com/SingleRust/single-algebra"
homepage = "https://singlerust.com"
[[bench]]
name = "csc_matrix_benchmark"
harness = false
[[bench]]
name = "csr_matrix_benchmark"
harness = false
[features]
lapack = ["dep:nalgebra-lapack", "nalgebra-lapack/openblas"]
simba = ["dep:simba"]
[dependencies]
anyhow = "1.0"
nalgebra = { version = "0.34", features = ["serde-serialize"] }
nalgebra-lapack = { version = "0.25.0", default-features = false, optional = true }
nalgebra-sparse = "0.11"
ndarray = { version = "0.16", features = ["rayon"] }
num-traits = "0.2.19"
rayon = "1.11.0"
simba = { version = "0.9.1", optional = true }
rand = "0.9.2"
single-utilities = { version = "0.9.0", features = ["convert"] }
linfa-tsne = {version = "0.7.1"}
linfa = "0.7.1"
single-svdlib = "1.0.9"
bhtsne = "0.5.4"
[dev-dependencies]
criterion = "0.7.0"
approx = "0.5.1"