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
|
# 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
|
||||||
|
|
|
@ -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"]
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue