mergegate/crates/miyabi-tui/Cargo.toml
Shunsuke Hayashi 25d358f96e feat: Add config system, agent mode, and session management
- Add comprehensive Config system with TOML support (~/.miyabi/config.toml)
- Add Agent module for autonomous task execution with tool approval
- Add Session management for conversation persistence
- Extend CLI with new commands: init, sessions, agent, version
- Add CLI flags: --model, --max-tokens, --thinking, --config, --session
- Fix all clippy warnings (16 → 0)
- Improve code quality with collapsible pattern matching

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 22:22:11 +09:00

53 lines
1.1 KiB
TOML

[package]
name = "miyabi-tui"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Miyabi TUI - Terminal User Interface following Codex patterns"
[[bin]]
name = "miyabi-tui"
path = "src/main.rs"
[lib]
name = "miyabi_tui"
path = "src/lib.rs"
[dependencies]
# Workspace dependencies
miyabi-core = { path = "../miyabi-core" }
arboard = { version = "3", optional = true }
# TUI Framework
ratatui = { workspace = true }
crossterm = { workspace = true }
# Text Processing
textwrap = { workspace = true }
unicode-width = { workspace = true }
pulldown-cmark = { workspace = true }
syntect = { workspace = true }
# Async Runtime
tokio = { workspace = true }
futures = { workspace = true }
# Error Handling
anyhow = { workspace = true }
thiserror = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Utilities
chrono = { workspace = true }
once_cell = { workspace = true }
uuid = { workspace = true }
[features]
clipboard = ["arboard"]