shark/fish/Cargo.toml

30 lines
494 B
TOML
Raw Permalink Normal View History

2022-12-15 23:26:51 +00:00
[package]
name = "fish"
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
ahash = { version = "0.8", default_features = false }
bumpalo = "3.15"
hashbrown = "0.14"
smallvec = "1.13"
2023-03-05 00:23:57 +00:00
tracing = { version = "0.1", default_features = false }
[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