Tokio alternative - Build your own async executor
Tokio alternatifi - Kendi async çalıştırıcını yap
Async I/O temelleri
mio = "0.8"Epoll/kqueue soyutlaması
polling = "3"Task oluşturma
async-task = "4"Eşzamanlı veri yapıları
crossbeam = "0.8"Copy this Cargo.toml to get started:
[package]
name = "my-async-runtime"
version = "0.1.0"
edition = "2021"
[dependencies]
mio = "0.8"
polling = "3"
async-task = "4"
crossbeam = "0.8"
thiserror = "1"
tracing = "0.1"