/* src/cancel.rs */
//! Hierarchy-based cancellation tokens.
//!
//! This module provides [`CancellationToken`], which allows for signaling
//! cancellation to one or more tasks. Tokens can be linked in a parent-child
//! relationship: if a parent token is cancelled, all its children are
//! automatically cancelled.
pub use CancellationToken;