Skip to content

Commit

Permalink
fix "extern crate core" import
Browse files Browse the repository at this point in the history
Broken on latest rust nightly because using no_std automatically injects
an "extern crate core". (rust-lang/rfcs#1184)
  • Loading branch information
joelarmstrong committed Aug 12, 2015
1 parent 35fba17 commit c658165
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@
#![crate_type="lib"]

#![feature(asm, no_std)]
#![feature(core)]
#![deny(warnings)]
#![no_std]
#![allow(unused_mut)]

extern crate core;

#[cfg(test)]
extern crate std;

Expand Down

0 comments on commit c658165

Please sign in to comment.