[package]
edition = "2024"
rust-version = "1.85"
name = "alint-core"
version = "0.9.21"
authors = ["alint contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and execution engine for the alint language-agnostic repository linter."
homepage = "https://github.com/asamarts/alint"
readme = "README.md"
keywords = [
"linter",
"policy",
"repository",
"structure",
]
categories = ["development-tools"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/asamarts/alint"
[lib]
name = "alint_core"
path = "src/lib.rs"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.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"