diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index 0a6940c..a0837a0 100644 --- a/native/test_dylib_module/Cargo.lock +++ b/native/test_dylib_module/Cargo.lock @@ -103,9 +103,9 @@ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" [[package]] name = "libloading" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" +checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" dependencies = [ "cfg-if", "windows-targets", @@ -170,9 +170,9 @@ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" [[package]] name = "rhai" -version = "1.21.0" +version = "1.22.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce4d759a4729a655ddfdbb3ff6e77fb9eadd902dae12319455557796e435d2a6" +checksum = "2780e813b755850e50b178931aaf94ed24f6817f46aaaf5d21c13c12d939a249" dependencies = [ "ahash", "bitflags", @@ -188,9 +188,9 @@ dependencies = [ [[package]] name = "rhai-dylib" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ba94b374f7c1773444814b2b99275206c1dcce454e39e38dbaa9c6e7d6aeba5" +checksum = "2421dae2d6bb465abf1c3c0db337895f5733b6886ce868c055c6537fdb769f48" dependencies = [ "libloading", "rhai", diff --git a/native/test_dylib_module/Cargo.toml b/native/test_dylib_module/Cargo.toml index 76fb800..d0e83c8 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.6.0", features = ["sync"] } +rhai-dylib = { version = "=0.7.0", features = ["sync"] } rustler = "0.36.1"