[package]
edition = "2021"
name = "quantik-core"
version = "1.1.0"
authors = ["Mauro Berlanda <mauro.berlanda@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Quantik board game engine: bitboard state, QFEN notation, canonical symmetry-reduced keys, and minimax/MCTS/beam-search engines. Rust companion to the Python quantik-core package."
homepage = "https://github.com/mberlanda/quantik-core-rust"
documentation = "https://docs.rs/quantik-core"
readme = "README.md"
keywords = [
"quantik",
"board-games",
"mcts",
"bitboards",
"game-ai",
]
categories = [
"game-development",
"algorithms",
]
license = "MIT"
repository = "https://github.com/mberlanda/quantik-core-rust"
[lib]
name = "quantik_core"
path = "src/lib.rs"
[[bin]]
name = "bench_bfs"
path = "src/bin/bench_bfs.rs"
[[bin]]
name = "bench_bfs_inspect"
path = "src/bin/bench_bfs_inspect.rs"
[[bin]]
name = "book_builder"
path = "src/bin/book_builder.rs"
[[bin]]
name = "cross_engine_benchmark"
path = "src/bin/cross_engine_benchmark.rs"
[[bin]]
name = "validate"
path = "src/bin/validate.rs"
[[example]]
name = "depth4_survey"
path = "examples/depth4_survey.rs"
[[example]]
name = "depth_sweep"
path = "examples/depth_sweep.rs"
[[example]]
name = "selfplay_export"
path = "examples/selfplay_export.rs"
[[test]]
name = "script_tools"
path = "tests/script_tools.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.libc]
version = "0.2"
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"