[package]
edition = "2024"
name = "cargo-dirty"
version = "0.1.2"
build = false
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cargo subcommand that reports only what was recompiled"
readme = "README.md"
keywords = [
"cargo",
"build",
"cache",
"diagnostics",
"recompilation",
]
categories = [
"command-line-utilities",
"development-tools::cargo-plugins",
]
license = "MIT"
repository = "https://github.com/romnn/cargo-dirty"
[package.metadata.cargo-fc]
install_missing_targets = true
dedupe = true
aggregate_targets = false
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-gnu",
"aarch64-apple-darwin",
]
[package.metadata.cargo-fc.subcommands.udeps]
maximal_features = true
[[bin]]
name = "cargo-dirty"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.cargo_metadata]
version = "0.23"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.owo-colors]
version = "4"
[dependencies.regex]
version = "1"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
allow_attributes_without_reason = "deny"
assigning_clones = "allow"
await_holding_lock = "deny"
expect_used = "deny"
indexing_slicing = "deny"
map_unwrap_or = "allow"
missing_errors_doc = "warn"
panic = "deny"
struct_excessive_bools = "allow"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
unused_must_use = "deny"
[lints.rust.warnings]
level = "warn"
priority = -1