defendor 0.0.5

A secure file encryption tool with AES-GCM and Argon2 for password hashing.
Documentation
[dependencies.aes-gcm]
features = ["std", "zeroize"]
version = "0.10.3"

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

[dependencies.base64ct]
version = "1.8.0"

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

[dependencies.secrecy]
version = "0.10.3"

[dependencies.serde_json]
version = "1.0.143"

[dependencies.thiserror]
version = "2.0.16"

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

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

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

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

[features]
biometric = []
default = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A secure file encryption tool with AES-GCM and Argon2 for password hashing."
edition = "2024"
license = "Apache-2.0"
name = "defendor"
readme = "README.md"
repository = "https://github.com/nashaofu/defendor.git"
version = "0.0.5"

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

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