[package]
edition = "2024"
rust-version = "1.96"
name = "recourse-cli"
version = "0.0.1-rc.1"
authors = ["zsumz <shawn@zsumz.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cargo CLI for governing Recourse diagnostic catalogs"
homepage = "https://github.com/zsumz/recourse"
documentation = "https://docs.rs/recourse-cli"
readme = "README.md"
keywords = [
"diagnostics",
"catalog",
"compatibility",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/zsumz/recourse"
[[bin]]
name = "cargo-recourse"
path = "src/main.rs"
[[test]]
name = "documentation"
path = "tests/documentation.rs"
[[test]]
name = "governance"
path = "tests/governance.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[dependencies.recourse]
version = "0.0.1-rc.1"
[dependencies.serde_json]
version = "1.0"
[lints.clippy]
cognitive_complexity = "warn"
dbg_macro = "deny"
expect_used = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
todo = "deny"
too_many_lines = "warn"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_lifetimes = "warn"