move repos into monorepo
This commit is contained in:
42
bin/coordinator/Cargo.toml
Normal file
42
bin/coordinator/Cargo.toml
Normal file
@@ -0,0 +1,42 @@
|
||||
[package]
|
||||
name = "hero-coordinator"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
description = "Hero Coordinator - Manages job execution across runners"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[lib]
|
||||
name = "hero_coordinator"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "coordinator"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
# Core dependencies
|
||||
tokio.workspace = true
|
||||
async-trait.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
thiserror.workspace = true
|
||||
clap.workspace = true
|
||||
|
||||
# Redis
|
||||
redis.workspace = true
|
||||
|
||||
# JSON-RPC
|
||||
jsonrpsee.workspace = true
|
||||
|
||||
# HTTP client
|
||||
reqwest = { version = "0.12.7", features = ["json", "rustls-tls"] }
|
||||
|
||||
# Base64 encoding
|
||||
base64 = "0.22.1"
|
||||
|
||||
# Tracing
|
||||
tracing.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
|
||||
# Hero dependencies
|
||||
hero-job = { path = "../../lib/models/job" }
|
||||
Reference in New Issue
Block a user