• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

src/25-Apr-2025-2,235940

tests/25-Apr-2025-478392

.cargo-checksum.jsonD25-Apr-20251.8 KiB11

Android.bpD25-Apr-2025838 3228

Cargo.tomlD25-Apr-20251.4 KiB5244

LICENSED25-Apr-2025736 1310

METADATAD25-Apr-2025450 1817

MODULE_LICENSE_ISCD25-Apr-20250

README.mkdD25-Apr-2025662 1711

TEST_MAPPINGD25-Apr-2025342 2019

cargo_embargo.jsonD25-Apr-2025108 87

README.mkd

1# libloading
2
3Bindings around the platform's dynamic library loading primitives with greatly improved memory
4safety. The most important safety guarantee of this library is the prevention of dangling `Symbol`s
5that may occur after a `Library` is unloaded.
6
7Using this library allows the loading of dynamic libraries, also known as shared libraries, as well
8as the use of the functions and static variables that these libraries may 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
16libloading is available to use under ISC (MIT-like) license.
17