[package]
edition = "2021"
name = "cross-proc-cache"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small cross-process cache helper used in the Liturgy workspace."
homepage = "https://liturgy.ericbreyer.com"
readme = "README.md"
keywords = [
"cache",
"ipc",
"cross-process",
]
categories = ["development-tools::build-utils"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ericbreyer/liturgy"
resolver = "3"
[lib]
name = "cross_proc_cache"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.bincode]
version = "2.0.1"
[dependencies.fs2]
version = "0.4.3"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.tempfile]
version = "3.23.0"
[lints.clippy]
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1