[package]
edition = "2021"
name = "runex"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-shell abbreviation engine that expands short tokens into full commands"
readme = "README.md"
keywords = [
"shell",
"abbreviation",
"alias",
"expansion",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ShortArrow/runex"
[[bin]]
name = "runex"
path = "src/main.rs"
[[test]]
name = "bash_integration"
path = "tests/bash_integration.rs"
[[test]]
name = "pwsh_integration"
path = "tests/pwsh_integration.rs"
[[test]]
name = "zsh_integration"
path = "tests/zsh_integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.runex-core]
version = "0.1.3"
[dependencies.which]
version = "7"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_family = "unix")'.dev-dependencies.rexpect]
version = "0.5"