Crates.io | untokio |
lib.rs | untokio |
version | 0.2.1 |
source | src |
created_at | 2020-10-26 12:14:47.377769 |
updated_at | 2021-03-10 23:47:54.465969 |
description | Automatically create tokio runtimes |
homepage | |
repository | https://github.com/MaulingMonkey/untokio |
max_upload_size | |
id | 305598 |
size | 61,211 |
Do you struggle with any of the following symptoms?
thread 'main' panicked at 'not currently running on the Tokio runtime.'
Struggle no more, with untokio
! untokio
will automatically create a runtime so you don't have to.
[dependencies]
untokio = { version = "0.2", features = ["v02"] }
untokio::v02::spawn(async {
// code requiring a tokio 0.2 runtime
reqwest::get("http://example.com/").await?.text().await
}).await.unwrap()
[dependencies]
untokio = { version = "0.2", features = ["v03"] }
untokio::v03::spawn(async{
// code requiring a tokio 0.3 runtime
tokio::fs::read_to_string("Cargo.toml").await
}).await.unwrap()
[dependencies]
untokio = { version = "0.2", features = ["v1"] }
untokio::v1::spawn(async{
// code requiring a tokio 1.x runtime
tokio::fs::read_to_string("Cargo.toml").await
}).await.unwrap()
Licensed under either of
at your option.
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.