-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
42 lines (38 loc) · 962 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
[package]
name = "netlib-src"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = [
"Alexander Bulaev <[email protected]>",
"Corey Richardson <[email protected]>",
"Ivan Ukhov <[email protected]>",
"Mason Smith <[email protected]>",
"Phil Ruffwind <[email protected]>",
]
description = "The package provides a source of BLAS and LAPACK via Netlib."
homepage = "https://github.com/blas-lapack-rs/netlib-src"
repository = "https://github.com/blas-lapack-rs/netlib-src"
readme = "README.md"
categories = ["science"]
keywords = ["linear-algebra"]
build = "build.rs"
links = "blas"
exclude = [
"source/BLAS/TESTING/*",
"source/CBLAS/testing/*",
"source/TESTING/*.in",
"source/TESTING/EIG/*",
"source/TESTING/LIN/*",
]
[features]
default = ["cblas", "lapacke", "tmg"]
cblas = []
lapacke = []
static = []
system = []
tmg = []
[build-dependencies]
cmake = "0.1"
[dev-dependencies]
libc = "0.2"