diff --git a/Cargo.lock b/Cargo.lock index e24af3c..f064ebb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ version = "0.1.0" dependencies = [ "anyhow", "semver", - "wasmparser 0.255.0", + "wasmparser 0.256.0", "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.256.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60bd825ffedc6cba8a642924ba7ae424afbc47811cffbcb7b92031ec24e59b4c" dependencies = [ "bitflags", "hashbrown", diff --git a/Cargo.toml b/Cargo.toml index 4cd477c..400f848 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ exclude = [ [workspace.dependencies] anyhow = "1" -wasmparser = "0.255.0" +wasmparser = "0.256.0" 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"