diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 53a976b5..eeb87f56 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - feature: ["intel-mkl", "source", "system"] + feature: ["source", "system"] steps: - uses: actions/checkout@v1 - name: Install system FFTW diff --git a/README.md b/README.md index 3a523fb3..e21daa58 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Feature flags |:--------|:-----:|:-------:|:-----:| |source |✔️ |✔️ |✔️ | |system |✔️ |- |✔️ | -|intel-mkl|✔️ |✔️ |✔️ | +|intel-mkl|✔️ |✔️ |- | LICENSE -------- diff --git a/fftw-sys/Cargo.toml b/fftw-sys/Cargo.toml index 69eafe7e..4b49e479 100644 --- a/fftw-sys/Cargo.toml +++ b/fftw-sys/Cargo.toml @@ -16,8 +16,8 @@ source = ["fftw-src"] intel-mkl = ["intel-mkl-src"] [dependencies] -libc = "0.2" -num-complex = "0.2" +libc = "0.2.71" +num-complex = "0.3.0" [dependencies.fftw-src] path = "../fftw-src" @@ -25,7 +25,7 @@ version = "0.3.0" optional = true [dependencies.intel-mkl-src] -version = "0.4.0" +version = "0.6.0" optional = true [package.metadata.docs.rs]