[package]
edition = "2021"
rust-version = "1.90"
name = "sanitization"
version = "1.0.0-rc.4"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"README.md",
"SAFETY.md",
"SECURITY.md",
"THREAT_MODEL.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"rust-toolchain.toml",
"src/**/*.rs",
"examples/**/*.rs",
"scripts/checks.sh",
"scripts/ci_install_rust.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dependency-free no_std secret memory sanitization with safe defaults and an explicit volatile wipe backend."
homepage = "https://github.com/valkyoth/sanitization-rust-crate"
documentation = "https://docs.rs/sanitization"
readme = "README.md"
keywords = [
"zeroize",
"secrets",
"security",
"no-std",
"memory",
]
categories = [
"cryptography",
"no-std",
"memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/valkyoth/sanitization-rust-crate"
[features]
alloc = []
default = []
std = ["alloc"]
unsafe-wipe = []
[lib]
name = "sanitization"
path = "src/lib.rs"
[[example]]
name = "alloc"
path = "examples/alloc.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "macros"
path = "examples/macros.rs"
[[example]]
name = "unsafe_wipe"
path = "examples/unsafe_wipe.rs"