#![cfg_attr(not(feature = "unsafe"), forbid(unsafe_code))]
pub mod array;
pub mod bit;
pub mod date;
mod framework;
pub mod graph;
pub mod grid;
pub mod input;
pub mod md5;
#[cfg(not(target_family = "wasm"))]
pub mod multithreading;
pub mod multiversion;
pub mod number;
pub mod parser;
pub mod point;
pub mod simd;
#[cfg(target_family = "wasm")]
pub mod wasm;
pub use framework::{Puzzle, PuzzleExamples};
#[cfg(target_family = "wasm")]
pub use wasm::multithreading;
pub mod prelude {
pub use crate::examples;
pub use crate::input::{InputError, InputType, MapWithInputExt as _};
pub use crate::parser::{self, Parser as _};
}