Skip to content

Commit c658165

Browse files
committed
fix "extern crate core" import
Broken on latest rust nightly because using no_std automatically injects an "extern crate core". (rust-lang/rfcs#1184)
1 parent 35fba17 commit c658165

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@
1313
#![crate_type="lib"]
1414

1515
#![feature(asm, no_std)]
16-
#![feature(core)]
1716
#![deny(warnings)]
1817
#![no_std]
1918
#![allow(unused_mut)]
2019

21-
extern crate core;
22-
2320
#[cfg(test)]
2421
extern crate std;
2522

0 commit comments

Comments
 (0)