[package]
edition = "2024"
rust-version = "1.85"
name = "repolith-engine"
version = "0.0.9"
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_engine"
path = "src/lib.rs"
[[test]]
name = "federation"
path = "tests/federation.rs"
[[test]]
name = "orchestrator"
path = "tests/orchestrator.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.num_cpus]
version = "1"
[dependencies.repolith-core]
version = "0.0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt",
"sync",
"time",
"fs",
"process",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dev-dependencies.repolith-cache]
version = "0.0.9"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"