[package]
name = "backgammon-simd"
version = "0.1.0"
edition = "2021"
authors = ["Valentin Golev <v.golev@gmail.com"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/valyagolev/backgammon-simd"
homepage = "https://github.com/valyagolev/backgammon-simd"
documentation = "https://docs.rs/backgammon-simd/"
keywords = ["game"]
description = "Type-safe valid move generator for backgammon using SIMD instructions. Useful for e.g. ML stuff."
[dependencies]
fixed-map = "0.9"
itertools = "0.11"
once_cell = "1"
rand = "0.8"
rand_distr = "0.4"
serde = { version = "1", features = ["derive"] }
strum = "0.25"
strum_macros = "0.25"
backgammon = { version = "0.6", optional = true }
anyhow = "1"
[dev-dependencies]
criterion = "0.5"
[features]
time = []
backgammon-compat = ["dep:backgammon"]
[[bench]]
name = "movegens"
harness = false
[[bench]]
name = "games"
harness = false