1
Fork 0

move pin module to liballoc and reexport that

This commit is contained in:
Niv Kaminer 2018-08-14 19:06:51 +03:00
parent c1103885fe
commit f9efd0578a
3 changed files with 81 additions and 100 deletions

View file

@ -434,6 +434,8 @@ pub use alloc_crate::borrow;
pub use alloc_crate::fmt;
#[stable(feature = "rust1", since = "1.0.0")]
pub use alloc_crate::format;
#[unstable(feature = "pin", issue = "49150")]
pub use alloc_crate::pin;
#[stable(feature = "rust1", since = "1.0.0")]
pub use alloc_crate::slice;
#[stable(feature = "rust1", since = "1.0.0")]
@ -466,7 +468,6 @@ pub mod num;
pub mod os;
pub mod panic;
pub mod path;
pub mod pin;
pub mod process;
pub mod sync;
pub mod time;