syntaxis/core/crates/cli/Cargo.toml
Jesús Pérez 9cef9b8d57 refactor: consolidate configuration directories
Merge _configs/ into config/ for single configuration directory.
Update all path references.

Changes:
- Move _configs/* to config/
- Update .gitignore for new patterns
- No code references to _configs/ found

Impact: -1 root directory (layout_conventions.md compliance)
2025-12-26 18:36:23 +00:00

57 lines
1.2 KiB
TOML

[package]
name = "syntaxis-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "CLI tool for syntaxis management"
[[bin]]
name = "syntaxis-cli"
path = "src/main.rs"
[package.metadata.syntaxis]
use_wrapper = true
install_mode = "cargo|bin"
config_src = "configs/cli"
[dependencies]
syntaxis-core = { path = "../syntaxis" }
tools-shared = { path = "../../../shared/rust", features = ["interactive"] }
# CLI
clap = { workspace = true }
clap_complete = { workspace = true }
# Colors and formatting
colored = { workspace = true }
prettytable-rs = { workspace = true }
# Interactive prompts with arrow key support
inquire = { workspace = true }
# Async
tokio = { workspace = true }
# Logging
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Other utilities
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
# HTTP client for API communication
reqwest = { workspace = true }
[dev-dependencies]
assert_cmd = { workspace = true }
predicates = { workspace = true }
tempfile = { workspace = true }