bump all wat dependencies to 1.0.23

this gets us down to one version of `wast` in dependency tree!
This commit is contained in:
Pat Hickey
2020-08-17 16:03:35 -07:00
parent a8ecb451f1
commit bacf470a3e
7 changed files with 16 additions and 25 deletions

29
Cargo.lock generated
View File

@@ -392,7 +392,7 @@ dependencies = [
"smallvec", "smallvec",
"target-lexicon", "target-lexicon",
"thiserror", "thiserror",
"wast 22.0.0", "wast",
] ]
[[package]] [[package]]
@@ -1303,7 +1303,7 @@ dependencies = [
"peepmatic-test-operator", "peepmatic-test-operator",
"peepmatic-traits", "peepmatic-traits",
"serde", "serde",
"wast 22.0.0", "wast",
"z3", "z3",
] ]
@@ -1331,7 +1331,7 @@ dependencies = [
"peepmatic-traits", "peepmatic-traits",
"rand 0.7.3", "rand 0.7.3",
"serde", "serde",
"wast 22.0.0", "wast",
] ]
[[package]] [[package]]
@@ -1356,7 +1356,7 @@ dependencies = [
"serde", "serde",
"serde_test", "serde_test",
"thiserror", "thiserror",
"wast 22.0.0", "wast",
] ]
[[package]] [[package]]
@@ -1377,7 +1377,7 @@ version = "0.66.0"
dependencies = [ dependencies = [
"peepmatic-traits", "peepmatic-traits",
"serde", "serde",
"wast 22.0.0", "wast",
] ]
[[package]] [[package]]
@@ -2644,7 +2644,7 @@ version = "0.19.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"wasmtime", "wasmtime",
"wast 22.0.0", "wast",
] ]
[[package]] [[package]]
@@ -2668,15 +2668,6 @@ dependencies = [
"witx", "witx",
] ]
[[package]]
name = "wast"
version = "21.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b1844f66a2bc8526d71690104c0e78a8e59ffa1597b7245769d174ebb91deb5"
dependencies = [
"leb128",
]
[[package]] [[package]]
name = "wast" name = "wast"
version = "22.0.0" version = "22.0.0"
@@ -2688,11 +2679,11 @@ dependencies = [
[[package]] [[package]]
name = "wat" name = "wat"
version = "1.0.22" version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce85d72b74242c340e9e3492cfb602652d7bb324c3172dd441b5577e39a2e18c" checksum = "f888158d9a4b7c39b859f72a435019835b64097c749f4f28d319004ca5a520b8"
dependencies = [ dependencies = [
"wast 21.0.0", "wast",
] ]
[[package]] [[package]]
@@ -2802,7 +2793,7 @@ dependencies = [
"pretty_env_logger", "pretty_env_logger",
"structopt", "structopt",
"thiserror", "thiserror",
"wast 22.0.0", "wast",
] ]
[[package]] [[package]]

View File

@@ -37,7 +37,7 @@ anyhow = "1.0.19"
target-lexicon = { version = "0.10.0", default-features = false } target-lexicon = { version = "0.10.0", default-features = false }
pretty_env_logger = "0.4.0" pretty_env_logger = "0.4.0"
file-per-thread-logger = "0.1.1" file-per-thread-logger = "0.1.1"
wat = "1.0.18" wat = "1.0.23"
libc = "0.2.60" libc = "0.2.60"
log = "0.4.8" log = "0.4.8"
rayon = "1.2.1" rayon = "1.2.1"

View File

@@ -22,7 +22,7 @@ serde = { version = "1.0.94", features = ["derive"], optional = true }
thiserror = "1.0.4" thiserror = "1.0.4"
[dev-dependencies] [dev-dependencies]
wat = "1.0.18" wat = "1.0.23"
target-lexicon = "0.10" target-lexicon = "0.10"
# Enable the riscv feature for cranelift-codegen, as some tests require it # Enable the riscv feature for cranelift-codegen, as some tests require it
cranelift-codegen = { path = "../codegen", version = "0.66.0", default-features = false, features = ["riscv"] } cranelift-codegen = { path = "../codegen", version = "0.66.0", default-features = false, features = ["riscv"] }

View File

@@ -24,7 +24,7 @@ wasmtime = { path = "../wasmtime", default-features = false }
wasmtime-c-api-macros = { path = "macros" } wasmtime-c-api-macros = { path = "macros" }
# Optional dependency for the `wat2wasm` API # Optional dependency for the `wat2wasm` API
wat = { version = "1.0.18", optional = true } wat = { version = "1.0.23", optional = true }
# Optional dependencies for the `wasi` feature # Optional dependencies for the `wasi` feature
wasi-common = { path = "../wasi-common", optional = true } wasi-common = { path = "../wasi-common", optional = true }

View File

@@ -19,4 +19,4 @@ wasmtime = { path = "../wasmtime" }
wasmtime-wast = { path = "../wast" } wasmtime-wast = { path = "../wast" }
[dev-dependencies] [dev-dependencies]
wat = "1.0.18" wat = "1.0.23"

View File

@@ -28,7 +28,7 @@ wasmparser = "0.59.0"
[dev-dependencies] [dev-dependencies]
lazy_static = "1.2" lazy_static = "1.2"
wat = "1.0.18" wat = "1.0.23"
quickcheck = "0.9.0" quickcheck = "0.9.0"
anyhow = "1.0" anyhow = "1.0"

View File

@@ -18,7 +18,7 @@ pretty_env_logger = "0.4.0"
tempfile = "3.1.0" tempfile = "3.1.0"
os_pipe = "0.9" os_pipe = "0.9"
anyhow = "1.0.19" anyhow = "1.0.19"
wat = "1.0.18" wat = "1.0.23"
[features] [features]
test_programs = [] test_programs = []