Rust Universal Chess Interface.
This crate is a full implementation of the UCI protocol using shakmaty for relevant types.
The UCI protocol is the most widely used way to communicate with chess engines and vice versa.
Specifically, this crate contains:
- Types to represent every UCI message.
- The means to convert strings to these types.
- The means to convert these types to a string.
- I/O management for both GUI's and engines (check out the examples, run them with
cargo run -p {example_name}).
#![no_std] compatible.
No features are enabled by default.
engine-sync: adds theEnginestruct for communicating with an engine.engine-async: adds async versions ofEnginefunctions.tokio-process: adds a tokio version ofEngine::from_process.gui-sync: adds theGuistruct for communicating with a GUI.gui-async: adds async versions ofGuifunctions.serde: enables serde support for most types. All implementations are derived with no parameters.
There's two other crates that I'm aware of which serve a similar purpose; vampirc-uci and shakmaty-uci.
shakmaty-uci is basically an improved version of vampirc-uci, so I'll only cover shakmaty-uci. Anyways, it:
- Doesn't separate messages. Instead, it has one enum which (mostly) uses enum fields for message data. This is inconvenient because you can't represent specific messages.
- Doesn't provide I/O management.
- Is 3 or more times slower than
ruciwhen deserializing, 2 or more times slower when serializing. Results available at tigerros.github.io/ruci/bench, more compact version in the summary of the latest Bench workflow. - Has more tests, but I don't know about the coverage.
- Uses owned versions of non-copy data. This makes for a cleaner API compared to using
Cows (which is whatrucidoes), but it hurts performance. Converting a message to a string doesn't require owned data, and seeing as that is half of the functionality of this crate, it would be wasteful to force ownership. - Uses
nomfor parsing, whereasrucidoesn't pull in anything.
ruci has more benches per scenario than the other two. This is because it uses Cows to allow for borrowed or owned data. So, the suffix borrowed in bench names means that it is using a statically borrowed type rather than the owned type, e.g. &'static str instead of String. The flip side is the suffix owned.
ruci declares #![forbid(unsafe_code)].