[package] name = "rhai_system" version = "0.1.0" edition = "2021" description = "A thread-safe system for creating and managing Rhai script engines with hot reloading support" [dependencies] rhai = { version = "1.15.0", features = ["sync"] } thiserror = "1.0" log = "0.4" notify = "5.1.0" uuid = { version = "1.3.0", features = ["v4", "serde"] } [dev-dependencies] tokio = { version = "1.28", features = ["full"] } tempfile = "3.5" rand = "0.8" [[example]] name = "hot_reload" path = "examples/hot_reload/main.rs"