- Introduce `ui.input_max_rows` (default 5) to control how many rows the input panel expands before scrolling. - Bump `CONFIG_SCHEMA_VERSION` to **1.2.0** and update migration documentation. - Update `configuration.md` and migration guide to describe the new setting. - Adjust TUI height calculation to respect `input_max_rows` and add horizontal scrolling support for long lines. - Add `unicode-segmentation` dependency for proper grapheme handling.
37 lines
917 B
TOML
37 lines
917 B
TOML
[package]
|
|
name = "owlen-tui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Terminal User Interface for OWLEN LLM client"
|
|
|
|
[dependencies]
|
|
owlen-core = { path = "../owlen-core" }
|
|
# Removed owlen-ollama dependency - all providers now accessed via MCP architecture (Phase 10)
|
|
|
|
# TUI framework
|
|
ratatui = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
tui-textarea = { workspace = true }
|
|
textwrap = { workspace = true }
|
|
unicode-width = "0.1"
|
|
unicode-segmentation = "1.11"
|
|
async-trait = "0.1"
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
|
|
# Utilities
|
|
anyhow = { workspace = true }
|
|
uuid = { workspace = true }
|
|
serde_json.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true }
|