insectbox 0.1.0

OpenSSH inspired in-memory key security.
Documentation
[[bench]]
harness = false
name = "cryptbox_cmp"
path = "benches/cryptbox_cmp.rs"
required-features = ["cryptbox"]

[[bench]]
harness = false
name = "secbox_cmp"
path = "benches/secbox_cmp.rs"
required-features = ["secbox"]

[dependencies.ascon-aead]
default-features = false
optional = true
version = "=0.4.3"

[dependencies.ascon-hash]
optional = true
version = "=0.2.0"

[dependencies.lazy_static]
version = "1.5.0"

[dependencies.rand_chacha]
features = ["os_rng"]
optional = true
version = "=0.9.0"

[dependencies.zeroize]
optional = true
version = "=1.8.1"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.heapless]
version = "0.8.0"

[features]
cryptbox = ["dep:ascon-aead", "dep:ascon-hash", "dep:rand_chacha", "dep:zeroize"]
default = ["secbox"]
dev = ["secbox", "cryptbox"]
secbox = []

[lib]
name = "insectbox"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "OpenSSH inspired in-memory key security."
edition = "2021"
keywords = ["cryptography", "memory-management"]
license = "MIT"
name = "insectbox"
readme = "README.md"
repository = "https://github.com/lysolaka/insectbox"
version = "0.1.0"

[package.metadata.docs.rs]
all-features = true

[target."cfg(unix)".dependencies.libc]
version = "=0.2.170"

[target."cfg(windows)".dependencies.windows-sys]
default-features = false
features = ["Win32_System_SystemInformation", "Win32_System_Memory", "Win32_Foundation", "Win32_System_Diagnostics_Debug"]
version = "=0.59.0"