remove unused dep and move job out

This commit is contained in:
Timur Gordon
2025-09-01 16:21:31 +02:00
parent ef17d36300
commit 44b1dd4249
24 changed files with 2558 additions and 2739 deletions

View File

@@ -4,6 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
# Shared job crate
hero-job = { git = "https://git.ourworld.tf/herocode/job" }
# Async runtime
tokio = { version = "1.0", features = ["full"] }
@@ -23,7 +25,6 @@ chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
env_logger = "0.10"
sal-service-manager = { path = "../sal/service_manager" }
# CLI argument parsing
clap = { version = "4.0", features = ["derive"] }
@@ -37,6 +38,12 @@ anyhow = "1.0"
tower-http = { version = "0.5", features = ["cors"] }
tower = "0.4"
# Base64 encoding for Mycelium payloads
base64 = "0.22"
# Random number generation for message IDs
rand = "0.8"
[dev-dependencies]
tokio-test = "0.4"
hero-supervisor-openrpc-client = { path = "clients/openrpc" }