Skip to content

Commit 1599ef5

Browse files
committed
Update zwasm to v0.13.0, handle v128 enum variant
1 parent ae4fdd2 commit 1599ef5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
.version = "0.0.1",
44
.dependencies = .{
55
.zwasm = .{
6-
.url = "https://github.com/clojurewasm/zwasm/archive/v0.11.0.tar.gz",
7-
.hash = "zwasm-0.1.0-IBbzFywwEgDOKsu6xvDSvLOrCvdEgV3LWf39rmzu-9Dj",
6+
.url = "https://github.com/clojurewasm/zwasm/archive/v0.13.0.tar.gz",
7+
.hash = "zwasm-0.13.0-IBbzF8L-EgB4fPwjo68wnbaZAm_ByVSU6aEKGlcbQOD5",
88
},
99
},
1010
.fingerprint = 0x62a7be489d633543,

src/wasm/types.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub const WasmValType = enum {
4040
.i64 => .i64,
4141
.f32 => .f32,
4242
.f64 => .f64,
43-
.funcref, .externref => null,
43+
.v128, .funcref, .externref => null,
4444
};
4545
}
4646
};

0 commit comments

Comments
 (0)