warpgate_pdk 0.18.2

Reusable WASM macros and functions for plugin developer kits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Reusable WASM macros and functions for plugin developer kits (PDKs).

mod api;
mod funcs;
mod macros;
mod path_ext;
#[cfg(feature = "tracing")]
mod tracing;

pub use api::*;
pub use funcs::*;
pub use path_ext::*;
#[cfg(feature = "tracing")]
pub use tracing::*;
pub use warpgate_api::*;