blob: 84d1755f1db975a657bf39f3ad2e90d6881255e8 [file] [log] [blame]
[package]
name = "libloading"
# When bumping
# * Don’t forget to add an entry to `src/changelog.rs`
# * If bumping to an incompatible version, adjust the documentation in `src/lib.rs`
version = "0.8.1"
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
license = "ISC"
repository = "https://github.com/nagisa/rust_libloading/"
documentation = "https://docs.rs/libloading/"
readme = "README.mkd"
description = "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety."
keywords = ["dlopen", "load", "shared", "dylib"]
categories = ["api-bindings"]
rust-version = "1.48.0"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.48"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
]
[target.'cfg(unix)'.dependencies.cfg-if]
version = "1"
[dev-dependencies]
libc = "0.2"
static_assertions = "1.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "libloading_docs"]