Update all dependencies to latest versions

wasmtime 31→43, wasm-encoder/wasmparser 0.228→0.246, rustyline 15→18.

API migrations: F64Const now takes Ieee64 wrapper, wasmtime has own
Error type (wasmtime::bail! in host closures), cache_config_load_default
removed. Add performance regression limits to benchmark tests.
This commit is contained in:
2026-04-12 18:36:48 +02:00
parent 22a4372c45
commit d24fa59e43
7 changed files with 558 additions and 496 deletions
+3 -3
View File
@@ -21,7 +21,7 @@ struct RunnerHost {}
fn make_engine() -> anyhow::Result<Engine> {
let mut config = wasmtime::Config::new();
config.cranelift_nan_canonicalization(false);
Engine::new(&config)
Ok(Engine::new(&config)?)
}
/// Execute a pre-compiled `.wasm` module from a file path.
@@ -336,7 +336,7 @@ fn create_host_func(
((hi << 32) | lo, divisor)
};
if divisor == 0 {
anyhow::bail!("division by zero");
wasmtime::bail!("division by zero");
}
let quot = (dividend / divisor) as u32;
let rem = (dividend % divisor) as u32;
@@ -368,7 +368,7 @@ fn create_host_func(
// Unimplemented host function: trap with a clear message.
let name_owned = name.to_string();
Func::new(store, void_type, move |_caller, _params, _results| {
anyhow::bail!("host function '{name_owned}' is not available in standalone mode")
wasmtime::bail!("host function '{name_owned}' is not available in standalone mode")
})
}
}