- 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
52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[workspace]
|
|
members = [
|
|
"crates/g3-cli",
|
|
"crates/g3-core",
|
|
"crates/g3-planner",
|
|
"crates/g3-providers",
|
|
"crates/g3-config",
|
|
"crates/g3-execution",
|
|
"crates/g3-computer-control",
|
|
"crates/studio"
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
# Async runtime
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
# HTTP client
|
|
reqwest = { version = "0.11", features = ["json", "stream"] }
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
# CLI
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
# Error handling
|
|
anyhow = "1.0"
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
# Configuration
|
|
config = "0.15"
|
|
# Utilities
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
|
|
[package]
|
|
name = "g3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["g3 Team"]
|
|
description = "A general purpose AI agent that helps you complete tasks by writing code"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
g3-cli = { path = "crates/g3-cli" }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
g3-providers = { path = "crates/g3-providers" }
|
|
serde_json = { workspace = true }
|
|
|
|
[[example]]
|
|
name = "verify_message_id"
|
|
path = "examples/verify_message_id.rs"
|