From db16b71c5f9b3851736c239539cbc0c019f79de8 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 12 Mar 2025 01:15:32 +0500 Subject: [PATCH] fmt (#517) --- ntex-rt/CHANGES.md | 2 -- ntex-rt/Cargo.toml | 2 +- ntex-rt/src/arbiter.rs | 8 ++++++-- ntex/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ntex-rt/CHANGES.md b/ntex-rt/CHANGES.md index 57d9e8d7..5676ac12 100644 --- a/ntex-rt/CHANGES.md +++ b/ntex-rt/CHANGES.md @@ -2,8 +2,6 @@ ## [0.4.27] - 2025-03-14 -* Add Arbiter::spawn_with() - * Add "neon" runtime support * Drop glommio support diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 3caa90d4..4fde0c17 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-rt" -version = "0.4.26" +version = "0.4.27" authors = ["ntex contributors "] description = "ntex runtime" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-rt/src/arbiter.rs b/ntex-rt/src/arbiter.rs index a290068d..6379acc5 100644 --- a/ntex-rt/src/arbiter.rs +++ b/ntex-rt/src/arbiter.rs @@ -154,13 +154,17 @@ impl Arbiter { .try_send(ArbiterCommand::Execute(Box::pin(future))); } + #[rustfmt::skip] /// Send a function to the Arbiter's thread and spawns it's resulting future. /// This can be used to spawn non-send futures on the arbiter thread. - pub fn spawn_with(&self, f: F) -> impl Future> + Send + 'static + pub fn spawn_with( + &self, + f: F + ) -> impl Future> + Send + 'static where F: FnOnce() -> R + Send + 'static, R: Future + 'static, - O: Send + 'static + O: Send + 'static, { let (tx, rx) = oneshot::channel(); let _ = self diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index a51a9f9c..919cab00 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -70,7 +70,7 @@ ntex-util = "2.8" ntex-bytes = "0.1.27" ntex-server = "2.7" ntex-h2 = "1.8.1" -ntex-rt = "0.4.26" +ntex-rt = "0.4.27" ntex-io = "2.11" ntex-net = "2.5" ntex-tls = "2.3"