plux_rs/utils/mod.rs
1mod error;
2mod ptr;
3
4pub use error::*;
5pub use ptr::*;
6
7/// Archive utilities for plugin packaging.
8///
9/// This module provides functions for compressing and extracting plugin bundles
10/// using ZIP archives. It requires the `archive` feature to be enabled.
11#[cfg(feature = "archive")]
12pub mod archive;