[[bin]]
name = "tic-tac-toe"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.59"
[dependencies.clap]
features = ["derive"]
version = "3.2.16"
[dependencies.shakmaty]
optional = true
version = "0.21.3"
[features]
chess = ["dep:shakmaty"]
default = ["tictactoe"]
tictactoe = []
[package]
authors = ["Aalekh Patel <aalekh.gwpeck.7998@icloud.com>"]
categories = ["algorithms", "mathematics"]
description = "An implementation of Alpha-Beta Pruning + Minimax Algorithm for arbitrary two player minimax style games like Chess, Go, TicTacToe, etc."
documentation = "https://docs.rs/minimax-alpha-beta/"
edition = "2018"
homepage = "https://www.github.com/aalekhpatel07/minimax"
keywords = ["game", "game-ai", "Minimax", "alpha-beta-pruning", "efficient-minimax"]
license = "MIT"
name = "minimax-alpha-beta"
readme = "README.md"
repository = "https://www.github.com/aalekhpatel07/minimax.git"
version = "0.2.0"
[profile.release]
debug = false
lto = "fat"