From 61848fcfb815457a1c1bcae0b9c359783f034e0c Mon Sep 17 00:00:00 2001 From: chemicstry Date: Thu, 29 Oct 2020 01:05:12 +0200 Subject: [PATCH] Make serde no_std compatible --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a36df272..04a7d8c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 }