[package]
edition = "2024"
name = "backgammon_engine"
version = "0.1.0"
authors = ["joris68"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backgammon engine in Rust: state representation, legal move generation, and deterministic afterstate transitions for agent/RL development."
homepage = "https://github.com/joris68/backgammon_engine"
documentation = "https://github.com/joris68/backgammon_engine"
readme = "README.md"
keywords = [
"backgammon",
"game",
"engine",
"reinforcement",
]
categories = [
"data-structures",
"mathematics",
]
license = "MIT"
repository = "https://github.com/joris68/backgammon_engine"
[lib]
name = "backgammon_engine"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies]