diff --git a/Cargo.toml b/Cargo.toml index fae39d3..7d0854c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,18 @@ [package] name = "libloading" +# When bumping +# * Don’t forget to add an entry to `src/changelog.rs` +# * If bumping a incompatible version, adjust documentation in `src/lib.rs` version = "0.6.2" authors = ["Simonas Kazlauskas "] -build = "build.rs" -description = "A safer binding to platform’s dynamic library loading utilities" -keywords = ["dlopen", "load", "shared", "dylib"] license = "ISC" repository = "https://github.com/nagisa/rust_libloading/" documentation = "https://docs.rs/libloading/" +readme = "README.mkd" +description = "A safer binding to platform’s dynamic library loading utilities" +keywords = ["dlopen", "load", "shared", "dylib"] +categories = ["api-bindings"] +build = "build.rs" [target.'cfg(windows)'.dependencies.winapi] version = "0.3" diff --git a/README.mkd b/README.mkd index 006f172..8f7d342 100644 --- a/README.mkd +++ b/README.mkd @@ -1,6 +1,6 @@ # libloading -A memory-safer wrapper around system dynamic library loading primitives. The most important safety +Safer bindings around system dynamic library loading primitives. The most important safety guarantee by this library is prevention of dangling-`Symbol`s that may occur after a `Library` is unloaded. @@ -13,4 +13,4 @@ functions and static variables these libraries contain. [docs]: https://docs.rs/libloading/ [changelog]: https://docs.rs/libloading/*/libloading/changelog/index.html -libloading is distributed under ISC (MIT-like) license. +libloading is available to use under ISC (MIT-like) license.