add tests and fix job impl

This commit is contained in:
Timur Gordon
2025-09-09 17:54:09 +02:00
parent 629d59f7db
commit d744c2cd16
21 changed files with 1067 additions and 393 deletions

View File

@@ -1,10 +1,10 @@
[package]
name = "actor_system"
name = "runner_rust"
version = "0.1.0"
edition = "2024"
[lib]
name = "actor_system" # Can be different from package name, or same
name = "runner_rust" # Can be different from package name, or same
path = "src/lib.rs"
[[bin]]
@@ -23,9 +23,6 @@ path = "test_sync_runner.rs"
name = "engine"
path = "examples/engine.rs"
[[example]]
name = "actor"
path = "examples/actor.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -45,8 +42,6 @@ toml = "0.8"
thiserror = "1.0"
async-trait = "0.1"
# Core hero dependencies
hero-job = { path = "../job" }
#hero-job = { git = "https://git.ourworld.tf/herocode/job.git" }
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" }