-
-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
46 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
[package] | ||
name = "nalgebra-lapack" | ||
name = "nalgebra-lapack" | ||
version = "0.24.0" | ||
authors = [ "Sébastien Crozet <[email protected]>", "Andrew Straw <[email protected]>" ] | ||
authors = ["Sébastien Crozet <[email protected]>", "Andrew Straw <[email protected]>"] | ||
|
||
description = "Matrix decompositions using nalgebra matrices and Lapack bindings." | ||
description = "Matrix decompositions using nalgebra matrices and Lapack bindings." | ||
documentation = "https://www.nalgebra.org/docs" | ||
homepage = "https://nalgebra.org" | ||
repository = "https://github.com/dimforge/nalgebra" | ||
readme = "../README.md" | ||
categories = [ "science", "mathematics" ] | ||
keywords = [ "linear", "algebra", "matrix", "vector", "lapack" ] | ||
categories = ["science", "mathematics"] | ||
keywords = ["linear", "algebra", "matrix", "vector", "lapack"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
|
||
[features] | ||
serde-serialize = [ "serde", "nalgebra/serde-serialize" ] | ||
proptest-support = [ "nalgebra/proptest-support" ] | ||
arbitrary = [ "nalgebra/arbitrary" ] | ||
serde-serialize = ["serde", "nalgebra/serde-serialize"] | ||
proptest-support = ["nalgebra/proptest-support"] | ||
arbitrary = ["nalgebra/arbitrary"] | ||
|
||
# For BLAS/LAPACK | ||
default = ["netlib"] | ||
openblas = ["lapack-src/openblas"] | ||
netlib = ["lapack-src/netlib"] | ||
default = ["openblas"] | ||
openblas = ["lapack-src/openblas"] | ||
netlib = ["lapack-src/netlib"] | ||
accelerate = ["lapack-src/accelerate"] | ||
intel-mkl = ["lapack-src/intel-mkl"] | ||
intel-mkl = ["lapack-src/intel-mkl"] | ||
|
||
[dependencies] | ||
nalgebra = { version = "0.32", path = ".." } | ||
num-traits = "0.2" | ||
num-complex = { version = "0.4", default-features = false } | ||
simba = "0.8" | ||
serde = { version = "1.0", features = [ "derive" ], optional = true } | ||
lapack = { version = "0.19", default-features = false } | ||
lapack-src = { version = "0.8", default-features = false } | ||
nalgebra = { version = "0.32", path = ".." } | ||
num-traits = "0.2" | ||
num-complex = { version = "0.4", default-features = false } | ||
simba = "0.8" | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
lapack = { version = "0.19", default-features = false } | ||
lapack-src = { version = "0.8", default-features = false } | ||
# clippy = "*" | ||
|
||
[dev-dependencies] | ||
nalgebra = { version = "0.32", features = [ "arbitrary", "rand" ], path = ".." } | ||
proptest = { version = "1", default-features = false, features = ["std"] } | ||
nalgebra = { version = "0.32", features = ["arbitrary", "rand"], path = ".." } | ||
proptest = { version = "1", default-features = false, features = ["std"] } | ||
quickcheck = "1" | ||
approx = "0.5" | ||
rand = "0.8" | ||
approx = "0.5" | ||
rand = "0.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters