From 34f44da4a373b73339c86e5405cd91860e636842 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 06:55:33 +0000 Subject: [PATCH] Bump rustler from 0.34.0 to 0.36.0 in /native/zenohex_nif Bumps [rustler](https://github.com/rusterlium/rustler) from 0.34.0 to 0.36.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.34.0...rustler-0.36.0) --- updated-dependencies: - dependency-name: rustler dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/zenohex_nif/Cargo.lock | 42 ++++++++++------------------------- native/zenohex_nif/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 31 deletions(-) diff --git a/native/zenohex_nif/Cargo.lock b/native/zenohex_nif/Cargo.lock index 8de433e..2d989b5 100644 --- a/native/zenohex_nif/Cargo.lock +++ b/native/zenohex_nif/Cargo.lock @@ -1584,6 +1584,12 @@ dependencies = [ "regex-syntax 0.8.2", ] +[[package]] +name = "regex-lite" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" + [[package]] name = "regex-syntax" version = "0.6.29" @@ -1717,20 +1723,21 @@ dependencies = [ [[package]] name = "rustler" -version = "0.34.0" +version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94bdfa68c0388cbd725f1ca54e975956482c262599e5cced04a903eec918b7f" +checksum = "1f7b219d7473cf473409665a4898d66688b34736e51bb5791098b0d3390e4c98" dependencies = [ "inventory", + "libloading", + "regex-lite", "rustler_codegen", - "rustler_sys", ] [[package]] name = "rustler_codegen" -version = "0.34.0" +version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "996dc019acb78b91b4e0c1bd6fa2cd509a835d309de762dc15213b97eac399da" +checksum = "743ec5267bd5f18fd88d89f7e729c0f43b97d9c2539959915fa1f234300bb621" dependencies = [ "heck", "inventory", @@ -1739,16 +1746,6 @@ dependencies = [ "syn 2.0.58", ] -[[package]] -name = "rustler_sys" -version = "2.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddd0e2c955cfc86ea4680067e1d5e711427b43f7befcb6e23c7807cf3dd90e97" -dependencies = [ - "regex", - "unreachable", -] - [[package]] name = "rustls" version = "0.21.10" @@ -2457,15 +2454,6 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" -[[package]] -name = "unreachable" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" -dependencies = [ - "void", -] - [[package]] name = "unsafe-libyaml" version = "0.2.10" @@ -2569,12 +2557,6 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" -[[package]] -name = "void" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" - [[package]] name = "waker-fn" version = "1.1.1" diff --git a/native/zenohex_nif/Cargo.toml b/native/zenohex_nif/Cargo.toml index c8e9a34..ac8ff48 100644 --- a/native/zenohex_nif/Cargo.toml +++ b/native/zenohex_nif/Cargo.toml @@ -13,5 +13,5 @@ crate-type = ["cdylib"] flume = "0.11.1" futures = "0.3.31" # WHY we specify NIF 2.15 https://github.com/biyooon-ex/zenohex/issues/71 -rustler = { version = "=0.34.0", features = ["nif_version_2_15"] } +rustler = { version = "=0.36.0", features = ["nif_version_2_15"] } zenoh = "=0.11.0"