mergegate/crates/miyabi-cli/Cargo.toml
Shunsuke Hayashi 00d5d4d4e9 chore: Initialize Miyabi project with full planning
- Add .claude/ configuration (agents, commands, prompts, templates)
- Add comprehensive documentation:
  - WBS.md - Work Breakdown Structure
  - SPRINT_PLANNING.md - 4-sprint detailed plan
  - OPERATION_PLAN.md - Execution procedures
  - PRODUCT_SPEC.md - Product requirements
  - PREPARATION_OPS.md - Pre-sprint checklist
- Add PlantUML diagrams (wbs-diagram, gantt-chart)
- Configure Miyabi (.miyabi.yml)
- Set up Rust workspace structure

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

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

36 lines
728 B
TOML

[package]
name = "miyabi-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Miyabi CLI - Main command-line interface"
[[bin]]
name = "miyabi"
path = "src/main.rs"
[dependencies]
# Workspace crates
miyabi-core = { path = "../miyabi-core" }
miyabi-tui = { path = "../miyabi-tui" }
# CLI
clap = { workspace = true }
# TUI Framework
ratatui = { workspace = true }
crossterm = { workspace = true }
# Async Runtime
tokio = { workspace = true }
# Error Handling
anyhow = { workspace = true }
# Logging
tracing = { workspace = true }
tracing-subscriber = { workspace = true }