dpp-plugin-sdk
Guest-side SDK and ABI export macro for Odal Node Wasm sector plugins. This crate
provides the glue and helper utilities that make writing a Wasm sector plugin
straightforward: a single export_plugin! macro generates the linear-memory
ABI (alloc/dealloc) and the standard exports (metadata, describe,
validate, calculate_metrics, generate_passport).
When to use this crate
- You are authoring a Wasm sector plugin and want the standard host/guest ABI wiring without hand-rolling alloc/dealloc and JSON packing.
- You need the helper functions that serialise/deserialise the
Plugin*types defined indpp-plugin-traitsand want to reuse the samedpp_rulesimplementation as the host.
Example
use ;
;
export_plugin!;
Relationship to other crates
| Crate | Role |
|---|---|
dpp-plugin-traits |
Defines the host/guest contract (PluginMeta, PluginCapabilities, DppSectorPlugin) |
dpp-rules |
Re-exported rule implementations so plugins share the same rules engine as the host |
Minimum Rust version
1.96 (MSRV is enforced in CI)
License
Apache-2.0 — see LICENSE