[package]
edition = "2024"
rust-version = "1.85.1"
name = "anglerfry"
version = "0.1.0"
authors = ["Alexander Myodov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, readable UCI chess engine to build your own on top of."
readme = "README.md"
keywords = [
"chess",
"uci",
"chess-engine",
"engine",
]
categories = [
"games",
"game-engines",
]
license = "MIT"
repository = "https://github.com/AnglerfishChess/anglerfry"
[[bin]]
name = "anglerfry"
path = "src/main.rs"
[[test]]
name = "protocol"
path = "tests/protocol.rs"
[dependencies.cozy-chess]
version = "0.3.4"
[dependencies.env_logger]
version = "0.11"
[dependencies.log]
version = "0.4"
[dependencies.rand]
version = "0.10"