Update wast to 7.0.0, fix stack overflow (#897)

This updates the `wast` dependency to include bytecodealliance/wat#48
which fixes a stack overflow for deeply recursive `*.wat` files.
This commit is contained in:
Alex Crichton
2020-02-04 08:14:16 -06:00
committed by GitHub
parent 6559ea5ce6
commit 70f179b499
3 changed files with 7 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.19"
wasmtime = { path = "../api", version = "0.9.0" }
wast = "6.0.0"
wast = "7.0.0"
[badges]
maintenance = { status = "actively-developed" }

View File

@@ -339,7 +339,6 @@ impl WastContext {
)
}
}
AssertReturnFunc { .. } => bail!("need to implement assert_return_func"),
}
Ok(())