[package]
edition = "2024"
rust-version = "1.85"
name = "repolith-core"
version = "0.0.5"
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_core"
path = "src/lib.rs"
[[test]]
name = "manifest"
path = "tests/manifest.rs"
[[test]]
name = "plan"
path = "tests/plan.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
features = [
"std",
"async-await",
]
default-features = false
[dependencies.hex]
version = "0.4"
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.toml]
version = "0.8"
[dependencies.url]
version = "2"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"