Skip to content

Commit

Permalink
Fix build on 2015-01-28 nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
aroben committed Jan 29, 2015
1 parent 8eb3a27 commit e75a658
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
#![feature(plugin_registrar, quote, int_uint, box_syntax)]
#![deny(warnings)]
#![allow(unused_imports)] // for quotes
#![allow(unstable)]
#![feature(core)]
#![feature(rustc_private)]
#![feature(std_misc)]

extern crate core;
extern crate syntax;
Expand Down
7 changes: 5 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@
#![crate_name = "string_cache"]
#![crate_type = "rlib"]

#![feature(plugin, old_orphan_check)]
#![no_std]
#![deny(warnings)]
#![allow(unstable)]
#![feature(alloc)]
#![feature(collections)]
#![feature(core)]
#![feature(hash)]
#![feature(plugin)]

#[macro_use]
extern crate core;
Expand Down
3 changes: 2 additions & 1 deletion src/namespace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![experimental="This may move as string-cache becomes less Web-specific."]
#![unstable(feature = "string_cache_namespace",
reason = "This may move as string-cache becomes less Web-specific.")]

use core::prelude::*;

Expand Down

0 comments on commit e75a658

Please sign in to comment.