From 4e5b32a3fadd27692603b32cf978fd112b853d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crozet=20S=C3=A9bastien?= Date: Thu, 1 Apr 2021 11:53:19 +0200 Subject: [PATCH] Don't enable the `serde/alloc` feature when `alloc` is enabled. It looks like serde still pulls std when only `alloc` is selected. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 411c3ad3..2b99f0a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" ]