halo2_proofs: Pin dev-dependencies to versions compatible with MSRV

This commit is contained in:
Jack Grigg 2023-07-30 13:05:06 +00:00
parent c05547a70f
commit 6626aa6b83
1 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,11 @@ gumdrop = "0.8"
proptest = "1"
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
# Indirect dev-dependencies that we pin to preserve MSRV in CI checks.
dashmap = ">=5, <5.5.0" # dashmap 5.5.0 has MSRV 1.64
image = ">=0.24, <0.24.5" # image 0.24.5 has MSRV 1.61
tempfile = ">=3, <3.7.0" # tempfile 3.7.0 has MSRV 1.63
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies]
getrandom = { version = "0.2", features = ["js"] }