pgn_filter 1.1.0

For searching/filtering pgn files of chess games.
Documentation
//! For searching/filtering datasets of chess games.
//! 
//! Features
//! 
//! * Read and save collections of PGN files
//! * Filter games looking for games containing positions with certain combinations of pieces
//! * Save collections of PGN games or individual positions after filtering.
//! 
//! Users will mostly work with the top-level functions in [`Games`](self::Games).
//!

pub mod board;
pub use board::*;

pub mod game;
pub use game::*;

pub mod games;
pub use games::*;

mod moves;