README.mkd
1# libloading
2
3Bindings around the platform's dynamic library loading primitives with greatly improved memory
4safety. The most important safety guarantee of this library is the prevention of dangling `Symbol`s
5that may occur after a `Library` is unloaded.
6
7Using this library allows the loading of dynamic libraries, also known as shared libraries, as well
8as the use of the functions and static variables that these libraries may contain.
9
10* [Documentation][docs]
11* [Changelog][changelog]
12
13[docs]: https://docs.rs/libloading/
14[changelog]: https://docs.rs/libloading/*/libloading/changelog/index.html
15
16libloading is available to use under ISC (MIT-like) license.
17