[package]
name = "opaque-pointer"
version = "0.8.9"
description = "Generic functions to work with opaque pointers when use FFI to expose Rust structs"
authors = [
"Jesus Hernandez <jesushdez@protonmail.com>",
"Dylan DPC",
]
license = "Unlicense"
keywords = ["pointer", "opaque", "pointers", "cbindgen", "ffi"]
categories = ["development-tools::ffi", "no-std"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/jhg/opaque-pointer-rs/"
exclude = [
".github/**",
".vscode/**",
]
rust-version = "1.57.0"
[features]
default = ["std"]
std = []
lender = ["lazy_static"]
alloc = []
c-types = ["std"]
[dependencies]
log = "0.4"
lazy_static = { version = "^1", optional = true }
[package.metadata.docs.rs]
features = ["std", "lender"]