-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (35 loc) · 1.12 KB
/
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 = "slas"
version = "0.3.1"
edition = "2018"
authors = ["Aksel Mannstaedt <unic0rn9k@protonmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/unic0rn9k/slas"
description = "Static Linear Algebra System"
keywords = ["matrix", "blas", "linearalgebra", "vectors"]
categories = ["data-structures", "science", "mathematics"]
readme = "README.md"
[dependencies]
blis-src = { version = "0.2.0", default-features = false, optional = true}
openblas-src = { version = "0.10.4", default-features = false, optional = true }
cblas-sys = { version = "0.1.4", optional = true }
levitate = "0.1.2"
paste = "1.0.6"
[dev-dependencies]
pretty_assertions = "1.0.0"
[workspace]
members = ["tests"]
[features]
default = ["openblas-sys", "fast-floats"]
blis-sys = ["blis-src", "blis-src/system", "blas"]
openblas-sys = ["openblas-src/system", "blas"]
openblas-static = ["openblas-src/static", "blas"]
blis-static = ["blis-src/static", "blis-src/openmp", "blas"]
blas = ["cblas-sys"]
fast-floats = ["levitate/fast-floats"]
[profile.release.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
lto=true
codegen-units = 1