gecko-dev/third_party/rust/libloading
2017-10-24 17:55:24 +00:00
..
src
tests
.cargo-checksum.json No bug - Revendor rust dependencies 2017-10-24 17:55:24 +00:00
.travis.yml
appveyor.yml
build.rs
Cargo.toml
LICENSE
README.mkd

libloading Travis CI Appveyor CI

A memory-safer wrapper around system dynamic library loading primitives. The most important safety guarantee by this library is prevention of dangling-Symbols that may occur after a Library is unloaded.

Using this library allows loading dynamic libraries (also known as shared libraries) as well as use functions and static variables these libraries contain.

libloading is distributed under ISC (MIT-like) license.


Note, that this library is not a drop-in replacement for the deprecated dynamic_lib. Many dubious APIs (notably, library search path modification) were prunned and string arguments take types that match conventions and system APIs better.