Don't enable the `serde/alloc` feature when `alloc` is enabled.

It looks like serde still pulls std when only `alloc` is selected.
This commit is contained in:
Crozet Sébastien 2021-04-01 11:53:19 +02:00
parent 2602f48452
commit 4e5b32a3fa
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ default = [ "std" ]
std = [ "matrixmultiply", "simba/std", "serde/std" ]
sparse = [ ]
debug = [ "approx/num-complex", "rand" ]
alloc = [ "serde/alloc" ]
alloc = [ ]
io = [ "pest", "pest_derive" ]
compare = [ "matrixcompare-core" ]
libm = [ "simba/libm" ]