[package]
edition = "2024"
name = "cmdy"
version = "0.2.2"
authors = ["Mark Jaquith <mark@jaquith.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lists and runs predefined command snippets"
readme = "README.md"
keywords = [
"cli",
"commands",
"runner",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/markjaquith/cmdy"
[package.metadata.alias]
fix = "clippy --fix && fmt"
[package.metadata.release]
consolidate-commits = false
pre-release-commit-message = "chore: release {{version}}"
publish = true
push = true
tag-name = "v{{version}}"
[[bin]]
name = "cmdy"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1.0.101"
[dependencies.arboard]
version = "3"
[dependencies.clap]
version = "4.5.57"
features = ["derive"]
[dependencies.regex]
version = "1.12.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.shell-escape]
version = "0.1.5"
[dependencies.tempfile]
version = "3.25.0"
[dependencies.toml]
version = "0.9.11"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
ref_option = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1