Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-13T23:20:16.000Z (19 days ago)
- Last Synced: 2025-01-21T03:02:39.692Z (11 days ago)
- Language: Rust
- Homepage: https://docs.rs/libloading
- Size: 282 KB
- Stars: 1,275
- Watchers: 13
- Forks: 107
- Open Issues: 19
-
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.