[package]
edition = "2021"
name = "chess-lab"
version = "0.2.0"
authors = ["Santicm23 <santicastrom@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Chess library with multiple variants and FEN/PGN support."
homepage = "https://github.com/Santicm23/chess-lab"
documentation = "https://docs.rs/chess-lab"
readme = "README.md"
keywords = [
"chess",
"variants",
"fen",
"pgn",
"engine",
]
license = "CC0-1.0"
repository = "https://github.com/Santicm23/chess-lab"
[lib]
name = "chess_lab"
path = "src/lib.rs"
[dependencies.pest]
version = "2.1"
[dependencies.pest_derive]
version = "2.1"
[dependencies.rand]
version = "0.8.5"
[dependencies.regex]
version = "1.3.9"
[dependencies.thiserror]
version = "2.0.3"