[package]
edition = "2024"
name = "hexo-engine"
version = "0.1.0"
authors = ["SootyOwl"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Game engine for HeXO — infinite hex tic-tac-toe on an unbounded hexagonal grid"
readme = "README.md"
keywords = [
"hexagonal",
"board-game",
"tic-tac-toe",
"game-engine",
]
categories = [
"games",
"game-development",
]
license = "MIT"
repository = "https://github.com/SootyOwl/hexo-engine"
[features]
tui = [
"crossterm",
"ratatui",
]
[lib]
name = "hexo_engine"
path = "src/lib.rs"
[[bin]]
name = "play"
path = "src/bin/play.rs"
required-features = ["tui"]
[[bench]]
name = "engine"
path = "benches/engine.rs"
harness = false
[dependencies.crossterm]
version = "0.29.0"
optional = true
[dependencies.ratatui]
version = "0.30.0"
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]