[package]
edition = "2024"
name = "runex"
version = "0.1.6"
build = "build.rs"
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"
resolver = "2"
[[bin]]
name = "runex"
path = "src/main.rs"
[[test]]
name = "bash_integration"
path = "tests/bash_integration.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_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.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.which]
version = "7"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.tempfile]
version = "3"