diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-03-01 16:07:53 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-03-01 16:07:53 +0100 |
| commit | d2b6c53b5d0134a609f6d3dfd8225d5e9d2ed3c4 (patch) | |
| tree | 066a478e059651c14f7260e9044f338a0d827aa1 | |
| parent | 1f5d583470a30fdfc3f8327f624a613191c7cf95 (diff) | |
Release 0.5.0
tinywasm@0.5.0
tinywasm-cli@0.5.0
tinywasm-parser@0.5.0
tinywasm-types@0.5.0
wasm-testsuite@0.2.2
Generated by cargo-workspaces
| -rw-r--r-- | Cargo.lock | 10 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/cli/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/parser/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/tinywasm/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/wasm-testsuite/Cargo.toml | 2 |
6 files changed, 12 insertions, 12 deletions
@@ -2062,7 +2062,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tinywasm" -version = "0.4.1" +version = "0.5.0" dependencies = [ "eyre", "libm", @@ -2080,7 +2080,7 @@ dependencies = [ [[package]] name = "tinywasm-cli" -version = "0.4.1" +version = "0.5.0" dependencies = [ "argh", "color-eyre", @@ -2092,7 +2092,7 @@ dependencies = [ [[package]] name = "tinywasm-parser" -version = "0.4.1" +version = "0.5.0" dependencies = [ "log", "tinywasm-types", @@ -2111,7 +2111,7 @@ dependencies = [ [[package]] name = "tinywasm-types" -version = "0.4.1" +version = "0.5.0" dependencies = [ "bytecheck 0.7.0", "log", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "wasm-testsuite" -version = "0.2.1" +version = "0.2.2" dependencies = [ "rust-embed", ] @@ -11,7 +11,7 @@ panic="abort" inherits="release" [workspace.package] -version="0.4.1" +version="0.5.0" edition="2021" license="MIT OR Apache-2.0" authors=["Henry Gressmann <mail@henrygressmann.de>"] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 78d0b90..f6105c8 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -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.4.0", path="../tinywasm", features=["std", "parser"]} +tinywasm={version="0.5.0", 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 3c5717d..b21c0ac 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -11,10 +11,10 @@ repository.workspace=true # fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495 wasmparser={version="0.200.3", package="tinywasm-wasmparser", default-features=false} log={version="0.4", optional=true} -tinywasm-types={version="0.4.0", path="../types", default-features=false} +tinywasm-types={version="0.5.0", path="../types", default-features=false} [features] default=["std", "logging"] logging=["log"] std=["tinywasm-types/std"] -
\ No newline at end of file + diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml index 01502bb..406a82d 100644 --- a/crates/tinywasm/Cargo.toml +++ b/crates/tinywasm/Cargo.toml @@ -14,8 +14,8 @@ path="src/lib.rs" [dependencies] log={version="0.4", optional=true} -tinywasm-parser={version="0.4.0", path="../parser", default-features=false, optional=true} -tinywasm-types={version="0.4.0", path="../types", default-features=false} +tinywasm-parser={version="0.5.0", path="../parser", default-features=false, optional=true} +tinywasm-types={version="0.5.0", path="../types", default-features=false} libm={version="0.2", default-features=false} [dev-dependencies] diff --git a/crates/wasm-testsuite/Cargo.toml b/crates/wasm-testsuite/Cargo.toml index 04f478c..97c1f58 100644 --- a/crates/wasm-testsuite/Cargo.toml +++ b/crates/wasm-testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name="wasm-testsuite" -version="0.2.1" +version="0.2.2" description="Mirror of the WebAssembly core testsuite for use in testing WebAssembly implementations" license="Apache-2.0" readme="README.md" |
