Add time limits, use anyhow crate to improve error handling, remove depth limit on quiescence search
19 lines
362 B
TOML
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"
|