#chess-engine #engine #chess

uci

A library to programmatically communicate with UCI compatible chess engines

5 releases

Uses old Rust 2015

0.1.4 Mar 30, 2024
0.1.3 Dec 26, 2022
0.1.2 Mar 13, 2018
0.1.1 Feb 24, 2017
0.1.0 Feb 24, 2017

#1238 in Game dev

Download history 93/week @ 2024-04-01 36/week @ 2024-04-08 65/week @ 2024-04-15 41/week @ 2024-04-22 31/week @ 2024-04-29 49/week @ 2024-05-06 14/week @ 2024-05-13 29/week @ 2024-05-20 16/week @ 2024-05-27 67/week @ 2024-06-03 18/week @ 2024-06-10 91/week @ 2024-06-17 110/week @ 2024-06-24 5/week @ 2024-07-01 3/week @ 2024-07-08 94/week @ 2024-07-15

217 downloads per month
Used in chess-tui

MIT license

10KB
146 lines

uci-rs

A library to programmatically communicate with UCI compatible chess engines

extern crate uci;

use uci::Engine;

let engine = Engine::new("/path/to/engine").unwrap();
println!("{}", engine.bestmove());

Dependencies

~165KB