[package]
edition = "2021"
rust-version = "1.87"
name = "ferrocrypt-cli"
version = "0.3.0-beta.1"
authors = ["Alexander Alexandrov"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for FerroCrypt (installs the 'ferrocrypt' binary)."
homepage = "https://github.com/alexylon/ferrocrypt"
documentation = "https://docs.rs/ferrocrypt-cli"
readme = "README.md"
keywords = [
"cryptography",
"encryption",
"cli",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "GPL-3.0-only"
repository = "https://github.com/alexylon/ferrocrypt"
[[bin]]
name = "ferrocrypt"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ferrocrypt]
version = "0.3.0-beta.1"
[dependencies.rpassword]
version = "7"
[dependencies.rustyline]
version = "17"
[dependencies.shell-words]
version = "1"
[dependencies.subtle]
version = "2"
[dev-dependencies.ctor]
version = "0.2"