From 04a55f0a56536ab4f399c2c7cb379c5bffd91330 Mon Sep 17 00:00:00 2001 From: David Kruger Date: Mon, 30 Jun 2025 19:49:45 -0700 Subject: [PATCH] Add a "threads" feature for mutli-threading --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 500991d..cdf7687 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,8 @@ readme = "README.md" keywords = ["mcts", "rust", "monte_carlo", "tree", "ai", "ml"] categories = ["algorithms", "data-structures"] +[features] +threads = [] [dependencies] rand = "~0.9"