move rhailib to herolib
This commit is contained in:
21
rhailib/research/repl/Cargo.toml
Normal file
21
rhailib/research/repl/Cargo.toml
Normal file
@@ -0,0 +1,21 @@
|
||||
[package]
|
||||
name = "ui_repl"
|
||||
version = "0.1.0"
|
||||
edition = "2024" # Keep 2024 unless issues arise
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "sync"] } # Added "time" for potential timeouts, "sync" for worker
|
||||
url = "2" # For parsing Redis URL
|
||||
tracing = "0.1" # For logging
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
log = "0.4" # rhai_dispatcher uses log crate
|
||||
rustyline = { version = "13.0.0", features = ["derive"] } # For enhanced REPL input
|
||||
tempfile = "3.8" # For creating temporary files for editing
|
||||
|
||||
rhai_dispatcher = { path = "../client" }
|
||||
anyhow = "1.0" # For simpler error handling
|
||||
|
||||
rhailib_worker = { path = "../worker", package = "rhailib_worker" }
|
||||
rhailib_engine = { path = "../engine" }
|
||||
heromodels = { path = "../../../db/heromodels", features = ["rhai"] }
|
||||
rhai = { version = "1.18.0" } # Match version used by worker/engine
|
Reference in New Issue
Block a user