From 4eea2365bd0ba0f3d3d08f7aa2642a2798a8dbd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 23:18:53 +0000 Subject: [PATCH] chore(deps): bump rustler from 0.36.2 to 0.38.0 in /native/bls_nif Bumps [rustler](https://github.com/rusterlium/rustler) from 0.36.2 to 0.38.0. - [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.2...rustler-0.38.0) --- updated-dependencies: - dependency-name: rustler dependency-version: 0.38.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/bls_nif/Cargo.lock | 21 ++++++++++++++------- native/bls_nif/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/native/bls_nif/Cargo.lock b/native/bls_nif/Cargo.lock index 18ea456ac..8aa3ad1b4 100644 --- a/native/bls_nif/Cargo.lock +++ b/native/bls_nif/Cargo.lock @@ -802,12 +802,12 @@ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libloading" -version = "0.8.6" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" +checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60" dependencies = [ "cfg-if", - "windows-targets", + "windows-link", ] [[package]] @@ -1158,11 +1158,12 @@ dependencies = [ [[package]] name = "rustler" -version = "0.36.2" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3fe55230a9c379733dd38ee67d4072fa5c558b2e22b76b0e7f924390456e003" +checksum = "60ac8495cb6091c1f8bd0c3bb816cd4e6f0a073f396d77eb602cb7f0615212de" dependencies = [ "inventory", + "libc", "libloading", "regex-lite", "rustler_codegen", @@ -1170,9 +1171,9 @@ dependencies = [ [[package]] name = "rustler_codegen" -version = "0.36.2" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3b8de901ae61418e2036245d28e41ef58080d04f40b68430471ae36a4e84ed" +checksum = "780a2a6b7e3cfac35820473f85cec1cd84d1bdd37ebcb4e24fb126ef0f074838" dependencies = [ "heck", "inventory", @@ -1530,6 +1531,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-sys" version = "0.52.0" diff --git a/native/bls_nif/Cargo.toml b/native/bls_nif/Cargo.toml index 9f8a58ca5..6d47b9a09 100644 --- a/native/bls_nif/Cargo.toml +++ b/native/bls_nif/Cargo.toml @@ -10,5 +10,5 @@ path = "src/lib.rs" crate-type = ["cdylib"] [dependencies] -rustler = "0.36.2" +rustler = "0.38.0" bls = { git = "https://github.com/sigp/lighthouse", package = "bls", rev = "v7.0.1" }