An open API service indexing awesome lists of open source software.

https://github.com/rinhizakura/toy-rust-async-rt

A demonstration to show how Futures in Rust can be used to implement an small async runtime
https://github.com/rinhizakura/toy-rust-async-rt

Last synced: 3 months ago
JSON representation

A demonstration to show how Futures in Rust can be used to implement an small async runtime

Awesome Lists containing this project

README

        

# toy-rust-async-rt

## Introduction

This is a demonstration to show how `Futures` in Rust can be used to implement an small async runtime.
Only a limited set of `Futures` types will be supported. You should use
[tokio](https://github.com/tokio-rs/tokio) or [smol](https://github.com/smol-rs/smol) for more complete
and stronger async runtime.

## Reference

* [Futures Explained in 200 Lines of Rust](https://cfsamson.github.io/books-futures-explained/)
* [smol-rs](https://github.com/smol-rs)