Crates.io | uci |
lib.rs | uci |
version | 0.2.1 |
source | src |
created_at | 2017-02-24 09:24:36.338797 |
updated_at | 2024-11-16 19:16:44.09348 |
description | A library to programmatically communicate with UCI compatible chess engines |
homepage | https://github.com/crazymerlyn/uci-rs |
repository | https://github.com/crazymerlyn/uci-rs |
max_upload_size | |
id | 8657 |
size | 12,766 |
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());