[package] name = "chessie" version = "2.0.0" edition = "2021" build = "build.rs" authors = ["Danny Hammer "] license = "MPL-2.0" description = "Fast chess library, suitable for use in chess engines" repository = "https://github.com/dannyhammer/chessie" homepage = "https://github.com/dannyhammer/chessie" keywords = ["chess"] [dependencies] anyhow = "1.0.86" arrayvec = "0.7.4" chessie_types = { path = "../chessie_types", version = "2.0.0" } [build-dependencies] chessie_types = { path = "../chessie_types", version = "2.0.0" } [dev-dependencies] criterion = "0.5.1" colored = "2.1.0" clap = { version = "4.5.20", features = ["derive"] } [[bench]] name = "perft" harness = false