From 48660b1a7503bda2eaa3878643fff8c3089fc93b Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 5 Jul 2025 00:47:51 +0100 Subject: [PATCH] Add rand as a development dependency in Cargo.toml --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f8343d2..d3d44f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,9 @@ crate-type = ["cdylib", "lib"] chrono = "^0.4.10" criterion = { version = "0.5", features = ["html_reports"], optional = true } +[dev-dependencies] +rand = "^0.9.1" + [features] bench = ["dep:criterion"]