Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
452 changes: 248 additions & 204 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ default-run = "vtcode"
[workspace.dependencies]
base64 = "0.22.1"
crossterm = "0.29"
schemars = "0.8"
thiserror = "2.0.17"
schemars = "1.2"
thiserror = "2.0.18"
unicode-width = "0.2.0"
serde_json = "1.0"
tempfile = "3.24"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
regex = "1.12"
Expand Down
4 changes: 2 additions & 2 deletions vtcode-acp-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ keywords = ["vtcode", "acp", "agent", "client-connection", "vt"]
[dependencies]
agent-client-protocol = "0.9.3"
anyhow = "1.0"
tokio = { version = "1.48", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { workspace = true }
tracing = "0.1"
uuid = { version = "1.19.0", features = ["v4"] }
uuid = { version = "1.20.0", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
futures-util = "0.3"

Expand Down
4 changes: 2 additions & 2 deletions vtcode-bash-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ exec-events = ["dep:vtcode-exec-events"]

[dependencies]
anyhow = "1.0"
lru = "0.12"
lru = "0.16"
parking_lot = "0.12"
path-clean = "1.0"
shell-escape = "0.1"
tokio = { version = "1.0", features = [
tokio = { version = "1.49", features = [
"sync",
"macros",
"rt",
Expand Down
10 changes: 5 additions & 5 deletions vtcode-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ base64 = { workspace = true }
dirs = "6.0"
directories = "6.0"
hostname = "0.4"
indexmap = { version = "2.12", features = ["serde"] }
indexmap = { version = "2.13", features = ["serde"] }
once_cell = "1.19"
regex = "1.12"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
Expand All @@ -28,7 +28,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = { workspace = true }
serde_yaml = "0.9"
sha2 = "0.10"
toml = "0.9.10"
toml = "0.9.11"
toml_edit = "0.24.0"
tracing = "0.1"
urlencoding = "2.1"
Expand All @@ -38,7 +38,7 @@ schemars = { workspace = true, optional = true, features = ["indexmap2"] }

# Unix-specific dependencies
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30", features = ["user"] }
nix = { version = "0.31", features = ["user"] }


[features]
Expand All @@ -49,11 +49,11 @@ schema = ["dep:schemars"]
[dev-dependencies]
tempfile = "3.24"
assert_fs = "1.1"
serial_test = "3.1"
serial_test = "3.3"

[build-dependencies]
anyhow = "1.0"
indexmap = { version = "2.12", features = ["serde"] }
indexmap = { version = "2.13", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { workspace = true }

Expand Down
20 changes: 10 additions & 10 deletions vtcode-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ reqwest = { version = "0.12", features = ["json", "rustls-tls", "stream"] }
serde = { workspace = true }
serde_json = { workspace = true }
json5 = "1.3"
toml = "0.9.10"
toml = "0.9.11"
toml_edit = "0.24"
tokio = { version = "1.48", features = [
tokio = { version = "1.49", features = [
"fs",
"io-util",
"macros",
Expand Down Expand Up @@ -60,7 +60,7 @@ tree-sitter-typescript = "0.23"
tree-sitter-go = "0.25"
tree-sitter-java = "0.23"
tree-sitter-bash = "0.25"
indexmap = { version = "2.12", features = ["serde"] }
indexmap = { version = "2.13", features = ["serde"] }
itertools = "0.14.0"
tempfile = { workspace = true }
dunce = "1.0"
Expand All @@ -84,7 +84,7 @@ dirs = "6.0"
# YAML support
serde_yaml = "0.9"
# Zip support for skill packaging
zip = { version = "7.0", default-features = false, features = ["deflate"] }
zip = { version = "7.2", default-features = false, features = ["deflate"] }
# Semantic versioning for Ollama version detection (Codex pattern)
semver = { workspace = true }
tracing = "0.1"
Expand All @@ -106,7 +106,7 @@ syntect = { version = "5.2", default-features = false, features = [
unicode-segmentation = "1.11"
unicode-width = { workspace = true }
crossterm = { workspace = true, features = ["event-stream"] }
nix = { version = "0.30", features = ["user", "signal"] }
nix = { version = "0.31", features = ["user", "signal"] }
ratatui = { version = "0.30", default-features = false, features = [
"crossterm",
"unstable-rendered-line-info",
Expand All @@ -128,7 +128,7 @@ rig = { package = "rig-core", version = "0.23.1", default-features = false, feat
] }
vt100 = "0.15.2"
portable-pty = "0.9.0"
ansi-to-tui = "8.0.0"
ansi-to-tui = "8.0.1"
vtcode-commons = { path = "../vtcode-commons", version = "0.74.7" }
vtcode-exec-events = { path = "../vtcode-exec-events", version = "0.74.7" }
vtcode-config = { path = "../vtcode-config", version = "0.74.7" }
Expand All @@ -142,16 +142,16 @@ schemars = { workspace = true, optional = true }

# MCP (Model Context Protocol) support
# Phase 1: Upgrade to 0.9.0+ for improved transport and lifecycle management
rmcp = { version = "0.12", features = [
rmcp = { version = "0.14", features = [
"client",
"transport-child-process",
"transport-streamable-http-client-reqwest",
] }
mcp-types = { path = "../third-party/mcp-types", version = "0.1.1" }
openai-harmony = "0.0.8"
url = "2.5"
jsonschema = "0.38"
uuid = { version = "1.19.0", features = ["v4", "fast-rng", "serde"] }
jsonschema = "0.40"
uuid = { version = "1.20.0", features = ["v4", "fast-rng", "serde"] }
which = "8.0.0"
textwrap = "0.16"
editor-command = "2.0"
Expand Down Expand Up @@ -209,7 +209,7 @@ rustdoc-args = ["--cfg", "docsrs"]
assert_fs = "1.1"
mockito = "1.7"
proptest = "1.5"
criterion = "0.5"
criterion = "0.8"
wiremock = "0.6.5"

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion vtcode-exec-events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ schemars = { workspace = true, optional = true, features = [
"derive",
"indexmap2",
] }
uuid = { version = "1.0", features = ["v4", "serde"] }
uuid = { version = "1.20", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }

[lints]
Expand Down
2 changes: 1 addition & 1 deletion vtcode-lmstudio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ reqwest = { version = "0.12", features = ["json", "stream"] }
serde_json.workspace = true
tokio.workspace = true
tracing = { version = "0.1", features = ["log"] }
which = "6.0"
which = "8.0"
vtcode-config = { path = "../vtcode-config" }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions vtcode-markdown-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ cache = []
[dependencies]
anyhow = "1.0"
fs2 = "0.4"
indexmap = { version = "2.12", features = ["serde"] }
indexmap = { version = "2.13", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { workspace = true }
serde_yaml = "0.9"

[dev-dependencies]
tempfile = "3.24"
serial_test = "3.1"
serial_test = "3.3"