From 7e80c061f2b60661cdef1b5703651809d592771a Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 7 Dec 2021 14:23:41 -0800 Subject: [PATCH] cranelift-codegen: depend on an exact version of `isle` This should (hopefully) fix our publish script. --- cranelift/codegen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 3a3ca5b61a..3bc3724605 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -35,7 +35,7 @@ criterion = "0.3" [build-dependencies] cranelift-codegen-meta = { path = "meta", version = "0.78.0" } -isle = { path = "../isle/isle", version = "0.78.0", optional = true } +isle = { path = "../isle/isle", version = "=0.78.0", optional = true } miette = { version = "3", features = ["fancy"], optional = true } sha2 = "0.9.8"