[package]
edition = "2024"
name = "zeph-worktree"
version = "0.22.3"
authors = ["bug-ops"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git worktree lifecycle management for Zeph subagents"
homepage = "https://github.com/bug-ops/zeph"
readme = "README.md"
keywords = [
"ai",
"agent",
"llm",
"inference",
"skills",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bug-ops/zeph"
[features]
default = []
[lib]
name = "zeph_worktree"
path = "src/lib.rs"
[[test]]
name = "real_git_integration"
path = "tests/real_git_integration.rs"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.53.0"
features = [
"fs",
"process",
"sync",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.walkdir]
version = "2.5"
[dependencies.zeph-config]
version = "0.22.3"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tokio]
version = "1.53.0"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[dev-dependencies.tracing-test]
version = "0.2.6"
[lints.clippy]
all = "warn"
await_holding_lock = "warn"
pedantic = "warn"
[lints.rust]
linker_messages = "allow"
unsafe_code = "deny"