summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2023-12-10 14:23:31 +0100
committerHenry Gressmann <mail@henrygressmann.de>2023-12-10 14:23:31 +0100
commit33ad02454b58a988c45552a9fe94c76f2f9427b9 (patch)
tree04a14bdddd5125dda58df4f32203d8505fe49408 /crates
parent5315ea932697da4bf6fa814576e1823233063a95 (diff)
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
Diffstat (limited to 'crates')
-rw-r--r--crates/cli/Cargo.toml4
-rw-r--r--crates/parser/Cargo.toml4
-rw-r--r--crates/tinywasm/Cargo.toml6
-rw-r--r--crates/types/Cargo.toml2
-rw-r--r--crates/wasm-testsuite/Cargo.toml2
5 files changed, 9 insertions, 9 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index 8c4ec47..0ac9559 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -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
@@ -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"
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 3c59fbf..28c2675 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -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
@@ -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"]
diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml
index 28ec5f5..77c6c9a 100644
--- a/crates/tinywasm/Cargo.toml
+++ b/crates/tinywasm/Cargo.toml
@@ -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
@@ -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"]
diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml
index e775f7e..3e4ed15 100644
--- a/crates/types/Cargo.toml
+++ b/crates/types/Cargo.toml
@@ -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
diff --git a/crates/wasm-testsuite/Cargo.toml b/crates/wasm-testsuite/Cargo.toml
index 1145b3c..68f2355 100644
--- a/crates/wasm-testsuite/Cargo.toml
+++ b/crates/wasm-testsuite/Cargo.toml
@@ -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