#![cfg_attr(not(feature ="std"), no_std)]//! `no_std` implementation of Ockam Node
usecore::future::Future;/// Block on the execution of the given future.
pubfnblock_on<T>(future: impl Future<Output = T> + 'static + Send)-> T
where
T: Send + 'static,
{executor::block_on(future)}