[package]
edition = "2024"
rust-version = "1.85"
name = "alint-rules"
version = "0.4.3"
authors = ["alint contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal: built-in rule implementations for alint. Not a stable public API."
homepage = "https://github.com/asamarts/alint"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/asamarts/alint"
[lib]
name = "alint_rules"
path = "src/lib.rs"
[dependencies.alint-core]
version = "0.4.3"
[dependencies.content_inspector]
version = "0.2"
[dependencies.globset]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"