std: Move dynamic_lib from std::unstable to std
This leaves a deprecated reexport in place temporarily. Closes #1457.
This commit is contained in:
parent
5eb4d19dc3
commit
1635ef2a19
12 changed files with 21 additions and 26 deletions
|
@ -241,15 +241,12 @@ pub mod sync;
|
|||
/* Runtime and platform support */
|
||||
|
||||
pub mod c_vec;
|
||||
pub mod dynamic_lib;
|
||||
pub mod os;
|
||||
pub mod io;
|
||||
pub mod path;
|
||||
pub mod fmt;
|
||||
|
||||
// Private APIs
|
||||
#[unstable]
|
||||
pub mod unstable;
|
||||
|
||||
// FIXME #7809: This shouldn't be pub, and it should be reexported under 'unstable'
|
||||
// but name resolution doesn't work without it being pub.
|
||||
#[unstable]
|
||||
|
@ -279,3 +276,11 @@ mod std {
|
|||
// The test runner requires std::slice::Vector, so re-export std::slice just for it.
|
||||
#[cfg(test)] pub use slice;
|
||||
}
|
||||
|
||||
#[deprecated]
|
||||
#[allow(missing_doc)]
|
||||
#[doc(hiden)]
|
||||
pub mod unstable {
|
||||
#[deprecated = "use std::dynamic_lib"]
|
||||
pub use dynamic_lib;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue