pluggable 0.1.0

A comprehensive, async plugin system for Rust applications with dependency management and security
Documentation
//! Core plugin system components

pub mod config;
pub mod config_loader;
pub mod discovery;
#[cfg(test)]
pub mod discovery_integration_tests;
pub mod error;
pub mod events;
pub mod executor;
#[cfg(test)]
pub mod executor_hooks_tests;
pub mod plugin;
pub mod registry;
pub mod sandbox;
pub mod security;
pub mod testing;
pub mod testing_bench;
pub mod testing_integration;

pub use config::*;
pub use config_loader::*;
pub use discovery::*;
pub use error::*;
pub use events::*;
pub use executor::*;
pub use plugin::*;
pub use registry::*;
pub use sandbox::{Sandbox, SandboxManager}; // Avoid conflict with config::SandboxConfig
pub use security::*;
pub use testing::*;