-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
41 lines (37 loc) · 942 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
[package]
name = "netlib-src"
version = "0.8.0"
license = "Apache-2.0/MIT"
authors = [
"Alexander Bulaev <alexbool@yandex-team.ru>",
"Corey Richardson <corey@octayn.net>",
"Ivan Ukhov <ivan.ukhov@gmail.com>",
"Mason Smith <masonium@gmail.com>",
"Phil Ruffwind <rf@rufflewind.com>",
]
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"