From f23b5f314fb3ac1aaf017de95b6a495f2da174f5 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 24 Jul 2023 02:23:13 +0000 Subject: [PATCH] shardtree: Pin `tempfile < 3.7.0` in dev-dependencies to keep MSRV --- shardtree/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shardtree/Cargo.toml b/shardtree/Cargo.toml index 0a1b1606..42f4a9c0 100644 --- a/shardtree/Cargo.toml +++ b/shardtree/Cargo.toml @@ -36,5 +36,6 @@ test-dependencies = ["proptest", "assert_matches"] [target.'cfg(unix)'.dev-dependencies] pprof = { version = "0.9", features = ["criterion", "flamegraph"] } # MSRV 1.56 -dashmap = ">=5, <5.5.0" +dashmap = ">=5, <5.5.0" # 5.5 has MSRV > 1.60 inferno = ">=0.11, <0.11.5" # MSRV 1.59 +tempfile = ">=3, <3.7.0" # 3.7 has MSRV 1.63