Lara19-dev / libsan-rs

standard algebraic notation (san) parsing library in rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

libsan-rs

Rust implementation for parsing standard algebraic notation in chess inspired by standard-algebraic-notation.

Usage

Add this to your Cargo.toml:

[dependencies]
san-rs = "0"

Short example usage:

use san_rs::*;

fn main() {
    // parse input string:
    let move_data = Move::parse("Re4").unwrap(); // -> data struct

    // convert back to string:
    let san_string = move_data.compile(); // -> "Re4"
}

About

standard algebraic notation (san) parsing library in rust

License:GNU General Public License v3.0


Languages

Language:Rust 100.0%