Files
zeal/Cargo.toml
stefiosif c2414c3f6e Make mvv_lva to map pieces to their material score instead of abritrary matrix
Add time limits, use anyhow crate to improve error handling, remove depth limit on quiescence search
2024-11-13 21:47:26 +02:00

19 lines
362 B
TOML

[package]
name = "zeal"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.20", features = ["derive"] }
rand = { version = "0.8.5", features = ["small_rng"] }
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
enum_glob_use = "deny"
# pedantic = "deny"
nursery = { level = "deny", priority = -1 }
unwrap_used = "deny"