bd-26f2: Common widgets (render_breadcrumb, render_status_bar, render_loading, render_error_toast, render_help_overlay) + render_screen top-level dispatch wired to LoreApp::view(). 27 widget tests. bd-2w1p: Add half-life fields to ScoringConfig with validation. bd-1soz: Add half_life_decay() pure function. bd-18dn: Add normalize_query_path() for path canonicalization. Phase 1 modules: CommandRegistry, NavigationStack, CrashContext, TaskSupervisor, AppState with per-screen states. 172 lore-tui tests passing, clippy clean, fmt clean.
47 lines
965 B
TOML
47 lines
965 B
TOML
[package]
|
|
name = "lore-tui"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Terminal UI for Gitlore — local GitLab data explorer"
|
|
authors = ["Taylor Eernisse"]
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "lore-tui"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# FrankenTUI (Elm-architecture TUI framework)
|
|
ftui = "0.1.1"
|
|
|
|
# Lore library (config, db, ingestion, search, etc.)
|
|
lore = { path = "../.." }
|
|
|
|
# CLI
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
# Error handling
|
|
anyhow = "1"
|
|
|
|
# Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Paths
|
|
dirs = "6"
|
|
|
|
# Database (read-only queries from TUI)
|
|
rusqlite = { version = "0.38", features = ["bundled"] }
|
|
|
|
# Terminal (crossterm for raw mode + event reading, used by ftui runtime)
|
|
crossterm = "0.28"
|
|
|
|
# Serialization (crash context NDJSON dumps)
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
# Regex (used by safety module for PII/secret redaction)
|
|
regex = "1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|