commit | 7862fb4c8fa2adbf0f894b1202be7553f7e1a460 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:50:59 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:50:59 2023 +0000 |
tree | 96de8e195ba005a8d64963e5017b1fb8aa552d5a | |
parent | 48295ed275a3c45b3026621d45037ad3348cf64e [diff] | |
parent | 34fcaa0dc06597fff16219d2b32fd17dbf4f6c51 [diff] |
Snap for 10453563 from 34fcaa0dc06597fff16219d2b32fd17dbf4f6c51 to mainline-documentsui-release Change-Id: I4faf28e9dfc6b50214fb784728b4fef42b2eb801
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.
Add this to your Cargo.toml
:
[dependencies] futures = "0.3"
The current futures
requires Rust 1.45 or later.
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 }
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.