about summary refs log tree commit diff
path: root/src/libcore/future/mod.rs
blob: aecd57b9ce71a7260315fca5425ec5d4544bdd5b (plain)
1
2
3
4
5
6
7
8
9
10
#![stable(feature = "futures_api", since = "1.36.0")]

//! Asynchronous values.

mod future;
#[stable(feature = "futures_api", since = "1.36.0")]
pub use self::future::Future;

#[unstable(feature = "into_future", issue = "67644")]
pub use self::future::IntoFuture;