Add categories to Cargo.toml

This commit is contained in:
Simonas Kazlauskas
2020-08-22 23:14:53 +03:00
committed by Simonas Kazlauskas
parent bc1642a4c2
commit 55b466d91f
2 changed files with 10 additions and 5 deletions
+8 -3
View File
@@ -1,13 +1,18 @@
[package]
name = "libloading"
# When bumping
# * Dont 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 <libloading@kazlauskas.me>"]
build = "build.rs"
description = "A safer binding to platforms 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 platforms dynamic library loading utilities"
keywords = ["dlopen", "load", "shared", "dylib"]
categories = ["api-bindings"]
build = "build.rs"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
+2 -2
View File
@@ -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.