exocore-core 0.1.26

Core of Exocore (Distributed applications framework)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(not(target_arch = "wasm32"))]
mod spawn_tokio;
#[cfg(not(target_arch = "wasm32"))]
pub use spawn_tokio::*;

#[cfg(target_arch = "wasm32")]
mod spawn_wasm;
pub use futures::executor::block_on;
#[cfg(target_arch = "wasm32")]
pub use spawn_wasm::*;

mod owned_spawn;
pub use owned_spawn::*;

mod batching_stream;
pub use batching_stream::*;