1#![cfg_attr(not(feature = "unsafe"), forbid(unsafe_code))]
3
4pub mod array;
5pub mod bit;
6pub mod date;
7mod framework;
8pub mod graph;
9pub mod grid;
10pub mod input;
11pub mod md5;
12#[cfg(not(target_family = "wasm"))]
13pub mod multithreading;
14pub mod multiversion;
15pub mod number;
16pub mod parser;
17pub mod point;
18pub mod simd;
19#[cfg(target_family = "wasm")]
20pub mod wasm;
21
22pub use framework::{Puzzle, PuzzleExamples};
23#[cfg(target_family = "wasm")]
24pub use wasm::multithreading;
25
26pub mod prelude {
28 pub use crate::examples;
29 pub use crate::input::{InputError, InputType, MapWithInputExt as _};
30 pub use crate::parser::{self, Parser as _};
31}