Switch hero-job dependencies to Git URLs in main supervisor package

This commit is contained in:
Timur Gordon
2025-11-06 13:49:00 +01:00
parent 8e79c343a7
commit af5cd30516

View File

@@ -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"] }