]> git.proxmox.com Git - rustc.git/blob - vendor/libloading/README.mkd
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / vendor / libloading / README.mkd
1 # libloading
2
3 Safer bindings around system dynamic library loading primitives. The most important safety
4 guarantee by this library is prevention of dangling-`Symbol`s that may occur after a `Library` is
5 unloaded.
6
7 Using this library allows loading dynamic libraries (also known as shared libraries) as well as use
8 functions 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
16 libloading is available to use under ISC (MIT-like) license.