From 3c15336a8e70e9154c877824fbf7726fd3907730 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Mon, 11 May 2020 14:09:00 -0700 Subject: [PATCH] Post release fixup These were things missing from the release that I had to add to ship 0.17.0 --- lib/api/Cargo.toml | 2 ++ lib/llvm-backend/Cargo.toml | 1 + lib/runtime/Cargo.toml | 1 + 3 files changed, 4 insertions(+) diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index c65a7c3ec..d89b1b714 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -5,6 +5,7 @@ authors = ["The Wasmer Engineering Team "] edition = "2018" publish = true description = "The high-level public API of the Wasmer WebAssembly runtime" +readme = "README.md" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -20,6 +21,7 @@ optional = true [dependencies.wasmer-llvm-backend] path = "../llvm-backend" +version = "0.17.0" optional = true [dependencies.wasmer-clif-backend] diff --git a/lib/llvm-backend/Cargo.toml b/lib/llvm-backend/Cargo.toml index 694c4a62d..64648d98b 100644 --- a/lib/llvm-backend/Cargo.toml +++ b/lib/llvm-backend/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "wasmer-llvm-backend" version = "0.16.2" +description = "Wasmer runtime LLVM compiler backend" license = "MIT" authors = ["The Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" diff --git a/lib/runtime/Cargo.toml b/lib/runtime/Cargo.toml index 2536b521f..f368dde2a 100644 --- a/lib/runtime/Cargo.toml +++ b/lib/runtime/Cargo.toml @@ -39,6 +39,7 @@ wabt = "0.9.1" [dependencies.wasmer-llvm-backend] path = "../llvm-backend" +version = "0.17.0" optional = true [features]