Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
8 changes: 6 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@
#![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)]
#![cfg_attr(test, feature(test, std_misc))]

#[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