crossword 0.2.0

Library for crossword puzzles including .puz file parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Crossword

A library for crossword puzzles!

## Playing crosswords

This crate comes with no UI so if you want to actually play a crossword, try [crosstui](https://crates.io/crates/crosstui) which is backed by this crate.

## Writing your own crossword app

If you want to use this crate to build your own crossword app, [`Puzzle`](https://docs.rs/crossword/latest/crossword/struct.Puzzle.html) is the main type you will use. Use `Puzzle::parse` to get a puzzle from a `.puz` file. See `crosstui` for an example.