Go to file
John Nunley cdf5d64e6f
v2.3.0
Signed-off-by: John Nunley <dev@notgull.net>
2024-03-17 14:49:37 -07:00
.github ci: Use cargo-hack's --rust-version flag for msrv check 2024-01-07 04:52:17 +09:00
src chore: Rename try_stream to drain 2024-03-16 09:46:32 -07:00
.gitignore Initial commit 2020-06-22 15:02:46 +02:00
CHANGELOG.md v2.3.0 2024-03-17 14:49:37 -07:00
Cargo.toml v2.3.0 2024-03-17 14:49:37 -07:00
LICENSE-APACHE License, readme, etc 2020-07-19 16:09:14 +02:00
LICENSE-MIT License, readme, etc 2020-07-19 16:09:14 +02:00
LICENSE-THIRD-PARTY Add thid-party licenses 2020-07-20 10:02:43 +02:00
README.md Update license badge to match Cargo.toml 2021-02-14 13:37:14 +09:00

README.md

futures-lite

Build License Cargo Documentation

A lightweight async prelude.

This crate is a subset of futures that compiles an order of magnitude faster, fixes minor warts in its API, fills in some obvious gaps, and removes almost all unsafe code from it.

In short, this crate aims to be more enjoyable than futures but still fully compatible with it.

Examples

use futures_lite::future;

fn main() {
    future::block_on(async {
        println!("Hello world!");
    })
}

License

Licensed under either of

at your option.

Contribution

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.