Helper crate for writing evenframe WASM plugins.
Supports three plugin types:
- Mock data plugins (
define_mock_data_plugin!): Generate mock data for individual fields. - Output rule plugins (
define_output_rule_plugin!): Provide convention-based annotations, permissions, events, derives, and field-level rules for existing structs. - Synthetic item plugins (
define_synthetic_item_plugin!): Emit new structs, tagged unions, and DB tables derived from the scanner results.
Eliminates all WASM boilerplate (alloc, dealloc, JSON serialization, pointer packing) so you only write your generation logic.