Go to file
Simonas Kazlauskas d97c71c1c8 unix: expose with_dlerror to the end users
Useful for those who are using platform-specific openers like
`dlmopen`.
2024-03-01 17:32:17 +00:00
.github/workflows Release 0.8.2 2024-03-01 17:18:10 +00:00
src unix: expose with_dlerror to the end users 2024-03-01 17:32:17 +00:00
tests Replace winapi with windows-sys 2023-04-05 16:22:08 +02:00
.gitignore Release preparation tweaks 2016-07-27 17:16:33 +03:00
Cargo.toml Release 0.8.2 2024-03-01 17:18:10 +00:00
LICENSE Add license and fill cargo.toml 2015-11-08 14:21:39 +02:00
README.mkd Release 0.8.0 2023-04-11 15:54:38 +03:00

README.mkd

libloading

Bindings around the platform's dynamic library loading primitives with greatly improved memory safety. The most important safety guarantee of this library is the prevention of dangling Symbols that may occur after a Library is unloaded.

Using this library allows the loading of dynamic libraries, also known as shared libraries, as well as the use of the functions and static variables that these libraries may contain.

libloading is available to use under ISC (MIT-like) license.