Add rand as a development dependency in Cargo.toml

This commit is contained in:
Palash Tyagi 2025-07-05 00:47:51 +01:00
parent 6858fa4bfa
commit 48660b1a75

View File

@ -15,6 +15,9 @@ crate-type = ["cdylib", "lib"]
chrono = "^0.4.10" chrono = "^0.4.10"
criterion = { version = "0.5", features = ["html_reports"], optional = true } criterion = { version = "0.5", features = ["html_reports"], optional = true }
[dev-dependencies]
rand = "^0.9.1"
[features] [features]
bench = ["dep:criterion"] bench = ["dep:criterion"]