Crates.io | tokyodoves |
lib.rs | tokyodoves |
version | 1.0.2 |
source | src |
created_at | 2023-07-20 10:31:29.575207 |
updated_at | 2024-01-11 11:11:34.856271 |
description | A library of an efficient board of Tokyo Doves and associated toolkits |
homepage | https://crates.io/crates/tokyodoves |
repository | https://github.com/mat-der-D/tokyodoves |
max_upload_size | |
id | 921214 |
size | 362,654 |
Tokyodoves is a library of an efficient board of Tokyo Doves and associated toolkits. Tokyo Doves is an abstract strategy board game for two players. See the following pages for its rules.
The board is implemented with the bitboard technique, which allows for extremely fast operations including moving, putting and removing pieces.
Documentation is hosted on docs.rs
Alternatively, see an auto-generated documentation on the repository.
This crate provides three types of features:
Note that, if you indicate feature = "analysis", your program also uses those that are included when feature = "game".
See the documentation for details.
Simply run:
cargo add tokyodoves
or add an option to select features:
cargo add tokyodoves --features analysis
Alternatively, add this to your Cargo.toml
:
[dependencies]
tokyodoves = "1.0.2"
or
[dependencies]
tokyodoves = { version = "1.0.2", features = ["analysis"] }
if you want to use feature "analysis".