chess-move-gen 0.2.1

Fast chess move generation library
docs.rs failed to build chess-move-gen-0.2.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: chess-move-gen-0.8.2

chess_move_gen

Provides structs and methods for generating chess moves efficiently

Example usage:

let mut list = MoveVec::new();
let board = &Board::from_fen("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w QqKk - 0 1").unwrap();
legal_moves::<MoveVec>(board, &mut list);
println!("{}", list);