krypton-core 0.4.1

A memory-safe, high-performance Rust library for modern file encryption and secure vaults.
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.75"
name = "krypton-core"
version = "0.4.1"
authors = ["Yash Sharma"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A memory-safe, high-performance Rust library for modern file encryption and secure vaults."
readme = "README.md"
keywords = [
    "encryption",
    "aes",
    "cryptography",
    "vault",
    "argon2",
]
categories = [
    "cryptography",
    "filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/KryptonOSS/krypton"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

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

[[test]]
name = "single_file"
path = "tests/single_file.rs"

[[test]]
name = "vault"
path = "tests/vault.rs"

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

[dependencies.argon2]
version = "0.5"

[dependencies.hkdf]
version = "0.12"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2"

[dependencies.thiserror]
version = "1.0"

[dependencies.walkdir]
version = "2.5"

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

[dev-dependencies.tempfile]
version = "3.12"

[lints.clippy]
all = "warn"

[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"

[profile.release]
lto = true
codegen-units = 1
strip = true