pounce 1.2.4

A mediocre (but trying its best) uci chess engine
Documentation
[[bench]]
harness = false
name = "search_bench"
path = "benches/search_bench.rs"

[[bin]]
name = "datagen"
path = "src/bin/datagen.rs"
required-features = ["datagen"]

[[bin]]
name = "pounce"
path = "src/main.rs"

[[bin]]
name = "wiz"
path = "src/bin/wiz/main.rs"
required-features = ["wiz"]

[build-dependencies.vergen-gitcl]
features = ["build", "cargo"]
version = "1.0.0"

[dependencies.anyhow]
version = "1.0.86"

[dependencies.arrayvec]
version = "0.7.4"

[dependencies.bitflags]
version = "2.6.0"

[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5.15"

[dependencies.ctrlc]
features = ["termination"]
optional = true
version = "3.4.5"

[dependencies.num_cpus]
optional = true
version = "1.16.0"

[dependencies.rand]
features = ["small_rng"]
version = "0.9.0"

[dependencies.rand_core]
version = "0.9.2"

[dependencies.rustyline]
version = "16.0.0"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.209"

[dependencies.serde_json]
optional = true
version = "1.0.128"

[dependencies.thiserror]
version = "2.0.11"

[dependencies.threadpool]
version = "1.8.1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.6.0"

[features]
datagen = ["clap", "ctrlc", "num_cpus", "serde", "serde_json"]
wiz = ["clap"]

[lib]
name = "pounce"
path = "src/lib.rs"

[package]
authors = ["alex flick"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["games"]
default-run = "pounce"
description = "A mediocre (but trying its best) uci chess engine"
edition = "2024"
keywords = ["chess", "uci", "engine"]
license = "MIT"
name = "pounce"
readme = "README.md"
repository = "https://github.com/0xflick/pounce"
version = "1.2.4"

[profile.profile]
debug = 2
inherits = "release"

[profile.release]
codegen-units = 1
debug = 0
debug-assertions = false
lto = true
opt-level = 3
panic = "abort"
rpath = false