From 19e2a46aafd9c03896ab3efe975f42d65245b52d Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 17 Aug 2020 15:05:16 -0700 Subject: [PATCH] bump to latest wasi submodule witx is now 0.8.6. --- Cargo.lock | 15 +++------------ crates/wasi-common/WASI | 2 +- crates/wasi-common/wig/Cargo.toml | 2 +- crates/wiggle/Cargo.toml | 2 +- crates/wiggle/generate/Cargo.toml | 2 +- crates/wiggle/macro/Cargo.toml | 2 +- crates/wiggle/wasmtime/Cargo.toml | 2 +- crates/wiggle/wasmtime/macro/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aeab366d6d..0e80ab54d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2644,7 +2644,7 @@ version = "0.19.0" dependencies = [ "anyhow", "wasmtime", - "wast 21.0.0", + "wast 22.0.0", ] [[package]] @@ -2668,15 +2668,6 @@ dependencies = [ "witx", ] -[[package]] -name = "wast" -version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df4d67ba9266f4fcaf2e8a1afadc5e2a959e51aecc07b1ecbdf85a6ddaf08bde" -dependencies = [ - "leb128", -] - [[package]] name = "wast" version = "21.0.0" @@ -2803,7 +2794,7 @@ dependencies = [ [[package]] name = "witx" -version = "0.8.5" +version = "0.8.7" dependencies = [ "anyhow", "diff", @@ -2811,7 +2802,7 @@ dependencies = [ "pretty_env_logger", "structopt", "thiserror", - "wast 11.0.0", + "wast 22.0.0", ] [[package]] diff --git a/crates/wasi-common/WASI b/crates/wasi-common/WASI index 2b027d91c2..71f0425147 160000 --- a/crates/wasi-common/WASI +++ b/crates/wasi-common/WASI @@ -1 +1 @@ -Subproject commit 2b027d91c29e6141a3768e638076daa23f51621c +Subproject commit 71f042514728e425a9b1b251c7f6daaa44301f4a diff --git a/crates/wasi-common/wig/Cargo.toml b/crates/wasi-common/wig/Cargo.toml index b7681ab0ad..11afea8b1d 100644 --- a/crates/wasi-common/wig/Cargo.toml +++ b/crates/wasi-common/wig/Cargo.toml @@ -18,7 +18,7 @@ test = false quote = "1.0.2" proc-macro2 = "1.0.6" heck = "0.3.1" -witx = { path = "../WASI/tools/witx", version = "0.8.5" } +witx = { path = "../WASI/tools/witx", version = "0.8.7" } [badges] maintenance = { status = "actively-developed" } diff --git a/crates/wiggle/Cargo.toml b/crates/wiggle/Cargo.toml index ad85032a1e..171694d437 100644 --- a/crates/wiggle/Cargo.toml +++ b/crates/wiggle/Cargo.toml @@ -12,7 +12,7 @@ include = ["src/**/*", "LICENSE"] [dependencies] thiserror = "1" -witx = { path = "../wasi-common/WASI/tools/witx", version = "0.8.5", optional = true } +witx = { path = "../wasi-common/WASI/tools/witx", version = "0.8.7", optional = true } wiggle-macro = { path = "macro", version = "0.19.0" } tracing = "0.1.15" diff --git a/crates/wiggle/generate/Cargo.toml b/crates/wiggle/generate/Cargo.toml index e763131acd..632b649153 100644 --- a/crates/wiggle/generate/Cargo.toml +++ b/crates/wiggle/generate/Cargo.toml @@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE"] [lib] [dependencies] -witx = { version = "0.8.5", path = "../../wasi-common/WASI/tools/witx" } +witx = { version = "0.8.7", path = "../../wasi-common/WASI/tools/witx" } quote = "1.0" proc-macro2 = "1.0" heck = "0.3" diff --git a/crates/wiggle/macro/Cargo.toml b/crates/wiggle/macro/Cargo.toml index af8e3e87b1..89710387a3 100644 --- a/crates/wiggle/macro/Cargo.toml +++ b/crates/wiggle/macro/Cargo.toml @@ -22,7 +22,7 @@ doctest = false [dependencies] wiggle-generate = { path = "../generate", version = "0.19.0" } -witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.5" } +witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.7" } quote = "1.0" syn = { version = "1.0", features = ["full"] } diff --git a/crates/wiggle/wasmtime/Cargo.toml b/crates/wiggle/wasmtime/Cargo.toml index d309be1459..ea20ae9ecb 100644 --- a/crates/wiggle/wasmtime/Cargo.toml +++ b/crates/wiggle/wasmtime/Cargo.toml @@ -13,7 +13,7 @@ include = ["src/**/*", "LICENSE"] [dependencies] wasmtime = { path = "../../wasmtime", version = "0.19.0", default-features = false } wasmtime-wiggle-macro = { path = "./macro", version = "0.19.0" } -witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.5", optional = true } +witx = { path = "../../wasi-common/WASI/tools/witx", version = "0.8.7", optional = true } wiggle = { path = "..", version = "0.19.0" } [badges] diff --git a/crates/wiggle/wasmtime/macro/Cargo.toml b/crates/wiggle/wasmtime/macro/Cargo.toml index 6a7c4ac521..642885795f 100644 --- a/crates/wiggle/wasmtime/macro/Cargo.toml +++ b/crates/wiggle/wasmtime/macro/Cargo.toml @@ -15,7 +15,7 @@ proc-macro = true test = false [dependencies] -witx = { path = "../../../wasi-common/WASI/tools/witx", version = "0.8.5" } +witx = { path = "../../../wasi-common/WASI/tools/witx", version = "0.8.7" } wiggle-generate = { path = "../../generate", version = "0.19.0" } quote = "1.0" syn = { version = "1.0", features = ["full", "extra-traits"] }