Chess notation parser

Crate transforms algebraic chess notation into software readable structs and vice versa. Parsed chess notation for each turn is stored within Turn struct.

To parse a certain chess turn, such as d2xe3, send it in form of &str as an argument into Turn::try_from() function.

Turn is an enum with two elements: - Castling - a struct which describes castling turn - Move - a struct which describes every other possible turn

Example for Castling turn

0-0 will be translated to:

```rust

use chessnotationparser::{Turn, Castling, CastlingType, Flag};

use chessnotationparser::{turn_castling};

let turn =

Turn::Castling(Castling { r#type: CastlingType::Short, flags: Flag::NONE, });

asserteq!(turn, Turn::tryfrom("O-O").unwrap());

```

Examples for Move turns

d6 will be translated to:

```rust

use chessnotationparser::{Turn, Move, Square, Piece, Flag};

let turn =

Turn::Move (Move { who: Piece::Pawn, dst: Square::D6, flags: Flag::NONE, src: None, promotion: None, });

asserteq!(turn, Turn::tryfrom("d6").unwrap())

```

d7xe8=B+? will be translated to:

```rust

use chessnotationparser::{Turn, Move, Square, Piece, Flag};

let turn =

Turn::Move (Move { who: Piece::Pawn, dst: Square::E8, flags: Flag::CHECK | Flag::CAPTURE, src: Some(vec![Square::D7]), promotion: Some(Piece::Bishop), });

asserteq!(turn, Turn::tryfrom("d7xe8=B+?").unwrap())

```

Nab3# will be translated to:

```rust

use chessnotationparser::{Turn, Move, Square, Piece, Flag};

let turn =

Turn::Move (Move { who: Piece::Knight, dst: Square::B3, flags: Flag::CHECKMATE, src: Some(Square::get_file('a').unwrap()), // Vector of 'Ax' squares promotion: None, });

asserteq!(turn, Turn::tryfrom("Nab3#").unwrap())

```

Chess notation parser rules