Skip to content

Commit ad47fb7

Browse files
chore: update deps
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
1 parent cd3d91c commit ad47fb7

File tree

5 files changed

+39
-37
lines changed

5 files changed

+39
-37
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [UNRELEASED]
8+
## [Unreleased]
99

1010
### Changed
1111

12+
- Increased MSRV to 1.80.0
1213
- Improved support for WebAssembly 2.0 features
1314
- Simplify and optimize the interpreter loop
1415
- Use a seperate stack and locals for 32, 64 and 128 bit values and references (#21)

Cargo.lock

+33-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default-members=[".", "crates/tinywasm", "crates/types", "crates/parser"]
44
resolver="2"
55

66
[workspace.dependencies]
7-
wast="214"
7+
wast="215"
88
wat="1.212"
99
eyre="0.6"
1010
log="0.4"
@@ -13,7 +13,7 @@ criterion={version="0.5", default-features=false, features=["cargo_bench_support
1313

1414
[workspace.package]
1515
version="0.8.0-alpha.0"
16-
rust-version="1.79"
16+
rust-version="1.80"
1717
edition="2021"
1818
license="MIT OR Apache-2.0"
1919
authors=["Henry Gressmann <mail@henrygressmann.de>"]

crates/parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.workspace=true
99
rust-version.workspace=true
1010

1111
[dependencies]
12-
wasmparser={version="0.214", default-features=false, features=["validate"]}
12+
wasmparser={version="0.215", default-features=false, features=["validate"]}
1313
log={workspace=true, optional=true}
1414
tinywasm-types={version="0.8.0-alpha.0", path="../types", default-features=false}
1515

crates/tinywasm/tests/testsuite/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use tinywasm_types::{ModuleInstanceAddr, TinyWasmModule, ValType, WasmValue};
55
use wast::{core::AbstractHeapType, QuoteWat};
66

77
pub fn try_downcast_panic(panic: Box<dyn std::any::Any + Send>) -> String {
8-
let info = panic.downcast_ref::<panic::PanicInfo>().or(None).map(|p| p.to_string()).clone();
8+
let info = panic.downcast_ref::<panic::PanicHookInfo>().or(None).map(|p| p.to_string()).clone();
99
let info_string = panic.downcast_ref::<String>().cloned();
1010
let info_str = panic.downcast::<&str>().ok().map(|s| *s);
1111

0 commit comments

Comments
 (0)