about summary refs log tree commit diff
path: root/src/librustc_unicode
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-11 14:31:23 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-08-11 15:11:13 -0700
commit938099a7ebccbad2a2cad58d71df316d5ccd512c (patch)
treec5d2fd50e82f15ea20e3d7501a8c547f34cafb7a /src/librustc_unicode
parent91c618f133a35ffccc7e03e06f9318c59d091ae3 (diff)
Register new snapshots
* Lots of core prelude imports removed
* Makefile support for MSVC env vars and Rust crates removed
* Makefile support for morestack removed
Diffstat (limited to 'src/librustc_unicode')
-rw-r--r--src/librustc_unicode/lib.rs3
-rw-r--r--src/librustc_unicode/u_str.rs2
2 files changed, 0 insertions, 5 deletions
diff --git a/src/librustc_unicode/lib.rs b/src/librustc_unicode/lib.rs
index 6cd8b72cb5c..08b2d4e3761 100644
--- a/src/librustc_unicode/lib.rs
+++ b/src/librustc_unicode/lib.rs
@@ -41,9 +41,6 @@
 #![feature(lang_items)]
 #![feature(no_std)]
 #![feature(staged_api)]
-#![cfg_attr(stage0, feature(core, core_prelude))]
-
-#[cfg(stage0)] extern crate core;
 
 mod normalize;
 mod tables;
diff --git a/src/librustc_unicode/u_str.rs b/src/librustc_unicode/u_str.rs
index 37443cfa70c..a938312248f 100644
--- a/src/librustc_unicode/u_str.rs
+++ b/src/librustc_unicode/u_str.rs
@@ -14,8 +14,6 @@
 //! unicode parts of the CharExt trait.
 
 use self::GraphemeState::*;
-#[cfg(stage0)]
-use core::prelude::v1::*;
 
 use core::char;
 use core::cmp;