1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! The crate includes a universal channel and
//! a function for initiating asynchronous activities.

#![warn(missing_docs)]

pub use futures;
pub use uuid;

mod compatible_runtime;
pub use compatible_runtime::*;

#[cfg(not(target_arch = "wasm32"))]
mod std_runtime;
#[cfg(not(target_arch = "wasm32"))]
pub use std_runtime::*;

#[cfg(target_arch = "wasm32")]
mod wasm_runtime;
#[cfg(target_arch = "wasm32")]
pub use wasm_runtime::*;