This commit is contained in:
Nikolay Kim 2024-10-11 17:22:29 +05:00
parent c12cb47dc4
commit 2e42850233
2 changed files with 5 additions and 2 deletions

View file

@ -132,7 +132,10 @@ mod compio {
/// Runs the provided future, blocking the current thread until the future
/// completes.
pub fn block_on<F: Future<Output = ()>>(fut: F) {
log::debug!("Create compio runtime and block on future");
log::info!(
"Starting compio runtime, driver {:?}",
comp_io::driver::DriverType::current()
);
let rt = Runtime::new().unwrap();
rt.block_on(fut);
}

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "2.7.0"
version = "2.6.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"