polyplug_native 0.1.1

Native loader for polyplug - loads C ABI plugins (.so/.dll/.dylib)
1
2
3
4
5
6
7
8
//! polyplug_native: Native (shared library) plugin loader for the polyplug runtime.

pub mod config;
pub mod ffi;
pub mod loader;

pub use config::NativeConfig;
pub use loader::NativeLoader;