diff --git a/Cargo.lock b/Cargo.lock index 1d2ca97d9d..ddef4a894d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2757,6 +2757,15 @@ dependencies = [ "leb128", ] +[[package]] +name = "wasm-encoder" +version = "0.216.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04c23aebea22c8a75833ae08ed31ccc020835b12a41999e58c31464271b94a88" +dependencies = [ + "leb128", +] + [[package]] name = "wasmi" version = "0.36.0" @@ -2949,7 +2958,7 @@ dependencies = [ "serde", "serde_derive", "target-lexicon", - "wasm-encoder", + "wasm-encoder 0.215.0", "wasmparser", "wasmprinter", "wasmtime-component-util", @@ -3045,22 +3054,22 @@ dependencies = [ [[package]] name = "wast" -version = "215.0.0" +version = "216.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ff1d00d893593249e60720be04a7c1f42f1c4dc3806a2869f4e66ab61eb54cb" +checksum = "f7eb1f2eecd913fdde0dc6c3439d0f24530a98ac6db6cb3d14d92a5328554a08" dependencies = [ "bumpalo", "leb128", "memchr", "unicode-width", - "wasm-encoder", + "wasm-encoder 0.216.0", ] [[package]] name = "wat" -version = "1.215.0" +version = "1.216.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670bf4d9c8cf76ae242d70ded47c546525b6dafaa6871f9bcb065344bf2b4e3d" +checksum = "ac0409090fb5154f95fb5ba3235675fd9e579e731524d63b6a2f653e1280c82a" dependencies = [ "wast", ] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 8a47b385e5..57516b2fd6 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -102,7 +102,7 @@ criterion = "0.5.1" futures-executor = { version = "0.3.28", default-features = false } rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] } tempfile = "3.10.0" -wat = "1.214.0" +wat = "1.216.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]