[package]
edition = "2024"
rust-version = "1.88"
name = "lanekeep-cache"
version = "0.6.1"
authors = ["Fred Souza <1396615+fmsouza@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Content-addressed result cache with dependency tracking for lanekeep."
homepage = "https://github.com/fmsouza/lanekeep"
readme = false
keywords = [
"linter",
"static-analysis",
"tree-sitter",
"typescript",
"conformance",
]
categories = [
"development-tools",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fmsouza/lanekeep"
[lib]
name = "lanekeep_cache"
path = "src/lib.rs"
[dependencies.blake3]
version = "1"
[dependencies.lanekeep-core]
version = "0.6.0"
[lints.clippy]
cast_possible_truncation = "warn"
cast_precision_loss = "warn"
cast_sign_loss = "warn"
dbg_macro = "warn"
expect_used = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "warn"
print_stderr = "warn"
print_stdout = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1