2022-12-15 23:26:51 +00:00
|
|
|
[package]
|
|
|
|
name = "fish"
|
2023-04-13 19:29:57 +00:00
|
|
|
description = "Blockfish engine implementation"
|
2022-12-15 23:26:51 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
mino = { path = "../mino" }
|
2022-12-15 23:27:30 +00:00
|
|
|
|
2024-02-23 00:50:45 +00:00
|
|
|
ahash = { version = "0.8", default_features = false }
|
2024-02-22 22:56:21 +00:00
|
|
|
bumpalo = "3.15"
|
|
|
|
hashbrown = "0.14"
|
|
|
|
smallvec = "1.13"
|
2023-03-05 00:23:57 +00:00
|
|
|
tracing = { version = "0.1", default_features = false }
|
2023-04-14 22:52:55 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "find_locations"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "evaluation"
|
|
|
|
harness = false
|
2023-04-15 22:46:59 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "think"
|
|
|
|
harness = false
|