[package]
edition = "2024"
rust-version = "1.85"
name = "alint-rules"
version = "0.9.21"
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"
[[test]]
name = "deny_unknown_fields_uniformity"
path = "tests/deny_unknown_fields_uniformity.rs"
[[test]]
name = "did_you_mean_integration"
path = "tests/did_you_mean_integration.rs"
[[test]]
name = "git_blame_age"
path = "tests/git_blame_age.rs"
[[test]]
name = "phase4_diagnostics_integration"
path = "tests/phase4_diagnostics_integration.rs"
[[test]]
name = "scope_filter_integration"
path = "tests/scope_filter_integration.rs"
[[test]]
name = "shell_out_rules"
path = "tests/shell_out_rules.rs"
[dependencies.alint-core]
version = "0.9.8"
[dependencies.content_inspector]
version = "0.2"
[dependencies.globset]
version = "0.4"
[dependencies.jsonschema]
version = "0.46"
default-features = false
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_json_path]
version = "0.7"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.sha2]
version = "0.11"
[dependencies.toml]
version = "1.1"
[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"