From 7ed829fe82d40896d9b20d731e4ea48ce568014f Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Thu, 12 Mar 2020 14:42:24 -0700 Subject: [PATCH] missed versions and fields in wiggle cargo.toml --- crates/wiggle/Cargo.toml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/crates/wiggle/Cargo.toml b/crates/wiggle/Cargo.toml index c437bf494c..e06f92639e 100644 --- a/crates/wiggle/Cargo.toml +++ b/crates/wiggle/Cargo.toml @@ -4,16 +4,22 @@ version = "0.1.0" authors = ["Pat Hickey ", "Jakub Konka ", "Alex Crichton "] license = "Apache-2.0 WITH LLVM-exception" edition = "2018" +description = "Wiggle code generator" +categories = ["wasm"] +keywords = ["webassembly", "wasm"] +repository = "https://github.com/bytecodealliance/wasmtime" +readme = "README.md" +include = ["src/**/*", "LICENSE"] [lib] proc-macro = true [dependencies] -wiggle-generate = { path = "crates/generate" } +wiggle-generate = { path = "crates/generate", version = "0.1.0" } witx = "0.8.3" syn = { version = "1.0", features = ["full"] } [dev-dependencies] -wiggle-runtime = { path = "crates/runtime" } -wiggle-test = { path = "crates/test" } +wiggle-runtime = { path = "crates/runtime", version = "0.1.0" } +wiggle-test = { path = "crates/test", version = "0.1.0" } proptest = "0.9"