commit | 57461ffe244e1c95964af75d7c85dceee4237af9 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <jeffv@google.com> | Tue Jan 31 19:49:51 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jan 31 19:49:51 2023 +0000 |
tree | cdc57feca13e96459a4d04edd64857d336f8a7da | |
parent | 9c3e8e832504405a6d86c2e19ac17ddfe6ea69b5 [diff] | |
parent | a1ca914ebb7ee0530431e9ae2f577496e8e46f1a [diff] |
Update TEST_MAPPING am: a1ca914ebb Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/futures/+/2411774 Change-Id: Ia1c9211ba5ff894e148545caca0d790566fc75eb Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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.