Update wasmtime (#5822)

* update wasmtime

* update tests

* Update client/executor/wasmtime/src/host.rs

Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com>

* wip

* use master-candidate

* update with patches

* update versions

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
Nikolay Volf
2020-05-04 16:24:05 +03:00
committed by GitHub
parent ccc3f9767c
commit e5163380e7
8 changed files with 199 additions and 169 deletions
@@ -117,7 +117,7 @@ impl<'a> SandboxCapabilities for HostContext<'a> {
return Err("Supervisor function returned unexpected result!".into());
}
}
Err(err) => Err(err.message().to_string().into()),
Err(err) => Err(err.to_string().into()),
}
}
}