From 50ebbd63c6097fe927c92e577defba9c49d6793d Mon Sep 17 00:00:00 2001 From: Caio Date: Mon, 15 Jul 2019 14:24:03 -0300 Subject: [PATCH] Enable alloc on stable --- serde/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde/Cargo.toml b/serde/Cargo.toml index 00b75b24..09a81c4f 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -52,7 +52,7 @@ unstable = [] # Requires a dependency on the unstable core allocation library: # # https://doc.rust-lang.org/alloc/ -alloc = ["unstable"] +alloc = [] # Opt into impls for Rc and Arc. Serializing and deserializing these types # does not preserve identity and may result in multiple copies of the same data.