[package]
name = "chessnost"
version = "0.1.0"
edition = "2021"
default-run = "chessnost"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
num_enum = "0.5.7"
rand = "0.8.5"
smallvec = "1.11.0"

# Allow profiling with cargo flamegraph
[profile.release]
debug = true

[[bench]]
name = "perft"
harness = false

[[bench]]
name = "search"
harness = false

[[bin]]
name = "anomaly-searcher"
path = "src/anomaly-searcher.rs"