Make serde no_std compatible

This commit is contained in:
chemicstry 2020-10-29 01:05:12 +02:00
parent a2b128c4e4
commit 61848fcfb8
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ simba = { version = "0.3", default-features = false }
alga = { version = "0.9", default-features = false, optional = true }
rand_distr = { version = "0.3", optional = true }
matrixmultiply = { version = "0.2", optional = true }
serde = { version = "1.0", features = [ "derive" ], optional = true }
serde = { version = "1.0", default-features = false, features = [ "derive" ], optional = true }
abomonation = { version = "0.7", optional = true }
mint = { version = "0.5", optional = true }
quickcheck = { version = "0.9", optional = true }