1//! Async-sync bridging utilities for Dash Platform.
2//!
3//! Provides [`block_on`] -- a function that bridges async futures into sync code,
4//! handling multiple tokio runtime flavors (no runtime, current-thread, multi-thread).
56mod block_on;
78pub use block_on::{block_on, AsyncError};