Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 03-May-2024 | - | 165 | 155 | ||
src/ | 03-May-2024 | - | 2,107 | 907 | ||
tests/ | 03-May-2024 | - | 451 | 365 | ||
.cargo_vcs_info.json | D | 03-May-2024 | 74 | 6 | 5 | |
.gitignore | D | 03-May-2024 | 22 | 4 | 3 | |
Android.bp | D | 03-May-2024 | 689 | 32 | 27 | |
Cargo.toml | D | 03-May-2024 | 1.2 KiB | 37 | 34 | |
Cargo.toml.orig | D | 03-May-2024 | 875 | 33 | 28 | |
LICENSE | D | 03-May-2024 | 736 | 13 | 10 | |
METADATA | D | 03-May-2024 | 411 | 20 | 19 | |
MODULE_LICENSE_ISC | D | 03-May-2024 | 0 | |||
OWNERS | D | 03-May-2024 | 40 | 2 | 1 | |
README.mkd | D | 03-May-2024 | 593 | 17 | 11 | |
TEST_MAPPING | D | 03-May-2024 | 207 | 12 | 11 |
README.mkd
1# libloading 2 3Safer bindings around system dynamic library loading primitives. The most important safety 4guarantee by this library is prevention of dangling-`Symbol`s that may occur after a `Library` is 5unloaded. 6 7Using this library allows loading dynamic libraries (also known as shared libraries) as well as use 8functions 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 16libloading is available to use under ISC (MIT-like) license. 17