keycrypt 0.1.0

AES-256-GCM encryption helpers backed by the OS keychain (auto-init key on encrypt, strict decrypt, Zeroize in-memory keys).
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"
name = "keycrypt"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AES-256-GCM encryption helpers backed by the OS keychain (auto-init key on encrypt, strict decrypt, Zeroize in-memory keys)."
homepage = "https://github.com/efexos/keycrypt"
documentation = "https://docs.rs/keycrypt"
readme = "README.md"
keywords = [
    "crypto",
    "encryption",
    "aes-gcm",
    "keychain",
    "keyring",
]
categories = [
    "cryptography",
    "os",
    "encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/efexos/keycrypt"

[features]
default = []
linux-persistent = [
    "keyring/linux-native-sync-persistent",
    "keyring/sync-secret-service",
    "keyring/crypto-rust",
]

[lib]
name = "keycrypt"
path = "source/lib.rs"

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

[dependencies.base64]
version = "0.22.1"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.zeroize]
version = "1.8.2"

[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3.6.3"
features = ["linux-native"]
default-features = false

[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3.6.3"
features = ["apple-native"]
default-features = false

[target."cfg(windows)".dependencies.keyring]
version = "3.6.3"
features = ["windows-native"]
default-features = false