cargo-x 0.3.7

A very simple third-party cargo subcommand to execute a custom command.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"