diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index 1d52b8a..72743cf 100644 --- a/native/test_dylib_module/Cargo.lock +++ b/native/test_dylib_module/Cargo.lock @@ -187,9 +187,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rhai" -version = "1.17.1" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6273372244d04a8a4b0bec080ea1e710403e88c5d9d83f9808b2bfa64f0982a" +checksum = "7a7d88770120601ba1e548bb6bc2a05019e54ff01b51479e38e64ec3b59d4759" dependencies = [ "ahash", "bitflags", @@ -204,9 +204,9 @@ dependencies = [ [[package]] name = "rhai-dylib" -version = "0.2.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808e3fc98160fedd9df71c765543d901718534bb5e034aafa50e10ffc2352b41" +checksum = "abcc35e72236eb67aaaab95006395ad6763451975f4273b0bc2e6606038aabcb" dependencies = [ "libloading", "rhai", @@ -214,9 +214,9 @@ dependencies = [ [[package]] name = "rhai_codegen" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9db7f8dc4c9d48183a17ce550574c42995252b82d267eaca3fcd1b979159856c" +checksum = "59aecf17969c04b9c0c5d21f6bc9da9fec9dd4980e64d1871443a476589d8c86" dependencies = [ "proc-macro2", "quote", diff --git a/native/test_dylib_module/Cargo.toml b/native/test_dylib_module/Cargo.toml index 4752ca3..90b605b 100644 --- a/native/test_dylib_module/Cargo.toml +++ b/native/test_dylib_module/Cargo.toml @@ -10,5 +10,5 @@ path = "src/lib.rs" crate-type = ["cdylib"] [dependencies] -rhai-dylib = { version = "=0.2.1", features = ["sync"] } +rhai-dylib = { version = "=0.3.0", features = ["sync"] } rustler = "0.31.0"