[package]
edition = "2024"
name = "runex"
version = "0.1.14"
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 OR Apache-2.0"
repository = "https://github.com/ShortArrow/runex"
resolver = "2"
[[bin]]
name = "runex"
path = "src/main.rs"
[[test]]
name = "architecture"
path = "tests/architecture.rs"
[[test]]
name = "bash_integration"
path = "tests/bash_integration.rs"
[[test]]
name = "bash_pty_integration"
path = "tests/bash_pty_integration.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "nu_integration"
path = "tests/nu_integration.rs"
[[test]]
name = "nu_pty_integration"
path = "tests/nu_pty_integration.rs"
[[test]]
name = "pwsh_integration"
path = "tests/pwsh_integration.rs"
[[test]]
name = "pwsh_pty_integration"
path = "tests/pwsh_pty_integration.rs"
[[test]]
name = "windows_path_isolation"
path = "tests/windows_path_isolation.rs"
[[test]]
name = "zsh_integration"
path = "tests/zsh_integration.rs"
[[test]]
name = "zsh_pty_integration"
path = "tests/zsh_pty_integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.which]
version = "7"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dev-dependencies.expectrl]
version = "0.7"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_System_DataExchange",
"Win32_System_Memory",
"Win32_Foundation",
]
[target."cfg(windows)".dependencies.winreg]
version = "0.55"