Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leo848/reversi-rust
The game reversi, build in Rust.
https://github.com/leo848/reversi-rust
Last synced: 18 days ago
JSON representation
The game reversi, build in Rust.
- Host: GitHub
- URL: https://github.com/leo848/reversi-rust
- Owner: leo848
- License: gpl-3.0
- Created: 2022-07-04T10:10:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-28T18:21:13.000Z (about 2 years ago)
- Last Synced: 2023-03-10T08:29:50.885Z (almost 2 years ago)
- Language: Rust
- Size: 94.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# reversi-rust
The game [reversi](https://en.wikipedia.org/wiki/Reversi), build in Rust.
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/leo848/reversi-rust/Rust)
![Clippy Workflow Status](https://img.shields.io/github/workflow/status/leo848/reversi-rust/rust-clippy%20analyze?label=clippy&logo=rust)
![Lines of code](https://img.shields.io/tokei/lines/github/leo848/reversi-rust)## Installation
### Cargo install
```sh
cargo install reversi-game
```### Build from source
```sh
git clone https://github.com/leo848/reversi-rust
cd reversi-rust && cargo install --path .
```## Usage
```
USAGE:
reversi [OPTIONS]OPTIONS:
-h, --help Print help information
-p, --player Play against another player
-b, --bot Play against a minimax bot
-d, --depth Choose the depth / strength of the bot, implies --bot (default: 3)
```