47 lines
1 KiB
TOML
47 lines
1 KiB
TOML
[package]
|
|
name = "mergegate-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "MergeGate CLI - Main command-line interface for deterministic task execution and agent-assisted development"
|
|
|
|
[[bin]]
|
|
name = "miyabi"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "mergegate"
|
|
path = "src/bin/mergegate.rs"
|
|
|
|
[dependencies]
|
|
# Workspace crates
|
|
miyabi-core = { package = "mergegate-core", path = "../mergegate-core" }
|
|
miyabi-tui = { package = "mergegate-tui", path = "../mergegate-tui" }
|
|
|
|
# CLI
|
|
clap = { workspace = true }
|
|
|
|
# TUI Framework
|
|
ratatui = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
|
|
# Async Runtime
|
|
tokio = { workspace = true }
|
|
|
|
# Error Handling
|
|
anyhow = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Utilities
|
|
chrono = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|