stenoxide-cli 3.16.4

Command-line tool for hiding encrypted messages inside PNG images
[package]
name = "stenoxide-cli"
description = "Command-line tool for hiding encrypted messages inside PNG images"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
exclude.workspace = true
documentation = "https://docs.rs/stenoxide-cli"
readme = "../README.md"
keywords = ["steganography", "cryptography", "cli", "security"]
categories = ["command-line-utilities", "cryptography"]

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

[dependencies]
# The version requirement is what a published build resolves against: `path`
# only exists inside this workspace and is dropped when the crate is packaged.
stenoxide-core = { path = "../stenoxide-core", version = "3.16.4" }
clap.workspace = true
clap_complete.workspace = true
clap_mangen.workspace = true
rpassword.workspace = true
zeroize.workspace = true
indicatif.workspace = true

[dev-dependencies]
# The `test-utils` feature carries the container generator both suites of this
# workspace build their fixtures from. It is a dev-dependency on the same path
# the ordinary dependency above names, so a published build never enables it.
stenoxide-core = { path = "../stenoxide-core", features = ["test-utils"] }
image.workspace = true
tempfile.workspace = true
# `in_memory` provides the terminal the progress tests render into. Enabled here
# rather than in the dependency above so a release build carries none of it.
indicatif = { workspace = true, features = ["in_memory"] }

[features]
default = []
# Forwards the post-quantum feature to the core crate.
pqc = ["stenoxide-core/pqc"]
# DEPRECATED, along with the core feature it forwards to: the
# Syndrome-Trellis coder is native Rust and the binary links no C++.
ffi-stc = ["stenoxide-core/ffi-stc"]