[package]
edition = "2024"
rust-version = "1.85"
name = "ezgitx"
version = "0.1.0"
build = false
exclude = ["/PRD.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-native multi-repo git CLI: JSONL output, zero interactivity, cross-repo dependency awareness"
readme = "README.md"
keywords = [
"git",
"multi-repo",
"agent",
"cli",
"jsonl",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yuval-r/ezgitx"
[[bin]]
name = "ezgitx"
path = "src/main.rs"
[[test]]
name = "check_impact"
path = "tests/check_impact.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "init_skill"
path = "tests/init_skill.rs"
[[test]]
name = "locks"
path = "tests/locks.rs"
[[test]]
name = "pull"
path = "tests/pull.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "status"
path = "tests/status.rs"
[[test]]
name = "with_deps"
path = "tests/with_deps.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.gethostname]
version = "1"
[dependencies.jiff]
version = "0.2"
[dependencies.libc]
version = "0.2"
[dependencies.num_cpus]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"process",
"macros",
"sync",
"time",
"io-util",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = true
strip = true