Kroeg93 opened issue #3445:
Hi there,
is there any possibility to run .cwasm files in a rust embedding?
Currently i'm storing a .wat file within a buffer and use it as input for
Engine::precompile_modulelet buffer = fs::read("./wasm/add.wat")?; let precompiled_file = engine.precompile_module(&buffer)?;Afterwards the buffer is stored to a .cwasm file.
fn save_precompiled_file(buffer: &[u8]) -> std::io::Result<()> { let mut precompiled_module = File::create("add.cwasm")?; precompiled_module.write_all(&buffer)?; Ok(()) }Is there any function to load the module from the .cwasm file? Or does this work differently?
Thanks :-)
Last updated: Dec 06 2025 at 06:05 UTC