Enable all features for tokio runtime

This commit is contained in:
Nikolay Kim 2022-01-11 10:39:52 +06:00
parent d359b6cf0b
commit e9bbe84cba
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.4.2] - 2022-01-11
* Enable all features for tokio runtime
## [0.4.1] - 2022-01-03 ## [0.4.1] - 2022-01-03
* Refactor async runtimes support * Refactor async runtimes support

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-rt" name = "ntex-rt"
version = "0.4.1" version = "0.4.2"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex runtime" description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]

View file

@ -18,7 +18,7 @@ mod tokio {
/// completes. /// completes.
pub fn block_on<F: Future<Output = ()>>(fut: F) { pub fn block_on<F: Future<Output = ()>>(fut: F) {
let rt = tok_io::runtime::Builder::new_current_thread() let rt = tok_io::runtime::Builder::new_current_thread()
.enable_io() .enable_all()
.build() .build()
.unwrap(); .unwrap();
tok_io::task::LocalSet::new().block_on(&rt, fut); tok_io::task::LocalSet::new().block_on(&rt, fut);