73 releases (26 breaking)

0.26.0 Jun 10, 2023
0.24.0 Apr 9, 2023
0.23.1 Feb 19, 2023
0.23.0 Dec 4, 2022
0.0.1 Mar 13, 2017

#47 in Game dev

Download history 237/week @ 2023-11-24 191/week @ 2023-12-01 224/week @ 2023-12-08 259/week @ 2023-12-15 172/week @ 2023-12-22 580/week @ 2023-12-29 300/week @ 2024-01-05 323/week @ 2024-01-12 222/week @ 2024-01-19 270/week @ 2024-01-26 275/week @ 2024-02-02 332/week @ 2024-02-09 272/week @ 2024-02-16 390/week @ 2024-02-23 458/week @ 2024-03-01 483/week @ 2024-03-08

1,643 downloads per month
Used in 25 crates (20 directly)

GPL-3.0+

550KB
9K SLoC

shakmaty

A Rust library for chess move generation

crates.io docs.rs

Features

  • Generate legal moves:

    use shakmaty::{Chess, Position};
    
    let pos = Chess::default();
    let legals = pos.legal_moves();
    assert_eq!(legals.len(), 20);
    
  • Play moves:

    use shakmaty::{Square, Move, Role};
    
    // 1. e4
    let pos = pos.play(&Move::Normal {
        role: Role::Pawn,
        from: Square::E2,
        to: Square::E4,
        capture: None,
        promotion: None,
    })?;
    
  • Detect game end conditions: pos.is_checkmate(), pos.is_stalemate(), pos.is_insufficient_material(), pos.outcome().

  • Read and write FEN, SAN and UCI notation.

  • Supports all Lichess variants: Standard chess, Chess960, Antichess, Atomic, King of the Hill, Three-Check, Crazyhouse, Racing Kings and Horde. Provides vocabulary to implement other variants.

  • Bitboards and compact fixed shift magic attack tables.

  • Zobrist hash positions.

  • Probe Syzygy tablebases with shakmaty-syzygy.

Documentation

Read the documentation

Benchmarks

Simple perft of the initial position. No hashtables. i7-6850K CPU @ 3.60GHz.

perft 4 5
shakmaty 0.16.0 1.0 ms 24.1 ms
jordanbray/chess 3.1.1 0.8 ms 18.6 ms
Stockfish 8 (x86-64-bmi2) 4 ms 33 ms

It should be noted that Stockfish is not optimized for perft speed and also maintains additional data structures for evaluation. Newer versions of Stockfish put even less emphasis on this.

License

Shakmaty is licensed under the GPL-3.0 (or any later version at your option). See the COPYING file for the full license text.

Dependencies