PkmnLib_rs/src/script_implementations/mod.rs

11 lines
362 B
Rust
Raw Normal View History

2022-07-18 08:16:47 +00:00
/// The WASM module handles loading dynamic scripts through WebAssembly.
#[cfg(feature = "wasm")]
// FIXME: allow these for now until we have a good result interface defined.
#[allow(clippy::unwrap_used)]
#[allow(clippy::expect_used)]
#[allow(clippy::indexing_slicing)]
#[allow(clippy::string_slice)]
#[allow(clippy::exit)]
#[allow(clippy::panic)]
2022-07-18 08:16:47 +00:00
pub mod wasm;