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
11
12
//! Pure native backend. Knows nothing about the other backends;
//! cross-platform code lives in `crate::common` and is re-imported here.
//! Compiled only off wasm32 (gated in `lib.rs`), so the tree itself
//! carries no cfg.

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