ferrocrypt-cli 0.3.0-rc.2

Command-line interface for FerroCrypt (installs the 'ferrocrypt' binary).
[package]
name = "ferrocrypt-cli"
version = "0.3.0-rc.2"
edition = "2021"
# rustyline 18 uses the `file_lock` std feature, stable since Rust 1.89, so the
# CLI's real floor is 1.89 (above home 0.5.12's 1.88). Verified by the
# `msrv-cli` CI lane. The library crate stays at 1.87.
rust-version = "1.89"

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://www.ferrocrypt.app"
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 = "18"
shell-words = "1"
subtle = "2"
ferrocrypt = { path = "../ferrocrypt-lib", version = "0.3.0-rc.2" }

[dev-dependencies]
ctor = "0.9"
ferrocrypt-test-support = { path = "../ferrocrypt-test-support" }