[package]
edition = "2024"
name = "lintel-benchmark"
version = "0.0.9"
authors = ["Ian Macalinao <me@ianm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Benchmarking harness for Lintel — runs validation against real-world repos and records timing results"
homepage = "https://github.com/lintel-rs/lintel"
readme = "README.md"
keywords = [
"json-schema",
"benchmark",
"validation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/lintel-rs/lintel"
resolver = "2"
[[bin]]
name = "lintel-benchmark"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.bpaf]
version = "0.9.23"
features = [
"autocomplete",
"derive",
"bright-color",
]
[dependencies.chrono]
version = "0.4.44"
[dependencies.dirs]
version = "6.0.0"
[dependencies.walkdir]
version = "2.5.0"
[lints.clippy]
cognitive_complexity = "deny"
must_use_candidate = "allow"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
too_many_lines = "deny"
unwrap_used = "deny"
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1