plux-rs 1.1.2

A modular and performant plugin system for Rust applications, enabling secure and stable extension of functionality through external plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod error;
mod ptr;

pub use error::*;
pub use ptr::*;

/// Archive utilities for plugin packaging.
///
/// This module provides functions for compressing and extracting plugin bundles
/// using ZIP archives. It requires the `archive` feature to be enabled.
#[cfg(feature = "archive")]
pub mod archive;