Properly report panic by resuming unwind

This commit is contained in:
2025-06-28 04:11:33 +10:00
parent 5f1f6dab7a
commit 6a4c726965
6 changed files with 15 additions and 8 deletions

View File

@@ -8,6 +8,7 @@ homepage.workspace = true
repository.workspace = true
[features]
runtime = ["tokio/rt"]
task = ["tokio/rt", "tokio/time"]
fs = ["tokio/fs", "dep:walkdir", "dep:globset", "dep:tempfile"]
net = ["tokio/net"]

View File

@@ -1,12 +1,12 @@
//! luby standard library
#![warn(missing_docs)]
pub mod runtime;
#[cfg(feature = "task")]
pub mod chan;
#[cfg(feature = "fs")]
pub mod fs;
#[cfg(feature = "net")]
pub mod net;
#[cfg(feature = "runtime")]
pub mod runtime;
#[cfg(feature = "task")]
pub mod task;