From 6716339551d7885a88b128b0d1dd6576fc6c4ec2 Mon Sep 17 00:00:00 2001 From: Daniel Prilik Date: Fri, 3 Jul 2020 14:58:00 -0400 Subject: [PATCH] remove #[feature(alloc)], (stable since Rust 1.36) --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7b85501..9f75f8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ #![no_std] -#![cfg_attr(all(feature = "alloc", not(feature = "std")), feature(alloc))] //! A library that provides a way to logically own objects, whether or not //! heap allocation is available.