From 8d7ed0fd139a8905efd94d891cb087d77222834d Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Fri, 8 May 2020 15:12:39 -0700 Subject: [PATCH] deps: Update `wast` to 15.0.0 This also updates `wat` in the lockfile so that the SIMD spec tests are passing again. --- Cargo.lock | 21 ++++++------------- cranelift/peepmatic/Cargo.toml | 2 +- cranelift/peepmatic/crates/fuzzing/Cargo.toml | 2 +- cranelift/peepmatic/crates/runtime/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99373b1fae..f9509a2572 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1262,7 +1262,7 @@ dependencies = [ "peepmatic-automata", "peepmatic-macro", "peepmatic-runtime", - "wast 13.0.0", + "wast 15.0.0", "z3", ] @@ -1288,7 +1288,7 @@ dependencies = [ "peepmatic-test", "rand 0.7.3", "serde", - "wast 13.0.0", + "wast 15.0.0", ] [[package]] @@ -1311,7 +1311,7 @@ dependencies = [ "peepmatic-macro", "serde", "thiserror", - "wast 13.0.0", + "wast 15.0.0", ] [[package]] @@ -2453,15 +2453,6 @@ dependencies = [ "leb128", ] -[[package]] -name = "wast" -version = "13.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b20abd8b4a26f7e0d4dd5e357e90a3d555ec190e94472c9b2b27c5b9777f9ae" -dependencies = [ - "leb128", -] - [[package]] name = "wast" version = "15.0.0" @@ -2473,11 +2464,11 @@ dependencies = [ [[package]] name = "wat" -version = "1.0.14" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51a615830ee3e7200b505c441fec09aac2f114deae69df52f215cb828ba112c4" +checksum = "526d28df6c047d9f9a92d4925b98afd8d8d95b1b3aa4f13eb1306f17d1da56c4" dependencies = [ - "wast 13.0.0", + "wast 15.0.0", ] [[package]] diff --git a/cranelift/peepmatic/Cargo.toml b/cranelift/peepmatic/Cargo.toml index 843b06a1a2..7a1dc1c535 100644 --- a/cranelift/peepmatic/Cargo.toml +++ b/cranelift/peepmatic/Cargo.toml @@ -11,5 +11,5 @@ anyhow = "1.0.27" peepmatic-automata = { version = "0.1.0", path = "crates/automata", features = ["dot"] } peepmatic-macro = { version = "0.1.0", path = "crates/macro" } peepmatic-runtime = { version = "0.1.0", path = "crates/runtime", features = ["construct"] } -wast = "13.0.0" +wast = "15.0.0" z3 = { version = "0.5.0", features = ["static-link-z3"] } diff --git a/cranelift/peepmatic/crates/fuzzing/Cargo.toml b/cranelift/peepmatic/crates/fuzzing/Cargo.toml index 5e36dcc6af..a3ccb91791 100644 --- a/cranelift/peepmatic/crates/fuzzing/Cargo.toml +++ b/cranelift/peepmatic/crates/fuzzing/Cargo.toml @@ -19,4 +19,4 @@ peepmatic-runtime = { path = "../runtime", features = ["construct"] } peepmatic-test = { path = "../test" } rand = { version = "0.7.3", features = ["small_rng"] } serde = "1.0.106" -wast = "13.0.0" +wast = "15.0.0" diff --git a/cranelift/peepmatic/crates/runtime/Cargo.toml b/cranelift/peepmatic/crates/runtime/Cargo.toml index 31c4655b25..0a5312ed86 100644 --- a/cranelift/peepmatic/crates/runtime/Cargo.toml +++ b/cranelift/peepmatic/crates/runtime/Cargo.toml @@ -14,7 +14,7 @@ peepmatic-automata = { version = "0.1.0", path = "../automata", features = ["ser peepmatic-macro = { version = "0.1.0", path = "../macro" } serde = { version = "1.0.105", features = ["derive"] } thiserror = "1.0.15" -wast = { version = "13.0.0", optional = true } +wast = { version = "15.0.0", optional = true } [features]