diff --git a/Cargo.toml b/Cargo.toml index b8901d7c8a..276a852a51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-tools" -version = "1.0.11" +version = "1.0.12" authors = ["The Wasmtime Project Developers"] edition = "2021" description = "CLI tools for interoperating with WebAssembly files" @@ -25,33 +25,33 @@ tempfile = "3.2.0" wat = { path = "crates/wat", version = '1.0.49' } # Dependencies of `validate` -wasmparser = { path = "crates/wasmparser", optional = true, version = '0.91.0' } +wasmparser = { path = "crates/wasmparser", optional = true, version = '0.92.0' } rayon = { version = "1.0", optional = true } # Dependencies of `print` -wasmprinter = { path = "crates/wasmprinter", version = '0.2.40' } +wasmprinter = { path = "crates/wasmprinter", version = '0.2.41' } # Dependencies of `smith` arbitrary = { version = "1.0.0", optional = true } serde = { version = "1", features = ['derive'], optional = true } serde_json = { version = "1", optional = true } -wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.11.5' } +wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.11.6' } # Dependencies of `shrink` -wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.10' } +wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.11' } is_executable = { version = "1.0.1", optional = true } # Dependencies of `mutate` -wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.8' } +wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.9' } # Dependencies of `dump` -wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.8' } +wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.9' } # Dependencies of `strip` -wasm-encoder = { path = "crates/wasm-encoder", optional = true, version = '0.17.0' } +wasm-encoder = { path = "crates/wasm-encoder", optional = true, version = '0.18.0' } # Dependencies of `compose` -wasm-compose = { path = "crates/wasm-compose", optional = true, version = '0.1.1', features = ['cli'] } +wasm-compose = { path = "crates/wasm-compose", optional = true, version = '0.1.3', features = ['cli'] } [dev-dependencies] anyhow = "1.0" diff --git a/crates/c-api/Cargo.toml b/crates/c-api/Cargo.toml index 8aa23e340f..96de9994b7 100644 --- a/crates/c-api/Cargo.toml +++ b/crates/c-api/Cargo.toml @@ -23,7 +23,7 @@ wasmparser-dump = { version = "0.1.4", path = "../dump" } wasm-mutate = { version = "0.2.4", path = "../wasm-mutate" } wasm-shrink = { version = "0.1.6", path = "../wasm-shrink" } wasm-smith = { version = "0.11.2", path = "../wasm-smith" } -wasmparser = { version = "0.91.0", path = "../wasmparser" } +wasmparser = { version = "0.92.0", path = "../wasmparser" } wasmprinter = { version = "0.2.36", path = "../wasmprinter" } -wast = { version = "47.0.0", path = "../wast" } +wast = { version = "47.0.1", path = "../wast" } wat = { version = "1.0.44", path = "../wat" } diff --git a/crates/dump/Cargo.toml b/crates/dump/Cargo.toml index 47812ece57..76f0a55a0e 100644 --- a/crates/dump/Cargo.toml +++ b/crates/dump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmparser-dump" -version = "0.1.8" +version = "0.1.9" authors = ["The Wasmtime Project Developers"] edition = "2021" license = "Apache-2.0 WITH LLVM-exception" @@ -9,4 +9,4 @@ description = "Utility to dump debug information about the wasm binary format" [dependencies] anyhow = "1" -wasmparser = { path = "../wasmparser", version = "0.91.0" } +wasmparser = { path = "../wasmparser", version = "0.92.0" } diff --git a/crates/wasm-compose/Cargo.toml b/crates/wasm-compose/Cargo.toml index 9f5f6b89f9..958dd0c4be 100644 --- a/crates/wasm-compose/Cargo.toml +++ b/crates/wasm-compose/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-compose" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["Peter Huene "] license = "Apache-2.0 WITH LLVM-exception" @@ -12,8 +12,8 @@ description = "A library for composing WebAssembly components." [dependencies] wat = { version = "1.0.49", path = "../wat" } -wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" } -wasmparser = { version = "0.91.0", path = "../wasmparser" } +wasm-encoder = { version = "0.18.0", path = "../wasm-encoder" } +wasmparser = { version = "0.92.0", path = "../wasmparser" } indexmap = { version = "1.9.1", features = ["serde"] } anyhow = "1.0.58" serde = { version = "1.0.137", features = ["derive"] } @@ -29,4 +29,4 @@ cli = ["clap"] [dev-dependencies] glob = "0.3.0" pretty_assertions = "1.2.1" -wasmprinter = { version = "0.2.40", path = "../wasmprinter" } +wasmprinter = { version = "0.2.41", path = "../wasmprinter" } diff --git a/crates/wasm-encoder/Cargo.toml b/crates/wasm-encoder/Cargo.toml index aad3d6f6e7..21801251c6 100644 --- a/crates/wasm-encoder/Cargo.toml +++ b/crates/wasm-encoder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-encoder" -version = "0.17.0" +version = "0.18.0" authors = ["Nick Fitzgerald "] edition = "2021" license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/wasm-mutate/Cargo.toml b/crates/wasm-mutate/Cargo.toml index 18d5b193c9..020468b03f 100644 --- a/crates/wasm-mutate/Cargo.toml +++ b/crates/wasm-mutate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-mutate" -version = "0.2.8" +version = "0.2.9" edition = "2021" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate" @@ -9,8 +9,8 @@ description = "A WebAssembly test case mutator" [dependencies] clap = { optional = true, version = "3.0", features = ['derive'] } thiserror = "1.0.28" -wasmparser = { version = "0.91.0", path = "../wasmparser" } -wasm-encoder = { version = "0.17.0", path = "../wasm-encoder"} +wasmparser = { version = "0.92.0", path = "../wasmparser" } +wasm-encoder = { version = "0.18.0", path = "../wasm-encoder"} rand = { version = "0.8.0", features = ["small_rng"] } log = "0.4.14" egg = "0.6.0" diff --git a/crates/wasm-shrink/Cargo.toml b/crates/wasm-shrink/Cargo.toml index a91fbcd0c8..eb966a82d3 100644 --- a/crates/wasm-shrink/Cargo.toml +++ b/crates/wasm-shrink/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "./README.md" repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-shrink" name = "wasm-shrink" -version = "0.1.10" +version = "0.1.11" [dependencies] anyhow = "1" @@ -16,8 +16,8 @@ blake3 = "1.2.0" log = "0.4" rand = { version = "0.8.4", features = ["small_rng"] } clap = { version = "3.0", optional = true, features = ['derive'] } -wasm-mutate = { version = "0.2.8", path = "../wasm-mutate" } -wasmparser = { version = "0.91.0", path = "../wasmparser" } +wasm-mutate = { version = "0.2.9", path = "../wasm-mutate" } +wasmparser = { version = "0.92.0", path = "../wasmparser" } [dev-dependencies] env_logger = "0.9" diff --git a/crates/wasm-smith/Cargo.toml b/crates/wasm-smith/Cargo.toml index e9d90265fc..82307c0c71 100644 --- a/crates/wasm-smith/Cargo.toml +++ b/crates/wasm-smith/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception" name = "wasm-smith" readme = "./README.md" repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-smith" -version = "0.11.5" +version = "0.11.6" exclude = ["/benches/corpus"] [[bench]] @@ -21,8 +21,8 @@ flagset = "0.4" indexmap = "1.6" leb128 = "0.2.4" serde = { version = "1", features = ['derive'], optional = true } -wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" } -wasmparser = { version = "0.91.0", path = "../wasmparser" } +wasm-encoder = { version = "0.18.0", path = "../wasm-encoder" } +wasmparser = { version = "0.92.0", path = "../wasmparser" } [dev-dependencies] criterion = "0.3.3" diff --git a/crates/wasmparser/Cargo.toml b/crates/wasmparser/Cargo.toml index 901f7553ce..2c3821edb5 100644 --- a/crates/wasmparser/Cargo.toml +++ b/crates/wasmparser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmparser" -version = "0.91.0" +version = "0.92.0" authors = ["Yury Delendik "] license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser" diff --git a/crates/wasmprinter/Cargo.toml b/crates/wasmprinter/Cargo.toml index 65f8997651..b46ce42490 100644 --- a/crates/wasmprinter/Cargo.toml +++ b/crates/wasmprinter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmprinter" -version = "0.2.40" +version = "0.2.41" authors = ["Alex Crichton "] edition = "2021" license = "Apache-2.0 WITH LLVM-exception" @@ -14,7 +14,7 @@ Rust converter from the WebAssembly binary format to the text format. [dependencies] anyhow = "1.0" -wasmparser = { path = '../wasmparser', version = '0.91.0' } +wasmparser = { path = '../wasmparser', version = '0.92.0' } [dev-dependencies] diff = "0.1" diff --git a/crates/wast/Cargo.toml b/crates/wast/Cargo.toml index 0192a5b78f..e4e94f5654 100644 --- a/crates/wast/Cargo.toml +++ b/crates/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wast" -version = "47.0.0" +version = "47.0.1" authors = ["Alex Crichton "] edition = "2021" license = "Apache-2.0 WITH LLVM-exception" @@ -16,7 +16,7 @@ Customizable Rust parsers for the WebAssembly Text formats WAT and WAST leb128 = "0.2" unicode-width = "0.1.9" memchr = "2.4.1" -wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" } +wasm-encoder = { version = "0.18.0", path = "../wasm-encoder" } [dev-dependencies] anyhow = "1.0"