30 lines
494 B
TOML
30 lines
494 B
TOML
[package]
|
|
name = "fish"
|
|
description = "Blockfish engine implementation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
mino = { path = "../mino" }
|
|
|
|
ahash = { version = "0.8", default_features = false }
|
|
bumpalo = "3.15"
|
|
hashbrown = "0.14"
|
|
smallvec = "1.13"
|
|
tracing = { version = "0.1", default_features = false }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "find_locations"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "evaluation"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "think"
|
|
harness = false
|