Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump crate versions #616

Merged
merged 2 commits into from May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.4"
version = "1.0.5"
authors = ["The Wasmtime Project Developers"]
edition = "2021"
description = "CLI tools for interoperating with WebAssembly files"
Expand All @@ -22,30 +22,30 @@ env_logger = "0.9"
log = "0.4"
clap = { version = "3.1.8", features = ['derive'] }
tempfile = "3.2.0"
wat = { path = "crates/wat", version = '1.0.42' }
wat = { path = "crates/wat", version = '1.0.43' }

# Dependencies of `validate`
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.84.0' }
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.85.0' }
rayon = { version = "1.0", optional = true }

# Dependencies of `print`
wasmprinter = { path = "crates/wasmprinter", version = '0.2.34' }
wasmprinter = { path = "crates/wasmprinter", version = '0.2.35' }

# 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.10.0' }
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.10.1' }

# Dependencies of `shrink`
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.4' }
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.5' }
is_executable = { version = "1.0.1", optional = true }

# Dependencies of `mutate`
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.2' }
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.3' }

# Dependencies of `dump`
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.2' }
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.3' }

[dev-dependencies]
anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/dump/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmparser-dump"
version = "0.1.2"
version = "0.1.3"
authors = ["The Wasmtime Project Developers"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -9,4 +9,4 @@ description = "Utility to dump debug information about the wasm binary format"

[dependencies]
anyhow = "1"
wasmparser = { path = "../wasmparser", version = "0.84.0" }
wasmparser = { path = "../wasmparser", version = "0.85.0" }
2 changes: 1 addition & 1 deletion crates/wasm-encoder/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-encoder"
version = "0.11.0"
version = "0.12.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-mutate/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-mutate"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate"
Expand All @@ -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.84.0", path = "../wasmparser" }
wasm-encoder = { version = "0.11.0", path = "../wasm-encoder"}
wasmparser = { version = "0.85.0", path = "../wasmparser" }
wasm-encoder = { version = "0.12.0", path = "../wasm-encoder"}
rand = { version = "0.8.0", features = ["small_rng"] }
log = "0.4.14"
egg = "0.6.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-shrink/Cargo.toml
Expand Up @@ -8,16 +8,16 @@ 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.4"
version = "0.1.5"

[dependencies]
anyhow = "1"
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.2", path = "../wasm-mutate" }
wasmparser = { version = "0.84.0", path = "../wasmparser" }
wasm-mutate = { version = "0.2.3", path = "../wasm-mutate" }
wasmparser = { version = "0.85.0", path = "../wasmparser" }

[dev-dependencies]
env_logger = "0.9"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-smith/Cargo.toml
Expand Up @@ -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.10.0"
version = "0.10.1"
exclude = ["/benches/corpus"]

[[bench]]
Expand All @@ -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.11.0", path = "../wasm-encoder" }
wasmparser = { version = "0.84", path = "../wasmparser" }
wasm-encoder = { version = "0.12.0", path = "../wasm-encoder" }
wasmparser = { version = "0.85.0", path = "../wasmparser" }

[dev-dependencies]
criterion = "0.3.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmparser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmparser"
version = "0.84.0"
version = "0.85.0"
authors = ["Yury Delendik <ydelendik@mozilla.com>"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"
Expand Down
4 changes: 2 additions & 2 deletions crates/wasmprinter/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmprinter"
version = "0.2.34"
version = "0.2.35"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -14,7 +14,7 @@ Rust converter from the WebAssembly binary format to the text format.

[dependencies]
anyhow = "1.0"
wasmparser = { path = '../wasmparser', version = '0.84.0' }
wasmparser = { path = '../wasmparser', version = '0.85.0' }

[dev-dependencies]
diff = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/wast/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wast"
version = "40.0.0"
version = "41.0.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wast/src/component/component.rs
Expand Up @@ -211,7 +211,7 @@ impl<'a> Parse<'a> for Start<'a> {
parser.parse::<kw::start>()?;
let func = parser.parse::<IndexOrRef<_>>()?.0;
let mut args = Vec::new();
while !parser.peek2::<kw::result>() {
while !parser.is_empty() && !parser.peek2::<kw::result>() {
args.push(parser.parse()?);
}
let result = if !parser.is_empty() {
Expand Down
4 changes: 2 additions & 2 deletions crates/wat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wat"
version = "1.0.42"
version = "1.0.43"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -13,4 +13,4 @@ Rust parser for the WebAssembly Text format, WAT
"""

[dependencies]
wast = { path = '../wast', version = '40.0.0' }
wast = { path = '../wast', version = '41.0.0' }