]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/lib.rs
std: Clean out deprecated APIs
[rust.git] / src / libstd / lib.rs
index fa07b0f761b4e035c65e4be23f141188964fd60f..cd0e3a030bd31d6f92ebfbcdb433afd1c08ba3e1 100644 (file)
 #![feature(float_extras)]
 #![feature(float_from_str_radix)]
 #![feature(fnbox)]
+#![feature(fn_traits)]
 #![feature(heap_api)]
 #![feature(hashmap_hasher)]
 #![feature(inclusive_range)]
 #![cfg_attr(not(stage0), deny(warnings))]
 
 #[cfg(test)] extern crate test;
-#[cfg(test)] #[macro_use] extern crate log;
 
 // We want to reexport a few macros from core but libcore has already been
 // imported by the compiler (via our #[no_std] attribute) In this case we just
 pub mod thread;
 
 pub mod collections;
-pub mod dynamic_lib;
 pub mod env;
 pub mod ffi;
 pub mod fs;