Files
third_party_rust_libloading/Cargo.toml
T
Simonas Kazlauskas 08cfc8f9c0 Significantly improve documentation
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.
2020-08-22 19:53:18 +00:00

23 lines
595 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[package]
name = "libloading"
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/"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"winerror",
"errhandlingapi",
"libloaderapi",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]