kithara-platform 0.0.1-alpha4

Cross-platform primitives (sync, time, thread) for native and wasm32.
Documentation
1
2
3
4
5
6
7
8
9
10
//! wasm32 backend. Mirrors the facade tree 1:1; cross-platform code is
//! re-imported from `crate::common`. Compiled only on wasm32 (gated in
//! `lib.rs`), so the tree itself carries no cfg.

pub mod logging;
pub mod maybe_send;
pub mod sync;
pub mod thread;
pub mod time;
pub mod tokio;