create macros for generating rhai wrappers and add tests

This commit is contained in:
timurgordon
2025-05-12 02:31:45 +03:00
parent 22032f329a
commit 16ad4f5743
11 changed files with 2735 additions and 0 deletions

12
rhai_wrapper/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "rhai_wrapper"
version = "0.1.0"
edition = "2021"
description = "A wrapper to make generic Rust functions Rhai-compatible."
[dependencies]
rhai = "1.21.0"
rhai_macros_derive = { path = "../rhai_macros_derive" }
[dev-dependencies]