//! Tokio-backed live runtime: bus, store, effect interpreter, subscriptions.
//!
//! Store flavors:
//! - [`store::Store`] — [`Mutex`](parking_lot::Mutex) (default [`Runtime`])
//! - [`rw_store::RwStore`] — [`RwLock`](parking_lot::RwLock) ([`RwRuntime`])
//! - [`swap_store::SwapStore`] — lock-free snapshot reads (`arc-swap` feature, [`SwapRuntime`])
pub
pub
pub
pub use RuntimeConfig;
pub use Runtime;
pub use RwRuntime;
pub use SwapRuntime;