From 94872b71fd7fdca6a6bd46be2f50bc820e557cfe Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Fri, 5 Jun 2020 13:18:40 -0700 Subject: [PATCH] Disable unused serde features This makes serde support compatible with no_std. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0e8f13a..c4dbb23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ name = "smallvec" path = "lib.rs" [dependencies] -serde = { version = "1", optional = true } +serde = { version = "1", optional = true, default-features = false } [dev_dependencies] bincode = "1.0.1"