From 6fdc72390e91b89f65597577ad4781396aeaa83e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 13:08:03 +0000 Subject: [PATCH] build(deps): bump rustler in /native/test_dylib_module Bumps [rustler](https://github.com/rusterlium/rustler) from 0.36.1 to 0.37.2. - [Release notes](https://github.com/rusterlium/rustler/releases) - [Changelog](https://github.com/rusterlium/rustler/blob/master/CHANGELOG.md) - [Commits](https://github.com/rusterlium/rustler/compare/rustler-0.36.1...rustler-0.37.2) --- updated-dependencies: - dependency-name: rustler dependency-version: 0.37.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/test_dylib_module/Cargo.lock | 28 ++++++++++++++++++++++------ native/test_dylib_module/Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index 0a6940c..c033a61 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" @@ -192,7 +202,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ba94b374f7c1773444814b2b99275206c1dcce454e39e38dbaa9c6e7d6aeba5" dependencies = [ - "libloading", + "libloading 0.8.6", "rhai", ] @@ -209,21 +219,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", @@ -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..71ac431 100644 --- a/native/test_dylib_module/Cargo.toml +++ b/native/test_dylib_module/Cargo.toml @@ -11,4 +11,4 @@ crate-type = ["cdylib"] [dependencies] rhai-dylib = { version = "=0.6.0", features = ["sync"] } -rustler = "0.36.1" +rustler = "0.37.2"