diff --git a/Cargo.lock b/Cargo.lock index 70df919..25719b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -662,7 +662,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tinywasm" -version = "0.0.2" +version = "0.0.3" dependencies = [ "log", "tinywasm-parser", @@ -671,7 +671,7 @@ dependencies = [ [[package]] name = "tinywasm-cli" -version = "0.0.2" +version = "0.0.3" dependencies = [ "argh", "color-eyre", @@ -683,7 +683,7 @@ dependencies = [ [[package]] name = "tinywasm-parser" -version = "0.0.2" +version = "0.0.3" dependencies = [ "log", "tinywasm-types", @@ -692,7 +692,7 @@ dependencies = [ [[package]] name = "tinywasm-types" -version = "0.0.2" +version = "0.0.3" dependencies = [ "log", "rkyv", @@ -755,7 +755,7 @@ dependencies = [ [[package]] name = "wasm-testsuite" -version = "0.0.1" +version = "0.1.0" dependencies = [ "rust-embed", ] 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