25 lines
768 B
TOML
25 lines
768 B
TOML
[package]
|
|
name = "rhailib_dsl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Central Rhai engine for heromodels"
|
|
|
|
[dependencies]
|
|
rhai = { version = "=1.21.0", features = ["std", "sync", "decimal", "internals"] }
|
|
heromodels = { path = "../../../db/heromodels", features = ["rhai"] }
|
|
heromodels_core = { path = "../../../db/heromodels_core" }
|
|
chrono = "0.4"
|
|
heromodels-derive = { path = "../../../db/heromodels-derive" }
|
|
macros = { path = "../macros"}
|
|
derive = { path = "../derive"}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
dotenv = "0.15"
|
|
rhai_dispatcher = { path = "../dispatcher" }
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|