- 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
32 lines
715 B
TOML
32 lines
715 B
TOML
[package]
|
|
name = "g3-providers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "LLM provider abstractions for G3 AI coding agent"
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
async-trait = "0.1"
|
|
tokio-stream = "0.1"
|
|
futures-util = "0.3"
|
|
bytes = "1.0"
|
|
# OAuth dependencies
|
|
axum = "0.7"
|
|
base64 = "0.22"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
sha2 = "0.10"
|
|
url = "2.5"
|
|
webbrowser = "1.0"
|
|
nanoid = "0.4"
|
|
serde_urlencoded = "0.7"
|
|
tokio-util = "0.7"
|
|
dirs = "5.0"
|
|
llama-cpp-2 = { version = "0.1", features = ["metal"] }
|
|
shellexpand = "3.1"
|
|
rand = "0.8"
|