]> git.lizzy.rs Git - rust.git/blob - src/libcore/future/mod.rs
Rollup merge of #67835 - euclio:delimiter-wording, r=Centril
[rust.git] / src / libcore / future / mod.rs
1 #![stable(feature = "futures_api", since = "1.36.0")]
2
3 //! Asynchronous values.
4
5 mod future;
6 #[stable(feature = "futures_api", since = "1.36.0")]
7 pub use self::future::Future;