[package]
name = "balls"
version = "0.3.5"
edition = "2021"
description = "Git-native task tracker for parallel agent workflows"
license = "MIT"
repository = "https://github.com/mudbungie/balls"
readme = "README.md"
keywords = ["git", "task-tracking", "agent", "workflow", "cli"]
categories = ["development-tools", "command-line-utilities"]
exclude = [".balls", "scripts", "tests"]
[lib]
name = "balls"
path = "src/lib.rs"
[[bin]]
name = "bl"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
sha1 = "0.10"
hex = "0.4"
fs2 = "0.4"
libc = "0.2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
doc_markdown = "allow"
needless_pass_by_value = "allow"
must_use_candidate = "allow"
cast_precision_loss = "allow"