spice-client 0.2.0

A pure Rust SPICE client library with native and WebAssembly support
1
2
3
4
5
6
7
8
9
10
//! WebAssembly-specific implementations for SPICE client

#[cfg(target_arch = "wasm32")]
pub mod video_renderer;

#[cfg(target_arch = "wasm32")]
pub mod canvas;

#[cfg(target_arch = "wasm32")]
pub mod cursor;