dlopen2 0.7.0

Library for opening and operating on dynamic link libraries (also known as shared objects or shared libraries).
Documentation
[[example]]
crate-type = ["bin"]
name = "raw"

[[example]]
crate-type = ["bin"]
name = "symbor"

[[example]]
crate-type = ["bin"]
name = "symbor_api"

[[example]]
crate-type = ["bin"]
name = "wrapper_api"

[[example]]
crate-type = ["bin"]
name = "raw_addr_info"

[[example]]
crate-type = ["bin"]
name = "wrapper_multi_api"
[dependencies.dlopen2_derive]
optional = true
version = "0.4"

[dependencies.once_cell]
version = "1.18"
[dev-dependencies.const-cstr]
version = "0.3"

[dev-dependencies.current_platform]
version = "0.2"

[dev-dependencies.regex]
version = "1.9"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[features]
default = ["wrapper", "symbor", "derive"]
derive = ["dlopen2_derive"]
doc_cfg = []
symbor = []
wrapper = []

[package]
authors = ["Szymon Wieloch <szymon.wieloch@gmail.com>", "Ahmed Masud <ahmed.masud@saf.ai>", "OpenByte <development.openbyte@gmail.com>"]
description = "Library for opening and operating on dynamic link libraries (also known as shared objects or shared libraries)."
edition = "2021"
keywords = ["dlopen", "dll", "so", "dylib", "shared"]
license = "MIT"
name = "dlopen2"
readme = "README.md"
repository = "https://github.com/OpenByteDev/dlopen2"
version = "0.7.0"
[package.metadata.docs.rs]
all-features = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["winnt", "minwindef", "winerror", "libloaderapi", "errhandlingapi", "dbghelp", "processthreadsapi", "basetsd"]
version = "0.3"