[package]
edition = "2021"
rust-version = "1.82"
name = "flow-git"
version = "0.1.2"
authors = ["Arya <universitybuddyai@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git worktree operations for the Flow workspace manager"
readme = "README.md"
keywords = [
"git",
"worktree",
"ai-agent",
"branch",
"workflow",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/aryayt/flow"
[lib]
name = "flow_git"
path = "src/lib.rs"
[dependencies.agentflow-core]
version = "0.1.2"
[dependencies.gix]
version = "0.66"
features = ["worktree-mutation"]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"