about summary refs log tree commit diff
path: root/src/libcore/task/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/task/mod.rs')
-rw-r--r--src/libcore/task/mod.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/libcore/task/mod.rs b/src/libcore/task/mod.rs
deleted file mode 100644
index 3d6f4f5971a..00000000000
--- a/src/libcore/task/mod.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-#![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;
-#[stable(feature = "futures_api", since = "1.36.0")]
-pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
-
-mod ready;
-#[unstable(feature = "ready_macro", issue = "70922")]
-pub use ready::ready;