kanban-cli 0.2.0

Command-line interface for the kanban project management tool
[package]
name = "kanban-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Command-line interface for the kanban project management tool"
keywords = ["kanban", "cli", "terminal", "project-management", "productivity"]
categories = ["command-line-utilities"]

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

[dependencies]
kanban-core = { path = "../kanban-core", version = "^0.2" }
kanban-domain = { path = "../kanban-domain", version = "^0.2" }
kanban-persistence = { path = "../kanban-persistence", version = "^0.2" }
kanban-tui = { path = "../kanban-tui", version = "^0.2" }
clap.workspace = true
clap_complete.workspace = true
tokio.workspace = true
anyhow.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
chrono.workspace = true
serde.workspace = true
serde_json.workspace = true

[dev-dependencies]
tempfile.workspace = true
assert_cmd.workspace = true
predicates.workspace = true