//! Tokio.rs reexports to prevent tokio dependencies within external code
pub use watch;
pub use ;
pub use ;
pub use CancellationToken;
/// Returns a future that completes when Ctrl+C is received.
///
/// This is a thin wrapper around `tokio::signal::ctrl_c()` that panics on error.
///
/// # Example
///
/// ```ignore
/// send_message_on(handle.clone(), rt::ctrl_c(), Msg::Shutdown);
/// ```
pub async