hardened_malloc-rs/Cargo.toml
girlbossceo c8de762782 initial commit of hardened_malloc-sys
Signed-off-by: girlbossceo <june@girlboss.ceo>
2023-11-12 16:28:12 -05:00

30 lines
No EOL
790 B
TOML

[package]
name = "hardened_malloc-sys"
build = "build.rs"
description = "hardened_malloc rust wrapper (sys crate)"
authors = ["strawberry <strawberry@pupbrain.dev>"]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 and MIT"
repository = "https://github.com/girlbossceo/hardened_malloc-sys"
categories = ["api-bindings", "memory-management"]
keywords = ["hardened_malloc", "malloc", "hardened memory allocator", "security"]
readme = "README.md"
exclude = [
"/src/hardened_malloc/test",
"/src/hardened_malloc/androidtest",
"/src/hardened_malloc/out",
"/src/hardened_malloc/out-light",
]
[features]
default = ["light"]
light = []
# "standard" feature is "default.mk" config in hardened_malloc
standard = []
[dependencies]
libc = "0.2"
[build-dependencies]
cc = "1.0"