mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 21:53:28 +08:00
- Process spawning via tokio::process::Command - Session state transitions with guards (Pending->Running->Completed/Failed/Stopped) - Stop with process kill and optional worktree cleanup - Latest alias resolver in get_status - SQLite store migrations for state tracking
54 lines
1.0 KiB
TOML
54 lines
1.0 KiB
TOML
[package]
|
|
name = "ecc-tui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "ECC 2.0 — Agentic IDE control plane with TUI dashboard"
|
|
license = "MIT"
|
|
authors = ["Affaan Mustafa <me@affaanmustafa.com>"]
|
|
repository = "https://github.com/affaan-m/everything-claude-code"
|
|
|
|
[dependencies]
|
|
# TUI
|
|
ratatui = "0.29"
|
|
crossterm = "0.28"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
# State store
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
|
|
# Git integration
|
|
git2 = "0.19"
|
|
|
|
# Serialization
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
|
|
# CLI
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
# Logging & tracing
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Error handling
|
|
anyhow = "1"
|
|
thiserror = "2"
|
|
libc = "0.2"
|
|
|
|
# Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# UUID for session IDs
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
# Directory paths
|
|
dirs = "6"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|