sanitization 1.0.0-rc.4

Dependency-free no_std secret memory sanitization with safe defaults and an explicit volatile wipe backend.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"