rusty_rubik/lib.rs
1//! A crate used to model the Rubik's Cube.
2//!
3//! The crate includes consists of two separate compartments:
4//!
5//! - An **executable** that allows you to instantly search for a solution to a
6//! configuration of the Rubik's Cube.
7//!
8//! - A **library** that provides utility functions for solver methods, pruning table
9//! generation, and an API for Rubik's Cube structure.
10//!
11//!
12
13pub mod cube;
14pub mod parser;
15pub mod pruning;
16pub mod solver;