forked from OpenSRDK/linear-algebra-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 736 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (20 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "opensrdk-linear-algebra"
version = "0.6.7"
authors = ["Kimura Yu <33382781+KimuraYu45z@users.noreply.github.com>"]
edition = "2018"
description = "Standard linear algebra library using blas and lapack for OpenSRDK toolchain."
repository = "https://github.com/OpenSRDK/linear-algebra-rs"
license = "Apache-2.0"
keywords = ["linear-algebra"]
categories = ["mathematics", "science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
blas = "0.21.0"
lapack = "0.17.0"
rayon = "1.5.0"
rustfft = "5.0.1"
thiserror = "1.0.24"
[dev-dependencies]
blas-src = { version = "0.7", features = ["openblas"] }
lapack-src = { version = "0.6", features = ["openblas"] }