Skip to content

Commit 1b72e4b

Browse files
Merge pull request #116 from termoshtt/serde
2 parents bc04976 + bd2b307 commit 1b72e4b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
command: |
1616
apt update && apt install -y gfortran
1717
cargo test --no-default-features --features=openblas
18+
cargo test --no-default-features --features=openblas,serde-1
1819
1920
test-netlib:
2021
<<: *rust_cfg
@@ -25,14 +26,17 @@ jobs:
2526
command: |
2627
apt update && apt install -y cmake gfortran
2728
cargo test --no-default-features --features=netlib
29+
cargo test --no-default-features --features=netlib,serde-1
2830
2931
test-intel-mkl:
3032
<<: *rust_cfg
3133
steps:
3234
- checkout
3335
- run:
3436
name: test Intel MKL backend
35-
command: cargo test --no-default-features --features=intel-mkl
37+
command: |
38+
cargo test --no-default-features --features=intel-mkl
39+
cargo test --no-default-features --features=intel-mkl,serde-1
3640
3741
workflows:
3842
version: 2

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ accelerate = ["lapack-src/accelerate", "blas-src/accelerate"]
1717
intel-mkl = ["lapack-src/intel-mkl", "blas-src/intel-mkl"]
1818
netlib = ["lapack-src/netlib", "blas-src/netlib", "netlib-src"]
1919
openblas = ["lapack-src/openblas", "blas-src/openblas", "openblas-src"]
20+
serde-1 = ["ndarray/serde-1", "num-complex/serde"]
2021

2122
[dependencies]
2223
derive-new = "0.5"

0 commit comments

Comments
 (0)