[package]
edition = "2024"
rust-version = "1.93.1"
name = "guild-cli"
version = "0.1.0"
authors = ["Sprouted Dev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-native polyglot monorepo orchestrator"
homepage = "https://github.com/sprouted-dev/guild"
readme = "README.md"
keywords = [
"monorepo",
"build-system",
"task-runner",
"polyglot",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/sprouted-dev/guild"
[lib]
name = "guild_cli"
path = "src/lib.rs"
[[bin]]
name = "guild"
path = "src/main.rs"
[[test]]
name = "affected_command_tests"
path = "tests/affected_command_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "run_command_tests"
path = "tests/run_command_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.git2]
version = "0.19"
[dependencies.glob]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"process",
"io-util",
"sync",
]
[dependencies.toml]
version = "0.8"
[dependencies.walkdir]
version = "2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"