mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Enable all features for tokio runtime
This commit is contained in:
parent
d359b6cf0b
commit
e9bbe84cba
3 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue