Wasmtime 0.13.0 and Cranelift 0.61.0. (#1398)

This also updates the publishing scripts to work with newly added
and reorganized crates.
This commit is contained in:
Dan Gohman
2020-03-26 13:19:02 -07:00
committed by GitHub
parent cde01a47b1
commit 6fa9be7767
55 changed files with 285 additions and 388 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle"
version = "0.1.0"
version = "0.13.0"
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkonk@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
license = "Apache-2.0 WITH LLVM-exception"
edition = "2018"
@@ -15,13 +15,13 @@ include = ["src/**/*", "LICENSE"]
proc-macro = true
[dependencies]
wiggle-generate = { path = "crates/generate", version = "0.1.0" }
wiggle-runtime = { path = "crates/runtime", version = "0.1.0" }
wiggle-generate = { path = "crates/generate", version = "0.13.0" }
wiggle-runtime = { path = "crates/runtime", version = "0.13.0" }
witx = { path = "../wasi-common/wig/WASI/tools/witx", version = "0.8.4" }
syn = { version = "1.0", features = ["full"] }
[dev-dependencies]
wiggle-test = { path = "crates/test", version = "0.1.0" }
wiggle-test = { path = "crates/test", version = "0.13.0" }
proptest = "0.9"
[features]

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle-generate"
version = "0.1.0"
version = "0.13.0"
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
license = "Apache-2.0 WITH LLVM-exception"
edition = "2018"
@@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE"]
[lib]
[dependencies]
wiggle-runtime = { path = "../runtime", version = "0.1.0" }
wiggle-runtime = { path = "../runtime", version = "0.13.0" }
witx = { version = "0.8.4", path = "../../../wasi-common/wig/WASI/tools/witx" }
quote = "1.0"
proc-macro2 = "1.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle-runtime"
version = "0.1.0"
version = "0.13.0"
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle-test"
version = "0.1.0"
version = "0.13.0"
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
license = "Apache-2.0 WITH LLVM-exception"
edition = "2018"
@@ -11,7 +11,7 @@ repository = "https://github.com/bytecodealliance/wasmtime"
include = ["src/**/*", "LICENSE"]
[dependencies]
wiggle-runtime = { path = "../runtime", version = "0.1.0" }
wiggle-runtime = { path = "../runtime", version = "0.13.0" }
proptest = "0.9"
[badges]