From e493085892ae911170e73f137b73827ae11c6b29 Mon Sep 17 00:00:00 2001 From: Timur Gordon <31495328+timurgordon@users.noreply.github.com> Date: Tue, 28 Oct 2025 12:28:40 +0100 Subject: [PATCH] Use git dependency for runner_rust instead of path This allows supervisor to be used as a git dependency by other projects --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c350466..da54601 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] # Runner crate with integrated job module -runner_rust = { path = "../runner_rust" } +runner_rust = { git = "https://git.ourworld.tf/herocode/runner_rust.git" } # Async runtime tokio = { version = "1.0", features = ["full"] }