From fa97d24a8a0df33d1c6beb72923f1dbf97398ac8 Mon Sep 17 00:00:00 2001 From: rUv Date: Fri, 26 Dec 2025 23:42:05 +0000 Subject: [PATCH] fix(gated-transformer): use explicit deps for standalone builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace workspace dependencies with explicit versions to allow the crate to build outside of the workspace context (e.g., Docker). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- crates/ruvector-mincut-gated-transformer/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/ruvector-mincut-gated-transformer/Cargo.toml b/crates/ruvector-mincut-gated-transformer/Cargo.toml index c36be0adf..e7aad25ea 100644 --- a/crates/ruvector-mincut-gated-transformer/Cargo.toml +++ b/crates/ruvector-mincut-gated-transformer/Cargo.toml @@ -45,16 +45,16 @@ no_std_gateway = [] [dependencies] # Core types only - avoid heavy dependencies -thiserror = { workspace = true } -serde = { workspace = true } +thiserror = "2.0" +serde = { version = "1.0", features = ["derive"] } # Optional WASM support getrandom = { version = "0.2", optional = true } [dev-dependencies] -criterion = { workspace = true } -proptest = { workspace = true } -rand = { workspace = true } +criterion = { version = "0.5", features = ["html_reports"] } +proptest = "1.5" +rand = "0.8" [[bench]] name = "latency"