From eac124970c7d3795c3c7a7c49e1bdc71448e2d8c Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 24 Nov 2019 19:04:10 -0500 Subject: [PATCH] Use a published version of `object` This allows publishing `cranelift-object` since it no longer depends on a git version of a dependency. See https://github.com/bytecodealliance/cranelift/issues/1254 for context. --- cranelift/object/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index 0a16f50cd9..fd79e74790 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] cranelift-module = { path = "../cranelift-module", version = "0.51.0" } -object = { git = "https://github.com/gimli-rs/object", rev = "cba3ed4932e4c594c5eab4f5ef6c51838f4a5056", default-features = false, features = ["write"] } +object = { version = "0.16", default-features = false, features = ["write"] } target-lexicon = "0.9" [dependencies.cranelift-codegen]