rumenx_sudoku/lib.rs
1//! # sudoku
2//!
3//! Fast Sudoku generator & solver for Rust — classic 9×9 plus configurable grids —
4//! with guaranteed unique puzzles, deterministic seeding, and hint helpers.
5//!
6//! Module: rust-sudoku
7//! Author: Rumen Damyanov <contact@rumenx.com>
8
9mod board;
10mod grid;
11mod parse;
12
13pub use board::{Board, Difficulty, set_rand_seed};
14pub use grid::Grid;
15pub use parse::MAX_GRID_SIZE;
16
17#[cfg(feature = "server")]
18pub mod server;