From af5cd3051628db629efa325b5b6dc64630b3a4c2 Mon Sep 17 00:00:00 2001 From: Timur Gordon <31495328+timurgordon@users.noreply.github.com> Date: Thu, 6 Nov 2025 13:49:00 +0100 Subject: [PATCH] Switch hero-job dependencies to Git URLs in main supervisor package --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f729884..ae32625 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,10 +5,10 @@ edition = "2021" [dependencies] # Job types -hero-job = { path = "../job/rust" } -# hero-job = { git = "https://git.ourworld.tf/herocode/job.git", subdirectory = "rust" } -hero-job-client = { path = "../job/rust/client" } -# hero-job-client = { git = "https://git.ourworld.tf/herocode/job.git", subdirectory = "rust/client" } +# hero-job = { path = "../job/rust" } +hero-job = { git = "https://git.ourworld.tf/herocode/job.git" } +# hero-job-client = { path = "../job/rust/client" } +hero-job-client = { git = "https://git.ourworld.tf/herocode/job.git" } # Async runtime tokio = { version = "1.0", features = ["full"] }