diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-06-08 20:12:10 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-09 17:46:53 -0700 |
| commit | 1635ef2a1958749e7b0cf4e812e1a87cd919027f (patch) | |
| tree | 15af3b75a8ac11af34f6df1bd46fdba6560a9377 /src/librustc | |
| parent | 5eb4d19dc35dc59aaeaf3d53759c9b0341148ef8 (diff) | |
| download | rust-1635ef2a1958749e7b0cf4e812e1a87cd919027f.tar.gz rust-1635ef2a1958749e7b0cf4e812e1a87cd919027f.zip | |
std: Move dynamic_lib from std::unstable to std
This leaves a deprecated reexport in place temporarily. Closes #1457.
Diffstat (limited to 'src/librustc')
| -rw-r--r-- | src/librustc/metadata/filesearch.rs | 2 | ||||
| -rw-r--r-- | src/librustc/plugin/load.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/metadata/filesearch.rs b/src/librustc/metadata/filesearch.rs index 9033b83d474..ec46e7f8592 100644 --- a/src/librustc/metadata/filesearch.rs +++ b/src/librustc/metadata/filesearch.rs @@ -13,7 +13,7 @@ use std::cell::RefCell; use std::os; use std::io::fs; -use std::unstable::dynamic_lib::DynamicLibrary; +use std::dynamic_lib::DynamicLibrary; use std::collections::HashSet; use myfs = util::fs; diff --git a/src/librustc/plugin/load.rs b/src/librustc/plugin/load.rs index ba50a15a82b..97ffcf279ae 100644 --- a/src/librustc/plugin/load.rs +++ b/src/librustc/plugin/load.rs @@ -16,7 +16,7 @@ use plugin::registry::Registry; use std::mem; use std::os; -use std::unstable::dynamic_lib::DynamicLibrary; +use std::dynamic_lib::DynamicLibrary; use syntax::ast; use syntax::attr; use syntax::visit; |
