From cb1ae4d1159a45e0dfe1010bbb52b734bb8e0305 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 29 Jan 2015 08:59:43 -0800 Subject: [PATCH] Fix for stability changes --- src/lib.rs | 3 +-- tests/test.rs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8002214a..fc80908a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,9 +51,8 @@ //! } //! ``` #![doc(html_root_url="https://sfackler.github.io/doc")] -#![feature(plugin, unsafe_destructor)] +#![feature(plugin, unsafe_destructor, collections, io, core, path, std_misc)] #![warn(missing_docs)] -#![allow(unstable)] #[macro_use] extern crate log; diff --git a/tests/test.rs b/tests/test.rs index 0b4b2d7a..122b670c 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,5 +1,4 @@ -#![allow(unstable)] -#![feature(slicing_syntax)] +#![feature(slicing_syntax, core, collections, std_misc, io)] extern crate postgres; extern crate "rustc-serialize" as serialize;