//! A production-focused runtime based on [Tokio](https://tokio.rs) with
//! secure randomness and storage backed by the local filesystem.
//!
//! # Panics
//!
//! Unless configured otherwise, any task panic will lead to a runtime panic.
//!
//! # Example
//!
//! ```rust
//! use commonware_runtime::{Spawner, Runner, tokio, Metrics};
//!
//! let executor = tokio::Runner::default();
//! executor.start(|context| async move {
//! println!("Parent started");
//! let result = context.with_label("child").spawn(|_| async move {
//! println!("Child started");
//! "hello"
//! });
//! println!("Child result: {:?}", result.await);
//! println!("Parent exited");
//! });
//! ```
pub use *;