[package]
edition = "2021"
rust-version = "1.70"
name = "secret_mem"
version = "0.1.0"
authors = ["Giuseppe Eletto <giuseppe@eletto.me>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library for securely managing sensitive data in memory."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/giuseppe998e/secret-mem"
[lib]
name = "secret_mem"
path = "src/lib.rs"
[dependencies.zeroize]
version = "1.8"
[target.'cfg(target_family = "unix")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_family = "windows")'.dependencies.windows-sys]
version = "0.59"
features = [
"Win32_System_Memory",
"Win32_System_SystemInformation",
]