Skip to content
Open
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
4 changes: 0 additions & 4 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
[registry]
global-credential-providers = ["cargo:token"]

[registries.terraphim]
index = "sparse+https://git.terraphim.cloud/api/packages/terraphim/cargo/"

18 changes: 6 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,15 @@ tracing = "0.1"
tempfile = "3.27"
rustls = { version = "0.23", default-features = false }
rustls-webpki = "0.103.12"
terraphim_config = { version = "1.20.2", registry = "terraphim" }
terraphim_middleware = { version = "1.20.3", registry = "terraphim" }
terraphim_types = { version = "1.20.2", registry = "terraphim" }
terraphim_persistence = { version = "1.20.2", registry = "terraphim" }
terraphim_automata = { version = "1.20.2", registry = "terraphim" }
terraphim_rolegraph = { version = "1.20.2", registry = "terraphim" }
terraphim_config = { version = "1.20.4" }
terraphim_middleware = { version = "1.20.3" }
terraphim_types = { version = "1.20.4" }
terraphim_persistence = { version = "1.20.4" }
terraphim_automata = { version = "1.20.4" }
terraphim_rolegraph = { version = "1.20.4" }

[patch.crates-io]
rustls-webpki = { git = "https://github.com/rustls/webpki.git", tag = "v/0.103.12" }
terraphim_config = { version = "1.20.2", registry = "terraphim" }
terraphim_middleware = { version = "1.20.3", registry = "terraphim" }
terraphim_types = { version = "1.20.2", registry = "terraphim" }
terraphim_persistence = { version = "1.20.2", registry = "terraphim" }
terraphim_automata = { version = "1.20.2", registry = "terraphim" }
terraphim_rolegraph = { version = "1.20.2", registry = "terraphim" }

[profile.release]
panic = "unwind"
Expand Down
31 changes: 15 additions & 16 deletions crates/terraphim_agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,22 @@ comfy-table = { version = "7.0", optional = true }
dirs = "5.0"
directories = "5.0"

terraphim_types = { version = "1.20.2", registry = "terraphim" }
terraphim_settings = { version = "1.0.0", registry = "terraphim" }
terraphim_persistence = { version = "1.20.2", registry = "terraphim" }
terraphim_config = { version = "1.20.2", registry = "terraphim" }
terraphim_automata = { version = "1.20.2", registry = "terraphim" }
terraphim_service = { version = "1.20.6", default-features = false, registry = "terraphim" }
terraphim_middleware = { version = "1.0.0", registry = "terraphim" }
terraphim_rolegraph = { version = "1.20.2", registry = "terraphim" }
terraphim_update = { version = "1.20.2", registry = "terraphim" }
terraphim_hooks = { version = "1.20.2", registry = "terraphim" }
terraphim_command_runtime = { version = "0.1.0", registry = "terraphim" }
terraphim_types = { version = "1.20.4" }
terraphim_settings = { version = "1.20.4" }
terraphim_persistence = { version = "1.20.4" }
terraphim_config = { version = "1.20.4" }
terraphim_automata = { version = "1.20.4" }
terraphim_service = { version = "1.20.6", default-features = false }
terraphim_middleware = { version = "1.20.3" }
terraphim_rolegraph = { version = "1.20.4" }
terraphim_update = { version = "1.20.4" }
terraphim_hooks = { version = "1.20.4" }
terraphim_command_runtime = { version = "0.1.0" }
# MCP tool index — extracted from this crate on 2026-06-28, now consumed
# from the terraphim registry. Issue: terraphim-agents#64.
terraphim_mcp_search = { version = "0.1.2", registry = "terraphim" }
terraphim_tracker = { path = "../terraphim_tracker", version = "1.0.0", registry = "terraphim" }
terraphim_orchestrator = { path = "../terraphim_orchestrator", version = "1.20.2", registry = "terraphim" }
terraphim_sessions = { version = "1.20.4", optional = true, features = ["tsa-full", "aider-connector", "search-index", "opencode-connector"], registry = "terraphim" }
terraphim_tracker = { path = "../terraphim_tracker", version = "1.0.0" }
terraphim_orchestrator = { path = "../terraphim_orchestrator", version = "1.20.2" }
terraphim_sessions = { version = "1.21.1", optional = true, features = ["tsa-full", "aider-connector", "search-index", "opencode-connector"] }

[dev-dependencies]
assert_cmd = "2"
Expand All @@ -101,7 +100,7 @@ reqwest = { workspace = true }
tokio = { workspace = true }
tempfile = { workspace = true }
wiremock = "0.6"
terraphim_test_utils = { version = "1.20.2", registry = "terraphim" }
terraphim_test_utils = { version = "1.20.3" }
insta = { version = "1.41", features = ["yaml", "redactions"] }
terraphim_agent = { path = ".", features = ["repl-full"] }

Expand Down
1 change: 0 additions & 1 deletion crates/terraphim_agent/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pub mod forgiving;
// 2026-06-28; source of truth is `crates/terraphim_mcp_search` in the
// `terraphim-ai` workspace, published as `terraphim_mcp_search v0.1.0` to the
// terraphim registry. Use `terraphim_mcp_search::McpToolIndex` directly.
pub use terraphim_mcp_search::McpToolIndex;

#[cfg(feature = "repl")]
pub mod repl;
Expand Down
Loading