diff options
| author | Niv Kaminer <nivkner@zoho.com> | 2018-08-14 19:06:51 +0300 |
|---|---|---|
| committer | Niv Kaminer <nivkner@zoho.com> | 2018-08-23 01:37:03 +0300 |
| commit | f9efd0578a890d9441da468cc5eed6b9f2ed87df (patch) | |
| tree | b0e768a76e3bf18c2b6b58d0120aa97a7a418f43 /src/libstd/lib.rs | |
| parent | c1103885feb415f82ad36f04f54d229173077a84 (diff) | |
| download | rust-f9efd0578a890d9441da468cc5eed6b9f2ed87df.tar.gz rust-f9efd0578a890d9441da468cc5eed6b9f2ed87df.zip | |
move pin module to liballoc and reexport that
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index ac65274d254..c60ebafd46c 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -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; |
