[package]
edition = "2021"
name = "cargo-x"
version = "0.3.7"
authors = ["Liu Chong <mail@liuchong.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A very simple third-party cargo subcommand to execute a custom command.
"""
homepage = "https://github.com/liuchong/cargo-x"
readme = "README.md"
keywords = [
"x",
"exec",
"execute",
"cmd",
"command",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/liuchong/cargo-x"
[package.metadata.x]
lint = "cargo clippy --verbose --workspace --all-targets --all-features --release -- -D warnings"
test = "cargo test --verbose --workspace --all-targets --all-features --release"
build = "cargo build --verbose --workspace --all-targets --all-features --release"
[lib]
name = "cargo_x"
path = "src/lib.rs"
[[bin]]
name = "cargo-x"
path = "src/bin/cargo-x.rs"
[[bin]]
name = "x"
path = "src/bin/x.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.dirs]
version = "6.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.toml]
version = "1.0"
[profile.release]
panic = "abort"