rust_tui_coder 1.0.0

AI-powered terminal coding assistant with interactive TUI, supporting multiple LLMs and comprehensive development tools
Documentation
[package]
name = "rust_tui_coder"
version = "1.0.0"
edition = "2021"
description = "AI-powered terminal coding assistant with interactive TUI, supporting multiple LLMs and comprehensive development tools"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ammar-Alnagar/Rust-Coder-CLI"
homepage = "https://github.com/Ammar-Alnagar/Rust-Coder-CLI"
documentation = "https://docs.rs/rust_tui_coder"
keywords = ["tui", "ai", "coding-assistant", "llm", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
rust-version = "1.70"
exclude = [
    "config.toml",
    "plan.md",
    ".git",
    ".gitignore",
    "tmp_rovodev_*",
    "*.png",
]

[[bin]]
name = "rct"
path = "src/main.rs"

[dependencies]
ratatui = { version = "0.26.0", features = ["all-widgets"] }
crossterm = "0.27.0"
tokio = { version = "1.35.1", features = ["full"] }
reqwest = { version = "0.11.23", features = ["json", "stream", "blocking"] }
html2text = "0.11"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
toml = "0.8.8"
futures-util = "0.3.30"
chrono = "0.4"
regex = "1.12.2"
urlencoding = "2.1.3"
syntect = { version = "5.3.0", features = ["default-fancy"] }
once_cell = "1.21.3"