crb-core-web 0.0.35

CRB | Composable Runtime Blocks | WEB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! CRB core for the Web environment.

pub mod task;
pub use task::*;

pub mod time {
    pub use core::time::Duration;
    pub use wasmtimer::std::Instant;
    pub use wasmtimer::tokio::*;
}

pub use uuid;