This repository has been archived on 2025-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
rhaj/rhai_engine/Cargo.toml
2025-04-03 12:35:55 +02:00

23 lines
375 B
TOML

[package]
name = "rhai_engine"
version = "0.1.0"
edition = "2021"
[lib]
name = "rhai_engine"
path = "src/lib.rs"
[[bin]]
name = "rhai_engine"
path = "src/main.rs"
[[bin]]
name = "test_dynamic_loading"
path = "examples/loadscripts/test_dynamic_loading.rs"
[dependencies]
rhai = "1.12.0"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"