Skip to main content

dash_async/
lib.rs

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).
5
6mod block_on;
7
8pub use block_on::{block_on, AsyncError};