| Crates.io | uci |
| lib.rs | uci |
| version | 0.2.3 |
| created_at | 2017-02-24 09:24:36.338797+00 |
| updated_at | 2025-01-16 23:28:56.294552+00 |
| 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 | 14,253 |
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());