commit | 34fcaa0dc06597fff16219d2b32fd17dbf4f6c51 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu Mar 09 18:07:11 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 18:07:11 2023 +0000 |
tree | 96de8e195ba005a8d64963e5017b1fb8aa552d5a | |
parent | 7b5f1bc38dca2154a069a0df1163d68cd9129995 [diff] | |
parent | abac6378c58e7e5392da80442321424e276a1c69 [diff] |
Make futures available to product and vendor am: 78fb99c7e0 am: 2f4ff8f1b3 am: c6eb100882 am: abac6378c5 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/futures/+/2476407 Change-Id: I538d43633fee50eb5da35c4441ccfb8f9d47d84f Signed-off-by: Automerger Merge Worker <[email protected]>
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.