]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/task/mod.rs
Stabilize futures_api
[rust.git] / src / libcore / task / mod.rs
index 9b8f59811620083edf04be7e8cb1b8795d2d1253..ef090928392cd70eff1404c260d9a9dea3c3cc1b 100644 (file)
@@ -1,11 +1,11 @@
-#![unstable(feature = "futures_api",
-            reason = "futures in libcore are unstable",
-            issue = "50547")]
+#![stable(feature = "futures_api", since = "1.36.0")]
 
 //! Types and Traits for working with asynchronous tasks.
 
 mod poll;
+#[stable(feature = "futures_api", since = "1.36.0")]
 pub use self::poll::Poll;
 
 mod wake;
-pub use self::wake::{Waker, RawWaker, RawWakerVTable};
+#[stable(feature = "futures_api", since = "1.36.0")]
+pub use self::wake::{Context, Waker, RawWaker, RawWakerVTable};