From b29ba1b6fb77d8d158ce0fb40a5e970daeeeed66 Mon Sep 17 00:00:00 2001 From: FiveMovesAhead Date: Fri, 20 Sep 2024 00:12:31 +0800 Subject: [PATCH] Add small_rng for tig-algorithms. --- tig-algorithms/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tig-algorithms/Cargo.toml b/tig-algorithms/Cargo.toml index ab1cc50..bbca2f9 100644 --- a/tig-algorithms/Cargo.toml +++ b/tig-algorithms/Cargo.toml @@ -12,7 +12,10 @@ cudarc = { version = "0.12.0", features = [ "cuda-version-from-build-system", ], optional = true } ndarray = "0.15.6" -rand = { version = "0.8.5", default-features = false, features = ["std_rng"] } +rand = { version = "0.8.5", default-features = false, features = [ + "std_rng", + "small_rng", +] } tig-challenges = { path = "../tig-challenges" } [lib]