/wasmtime_serde

Simple library for serializing complex types to the wasmtime runtime using serde

Primary LanguageRustThe UnlicenseUnlicense

wasmtime serde

Simple library for serializing complex types to the wasmtime runtime using serde

using

// guest
use wasmtime_serde_guest::*;

#[export_fn]
fn add(a: i32, b: i32) -> i32 {
    a + b
}

// host
use wasmtime_serde_host::*;

fn main(){
    let runtime = Runtime::from_file("file.wasm", &[]).unwrap();
    let add_fn = runtime.get_func::<(i32, i32), i32>("add").unwrap();
    let result = add_fn.call(&(1, 2));
    println!("{result}");
}

See the example code

Dual-licensed under MIT or the UNLICENSE.