dlopen2 0.9.0

Library for opening and operating on dynamic link libraries (also known as shared objects or shared libraries).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "dlopen2"
version = "0.9.0"
authors = [
    "Szymon Wieloch <szymon.wieloch@gmail.com>",
    "Ahmed Masud <ahmed.masud@saf.ai>",
    "OpenByte <development.openbyte@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for opening and operating on dynamic link libraries (also known as shared objects or shared libraries)."
readme = "README.md"
keywords = [
    "dlopen",
    "dll",
    "so",
    "dylib",
    "shared",
]
license = "MIT"
repository = "https://github.com/OpenByteDev/dlopen2"

[package.metadata.docs.rs]
all-features = true

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

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

[[example]]
name = "raw"
crate-type = ["bin"]
path = "examples/raw.rs"

[[example]]
name = "raw_addr_info"
crate-type = ["bin"]
path = "examples/raw_addr_info.rs"

[[example]]
name = "symbor"
crate-type = ["bin"]
path = "examples/symbor.rs"

[[example]]
name = "symbor_api"
crate-type = ["bin"]
path = "examples/symbor_api.rs"

[[example]]
name = "wrapper_api"
crate-type = ["bin"]
path = "examples/wrapper_api.rs"

[[example]]
name = "wrapper_multi_api"
crate-type = ["bin"]
path = "examples/wrapper_multi_api.rs"

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

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

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

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

[dependencies.dlopen2_derive]
version = "0.5"
optional = true

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

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

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

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

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
    "Win32_Foundation",
    "Win32_System_Diagnostics_Debug",
    "Win32_System_LibraryLoader",
    "Win32_System_Threading",
]