rustledger-plugin 0.14.0

Beancount plugin system with 20 native plugins and WASM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Plugin interface types.
//!
//! These types define the contract between the plugin host and plugins.
//! They are serialized via `MessagePack` across the WASM boundary.
//!
//! This module re-exports types from [`rustledger_plugin_types`], which can
//! also be used directly by WASM plugins. Using the types crate directly
//! allows plugins to avoid pulling in the full `rustledger-plugin` dependency.

// Re-export all types from the plugin-types crate
pub use rustledger_plugin_types::*;