mirror of
https://github.com/openharmony/third_party_rust_libloading.git
synced 2026-07-21 00:26:36 -04:00
08cfc8f9c0
With these improvements browsing the documentation for os-specific functionality should be possible from any system. In particular UNIX documentation now has information on Windows and the Windows documentation has information on UNIX-specific stuff.
23 lines
595 B
TOML
23 lines
595 B
TOML
[package]
|
||
name = "libloading"
|
||
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/"
|
||
|
||
[target.'cfg(windows)'.dependencies.winapi]
|
||
version = "0.3"
|
||
features = [
|
||
"winerror",
|
||
"errhandlingapi",
|
||
"libloaderapi",
|
||
]
|
||
|
||
[package.metadata.docs.rs]
|
||
all-features = true
|
||
rustdoc-args = ["--cfg", "docsrs"]
|