https://github.com/nagisa/rust_libloading
Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.
https://github.com/nagisa/rust_libloading
Last synced: about 2 months ago
JSON representation
Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.
- Host: GitHub
- URL: https://github.com/nagisa/rust_libloading
- Owner: nagisa
- License: isc
- Created: 2015-11-07T19:31:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-05-10T21:58:41.000Z (about 2 months ago)
- Last Synced: 2025-05-11T03:47:02.204Z (about 2 months ago)
- Language: Rust
- Homepage: https://docs.rs/libloading
- Size: 292 KB
- Stars: 1,313
- Watchers: 12
- Forks: 110
- Open Issues: 17
-
Metadata Files:
- Readme: README.mkd
- License: LICENSE
Awesome Lists containing this project
README
# libloading
Bindings 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.Using 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.* [Documentation][docs]
* [Changelog][changelog][docs]: https://docs.rs/libloading/
[changelog]: https://docs.rs/libloading/*/libloading/changelog/index.htmllibloading is available to use under ISC (MIT-like) license.