[[bench]]
harness = false
name = "board"
path = "benches/board.rs"
[[bench]]
harness = false
name = "search"
path = "benches/search.rs"
[[bin]]
name = "matrix_player"
path = "tests/players/matrix_player.rs"
[[bin]]
name = "piece_player"
path = "tests/players/piece_player.rs"
[[bin]]
name = "random_player"
path = "tests/players/random_player.rs"
[[bin]]
name = "slow_player"
path = "tests/players/slow_player.rs"
[dependencies.indicatif]
version = "0.17.9"
[dependencies.rand]
version = "0.8.5"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[lib]
name = "rust_reversi_core"
path = "src/lib.rs"
[package]
authors = ["neodymium6"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["games"]
description = "A Rust library for the game of Reversi including AI players and arena for playing games."
edition = "2021"
keywords = ["game", "reversi", "othello", "ai"]
license = "MIT"
name = "rust_reversi_core"
readme = "README.md"
repository = "https://github.com/neodymium6/rust_reversi_core"
version = "1.0.2"
[[test]]
name = "arena_tests"
path = "tests/arena_tests.rs"
[[test]]
name = "board_tests"
path = "tests/board_tests.rs"
[[test]]
name = "search_test"
path = "tests/search_test.rs"