mergegate/crates/mergegate-cli/Cargo.toml
2026-04-10 15:03:49 +09:00

42 lines
860 B
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 - Engine-agnostic gate workflow for deterministic task execution"
[[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" }
# CLI
clap = { 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 }