- 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
57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
[package]
|
|
name = "g3-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core engine for G3 AI coding agent"
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
g3-providers = { path = "../g3-providers" }
|
|
g3-config = { path = "../g3-config" }
|
|
g3-execution = { path = "../g3-execution" }
|
|
g3-computer-control = { path = "../g3-computer-control" }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
async-trait = "0.1"
|
|
tokio-stream = "0.1"
|
|
tokio-util = "0.7"
|
|
futures-util = "0.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rand = "0.8"
|
|
regex = "1.0"
|
|
shellexpand = "3.1"
|
|
serde_yaml = "0.9"
|
|
|
|
# tree-sitter for embedded code search
|
|
tree-sitter = "0.24"
|
|
tree-sitter-rust = "0.23"
|
|
tree-sitter-python = "0.23"
|
|
tree-sitter-javascript = "0.23"
|
|
tree-sitter-typescript = "0.23"
|
|
tree-sitter-go = "0.23"
|
|
tree-sitter-java = "0.23"
|
|
tree-sitter-c = "0.23"
|
|
tree-sitter-cpp = "0.23"
|
|
# tree-sitter-kotlin = "0.3" # Temporarily disabled - incompatible with tree-sitter 0.24
|
|
tree-sitter-haskell = { git = "https://github.com/tree-sitter/tree-sitter-haskell" }
|
|
tree-sitter-scheme = "0.24"
|
|
tree-sitter-racket = "0.24"
|
|
streaming-iterator = "0.1"
|
|
walkdir = "2.5"
|
|
|
|
# Datalog engine for invariant verification
|
|
datafrog = "2.0.1"
|
|
|
|
base64 = "0.22.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|
|
serial_test = "3.0"
|