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

..30-Mar-2022-

src/H30-Mar-2022-1,245635

tests/H03-May-2022-289238

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.tomlH A D30-Mar-20221 KiB2826

LICENSEH A D30-Mar-2022736 1310

README.mkdH A D30-Mar-2022928 2215

appveyor.ymlH A D30-Mar-2022644 2019

build.rsH A D30-Mar-20221.2 KiB3326

README.mkd

1# libloading [![Travis CI][tcii]][tci] [![Appveyor CI][acii]][aci]
2
3[tcii]: https://travis-ci.org/nagisa/rust_libloading.svg?branch=master
4[tci]: https://travis-ci.org/nagisa/rust_libloading
5[acii]: https://ci.appveyor.com/api/projects/status/cnncnu58qcxb1ikf/branch/master?svg=true
6[aci]: https://ci.appveyor.com/project/nagisa/rust-libloading
7
8A memory-safer wrapper around system dynamic library loading primitives. The most important safety
9guarantee by this library is prevention of dangling-`Symbol`s that may occur after a `Library` is
10unloaded.
11
12Using this library allows loading dynamic libraries (also known as shared libraries) as well as use
13functions and static variables these libraries contain.
14
15* [Documentation][docs]
16* [Changelog][changelog]
17
18[docs]: https://docs.rs/libloading/
19[changelog]: https://docs.rs/libloading/*/libloading/changelog/index.html
20
21libloading is distributed under ISC (MIT-like) license.
22