diff --git a/native/rhai_rustler/Cargo.lock b/native/rhai_rustler/Cargo.lock index bac54a4..4e3679b 100644 --- a/native/rhai_rustler/Cargo.lock +++ b/native/rhai_rustler/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" @@ -192,7 +202,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5996402b1af9424e355dbf1761d0605f0f08eca909609b445383369a2bc83f0a" dependencies = [ - "libloading", + "libloading 0.8.6", "rhai", ] @@ -219,21 +229,21 @@ dependencies = [ [[package]] name = "rustler" -version = "0.36.1" +version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f04a7b61bf2db5495d6c0d2eb4b3f0f366864d47f2482834656e25d1b25fe290" +checksum = "a5c708d8b686a8d426681908369f835af90349f7ebb92ab87ddf14a851efd556" dependencies = [ "inventory", - "libloading", + "libloading 0.9.0", "regex-lite", "rustler_codegen", ] [[package]] name = "rustler_codegen" -version = "0.36.1" +version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf9365a04e3a3a4d3136953d97c67fd0a9c036d36197917961551c2cc1ecb385" +checksum = "da3f478ec72581782a7dd62a5adb406aa076af7cedd7de63fa3676c927eb216a" dependencies = [ "heck", "inventory", @@ -341,6 +351,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/rhai_rustler/Cargo.toml b/native/rhai_rustler/Cargo.toml index 2a1b2ec..5e56240 100644 --- a/native/rhai_rustler/Cargo.toml +++ b/native/rhai_rustler/Cargo.toml @@ -13,7 +13,7 @@ crate-type = ["cdylib"] rhai = { version = "=1.21.0", features = ["sync"] } rhai-dylib = { version = "0.5.0", features = ["sync"] } thiserror = "2.0.12" -rustler = "0.36.1" +rustler = "0.37.2" [features] nif_version_2_15 = ["rustler/nif_version_2_15"]