emscripten-functions 0.3.0

Rust-friendly bindings to various emscripten system functions
Documentation
1
2
3
4
5
6
7
8
//! Various emscripten system functions that make programming in rust for emscripten targets easier.
//! They are grouped by the original function's header file.

#![cfg(target_os = "emscripten")]

pub mod console;
pub mod emscripten;
pub mod websocket;