Merge pull request #2135 from bytecodealliance/pch/wasi_dep_version_gardening

Dependency version gardening
This commit is contained in:
Nick Fitzgerald
2020-08-17 16:39:31 -07:00
committed by GitHub
16 changed files with 27 additions and 45 deletions

40
Cargo.lock generated
View File

@@ -392,7 +392,7 @@ dependencies = [
"smallvec",
"target-lexicon",
"thiserror",
"wast 22.0.0",
"wast",
]
[[package]]
@@ -1303,7 +1303,7 @@ dependencies = [
"peepmatic-test-operator",
"peepmatic-traits",
"serde",
"wast 22.0.0",
"wast",
"z3",
]
@@ -1331,7 +1331,7 @@ dependencies = [
"peepmatic-traits",
"rand 0.7.3",
"serde",
"wast 22.0.0",
"wast",
]
[[package]]
@@ -1356,7 +1356,7 @@ dependencies = [
"serde",
"serde_test",
"thiserror",
"wast 22.0.0",
"wast",
]
[[package]]
@@ -1377,7 +1377,7 @@ version = "0.66.0"
dependencies = [
"peepmatic-traits",
"serde",
"wast 22.0.0",
"wast",
]
[[package]]
@@ -2644,7 +2644,7 @@ version = "0.19.0"
dependencies = [
"anyhow",
"wasmtime",
"wast 21.0.0",
"wast",
]
[[package]]
@@ -2668,24 +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"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b1844f66a2bc8526d71690104c0e78a8e59ffa1597b7245769d174ebb91deb5"
dependencies = [
"leb128",
]
[[package]]
name = "wast"
version = "22.0.0"
@@ -2697,11 +2679,11 @@ dependencies = [
[[package]]
name = "wat"
version = "1.0.22"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce85d72b74242c340e9e3492cfb602652d7bb324c3172dd441b5577e39a2e18c"
checksum = "f888158d9a4b7c39b859f72a435019835b64097c749f4f28d319004ca5a520b8"
dependencies = [
"wast 21.0.0",
"wast",
]
[[package]]
@@ -2803,7 +2785,7 @@ dependencies = [
[[package]]
name = "witx"
version = "0.8.5"
version = "0.8.7"
dependencies = [
"anyhow",
"diff",
@@ -2811,7 +2793,7 @@ dependencies = [
"pretty_env_logger",
"structopt",
"thiserror",
"wast 11.0.0",
"wast",
]
[[package]]

View File

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

View File

@@ -22,7 +22,7 @@ serde = { version = "1.0.94", features = ["derive"], optional = true }
thiserror = "1.0.4"
[dev-dependencies]
wat = "1.0.18"
wat = "1.0.23"
target-lexicon = "0.10"
# 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"] }

View File

@@ -24,7 +24,7 @@ wasmtime = { path = "../wasmtime", default-features = false }
wasmtime-c-api-macros = { path = "macros" }
# 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
wasi-common = { path = "../wasi-common", optional = true }

View File

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

View File

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

View File

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

View File

@@ -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" }

View File

@@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.19"
wasmtime = { path = "../wasmtime", version = "0.19.0", default-features = false }
wast = "21.0.0"
wast = "22.0.0"
[badges]
maintenance = { status = "actively-developed" }

View File

@@ -409,7 +409,7 @@ fn val_matches(actual: &Val, expected: &wast::AssertExpression) -> Result<bool>
(Val::F32(a), wast::AssertExpression::F32(b)) => f32_matches(*a, b),
(Val::F64(a), wast::AssertExpression::F64(b)) => f64_matches(*a, b),
(Val::V128(a), wast::AssertExpression::V128(b)) => v128_matches(*a, b),
(Val::ExternRef(x), wast::AssertExpression::RefNull(HeapType::Extern)) => x.is_none(),
(Val::ExternRef(x), wast::AssertExpression::RefNull(Some(HeapType::Extern))) => x.is_none(),
(Val::ExternRef(x), wast::AssertExpression::RefExtern(y)) => {
if let Some(x) = x {
let x = x
@@ -421,7 +421,7 @@ fn val_matches(actual: &Val, expected: &wast::AssertExpression) -> Result<bool>
false
}
}
(Val::FuncRef(x), wast::AssertExpression::RefNull(HeapType::Func)) => x.is_none(),
(Val::FuncRef(x), wast::AssertExpression::RefNull(_)) => x.is_none(),
_ => bail!(
"don't know how to compare {:?} and {:?} yet",
actual,

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"] }

View File

@@ -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]

View File

@@ -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"] }