gcg_parser/
lib.rs

1//! [<img alt="github" src="https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/20jasper/gcg-parser)
2//! [<img alt="crates.io" src="https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust" height="20">](https://crates.io/crates/gcg-parser)
3//! [<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" height="20">](https://docs.rs/gcg-parser)
4//! <br>
5//! Parser and Data Structures for the "Generic Crossword Game" file format
6//!
7//! GCG files are used as a standard for a variety of crossword games, most notably Scrabble
8//!
9//! ## Specification
10//!
11//! This parser abides by the [Poslfit GCG specification](https://www.poslfit.com/scrabble/gcg/)
12
13pub mod error;
14mod gcg;
15
16pub use gcg::{events, token, Gcg, Player};