defendor 0.0.7

A secure file encryption tool with AES-GCM and Argon2 for password hashing.
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 = "defendor"
version = "0.0.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A secure file encryption tool with AES-GCM and Argon2 for password hashing."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/nashaofu/defendor.git"

[features]
biometric = []
default = []

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

[[example]]
name = "key"
path = "examples/key.rs"

[dependencies.aes-gcm]
version = "0.10.3"
features = [
    "std",
    "zeroize",
]

[dependencies.argon2]
version = "0.5.3"
features = [
    "std",
    "zeroize",
]

[dependencies.base64ct]
version = "1.8.3"

[dependencies.getrandom]
version = "0.4.2"
features = ["std"]

[dependencies.secrecy]
version = "0.10.3"

[dependencies.serde_json]
version = "1.0.150"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.52.3"
features = ["fs"]

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

[dev-dependencies.tokio]
version = "1.52.3"
features = ["full"]

[target."cfg(windows)".dependencies.sha2]
version = "0.11.0"

[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
    "Security_Credentials",
    "Security_Cryptography",
    "Storage_Streams",
]