[go: up one dir, main page]

libloading 0.9.0

Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.
Documentation
[dev-dependencies.libc]
version = "0.2"

[dev-dependencies.static_assertions]
version = "1.1"

[features]
default = ["std"]
std = []

[lib]
name = "libloading"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(libloading_docs)", 'cfg(target_os, values("cygwin"))']
level = "warn"
priority = 0

[package]
authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings"]
description = "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety."
documentation = "https://docs.rs/libloading/"
edition = "2021"
keywords = ["dlopen", "load", "shared", "dylib"]
license = "ISC"
name = "libloading"
readme = "README.mkd"
repository = "https://github.com/nagisa/rust_libloading/"
rust-version = "1.88.0"
version = "0.9.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "libloading_docs"]

[target."cfg(unix)".dependencies.cfg-if]
version = "1"

[target."cfg(windows)".dependencies.windows-link]
version = "0.2"

[target."cfg(windows)".dev-dependencies.windows-sys]
features = ["Win32_Foundation"]
version = "0.61"

[[test]]
name = "constants"
path = "tests/constants.rs"

[[test]]
name = "functions"
path = "tests/functions.rs"

[[test]]
name = "library_filename"
path = "tests/library_filename.rs"

[[test]]
name = "markers"
path = "tests/markers.rs"

[[test]]
name = "windows"
path = "tests/windows.rs"