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.8.6" |
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.56.0" |
16 | edition = "2015" |
17 | |
18 | [target.'cfg(windows)'.dependencies.windows-targets] |
19 | version = ">=0.48, <0.53" |
20 | |
21 | [target.'cfg(windows)'.dev-dependencies.windows-sys] |
22 | version = ">=0.52,<0.59" |
23 | features = ["Win32_Foundation" ] |
24 | |
25 | [target.'cfg(unix)'.dependencies.cfg-if] |
26 | version = "1" |
27 | |
28 | [dev-dependencies] |
29 | libc = "0.2" |
30 | static_assertions = "1.1" |
31 | |
32 | [package.metadata.docs.rs] |
33 | all-features = true |
34 | rustdoc-args = ["--cfg" , "libloading_docs" ] |
35 | |
36 | [lints.rust] |
37 | unexpected_cfgs = { level = "warn" , check-cfg = ['cfg(libloading_docs)' ] } |
38 | |