Go to file
Simonas Kazlauskas 112dc14972 Don't neglect to forget `self` in `close`
Otherwise it leads to a double-free, once in `close` and another time in
`drop`. Curiously this was only a bug on Windows, and Unix code was
fine. Not sure how this happened.
2020-12-03 15:05:35 +02:00
.github/workflows Refresh the actions file 2020-10-10 18:41:24 +03:00
src Don't neglect to forget `self` in `close` 2020-12-03 15:05:35 +02:00
tests Don't neglect to forget `self` in `close` 2020-12-03 15:05:35 +02:00
.gitignore Release preparation tweaks 2016-07-27 17:16:33 +03:00
Cargo.toml Bump to 0.6.5 2020-10-23 17:12:03 +03:00
LICENSE Add license and fill cargo.toml 2015-11-08 14:21:39 +02:00
README.mkd Add categories to Cargo.toml 2020-08-22 20:36:06 +00:00

README.mkd

libloading

Safer bindings 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 available to use under ISC (MIT-like) license.