pounce 2.0.2

A mediocre (but trying its best) uci chess engine
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

[features]
datagen = [
    "clap",
    "ctrlc",
    "serde",
    "serde_json",
    "rand/os_rng",
    "rand/std_rng",
]
wiz = ["clap"]

[lib]
name = "pounce"
path = "src/lib.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"]

[[bench]]
name = "search_bench"
path = "benches/search_bench.rs"
harness = false

[dependencies.anyhow]
version = "1.0.86"

[dependencies.arrayvec]
version = "0.7.4"

[dependencies.bitflags]
version = "2.6.0"

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

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

[dependencies.rand]
version = "0.9.0"
features = [
    "small_rng",
    "std",
]
default-features = false

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

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

[dependencies.thiserror]
version = "2.0.11"

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

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

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