ferrocrypt-cli 0.3.0-beta.1

Command-line interface for FerroCrypt (installs the 'ferrocrypt' binary).
[package]
name = "ferrocrypt-cli"
version = "0.3.0-beta.1"
edition = "2021"
rust-version = "1.87"

description = "Command-line interface for FerroCrypt (installs the 'ferrocrypt' binary)."
authors = ["Alexander Alexandrov"]
license = "GPL-3.0-only"
readme = "../README.md"
repository = "https://github.com/alexylon/ferrocrypt"
homepage = "https://github.com/alexylon/ferrocrypt"
documentation = "https://docs.rs/ferrocrypt-cli"
keywords = ["cryptography", "encryption", "cli"]
categories = ["command-line-utilities", "cryptography"]
publish = true

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

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4", features = ["derive"] }
rpassword = "7"
rustyline = "17"
shell-words = "1"
subtle = "2"
ferrocrypt = { path = "../ferrocrypt-lib", version = "0.3.0-beta.1" }

[dev-dependencies]
ctor = "0.2"