Go to file
John Nunley 85a3f0f85a
v2.1.0
Signed-off-by: John Nunley <dev@notgull.net>
2023-12-02 11:01:01 -08:00
.github feat: Move memchr behind an optional feature 2023-11-14 20:28:35 -08:00
src feat: Move memchr behind an optional feature 2023-11-14 20:28:35 -08:00
.gitignore Initial commit 2020-06-22 15:02:46 +02:00
CHANGELOG.md v2.1.0 2023-12-02 11:01:01 -08:00
Cargo.toml v2.1.0 2023-12-02 11:01:01 -08: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.