Skip to content

Commit 822088f

Browse files
authored
Export JoinHandle for neon runtime (#761)
1 parent 5f1597a commit 822088f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

ntex-rt/CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## [3.7.1] - 2026-02-13
4+
5+
* Export JoinHandle for neon runtime
6+
37
## [3.7.0] - 2026-02-04
48

59
* Unify JoinHandle for all runtimes

ntex-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntex-rt"
3-
version = "3.7.0"
3+
version = "3.7.1"
44
authors = ["ntex contributors <team@ntex.rs>"]
55
description = "ntex runtime"
66
keywords = ["network", "framework", "async", "futures"]

ntex-rt/src/rt_default.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::{fmt, future::Future, future::poll_fn};
22

3-
pub use crate::rt::{Handle, Runtime};
3+
pub use crate::{handle::JoinHandle, rt::Handle, rt::Runtime};
44

55
#[derive(Debug, Copy, Clone)]
66
pub struct JoinError;
@@ -13,7 +13,7 @@ impl fmt::Display for JoinError {
1313

1414
impl std::error::Error for JoinError {}
1515

16-
pub fn spawn<F>(fut: F) -> crate::handle::JoinHandle<F::Output>
16+
pub fn spawn<F>(fut: F) -> JoinHandle<F::Output>
1717
where
1818
F: Future + 'static,
1919
{

0 commit comments

Comments
 (0)