9 lines
284 B
Rust
9 lines
284 B
Rust
//! Utilities for working with HTML canvases.
|
|
//! This library is designed to be used in a WebAssembly context.
|
|
//! It doesn't expose any functionality when compiled for non-WebAssembly targets
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
mod wasm;
|
|
#[cfg(target_family = "wasm")]
|
|
pub use wasm::*;
|