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.8.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.56.0"
16
17[target.'cfg(windows)'.dependencies.windows-targets]
18version = ">=0.48, <0.53"
19
20[target.'cfg(windows)'.dev-dependencies.windows-sys]
21version = "0.52"
22features = ["Win32_Foundation"]
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