Skip to content

Commit

Permalink
Fixed multiple blas in cargo.toml (#1)
Browse files Browse the repository at this point in the history
* Fixed multiple blas in cargo.toml

* Cargo fix
  • Loading branch information
tbetcke authored Jun 20, 2024
1 parent bd7cdbd commit 565d635
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ rand = "0.8.5"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
thiserror="1.*"

[dev-dependencies]
blas-src = { version = "0.10", features = ["blis"]}
lapack-src = { version = "0.10", features = ["netlib"]}

[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
Expand All @@ -47,3 +44,9 @@ wildcard_imports = "forbid"
[target.aarch64-apple-darwin.dev-dependencies]
blas-src = { version = "0.10", features = ["accelerate"]}
lapack-src = { version = "0.10", features = ["accelerate"]}

[target.x86_64-unknown-linux-gnu.dev-dependencies]
blas-src = { version = "0.10", features = ["blis"]}
lapack-src = { version = "0.10", features = ["netlib"]}


0 comments on commit 565d635

Please sign in to comment.