[package]
edition = "2024"
rust-version = "1.85"
name = "tc_zeroize"
version = "0.1.0"
build = false
include = [
"src/**",
"tests/**",
"README.md",
"CHANGELOG.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Explicit memory erasure with volatile writes and opt-in scope guards."
documentation = "https://docs.rs/tc_zeroize"
readme = "README.md"
keywords = [
"zeroize",
"cryptography",
"no-std",
"memory",
]
categories = [
"cryptography",
"no-std",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TomiCheng/tc_core"
[features]
alloc = []
default = []
[lib]
name = "tc_zeroize"
path = "src/lib.rs"
[[test]]
name = "alloc"
path = "tests/alloc.rs"
[[test]]
name = "zeroize"
path = "tests/zeroize.rs"