keylock 0.1.2

A CLI application starter template
Documentation
[package]
name = "keylock"
version = "0.1.2"
edition = "2021"
authors = ["Morshedul Islam <morshedulmunna1@gmail.com>"]
description = "A CLI application starter template"
license = "MIT"
repository = "https://github.com/Execute-Soft/rust-cli-setter"
readme = "README.md"

[dependencies]
# CLI argument parsing
clap = { version = "4.5", features = ["derive"] }

# Terminal colors and styling
colored = "2.0"

# Error handling
anyhow = "1.0"
thiserror = "1.0"

# Logging
env_logger = "0.10"
log = "0.4"

# Async runtime
tokio = { version = "1.0", features = ["full"] }

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
toml = { version = "0.8" }

# Crypto and security
argon2 = "0.5"
aes-gcm = "0.10"
chacha20poly1305 = "0.10"
zeroize = { version = "1.7", features = ["zeroize_derive"] }
base64 = "0.22"
rand = "0.8"
rpassword = "7.3"
dirs = "5"
tempfile = "3"
copypasta = "0.10"

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"

[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
strip = true

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