uci 0.1.4

A library to programmatically communicate with UCI compatible chess engines
Documentation
# 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());
```