pillar-cli 0.2.4

A file-based task tracker for managing projects, milestones, and issues
[package]
name = "pillar-cli"
version = "0.2.4"
edition = "2021"
authors = ["Pillar Contributors"]
description = "A file-based task tracker for managing projects, milestones, and issues"
documentation = "https://github.com/nqn/pillar"
homepage = "https://github.com/nqn/pillar"
repository = "https://github.com/nqn/pillar"
readme = "README.md"
license = "MIT"
keywords = ["task", "project-management", "cli", "productivity", "markdown"]
categories = ["command-line-utilities", "development-tools"]
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "services/ui/dist/**/*",
    ".pillar/**/*",
]

[[bin]]
name = "pillar"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
colored = "2.1"
walkdir = "2.4"
uuid = { version = "1.6", features = ["v4"] }
axum = "0.7.5"
tokio = { version = "1.37.0", features = ["full"] }
tower-http = { version = "0.5.2", features = ["fs", "cors"] }
mime_guess = "2.0.4"
rust-embed = "8.4.0"

[dev-dependencies]
tempfile = "3.8"
assert_cmd = "2.0"
predicates = "3.0"