1# libloading 2 3Safer bindings around system dynamic library loading primitives. The most important safety 4guarantee by this library is prevention of dangling-`Symbol`s that may occur after a `Library` is 5unloaded. 6 7Using this library allows loading dynamic libraries (also known as shared libraries) as well as use 8functions and static variables these libraries 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