[package]
edition = "2024"
name = "flow-cmd"
version = "0.1.1"
authors = ["Hayato Watanabe <solideye@me.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command prefixing for continuous workflow using a single tool"
readme = "README.md"
keywords = [
"cli",
"shell",
"workflow",
"prefix",
"productivity",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/HayatoW/flow"
[[bin]]
name = "flow"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.rustyline]
version = "15"
[dependencies.which]
version = "7"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"