encryptman 0.2.0

AES-256-GCM encryption for application settings with HKDF key derivation
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 = "2024"
rust-version = "1.85"
name = "encryptman"
version = "0.2.0"
build = false
include = [
    "src/**",
    "README.md",
    "LICENSE*",
    "CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AES-256-GCM encryption for application settings with HKDF key derivation"
documentation = "https://docs.rs/encryptman"
readme = "README.md"
keywords = [
    "encryption",
    "aes",
    "gcm",
    "settings",
    "secrets",
]
categories = [
    "cryptography",
    "config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/suradet-ps/encryptman"

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

[dependencies.aes-gcm]
version = "0.10"

[dependencies.base64]
version = "0.22"

[dependencies.hkdf]
version = "0.13"

[dependencies.sha2]
version = "0.11"

[dependencies.thiserror]
version = "2"

[dependencies.zeroize]
version = "1"
features = ["derive"]

[dev-dependencies]

[lints.rust]
missing_docs = "deny"