[package]
edition = "2024"
name = "dylink"
version = "0.12.0"
authors = ["Jonathan Thomason"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run-time dynamic linking loader utilities"
readme = "README.md"
keywords = [
"ffi",
"dlopen",
"load",
"shared",
"lazy",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Razordor/dylink.git"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
all-features = true
[features]
default = ["dylink_macro"]
dylink_macro = ["dep:dylink_macro"]
unstable = []
[lib]
name = "dylink"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "linux"
path = "tests/linux.rs"
[[test]]
name = "macos"
path = "tests/macos.rs"
[[test]]
name = "unix"
path = "tests/unix.rs"
[[test]]
name = "windows"
path = "tests/windows.rs"
[dependencies.dylink_macro]
version = "0.11"
optional = true