23 lines
819 B
TOML
23 lines
819 B
TOML
[package]
|
|
name = "circles_orchestrator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
# clap = { version = "4.0", features = ["derive"], optional = true } # Optional for future args
|
|
dirs = "5.0"
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
comfy-table = "7.0" # For table display
|
|
|
|
# Path dependencies to other local crates
|
|
heromodels = { path = "../../db/heromodels" } # Changed from ourdb
|
|
rhai_engine = { path = "../../rhailib/src/engine" }
|
|
rhai_worker = { path = "../../rhailib/src/worker" }
|
|
# rhai_client is used by circle_ws_lib, not directly by orchestrator usually
|
|
circle_ws_lib = { path = "../server_ws" } |