[package]
edition = "2024"
rust-version = "1.85"
name = "repolith-cli"
version = "0.0.4"
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"
[[bin]]
name = "repolith"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "sync_smoke"
path = "tests/sync_smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.dirs]
version = "5"
[dependencies.num_cpus]
version = "1"
[dependencies.repolith-actions]
version = "0.0.4"
features = [
"git",
"cargo",
]
[dependencies.repolith-cache]
version = "0.0.4"
[dependencies.repolith-core]
version = "0.0.4"
[dependencies.repolith-engine]
version = "0.0.4"
[dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt-multi-thread",
"signal",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[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"