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_wrapper/Cargo.toml
2025-05-13 02:00:35 +03:00

23 lines
538 B
TOML

[package]
name = "rhai_wrapper"
version = "0.1.0"
edition = "2021"
description = "A wrapper to make generic Rust functions Rhai-compatible."
[dependencies]
rhai = "1.18.0"
rhai_macros_derive = { path = "../rhai_macros_derive" }
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
[[example]]
name = "user_management_example"
path = "examples/user_management_example.rs"
[[example]]
name = "rust_rhai_wrapper_example"
path = "examples/rust_rhai_wrapper_example.rs"