From f4af33e4a3110b278fad5d8cc5227a3bcc23520d Mon Sep 17 00:00:00 2001 From: Mingun Date: Sat, 9 Sep 2023 20:10:12 +0500 Subject: [PATCH] Update dev-dependencies pretty_assertions: 1.3 -> 1.4 criterion 0.5 requires Rust 1.70 (because of clap 0.4), but our MSRV currently is 1.56. Because it is used only for sporadic checks of performance, it is not worth to raise MSRV just for it, so later --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7aba7600..ea2cb992 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ arbitrary = { version = "1", features = ["derive"], optional = true } [dev-dependencies] criterion = "0.4" -pretty_assertions = "1.3" +pretty_assertions = "1.4" regex = "1" # #[serde(other)] allowed not only inside field_identifier since 1.0.79 # serde does not follow semver in numbering and their dependencies, so we specifying patch here