diff options
| author | Yoshua Wuyts <yoshuawuyts@gmail.com> | 2021-01-22 18:06:26 +0100 |
|---|---|---|
| committer | Yoshua Wuyts <yoshuawuyts@gmail.com> | 2021-02-03 16:54:29 +0100 |
| commit | 2c8bf1db549d1e70af53b7ff8b8afb80187827e2 (patch) | |
| tree | 8e6967ef1e7d649741a381b9e15ea2707cf9fd32 /library/std/src | |
| parent | 6ad11e2e25919b75ebbc36d7910f2a1126a7e873 (diff) | |
Stabilize the Wake trait
Co-Authored-By: Ashley Mannix <kodraus@hey.com>
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index b6929f59395..961cff661e3 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -329,7 +329,6 @@ #![feature(unwind_attributes)] #![feature(vec_into_raw_parts)] #![feature(vec_spare_capacity)] -#![feature(wake_trait)] // NB: the above list is sorted to minimize merge conflicts. #![default_lib_allocator] @@ -508,7 +507,7 @@ pub mod task { pub use core::task::*; #[doc(inline)] - #[unstable(feature = "wake_trait", issue = "69912")] + #[stable(feature = "wake_trait", since = "1.51.0")] pub use alloc::task::*; } |
