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