1 2 3 4 5 6 7 8 9 10
mod types; #[cfg(not(any(feature = "wasm", target_arch = "wasm32")))] mod lib_native; #[cfg(not(any(feature = "wasm", target_arch = "wasm32")))] pub use lib_native::*; #[cfg(any(feature = "wasm", target_arch = "wasm32"))] pub mod lib_wasm;