Files
herolib_rust/rhailib/src/flow/Cargo.toml
2025-08-21 14:32:24 +02:00

17 lines
485 B
TOML

[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"