From 888f6234cd4e26e08b1f2d3716e4d4e0b95d0196 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 5 Mar 2016 20:05:10 -0800 Subject: [PATCH] Drop all rust features --- phf/src/lib.rs | 1 - phf_shared/src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/phf/src/lib.rs b/phf/src/lib.rs index 1d8e4a84..f58e687e 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -5,7 +5,6 @@ //! the documentation of those crates for more details. #![doc(html_root_url="https://sfackler.github.io/rust-phf/doc/v0.7.13")] #![warn(missing_docs)] -#![cfg_attr(feature = "core", feature(no_std, core_slice_ext))] #![cfg_attr(feature = "core", no_std)] #[cfg(not(feature = "core"))] diff --git a/phf_shared/src/lib.rs b/phf_shared/src/lib.rs index 8f8a6f62..00bcb109 100644 --- a/phf_shared/src/lib.rs +++ b/phf_shared/src/lib.rs @@ -1,5 +1,4 @@ #![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.13")] -#![cfg_attr(feature = "core", feature(no_std, core_slice_ext, core_str_ext))] #![cfg_attr(feature = "core", no_std)] #[cfg(not(feature = "core"))] extern crate std as core;