hexo-engine 0.1.0

Game engine for HeXO — infinite hex tic-tac-toe on an unbounded hexagonal grid
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]