diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index 0a6940c..2fa3377 100644 --- a/native/test_dylib_module/Cargo.lock +++ b/native/test_dylib_module/Cargo.lock @@ -111,6 +111,16 @@ dependencies = [ "windows-targets", ] +[[package]] +name = "libloading" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60" +dependencies = [ + "cfg-if", + "windows-link", +] + [[package]] name = "no-std-compat" version = "0.4.1" @@ -170,9 +180,9 @@ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" [[package]] name = "rhai" -version = "1.21.0" +version = "1.23.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce4d759a4729a655ddfdbb3ff6e77fb9eadd902dae12319455557796e435d2a6" +checksum = "f4e35aaaa439a5bda2f8d15251bc375e4edfac75f9865734644782c9701b5709" dependencies = [ "ahash", "bitflags", @@ -188,19 +198,19 @@ dependencies = [ [[package]] name = "rhai-dylib" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ba94b374f7c1773444814b2b99275206c1dcce454e39e38dbaa9c6e7d6aeba5" +checksum = "e312d97e1ad894f650b4a27a740bd84816e3d2a75b9fb18c36f8eaf2373e5820" dependencies = [ - "libloading", + "libloading 0.9.0", "rhai", ] [[package]] name = "rhai_codegen" -version = "2.2.0" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5a11a05ee1ce44058fa3d5961d05194fdbe3ad6b40f904af764d81b86450e6b" +checksum = "d4322a2a4e8cf30771dd9f27f7f37ca9ac8fe812dddd811096a98483080dabe6" dependencies = [ "proc-macro2", "quote", @@ -214,7 +224,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f04a7b61bf2db5495d6c0d2eb4b3f0f366864d47f2482834656e25d1b25fe290" dependencies = [ "inventory", - "libloading", + "libloading 0.8.6", "regex-lite", "rustler_codegen", ] @@ -319,6 +329,12 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + [[package]] name = "windows-targets" version = "0.52.6" diff --git a/native/test_dylib_module/Cargo.toml b/native/test_dylib_module/Cargo.toml index 76fb800..34bee4e 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.8.0", features = ["sync"] } rustler = "0.36.1"