[package]
name = "taskdn"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
authors = ["Danny Smith"]
description = "Rust library for parsing, querying, and manipulating Taskdn task files"
license = "MIT"
repository = "https://github.com/dannysmith/taskdn"
documentation = "https://docs.rs/taskdn"
readme = "README.md"
keywords = ["tasks", "markdown", "frontmatter", "productivity"]
categories = ["parsing", "data-structures"]
exclude = [
".cursor/",
"AGENTS.md",
"CLAUDE.md",
"GEMINI.md",
"docs/tasks-done/",
"docs/tasks-todo/",
"docs/tasks.md",
"docs/developer/phase2-doc-copy.md",
"justfile",
]
[features]
default = []
watch = ["dep:notify-debouncer-mini"]
[dependencies]
gray_matter = "0.3"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
thiserror = "1"
rayon = "1"
notify-debouncer-mini = { version = "0.5", optional = true }
[dev-dependencies]
tempfile = "3"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"