Skip to content

Mix async code with CPU-heavy thread pools using Tokio + Rayon

License

Notifications You must be signed in to change notification settings

yutiansut/tokio-rayon

 
 

Repository files navigation

tokio-rayon

Mix async code with CPU-heavy thread pools using Tokio + Rayon

Documentation Build status Test coverage
crates.io Downloads Rust version
MIT license

Resources

TL;DR

Sometimes, you're doing async stuff, and you also need to do CPU-heavy stuff. This library will help!

let nft = tokio_rayon::spawn_async(|| {
  do_some_crypto_stuff()
}).await?;

assert_eq!(nft, ExpensiveNft);

About

Mix async code with CPU-heavy thread pools using Tokio + Rayon

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%