[package]
edition = "2024"
rust-version = "1.85"
name = "repolith-actions"
version = "0.0.11"
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"
[features]
cargo = []
default = [
"git",
"cargo",
]
docker = []
git = []
[lib]
name = "repolith_actions"
path = "src/lib.rs"
[[test]]
name = "cargo_install"
path = "tests/cargo_install.rs"
[[test]]
name = "git_clone"
path = "tests/git_clone.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.dirs]
version = "5"
[dependencies.ignore]
version = "0.4"
[dependencies.repolith-core]
version = "0.0.11"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1.0"
features = [
"process",
"macros",
"io-util",
"time",
"fs",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
]
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = ["signal"]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"