lumifox_chess 0.1.0

A high-performance, no_std-capable chess engine library (bitboards and move generation).
Documentation
  • Coverage
  • 13.04%
    30 out of 230 items documented1 out of 49 items with examples
  • Size
  • Source code size: 268.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 10.53 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • ArchProtogens/lumifox
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cliftontoaster-reid

lumifox_chess

A high-performance, no_std-capable chess engine library providing bitboard representations and move generation used by the Lumifox project.

Quick example

use lumifox_chess::model::GameData;

let game = GameData::from_fen("startpos");
println!("Game: {:?}", game);

See the crate docs for more details.