1[package]
2name = "libloading"
3# When bumping
4# * Don’t forget to add an entry to `src/changelog.rs`
5# * If bumping to an incompatible version, adjust the documentation in `src/lib.rs`
6version = "0.7.3"
7authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
8license = "ISC"
9repository = "https://github.com/nagisa/rust_libloading/"
10documentation = "https://docs.rs/libloading/"
11readme = "README.mkd"
12description = "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety."
13keywords = ["dlopen", "load", "shared", "dylib"]
14categories = ["api-bindings"]
15rust-version = "1.40.0"
16
17[target.'cfg(windows)'.dependencies.winapi]
18version = "0.3"
19features = [
20    "errhandlingapi",
21    "libloaderapi",
22]
23
24[target.'cfg(unix)'.dependencies.cfg-if]
25version = "1"
26
27[dev-dependencies]
28libc = "0.2"
29static_assertions = "1.1"
30
31[package.metadata.docs.rs]
32all-features = true
33rustdoc-args = ["--cfg", "libloading_docs"]
34