Skip to content
Zero-cost asynchronous programming in Rust
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
ci/remove-dev-dependencies
futures-channel s/Async::/Poll::/ Apr 3, 2019
futures-core impl Spawn for Box<Spawn> Mar 27, 2019
futures-executor Remove unused lazy static GLOBAL_POOL Mar 21, 2019
futures-io impl AsyncWrite for Vec<u8> Apr 3, 2019
futures-select-macro Stage 0.3.0-alpha.13 release Feb 20, 2019
futures-sink s/Async::/Poll::/ Apr 3, 2019
futures-test
futures-util Remove unused sink/wait.rs Apr 3, 2019
futures Remove futures_[un]ordered functions Apr 3, 2019
.gitignore Add some items to gitignore Feb 19, 2019
.rustfmt.toml
.travis.yml
CHANGELOG.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
appveyor.yml

README.md

futures-rs

Zero-cost asynchronous programming in Rust

Build Status Crates.io

Documentation | Website

Usage

Add this to your Cargo.toml:

[dependencies]
futures-preview = "0.3.0-alpha.13"

Now, you can use futures-rs:

use futures::future::Future; // Note: It's not `futures_preview`

The current version of futures-rs requires Rust nightly 2019-02-15 or later.

Feature std

Futures-rs works without the standard library, such as in bare metal environments. However, it has a significantly reduced API surface. To use futures-rs in a #[no_std] environment, use:

[dependencies]
futures-preview = { version = "=0.3.0-alpha.13", default-features = false }

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in futures-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

You can’t perform that action at this time.