1#![warn(clippy::nursery)]
2
3#[cfg(target_arch = "wasm32")]
4use wasm_bindgen::prelude::*;
5
6pub mod font;
7pub mod image;
8pub mod jpeg;
9pub mod png;
10pub mod renderer;
11
12pub mod event_log;
13pub(crate) mod impl_read;
14pub mod test_file_parser;