mirror of
https://github.com/openharmony/third_party_rust_libloading.git
synced 2026-07-19 21:23:39 -04:00
Add categories to Cargo.toml
This commit is contained in:
committed by
Simonas Kazlauskas
parent
bc1642a4c2
commit
55b466d91f
+8
-3
@@ -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 <libloading@kazlauskas.me>"]
|
||||
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"
|
||||
|
||||
+2
-2
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user