diff --git a/Cargo.lock b/Cargo.lock index 7dc206c..3ac009a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -742,6 +742,12 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "form_urlencoded" version = "1.2.1" @@ -936,7 +942,7 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" dependencies = [ - "foldhash", + "foldhash 0.1.4", "serde", ] @@ -945,6 +951,11 @@ name = "hashbrown" version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "foldhash 0.2.0", + "serde", + "serde_core", +] [[package]] name = "heck" @@ -1850,7 +1861,7 @@ dependencies = [ "predicates", "uuid", "walrus", - "wasmparser 0.244.0", + "wasmparser 0.245.1", "wasmprinter 0.245.1", "wat", ] @@ -2432,7 +2443,6 @@ dependencies = [ "hashbrown 0.15.2", "indexmap 2.13.0", "semver", - "serde", ] [[package]] @@ -2442,8 +2452,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f08c9adee0428b7bddf3890fc27e015ac4b761cc608c822667102b8bfd6995e" dependencies = [ "bitflags", + "hashbrown 0.16.1", "indexmap 2.13.0", "semver", + "serde", ] [[package]] diff --git a/trampoline/Cargo.toml b/trampoline/Cargo.toml index 9f8430e..95908a6 100644 --- a/trampoline/Cargo.toml +++ b/trampoline/Cargo.toml @@ -11,7 +11,7 @@ description = "Tool for augmenting Wasm modules to be compatible with the Shopif walrus = "0.24.4" anyhow = "1.0" clap = { version = "4.6.0", features = ["derive"] } -wasmparser = "0.244.0" +wasmparser = "0.245.1" [dev-dependencies] uuid = { version = "1.23.0", features = ["v4"] }