rhai rpc queue worker and client

This commit is contained in:
timurgordon
2025-06-01 02:10:58 +03:00
parent ec4769a6b0
commit 061aee6f1d
9 changed files with 572 additions and 0 deletions

17
rhai_client/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "rhai_client"
version = "0.1.0"
edition = "2021"
[dependencies]
redis = { version = "0.25.0", features = ["tokio-comp"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.6", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } # For async main in examples, and general async
[dev-dependencies] # For examples later
env_logger = "0.10"
rhai = "1.18.0" # For examples that might need to show engine setup