From 280f838c5cafed5c553a902ae0ed136a1005648d Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 14 Feb 2023 18:16:50 +0000 Subject: [PATCH] Constrain `inferno` transitive dependency to our MSRV `inferno 0.11.5` raised its MSRV to 1.64.0. Adding this range constraint is fine because it's only a dev-dependency. --- halo2_gadgets/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/halo2_gadgets/Cargo.toml b/halo2_gadgets/Cargo.toml index ed2bdcfc1b..62b905e149 100644 --- a/halo2_gadgets/Cargo.toml +++ b/halo2_gadgets/Cargo.toml @@ -42,6 +42,7 @@ criterion = "0.3" proptest = "1.0.0" [target.'cfg(unix)'.dev-dependencies] +inferno = ">=0.11, <0.11.5" # MSRV 1.59 pprof = { version = "0.8", features = ["criterion", "flamegraph"] } # MSRV 1.56 [lib]