dec-cryptor 2.5.0

A high-performance file encryption tool using AES-256-CTR and Argon2id.
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 = "dec-cryptor"
version = "2.5.0"
authors = ["Jiafei cxkctrl1303@hotmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance file encryption tool using AES-256-CTR and Argon2id."
readme = "README.md"
keywords = [
    "encryption",
    "aes",
    "parallel",
    "security",
    "argon2",
]
categories = [
    "cryptography",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/Jiafei-Queen/dec-cryptor"

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

[[bin]]
name = "dec"
path = "src/main.rs"

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

[dependencies.aes]
version = "0.8.4"

[dependencies.argon2]
version = "0.5.3"

[dependencies.ctr]
version = "0.9.2"

[dependencies.hkdf]
version = "0.12.4"

[dependencies.hmac]
version = "0.12.1"

[dependencies.rand]
version = "0.10.0"

[dependencies.rayon]
version = "1.11.0"

[dependencies.rpassword]
version = "7.4.0"

[dependencies.sha2]
version = "0.10.9"

[dependencies.tempfile]
version = "3.24.0"