Files
herocoordinator/Cargo.toml
Lee Smet bc30c9cc89 Add supervisor API
Signed-off-by: Lee Smet <lee.smet@hotmail.com>
2025-08-22 23:19:05 +02:00

26 lines
548 B
TOML

[package]
name = "herocoordinator"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5.45", features = ["derive", "env"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tokio = { version = "1.47.1", features = ["full"] }
tracing = "0.1.41"
redis = { version = "0.32.5", features = [
"tokio-comp",
"connection-manager",
"aio",
] }
jsonrpsee = { version = "0.26.0", features = [
"server",
"macros",
"client",
"http-client",
"ws-client",
] }
http = "1.3.1"
async-trait = "0.1.83"