11 releases
Uses old Rust 2015
0.2.3 | Jan 16, 2025 |
---|---|
0.2.1 | Nov 16, 2024 |
0.1.4 | Mar 30, 2024 |
0.1.3 | Dec 26, 2022 |
0.1.1 | Feb 24, 2017 |
#552 in Game dev
782 downloads per month
Used in 2 crates
13KB
186 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
~87KB