-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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.9.0"
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.88.0"
edition = "2021"
autotests = false
include = ["Cargo.toml", "LICENSE", "README.mkd", "src/**/*.rs", "tests/**/*.rs", "tests/ordinals.def"]
[features]
default = ["std"]
std = []
[target.'cfg(windows)'.dependencies.windows-link]
version = "0.2"
[target.'cfg(windows)'.dev-dependencies.windows-sys]
version = "0.61"
features = ["Win32_Foundation"]
[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"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(libloading_docs)',
'cfg(target_os, values("cygwin"))',
] }
[[test]]
path = "tests/lib.rs"
name = "integration-tests"
harness = true