nemo-plugin-api
Stable API interface for Nemo native plugins. This crate defines the boundary between the Nemo host and dynamically loaded plugin libraries.
Overview
Plugins are compiled as cdylib crates that export two symbols via the
[declare_plugin!] macro:
nemo_plugin_manifest— returns aPluginManifestdescribing the pluginnemo_plugin_entry— called with aPluginRegistrarto register components, data sources, transforms, actions, and templates
Quick Start
use *;
use Version;
declare_plugin!;
For a higher-level builder API, see nemo-plugin.
License
MIT OR Apache-2.0