Fix compilation when only the `serde-serialize` feature of nalgebra is enabled.
This commit is contained in:
parent
d16411c6db
commit
2602f48452
|
@ -34,6 +34,8 @@ jobs:
|
||||||
run: cargo build --no-default-features;
|
run: cargo build --no-default-features;
|
||||||
- name: Build (default features)
|
- name: Build (default features)
|
||||||
run: cargo build;
|
run: cargo build;
|
||||||
|
- name: Build --features serde-serialize
|
||||||
|
run: cargo build --features serde-serialize
|
||||||
- name: Build --all-features
|
- name: Build --all-features
|
||||||
run: cargo build --all-features;
|
run: cargo build --all-features;
|
||||||
- name: Build nalgebra-glm
|
- name: Build nalgebra-glm
|
||||||
|
|
|
@ -23,10 +23,10 @@ path = "src/lib.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
std = [ "matrixmultiply", "simba/std" ]
|
std = [ "matrixmultiply", "simba/std", "serde/std" ]
|
||||||
sparse = [ ]
|
sparse = [ ]
|
||||||
debug = [ "approx/num-complex", "rand" ]
|
debug = [ "approx/num-complex", "rand" ]
|
||||||
alloc = [ ]
|
alloc = [ "serde/alloc" ]
|
||||||
io = [ "pest", "pest_derive" ]
|
io = [ "pest", "pest_derive" ]
|
||||||
compare = [ "matrixcompare-core" ]
|
compare = [ "matrixcompare-core" ]
|
||||||
libm = [ "simba/libm" ]
|
libm = [ "simba/libm" ]
|
||||||
|
|
Loading…
Reference in New Issue