Bump to Wasmtime v0.29.0 and Cranelift 0.76.0.

This commit is contained in:
Chris Fallin
2021-07-28 11:03:26 -07:00
parent 07cafd73df
commit a13a777230
51 changed files with 235 additions and 235 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle"
version = "0.28.0"
version = "0.29.0"
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkonk@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
@@ -13,11 +13,11 @@ include = ["src/**/*", "README.md", "LICENSE"]
[dependencies]
thiserror = "1"
witx = { path = "../wasi-common/WASI/tools/witx", version = "0.9.1", optional = true }
wiggle-macro = { path = "macro", version = "0.28.0" }
wiggle-macro = { path = "macro", version = "0.29.0" }
tracing = "0.1.15"
bitflags = "1.2"
async-trait = "0.1.42"
wasmtime = { path = "../wasmtime", version = "0.28.0", optional = true, default-features = false }
wasmtime = { path = "../wasmtime", version = "0.29.0", optional = true, default-features = false }
anyhow = "1.0"
[badges]

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle-generate"
version = "0.28.0"
version = "0.29.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"

View File

@@ -1,6 +1,6 @@
[package]
name = "wiggle-macro"
version = "0.28.0"
version = "0.29.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"
@@ -21,7 +21,7 @@ test = false
doctest = false
[dependencies]
wiggle-generate = { path = "../generate", version = "0.28.0" }
wiggle-generate = { path = "../generate", version = "0.29.0" }
witx = { version = "0.9.1", path = "../../wasi-common/WASI/tools/witx" }
quote = "1.0"
syn = { version = "1.0", features = ["full"] }