From e2c8610a57cc3d2cd5279d6367cd07e962565b3c Mon Sep 17 00:00:00 2001 From: James Cook Date: Sun, 16 Aug 2015 14:56:39 -0700 Subject: [PATCH] Fixes for rust nightly change to behavior of no_std[1] [1]https://github.com/rust-lang/rfcs/pull/1184 --- src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index cb48076..05f52bc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,14 +21,12 @@ //! the system libc library. #![no_std] -#![feature(no_std, core)] +#![feature(no_std)] // This library defines the builtin functions, so it would be a shame for // LLVM to optimize these function calls to themselves! #![no_builtins] -extern crate core; - #[cfg(test)] #[macro_use] extern crate std; #[no_mangle]