egui_ark/lib.rs
1//! Bindings between egui and Ark module Applet
2
3// crate-specific exceptions:
4#![allow(clippy::trivially_copy_pass_by_ref)] // for &ark::applet::Applet
5#![allow(unsafe_code)] // SAFETY: transmuting triangle indices (avoids a copy)
6
7#[cfg(target_arch = "wasm32")]
8mod implementation;
9#[cfg(target_arch = "wasm32")]
10pub use implementation::*;