33 lines
946 B
TOML
33 lines
946 B
TOML
[package]
|
|
name = "runner-osiris"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Osiris Runner - Database-backed runner"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "runner_osiris"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Runner library
|
|
hero-runner = { path = "../../../lib/runner" }
|
|
hero-job = { path = "../../../lib/models/job" }
|
|
|
|
# Core dependencies
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
clap.workspace = true
|
|
|
|
# Rhai scripting
|
|
rhai = { version = "1.21.0", features = ["std", "sync", "serde"] }
|
|
|
|
# Osiris dependencies
|
|
osiris = { package = "osiris-core", path = "../../../lib/osiris/core" }
|
|
heromodels = { git = "https://git.ourworld.tf/herocode/db.git" }
|
|
heromodels_core = { git = "https://git.ourworld.tf/herocode/db.git" }
|
|
heromodels-derive = { git = "https://git.ourworld.tf/herocode/db.git" }
|
|
rhailib_dsl = { git = "https://git.ourworld.tf/herocode/rhailib.git" }
|