diff --git a/.cargo/config.toml b/.cargo/config.toml index 4e45242..822b495 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,6 +1,2 @@ [registry] global-credential-providers = ["cargo:token"] - -[registries.terraphim] -index = "sparse+https://git.terraphim.cloud/api/packages/terraphim/cargo/" - diff --git a/Cargo.toml b/Cargo.toml index 4f813ad..9509551 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/crates/terraphim_agent/Cargo.toml b/crates/terraphim_agent/Cargo.toml index 97211aa..55dc5d6 100644 --- a/crates/terraphim_agent/Cargo.toml +++ b/crates/terraphim_agent/Cargo.toml @@ -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" @@ -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"] } diff --git a/crates/terraphim_agent/src/lib.rs b/crates/terraphim_agent/src/lib.rs index b3ca619..3c2f7b4 100644 --- a/crates/terraphim_agent/src/lib.rs +++ b/crates/terraphim_agent/src/lib.rs @@ -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;