Futures, streams, and async I/O combinators.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-01 21:48:31 +02:00
src chore: sync dependencies (monorepo) 2026-04-11 00:44:49 +02:00
.gitignore Initial commit 2020-06-22 15:02:46 +02:00
Cargo.toml fix: use git.sly.so/kade for forkable deps 2026-06-01 21:48:31 +02: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 Fix build badge (#134) 2025-08-06 19:46:44 +09:00

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.

The API for this crate is intentionally constrained. Please consult the features list for APIs that are occluded from this crate.

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.