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
- Host: GitHub
- URL: https://github.com/rinhizakura/toy-rust-async-rt
- Owner: RinHizakura
- Created: 2022-10-13T11:22:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T03:09:37.000Z (over 2 years ago)
- Last Synced: 2024-12-27T12:09:01.963Z (4 months ago)
- Language: Rust
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)