move rhailib to herolib

This commit is contained in:
Timur Gordon
2025-08-21 14:32:24 +02:00
parent aab2b6f128
commit aa0248ef17
121 changed files with 16412 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
[package]
name = "flow"
version = "0.1.0"
edition = "2021"
description = "Simple flow manager for Rhai scripts"
[dependencies]
rhai = { version = "=1.21.0", features = ["std", "sync"] }
rhai_dispatcher = { path = "../dispatcher" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
redis = { version = "0.23", features = ["tokio-comp"] }
uuid = { version = "1.0", features = ["v4"] }
[dev-dependencies]
tempfile = "3"