wasm-component-trampoline 40.0.0

A library for linking WASM components together using host trampoline functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg(not(target_family = "wasm"))]

mod filter;
mod graph;
mod path;
mod trampoline;

pub use filter::*;
pub use graph::*;
pub use path::*;
pub use trampoline::*;