[package]
edition = "2021"
rust-version = "1.82"
name = "flow-tui"
version = "0.1.2"
authors = ["Arya <universitybuddyai@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal UI for Flow with Kanban board, agent status, and dependency graph views"
readme = "README.md"
keywords = [
"tui",
"ratatui",
"kanban",
"ai-agent",
"dashboard",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/aryayt/flow"
[lib]
name = "flow_tui"
path = "src/lib.rs"
[[bin]]
name = "flow-tui"
path = "src/main.rs"
[dependencies.agentflow-core]
version = "0.1.2"
[dependencies.crossterm]
version = "0.28"
[dependencies.flow-db]
version = "0.1.2"
[dependencies.flow-resolver]
version = "0.1.2"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.36"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"