diff --git a/Cargo.lock b/Cargo.lock index e24af3c..56d9383 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ version = "0.1.0" dependencies = [ "anyhow", "semver", - "wasmparser 0.255.0", + "wasmparser 0.257.1", "wat", "wit-bindgen", "wit-component 0.255.0", @@ -687,6 +687,18 @@ name = "wasmparser" version = "0.255.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8e329ef4b5d46e73b91d3ac6924417cad55a8cbbf869c199283383427c3320b" +dependencies = [ + "bitflags", + "hashbrown", + "indexmap", + "semver", +] + +[[package]] +name = "wasmparser" +version = "0.257.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d92fc335fb6d48f46bda1d8b26b69e28320c15ac3272208333833d6e217e2b4a" dependencies = [ "bitflags", "hashbrown", diff --git a/Cargo.toml b/Cargo.toml index 4cd477c..a4ed561 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ exclude = [ [workspace.dependencies] anyhow = "1" -wasmparser = "0.255.0" +wasmparser = "0.257.1" wat = "1.251.0" wit-bindgen = { version = "0.60.0", git = "https://github.com/bytecodealliance/wit-bindgen.git", rev = "d92cfd3497a7adfbe70f03886c11def2deab6faa" } wit-component = "0.255.0"