https://github.com/calbabreaker/cheseng
A chess engine written in Rust.
https://github.com/calbabreaker/cheseng
Last synced: 9 months ago
JSON representation
A chess engine written in Rust.
- Host: GitHub
- URL: https://github.com/calbabreaker/cheseng
- Owner: Calbabreaker
- License: mit
- Created: 2022-01-20T02:27:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-26T08:30:39.000Z (over 4 years ago)
- Last Synced: 2025-02-12T11:14:28.271Z (over 1 year ago)
- Language: Rust
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cheseng
A chess engine written in Rust.
## Structure
- [cheseng](cheseng) directory contains the cheseng crate/library that implements a chess engine.
- [ui](ui) directory contains the ui executable that uses the cheseng crate for the engine stuff.
- [cli](cli) directory contains the terminal version of the uithat uses the cheseng crate for the engine stuff.
To build and run ui:
```sh
cargo run -r
```
To build and run cli:
```sh
cargo run -p cheseng-cli -r
```
## Credit
- Chess pieces sprite sheet from [Wikipedia](https://commons.wikimedia.org/wiki/File:Chess_Pieces_Sprite.svg)