Skip to content

Commit 9f9c5dd

Browse files
committed
feat: v3.9.14
1 parent f9de462 commit 9f9c5dd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "recoverable-spawn"
3-
version = "3.9.13"
3+
version = "3.9.14"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
//! allowing threads to restart after a panic. Useful for resilient
55
//! and fault-tolerant concurrency in network and web programming.
66
7-
pub(crate) mod r#async;
8-
pub(crate) mod common;
9-
pub(crate) mod sync;
7+
mod r#async;
8+
mod common;
9+
mod sync;
1010

11-
pub(crate) use std::{any::Any, panic::set_hook, sync::Arc};
11+
pub use {r#async::*, common::*, sync::*};
1212

13-
pub(crate) use tokio::task::JoinError;
13+
use std::{any::Any, panic::set_hook, sync::Arc};
1414

15-
pub use {r#async::*, common::*, sync::*};
15+
use tokio::task::JoinError;

0 commit comments

Comments
 (0)