Bump versions: Wasmtime to 0.26.0, Cranelift to 0.73.0.

This commit is contained in:
Chris Fallin
2021-04-05 10:27:01 -07:00
parent ae19bd5daf
commit 6bec13da04
55 changed files with 257 additions and 258 deletions

View File

@@ -19,10 +19,9 @@ fn test_version_mismatch() -> Result<()> {
match Module::new(&engine, &buffer) {
Ok(_) => bail!("expected deserialization to fail"),
Err(e) => assert_eq!(
e.to_string(),
"Module was compiled with incompatible Wasmtime version 'x.25.0'"
),
Err(e) => assert!(e
.to_string()
.starts_with("Module was compiled with incompatible Wasmtime version")),
}
Ok(())