uci 0.2.1

A library to programmatically communicate with UCI compatible chess engines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# uci-rs
A library to programmatically communicate with UCI compatible chess engines

```rust
extern crate uci;

use uci::Engine;

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