blob: 66abb30b6ee10430fd65ae1dd171027168dbc996 [file] [log] [blame]
Chih-Hung Hsieh101fe0a2020-04-16 10:44:22 -07001# libloading
2
David LeGarefaeb5c92022-03-02 16:20:16 +00003Bindings 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 `Symbol`s that may occur after a `Library` is unloaded.
Chih-Hung Hsieh101fe0a2020-04-16 10:44:22 -07004
David LeGarefaeb5c92022-03-02 16:20:16 +00005Using 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.
Chih-Hung Hsieh101fe0a2020-04-16 10:44:22 -07006
7* [Documentation][docs]
8* [Changelog][changelog]
9
10[docs]: https://docs.rs/libloading/
11[changelog]: https://docs.rs/libloading/*/libloading/changelog/index.html
12
Haibo Huang32890e12020-08-24 14:31:44 -070013libloading is available to use under ISC (MIT-like) license.