# turnbase-bots > Search and policy bots for the Turnbase engine (random, minimax, MCTS) **Version:** 0.0.0 **Authors:** Matan Lurey **License:** MIT OR Apache-2.0 **Repository:** https://github.com/crates-lurey-io/turnbase **Keywords:** game-engine, turn-based, deterministic, gamedev, ai Generated: 2026-07-25 17:07:54 UTC Created by: [cargo-llms-txt](https://github.com/masinc/cargo-llms-txt) ## Core Documentation - [Complete API Documentation](llms-full.txt): Full public API documentation with detailed descriptions - [README](README.md): Project overview and getting started guide - [Cargo.toml](Cargo.toml): Project configuration and dependencies ## Table of Contents ### src/minimax.rs - pub struct Minimax - impl Minimax - impl Bot for Minimax - impl RankedBot for Minimax ### src/ismcts.rs - pub struct Ismcts - impl Ismcts - impl Node - impl Bot for Ismcts - impl RankedBot for Ismcts ### src/lib.rs - pub use ismcts::Ismcts - pub use mcts::Mcts - pub use minimax::Minimax - pub use random::Random - pub trait Bot - pub trait RankedBot ### src/mcts.rs - pub struct Mcts - impl Mcts - impl Node - impl Bot for Mcts - impl RankedBot for Mcts ### src/random.rs - pub struct Random - impl Random - impl Bot for Random --- ## README.md ### turnbase-bots Search and policy bots for the Turnbase engine (random, minimax, MCTS) Part of the [turnbase](https://github.com/crates-lurey-io/turnbase) workspace. ## Cargo.toml ```toml [package] name = "turnbase-bots" version = "0.0.0" edition = "2024" description = "Search and policy bots for the Turnbase engine (random, minimax, MCTS)" license = "MIT OR Apache-2.0" repository = "https://github.com/crates-lurey-io/turnbase" keywords = ["game-engine","turn-based","deterministic","gamedev","ai"] categories = ["game-development","simulation"] authors = ["Matan Lurey "] ```