diff --git a/phf/src/lib.rs b/phf/src/lib.rs index 86d26da2..400a64ea 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -28,5 +28,7 @@ pub mod ordered_set; mod std { pub use core::fmt; + pub use core::iter; + pub use core::option; } diff --git a/phf/tests/test.rs b/phf/tests/test.rs index 35cd893f..7461a090 100644 --- a/phf/tests/test.rs +++ b/phf/tests/test.rs @@ -1,4 +1,4 @@ -#![feature(plugin, collections, core)] +#![feature(plugin, core)] #[plugin] #[no_link] extern crate phf_macros;