- Remove unused const_format from g3-planner (never imported) - Remove unused thiserror from workspace and 5 crates (declared but never used) - Update termimad 0.31 -> 0.34 in studio (consistency with g3-cli) - Update indicatif 0.17 -> 0.18 in g3-cli - Update ratatui 0.29 -> 0.30 in g3-cli - Update walkdir 2.4 -> 2.5 in g3-core - Update image 0.24 -> 0.25 in g3-computer-control (macOS + Linux) - Update config 0.14 -> 0.15 in workspace Blocked: reqwest 0.11 -> 0.12/0.13 requires breaking API changes to bytes_stream() used in 4 providers - needs separate migration effort. All tests pass. No behavior changes. Agent: fowler
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
name = "g3-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "CLI interface for G3 AI coding agent"
|
|
|
|
[dependencies]
|
|
g3-core = { path = "../g3-core" }
|
|
g3-config = { path = "../g3-config" }
|
|
g3-planner = { path = "../g3-planner" }
|
|
g3-computer-control = { path = "../g3-computer-control" }
|
|
g3-providers = { path = "../g3-providers" }
|
|
clap = { workspace = true }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = "0.9"
|
|
rustyline = { version = "17.0.1", features = ["derive", "with-dirs", "custom-bindings"] }
|
|
dirs = "5.0"
|
|
tokio-util = "0.7"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
indicatif = "0.18"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
crossterm = "0.29.0"
|
|
ratatui = "0.30"
|
|
termimad = "0.34.0"
|
|
regex = "1.10"
|
|
syntect = "5.3"
|
|
once_cell = "1.19"
|
|
rand = "0.8"
|
|
proctitle = "0.1.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|