lockbox-cli 0.1.0

A secure file encryption CLI tool using Argon2id and ChaCha20-Poly1305
# 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.92"
name = "lockbox-cli"
version = "0.1.0"
authors = ["Chris Turgeon <turgeonchris3@outlook.com>"]
build = false
exclude = [
    ".github/",
    "tests/",
    "*.lb",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A secure file encryption CLI tool using Argon2id and ChaCha20-Poly1305"
homepage = "https://github.com/christurgeon/lockbox"
documentation = "https://github.com/christurgeon/lockbox#readme"
readme = "README.md"
keywords = [
    "encryption",
    "security",
    "cli",
    "cryptography",
    "file-encryption",
]
categories = [
    "command-line-utilities",
    "cryptography",
]
license = "MIT"
repository = "https://github.com/christurgeon/lockbox"

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

[dependencies.argon2]
version = "0.5"

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.clap]
version = "4.4"
features = ["derive"]

[dependencies.colored]
version = "2.1"

[dependencies.rand]
version = "0.8"

[dependencies.rpassword]
version = "7.3"

[dependencies.thiserror]
version = "1.0"

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

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

[target."cfg(unix)".dependencies.libc]
version = "0.2"

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