Skip to content
This repository was archived by the owner on Oct 3, 2025. It is now read-only.

Commit 33ad024

Browse files
Release 0.0.3
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
1 parent 5315ea9 commit 33ad024

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="tinywasm-cli"
3-
version="0.0.2"
3+
version="0.0.3"
44
description="TinyWasm CLI"
55
edition.workspace=true
66
license.workspace=true
@@ -14,7 +14,7 @@ path="src/bin.rs"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
tinywasm={version="0.0.2", path="../tinywasm", features=["std", "parser"]}
17+
tinywasm={version="0.0.3", path="../tinywasm", features=["std", "parser"]}
1818
argh="0.1"
1919
color-eyre={version="0.6", default-features=false}
2020
log="0.4"

crates/parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="tinywasm-parser"
3-
version="0.0.2"
3+
version="0.0.3"
44
description="TinyWasm parser"
55
edition.workspace=true
66
license.workspace=true
@@ -12,7 +12,7 @@ repository.workspace=true
1212
# TODO: create dependency free parser
1313
wasmparser={version="0.100", package="wasmparser-nostd", default-features=false}
1414
log={version="0.4", optional=true}
15-
tinywasm-types={version="0.0.2", path="../types"}
15+
tinywasm-types={version="0.0.3", path="../types"}
1616

1717
[features]
1818
default=["std", "logging"]

crates/tinywasm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="tinywasm"
3-
version="0.0.2"
3+
version="0.0.3"
44
description="A tiny WebAssembly interpreter"
55
edition.workspace=true
66
license.workspace=true
@@ -14,8 +14,8 @@ path="src/lib.rs"
1414

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

2020
[features]
2121
default=["std", "parser", "logging"]

crates/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="tinywasm-types"
3-
version="0.0.2"
3+
version="0.0.3"
44
description="TinyWasm types"
55
edition.workspace=true
66
license.workspace=true

crates/wasm-testsuite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="wasm-testsuite"
3-
version="0.0.1"
3+
version="0.1.0"
44
description="Mirror of the WebAssembly core testsuite for use in testing WebAssembly implementations"
55
edition.workspace=true
66
license.workspace=true

0 commit comments

Comments
 (0)