simple-encrypt 0.1.3

A simple file encryption tool using AES-GCM
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 = "2021"
name = "simple-encrypt"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple file encryption tool using AES-GCM"
homepage = "https://github.com/adityabaradwaj/simple-encrypt"
readme = "README.md"
keywords = [
    "encryption",
    "aes",
    "crypto",
    "security",
    "cli",
]
categories = [
    "cryptography",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/adityabaradwaj/simple-encrypt"

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

[[bin]]
name = "simple-encrypt"
path = "src/main.rs"

[dependencies.aes-gcm]
version = "0.10"

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.21"

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

[dependencies.rand]
version = "0.9"

[dependencies.rpassword]
version = "7.3"