Skip to content

Commit

Permalink
Pin anyhow to 1.0.48 (#182)
Browse files Browse the repository at this point in the history
Temporary CI fix (until rust-math/intel-mkl-src#68 resolves)
  • Loading branch information
YuhanLiin committed Nov 28, 2021
1 parent b9c1653 commit 4f94290
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ netlib-system = ["blas", "ndarray-linalg", "netlib-src/system"]
openblas-static = ["blas", "ndarray-linalg", "openblas-src/static"]
openblas-system = ["blas", "ndarray-linalg", "openblas-src/system"]

intel-mkl-static = ["blas", "ndarray-linalg", "intel-mkl-src/mkl-static-lp64-seq", "intel-mkl-src/download"]
intel-mkl-system = ["blas", "ndarray-linalg", "intel-mkl-src/mkl-dynamic-lp64-seq"]
intel-mkl-static = ["blas", "ndarray-linalg", "intel-mkl-src/mkl-static-lp64-seq", "intel-mkl-src/download", "anyhow"]
intel-mkl-system = ["blas", "ndarray-linalg", "intel-mkl-src/mkl-dynamic-lp64-seq", "anyhow"]

blas = ["ndarray/blas"]

Expand All @@ -44,6 +44,8 @@ ndarray = { version = "0.15", default-features = false, features = ["approx"] }
ndarray-linalg = { version = "0.14", optional = true }

thiserror = "1.0"
# Temporary fix for compatibility issue between intel-mkl-tool and anyhow (https://github.com/rust-math/intel-mkl-src/issues/68)
anyhow = { version = "<=1.0.48", optional = true }

[dependencies.serde_crate]
package = "serde"
Expand Down

0 comments on commit 4f94290

Please sign in to comment.