From 035449498a8e8ac3d7998c85bada8649341369e1 Mon Sep 17 00:00:00 2001 From: ruv Date: Wed, 1 Jul 2026 12:50:30 -0400 Subject: [PATCH] chore(helix-demo): add version reqs to path deps so it can publish to crates.io --- crates/helix-demo/Cargo.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/helix-demo/Cargo.toml b/crates/helix-demo/Cargo.toml index db543c5..01d91ea 100644 --- a/crates/helix-demo/Cargo.toml +++ b/crates/helix-demo/Cargo.toml @@ -11,11 +11,11 @@ description = "Synthetic, fictional demo dossier (the 'Alex Rivera' persona) tha [dependencies] serde = { workspace = true } serde_json = { workspace = true } -helix-provenance = { path = "../helix-provenance" } -helix-pipeline = { path = "../helix-pipeline" } -helix-escalation = { path = "../helix-escalation" } -helix-focus = { path = "../helix-focus" } -helix-score = { path = "../helix-score" } -helix-bioage = { path = "../helix-bioage" } -helix-timeline = { path = "../helix-timeline" } -helix-numeric = { path = "../helix-numeric" } +helix-provenance = { path = "../helix-provenance", version = "0.1.2" } +helix-pipeline = { path = "../helix-pipeline", version = "0.1.2" } +helix-escalation = { path = "../helix-escalation", version = "0.1.2" } +helix-focus = { path = "../helix-focus", version = "0.1.2" } +helix-score = { path = "../helix-score", version = "0.1.2" } +helix-bioage = { path = "../helix-bioage", version = "0.1.2" } +helix-timeline = { path = "../helix-timeline", version = "0.1.2" } +helix-numeric = { path = "../helix-numeric", version = "0.1.2" }