opaque-pointer 0.6.0

Generic functions to work with opaque pointers when use FFI to expose Rust structs
Documentation
[package]

name = "opaque-pointer"

version = "0.6.0"

description = "Generic functions to work with opaque pointers when use FFI to expose Rust structs"

authors = ["Jesus Hernandez <jesushdez@protonmail.com>"]

license = "Unlicense"

keywords = ["pointer", "opaque", "pointers", "cbindgen", "ffi"]

categories = ["development-tools::ffi", "no-std"]

edition = "2018"

readme = "README.md"

repository = "https://github.com/jhg/opaque-pointer-rs/"



[features]

default = ["std"]

std = []

# If you does not use std then you need alloc feature

alloc = []

# Allow to use some functions for FFI C types

c-types = ["std"]

# Check pointers before to use it to panic if it is null

panic-if-null = []