[package]
name = "taskgraph"
version = "0.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "CLI tool for managing task dependencies using markdown files"
repository = "https://github.com/alkimiadev/taskgraph"
readme = "README.md"
keywords = ["task", "dependency", "graph", "cli", "markdown"]
categories = ["command-line-utilities", "development-tools"]
[lib]
name = "taskgraph"
path = "src/lib.rs"
[[bin]]
name = "taskgraph"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration/commands.rs"
[dependencies]
petgraph = "0.7"
gray_matter = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
thiserror = "2.0"
dirs = "6.0"
walkdir = "2.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
toml = "0.8"
[dev-dependencies]
tempfile = "3.0"
assert_cmd = "2.0"
predicates = "3.0"
criterion = "0.5"
[[bench]]
name = "graph_benchmarks"
harness = false
[features]
default = []
[profile.release]
opt-level = 3
lto = true
strip = true