Skip to content

Commit

Permalink
Release 0.0.3
Browse files Browse the repository at this point in the history
tinywasm@0.0.3
tinywasm-cli@0.0.3
tinywasm-parser@0.0.3
tinywasm-types@0.0.3
wasm-testsuite@0.1.0

Generated by cargo-workspaces
  • Loading branch information
explodingcamera committed Dec 10, 2023
1 parent 5315ea9 commit 33ad024
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="tinywasm-cli"
version="0.0.2"
version="0.0.3"
description="TinyWasm CLI"
edition.workspace=true
license.workspace=true
Expand All @@ -14,7 +14,7 @@ path="src/bin.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tinywasm={version="0.0.2", path="../tinywasm", features=["std", "parser"]}
tinywasm={version="0.0.3", path="../tinywasm", features=["std", "parser"]}
argh="0.1"
color-eyre={version="0.6", default-features=false}
log="0.4"
Expand Down
4 changes: 2 additions & 2 deletions crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="tinywasm-parser"
version="0.0.2"
version="0.0.3"
description="TinyWasm parser"
edition.workspace=true
license.workspace=true
Expand All @@ -12,7 +12,7 @@ repository.workspace=true
# TODO: create dependency free parser
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
log={version="0.4", optional=true}
tinywasm-types={version="0.0.2", path="../types"}
tinywasm-types={version="0.0.3", path="../types"}

[features]
default=["std", "logging"]
Expand Down
6 changes: 3 additions & 3 deletions crates/tinywasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="tinywasm"
version="0.0.2"
version="0.0.3"
description="A tiny WebAssembly interpreter"
edition.workspace=true
license.workspace=true
Expand All @@ -14,8 +14,8 @@ path="src/lib.rs"

[dependencies]
log={version="0.4", optional=true}
tinywasm-parser={version="0.0.2", path="../parser", default-features=false, optional=true}
tinywasm-types={version="0.0.2", path="../types", default-features=false}
tinywasm-parser={version="0.0.3", path="../parser", default-features=false, optional=true}
tinywasm-types={version="0.0.3", path="../types", default-features=false}

[features]
default=["std", "parser", "logging"]
Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="tinywasm-types"
version="0.0.2"
version="0.0.3"
description="TinyWasm types"
edition.workspace=true
license.workspace=true
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-testsuite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="wasm-testsuite"
version="0.0.1"
version="0.1.0"
description="Mirror of the WebAssembly core testsuite for use in testing WebAssembly implementations"
edition.workspace=true
license.workspace=true
Expand Down

0 comments on commit 33ad024

Please sign in to comment.