Skip to content

Commit e074c5d

Browse files
1 parent 877622e commit e074c5d

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ panic="abort"
1111
inherits="release"
1212

1313
[workspace.package]
14-
version="0.5.0"
14+
version="0.6.0"
1515
edition="2021"
1616
license="MIT OR Apache-2.0"
1717
authors=["Henry Gressmann <[email protected]>"]

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.5.0", path="../tinywasm", features=["std", "parser"]}
17+
tinywasm={version="0.6.0", 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository.workspace=true
1111
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
1212
wasmparser={version="0.202.0", package="tinywasm-wasmparser", default-features=false}
1313
log={version="0.4", optional=true}
14-
tinywasm-types={version="0.5.0", path="../types", default-features=false}
14+
tinywasm-types={version="0.6.0", path="../types", default-features=false}
1515

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

crates/tinywasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ path="src/lib.rs"
1414

1515
[dependencies]
1616
_log={version="0.4", optional=true, package="log"}
17-
tinywasm-parser={version="0.5.0", path="../parser", default-features=false, optional=true}
18-
tinywasm-types={version="0.5.0", path="../types", default-features=false}
17+
tinywasm-parser={version="0.6.0", path="../parser", default-features=false, optional=true}
18+
tinywasm-types={version="0.6.0", path="../types", default-features=false}
1919
libm={version="0.2", default-features=false}
2020

2121
[dev-dependencies]

crates/tinywasm/tests/testsuite/run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ impl TestSuite {
291291
)?;
292292
return Ok(());
293293
}
294-
wast::WastExecute::Get { module: _, global: _ } => {
294+
wast::WastExecute::Get { module: _, global: _, .. } => {
295295
panic!("get not supported");
296296
}
297297
wast::WastExecute::Invoke(invoke) => invoke,
@@ -395,7 +395,7 @@ impl TestSuite {
395395

396396
let invoke = match match exec {
397397
wast::WastExecute::Wat(_) => Err(eyre!("wat not supported")),
398-
wast::WastExecute::Get { module: module_id, global } => {
398+
wast::WastExecute::Get { module: module_id, global, .. } => {
399399
let module = registered_modules.get(module_id, &store);
400400
let Some(module) = module else {
401401
test_group.add_result(

crates/tinywasm/tests/testsuite/util.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ trait FloatToken {
155155
}
156156
}
157157
}
158-
impl FloatToken for wast::token::Float32 {
158+
impl FloatToken for wast::token::F32 {
159159
fn bits(&self) -> Bits {
160160
Bits::U32(self.bits)
161161
}
@@ -168,7 +168,7 @@ impl FloatToken for wast::token::Float32 {
168168
WasmValue::F32(f32::NAN)
169169
}
170170
}
171-
impl FloatToken for wast::token::Float64 {
171+
impl FloatToken for wast::token::F64 {
172172
fn bits(&self) -> Bits {
173173
Bits::U64(self.bits)
174174
}

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.2.2"
3+
version="0.3.0"
44
description="Mirror of the WebAssembly core testsuite for use in testing WebAssembly implementations"
55
license="Apache-2.0"
66
readme="README.md"

0 commit comments

Comments
 (0)