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
## [0.4.2] - 2022-01-11
* Enable all features for tokio runtime
## [0.4.1] - 2022-01-03
* Refactor async runtimes support

View file

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

View file

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