[package]
edition = "2024"
rust-version = "1.85"
name = "repolith-cache"
version = "0.0.6"
authors = ["anatta-rs contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative orchestrator for Rust toolchains spread across multiple sibling git repositories."
homepage = "https://github.com/anatta-rs/repolith"
readme = "README.md"
keywords = [
"multirepo",
"orchestration",
"build",
"monorepo",
"polyrepo",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/anatta-rs/repolith"
[lib]
name = "repolith_cache"
path = "src/lib.rs"
[[test]]
name = "sqlite_cache"
path = "tests/sqlite_cache.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.hex]
version = "0.4"
[dependencies.repolith-core]
version = "0.0.6"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"macros",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"