diff --git a/Cargo.lock b/Cargo.lock index e0b54cf..934fa6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,7 +154,7 @@ version = "0.1.0" dependencies = [ "typed-wasm-verify", "wasm-encoder", - "wasmparser 0.251.0", + "wasmparser", "wasmprinter", ] @@ -164,7 +164,7 @@ version = "0.1.0" dependencies = [ "thiserror", "wasm-encoder", - "wasmparser 0.251.0", + "wasmparser", ] [[package]] @@ -180,20 +180,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f" dependencies = [ "leb128fmt", - "wasmparser 0.252.0", -] - -[[package]] -name = "wasmparser" -version = "0.251.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "437970b35b1a85cfde9c74b2398352d8d653f3bd8e3a3db0c063ea8f5b4b36ff" -dependencies = [ - "bitflags", - "hashbrown", - "indexmap", - "semver", - "serde", + "wasmparser", ] [[package]] @@ -203,8 +190,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3eb099dcadcde5be9eef55e3a337128efd4e44b4c93122487e4d2e4e1c6627c" dependencies = [ "bitflags", + "hashbrown", "indexmap", "semver", + "serde", ] [[package]] @@ -215,7 +204,7 @@ checksum = "7142797de29b35ab8dbf15c00f55fda75d409da4c423a8ab8bd6b667a785824b" dependencies = [ "anyhow", "termcolor", - "wasmparser 0.252.0", + "wasmparser", ] [[package]] diff --git a/crates/typed-wasm-codegen/Cargo.toml b/crates/typed-wasm-codegen/Cargo.toml index 6e1b84a..3700937 100644 --- a/crates/typed-wasm-codegen/Cargo.toml +++ b/crates/typed-wasm-codegen/Cargo.toml @@ -30,4 +30,4 @@ typed-wasm-verify = { path = "../typed-wasm-verify", features = ["unstable-l2"] [dev-dependencies] # Round-trip test validates the emitted module is well-formed wasm before # handing it to the verifier. -wasmparser = "=0.251.0" +wasmparser = "=0.252.0" diff --git a/crates/typed-wasm-verify/Cargo.toml b/crates/typed-wasm-verify/Cargo.toml index b35bbcd..0411061 100644 --- a/crates/typed-wasm-verify/Cargo.toml +++ b/crates/typed-wasm-verify/Cargo.toml @@ -36,7 +36,7 @@ unstable-l15 = [] # (0.221 -> 0.250 reshaped the import iterator). Keep these locked so the # next dependabot bump shows up as a visible Cargo.toml diff and forces a # deliberate port rather than a silent lockfile move. -wasmparser = "=0.251.0" +wasmparser = "=0.252.0" thiserror = "2" [dev-dependencies]