21 releases

0.3.0-alpha.19 Sep 26, 2019
0.3.0-alpha.17 Jul 3, 2019
0.3.0-alpha.13 Feb 21, 2019
0.3.0-alpha.11 Dec 27, 2018
0.3.0-alpha.2 Jul 30, 2018

#30 in #zero-cost

Download history 2435/week @ 2023-12-02 3009/week @ 2023-12-09 2842/week @ 2023-12-16 1791/week @ 2023-12-23 1692/week @ 2023-12-30 2908/week @ 2024-01-06 3027/week @ 2024-01-13 2406/week @ 2024-01-20 2121/week @ 2024-01-27 2456/week @ 2024-02-03 2773/week @ 2024-02-10 3484/week @ 2024-02-17 2928/week @ 2024-02-24 3712/week @ 2024-03-02 3277/week @ 2024-03-09 2638/week @ 2024-03-16

13,107 downloads per month
Used in fewer than 23 crates

MIT/Apache

47KB
650 lines

futures-rs

Zero-cost asynchronous programming in Rust

Build Status crates.io

Documentation | Website

futures-rs is a library providing the foundations for asynchronous programming in Rust. It includes key trait definitions like Stream, as well as utilities like join!, select!, and various futures combinator methods which enable expressive asynchronous control flow.

Usage

Add this to your Cargo.toml:

[dependencies]
futures = "0.3"

The current futures requires Rust 1.56 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 = { version = "0.3", default-features = false }

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

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

No runtime deps

Features