From c0af810ec0e384bbf1939f322c4835f68184c556 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 2 Aug 2018 20:37:09 -0700 Subject: [PATCH] Add an explicit version to the cranelift-codegen-meta dependency. This allows it to work in crates.io. --- lib/codegen/Cargo.toml | 2 +- lib/codegen/meta/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index c81f204ee0..bb767dd67f 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -22,7 +22,7 @@ target-lexicon = { version = "0.0.3", default-features = false } # accomodated in `tests`. [build-dependencies] -cranelift-codegen-meta = { path = "meta" } +cranelift-codegen-meta = { path = "meta", version = "0.18.1" } [features] # The "std" feature enables use of libstd. The "core" feature enables use diff --git a/lib/codegen/meta/Cargo.toml b/lib/codegen/meta/Cargo.toml index 0a9f294642..1b25d932ec 100644 --- a/lib/codegen/meta/Cargo.toml +++ b/lib/codegen/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-codegen-meta" authors = ["The Cranelift Project Developers"] -version = "0.18.0" +version = "0.18.1" description = "Metaprogram for cranelift-codegen code generator library" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/CraneStation/cranelift"