[[bin]]
name = "tictactoe"
path = "tictactoe/main.rs"
[[bin]]
name = "mancala"
path = "mancala/main.rs"
[[bin]]
name = "connect4"
path = "connect4/main.rs"
[[bin]]
name = "reversi"
path = "reversi/main.rs"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.rand]
version = "0.8.0"
[dependencies.rand_xorshift]
version = "0.3.0"
[dependencies.time]
version = "0.2.25"
[lib]
name = "arbor"
path = "arbor/lib.rs"
[package]
authors = ["prestonmlangford <prestonmlangford@gmail.com>"]
categories = ["algorithms", "game-development", "games"]
description = "A generic interface to the Monte Carlo Tree Search algorithm."
edition = "2018"
keywords = ["mcts", "ai", "game", "search", "tree"]
license = "MIT"
name = "arbor"
readme = "README.md"
repository = "https://github.com/prestonmlangford/arbor.git"
version = "0.1.0"