Skip to content

Commit

Permalink
Fix for stability changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Jan 29, 2015
1 parent 81b54b2 commit f7fb510
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion phf/src/lib.rs
Expand Up @@ -3,8 +3,8 @@
//! Keys can be string literals, byte string literals, byte literals, char
//! literals, or any of the fixed-size isizeegral types.
#![doc(html_root_url="https://sfackler.github.io/doc")]
#![feature(core)]
#![warn(missing_docs)]
#![allow(unstable)]
#![no_std]

#[macro_use]
Expand Down
3 changes: 1 addition & 2 deletions phf/tests/test.rs
@@ -1,5 +1,4 @@
#![allow(unstable)]
#![feature(plugin)]
#![feature(plugin, collections, core)]

#[plugin] #[no_link]
extern crate phf_macros;
Expand Down
3 changes: 1 addition & 2 deletions phf_macros/src/lib.rs
Expand Up @@ -2,8 +2,7 @@
//!
//! See the documentation for the `phf` crate for more details.
#![doc(html_root_url="http://sfackler.github.io/doc")]
#![feature(plugin_registrar, quote)]
#![allow(unknown_features, unstable)]
#![feature(plugin_registrar, quote, rustc_private, std_misc, rand, hash, core, os)]

extern crate rand;
extern crate syntax;
Expand Down
2 changes: 1 addition & 1 deletion phf_shared/src/lib.rs
@@ -1,4 +1,4 @@
#![allow(unstable)]
#![feature(core, hash)]
#![no_std]
extern crate core;

Expand Down

0 comments on commit f7fb510

Please sign in to comment.