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: 15 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: 2024-07-20T10:39:15.000Z (4 months ago)
- Last Synced: 2024-10-25T06:22:39.445Z (19 days ago)
- Language: Rust
- Homepage: https://docs.rs/libloading
- Size: 276 KB
- Stars: 1,235
- Watchers: 14
- Forks: 102
- 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.