Update the wast crate dependency (#3464)

Pulls in a few minor fixes for stack overflows with module linking as
well as some updates to other various wasm proposals.
This commit is contained in:
Alex Crichton
2021-10-20 11:25:52 -05:00
committed by GitHub
parent e2a724ce18
commit fb585fde40
10 changed files with 23 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.19"
wasmtime = { path = "../wasmtime", version = "0.30.0", default-features = false, features = ['cranelift'] }
wast = "37.0.0"
wast = "38.0.0"
[badges]
maintenance = { status = "actively-developed" }

View File

@@ -349,7 +349,7 @@ impl<T> WastContext<T> {
)
}
}
AssertUncaughtException { .. } => bail!("unimplemented assert_uncaught_exception"),
AssertException { .. } => bail!("unimplemented assert_exception"),
}
Ok(())