[package]
edition = "2024"
name = "lintel-annotate"
version = "0.0.2"
authors = ["Ian Macalinao <me@ianm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Annotation-based linting for JSON and YAML files using JSON Schema"
homepage = "https://github.com/lintel-rs/lintel"
readme = false
keywords = [
"json-schema",
"validation",
"annotation",
"linter",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/lintel-rs/lintel"
resolver = "2"
[lib]
name = "lintel_annotate"
path = "src/lib.rs"
[[bin]]
name = "lintel-annotate"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bpaf]
version = "0.9"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.glob-match]
version = "0.2"
[dependencies.humantime]
version = "2"
[dependencies.lintel-check]
version = "0.0.3"
[dependencies.rayon]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.tracing-tree]
version = "0.4"
[lints.clippy]
must_use_candidate = "allow"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1