[package]
edition = "2024"
rust-version = "1.85"
name = "rust-rapport"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Formats cargo clippy JSON output for GitHub Actions (step summary, PR annotations, human-readable)."
readme = "README.md"
keywords = [
"clippy",
"cargo",
"github-actions",
"ci",
"lint",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/adrien-jeser-doctolib/rust-rapport"
[lib]
name = "rust_rapport"
path = "src/lib.rs"
[[bin]]
name = "rust-rapport"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4.5.27"
features = ["derive"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.138"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[lints.clippy]
expect_used = "warn"
implicit_return = "allow"
missing_docs_in_private_items = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
print_stderr = "warn"
print_stdout = "warn"
unwrap_used = "warn"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"