From 01132cfdae7d7187a885cf79d5a3ac1ed8a02e5a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 19 Jul 2024 19:43:36 +0200 Subject: [PATCH] chore(deps): update dependency rules_rust to v0.48.0 (#359) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | rules_rust | bazel_dep | minor | `0.47.1` -> `0.48.0` | | [rules_rust](https://togithub.com/bazelbuild/rules_rust) | http_archive | minor | `0.47.1` -> `0.48.0` | --- ### Release Notes
bazelbuild/rules_rust (rules_rust) ### [`v0.48.0`](https://togithub.com/bazelbuild/rules_rust/releases/tag/0.48.0) [Compare Source](https://togithub.com/bazelbuild/rules_rust/compare/0.47.1...0.48.0) ### 0.48.0 #### Bzlmod ```python bazel_dep(name = "rules_rust", version = "0.48.0") ``` #### WORKSPACE ```python load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_rust", integrity = "sha256-Weev1uz2QztBlDA88JX6A1N72SucD1V8lBsaliM0TTg=", urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.48.0/rules_rust-v0.48.0.tar.gz"], ) ``` Additional documentation can be found at: https://bazelbuild.github.io/rules_rust/#setup #### What's Changed - Add support for shared test-only modules by [@​IvanIsCoding](https://togithub.com/IvanIsCoding) in [https://github.com/bazelbuild/rules_rust/pull/2734](https://togithub.com/bazelbuild/rules_rust/pull/2734) - Bazelmod documentation and code examples. by [@​marvin-hansen](https://togithub.com/marvin-hansen) in [https://github.com/bazelbuild/rules_rust/pull/2713](https://togithub.com/bazelbuild/rules_rust/pull/2713) - Add support for --wrap-extern-fns to bindgen rules by [@​hlopko](https://togithub.com/hlopko) in [https://github.com/bazelbuild/rules_rust/pull/2743](https://togithub.com/bazelbuild/rules_rust/pull/2743) - Pass toolchain param in ctx.action.run in bindgen by [@​hlopko](https://togithub.com/hlopko) in [https://github.com/bazelbuild/rules_rust/pull/2745](https://togithub.com/bazelbuild/rules_rust/pull/2745) - Make it possible to not specify clang binary in bindgen by [@​hlopko](https://togithub.com/hlopko) in [https://github.com/bazelbuild/rules_rust/pull/2746](https://togithub.com/bazelbuild/rules_rust/pull/2746) - Make rustfmt toolchain optional in bindgen by [@​hlopko](https://togithub.com/hlopko) in [https://github.com/bazelbuild/rules_rust/pull/2744](https://togithub.com/bazelbuild/rules_rust/pull/2744) - Fix collecting cc deps in collect_deps by [@​mvukov](https://togithub.com/mvukov) in [https://github.com/bazelbuild/rules_rust/pull/2699](https://togithub.com/bazelbuild/rules_rust/pull/2699) - Support incompatible enable proto toolchain resolution by [@​illicitonion](https://togithub.com/illicitonion) in [https://github.com/bazelbuild/rules_rust/pull/2741](https://togithub.com/bazelbuild/rules_rust/pull/2741) - Release 0.48.0 by [@​illicitonion](https://togithub.com/illicitonion) in [https://github.com/bazelbuild/rules_rust/pull/2750](https://togithub.com/bazelbuild/rules_rust/pull/2750) #### New Contributors - [@​IvanIsCoding](https://togithub.com/IvanIsCoding) made their first contribution in [https://github.com/bazelbuild/rules_rust/pull/2734](https://togithub.com/bazelbuild/rules_rust/pull/2734) - [@​marvin-hansen](https://togithub.com/marvin-hansen) made their first contribution in [https://github.com/bazelbuild/rules_rust/pull/2713](https://togithub.com/bazelbuild/rules_rust/pull/2713) - [@​mvukov](https://togithub.com/mvukov) made their first contribution in [https://github.com/bazelbuild/rules_rust/pull/2699](https://togithub.com/bazelbuild/rules_rust/pull/2699) **Full Changelog**: https://github.com/bazelbuild/rules_rust/compare/0.47.1...0.48.0
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/bazel-contrib/toolchains_llvm). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- tests/MODULE.bazel | 2 +- tests/WORKSPACE | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/MODULE.bazel b/tests/MODULE.bazel index afc373c9..eecd5158 100644 --- a/tests/MODULE.bazel +++ b/tests/MODULE.bazel @@ -24,7 +24,7 @@ bazel_dep(name = "bazel_skylib", version = "1.7.1") bazel_dep(name = "platforms", version = "0.0.10") bazel_dep(name = "rules_cc", version = "0.0.9") bazel_dep(name = "rules_go", version = "0.49.0", repo_name = "io_bazel_rules_go") -bazel_dep(name = "rules_rust", version = "0.47.1") +bazel_dep(name = "rules_rust", version = "0.48.0") bazel_dep(name = "rules_foreign_cc", version = "0.11.1") bazel_dep(name = "abseil-cpp", version = "20240116.2", repo_name = "com_google_absl") diff --git a/tests/WORKSPACE b/tests/WORKSPACE index 9c6af65e..9c8e3e42 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -188,8 +188,8 @@ go_download_sdk( http_archive( name = "rules_rust", - sha256 = "df973075339aaaabb8cbe697808514d82d8f00a333e3ebb227bfd4308182985b", - urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.47.1/rules_rust-v0.47.1.tar.gz"], + sha256 = "59e7afd6ecf6433b4194303cf095fa03537bd92b9c0f557c941b1a9623344d38", + urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.48.0/rules_rust-v0.48.0.tar.gz"], ) load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")