Go to file
Stjepan Glavina ec2f3923ac Bump to v1.11.3 2020-12-18 18:02:30 +01:00
.github/workflows Fix CI 2020-12-18 13:09:22 +01:00
src Fix a typo 2020-10-20 16:06:12 +02:00
.gitignore Initial commit 2020-06-22 15:02:46 +02:00
CHANGELOG.md Bump to v1.11.3 2020-12-18 18:02:30 +01:00
Cargo.toml Bump to v1.11.3 2020-12-18 18:02:30 +01: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 Add prelude module 2020-10-09 13:20:53 +02: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.