dl_api 0.3.1

The easiest, simplest and safest way to load dynamic (shared object) libraries from Rust!
Documentation
1
2
3
4
5
6
7
mod common;
#[cfg(unix)]
mod unix;
#[cfg(windows)]
mod windows;

pub use self::common::Library;