From 25a0752743944f7bd58360572080ef9205c525ff Mon Sep 17 00:00:00 2001 From: Everett Pompeii Date: Thu, 21 Sep 2023 10:23:44 -0400 Subject: [PATCH] Increase criterion version in quick start The version is currently set as `0.4` even though `0.5` has been available since May. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e2dabc71..5fa780673 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ To start with Criterion.rs, add the following to your `Cargo.toml` ```toml [dev-dependencies] -criterion = { version = "0.4", features = ["html_reports"] } +criterion = { version = "0.5", features = ["html_reports"] } [[bench]] name = "my_benchmark"