#asynchronous-programming #future #complete #zero-cost #macro #first #once

macro no-std futures-select-macro-preview

The select! macro for waiting on multiple different Futures at once and handling the first one to complete

9 releases

0.3.0-alpha.19 Sep 26, 2019
0.3.0-alpha.18 Aug 9, 2019
0.3.0-alpha.17 Jul 3, 2019
0.3.0-alpha.16 May 10, 2019
0.3.0-alpha.11 Dec 27, 2018

#1466 in Procedural macros

Download history 264/week @ 2023-12-09 334/week @ 2023-12-16 250/week @ 2023-12-23 107/week @ 2023-12-30 293/week @ 2024-01-06 309/week @ 2024-01-13 225/week @ 2024-01-20 192/week @ 2024-01-27 153/week @ 2024-02-03 335/week @ 2024-02-10 418/week @ 2024-02-17 338/week @ 2024-02-24 429/week @ 2024-03-02 437/week @ 2024-03-09 420/week @ 2024-03-16 356/week @ 2024-03-23

1,702 downloads per month

MIT/Apache

12KB
230 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.

Dependencies

~1.5MB
~34K SLoC