This commit is contained in:
Timur Gordon
2025-08-08 09:54:50 +02:00
parent e66bee09cf
commit 89a3abee63
78 changed files with 12411 additions and 423 deletions

View File

@@ -4,12 +4,16 @@ version = "0.1.0"
edition = "2024"
[lib]
name = "actor_osis" # Can be different from package name, or same
name = "actor_system" # Can be different from package name, or same
path = "src/lib.rs"
[[bin]]
name = "actor_osis"
path = "cmd/actor_osis.rs"
name = "actor_system"
path = "cmd/actor.rs"
[[bin]]
name = "actor_system_tui"
path = "cmd/terminal_ui.rs"
[[example]]
name = "engine"
@@ -22,6 +26,7 @@ path = "examples/actor.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
redis = { version = "0.25.0", features = ["tokio-comp"] }
rhai = { version = "1.21.0", features = ["std", "sync", "decimal", "internals", "serde"] }
serde = { version = "1.0", features = ["derive"] }
@@ -36,12 +41,26 @@ toml = "0.8"
thiserror = "1.0"
async-trait = "0.1"
hero_job = { git = "https://git.ourworld.tf/herocode/baobab.git"}
baobab_actor = { git = "https://git.ourworld.tf/herocode/baobab.git", branch = "logger"}
baobab_actor = { git = "https://git.ourworld.tf/herocode/baobab.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" }
rhailib_dsl = { git = "https://git.ourworld.tf/herocode/rhailib.git" }
hero_logger = { git = "https://git.ourworld.tf/herocode/baobab.git", branch = "logger" }
sal-os = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-redisclient = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-postgresclient = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-process = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-virt = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-git = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-zinit-client = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-mycelium = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-text = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-net = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-kubernetes = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-service-manager = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-vault = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
sal-hetzner = { git = "https://git.ourworld.tf/herocode/herolib_rust.git" }
[features]
default = ["calendar", "finance"]