From 4810b77cc48b8bdc7e4104e1cfc9bda646178e7a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 07:29:48 +0200 Subject: [PATCH] chore(deps): update dependency rules_rust to v0.49.2 (#369) 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](https://togithub.com/bazelbuild/rules_rust) | http_archive | patch | `0.49.1` -> `0.49.2` | --- ### Release Notes
bazelbuild/rules_rust (rules_rust) ### [`v0.49.2`](https://togithub.com/bazelbuild/rules_rust/releases/tag/0.49.2) [Compare Source](https://togithub.com/bazelbuild/rules_rust/compare/0.49.1...0.49.2) ### 0.49.2 #### Bzlmod ```python bazel_dep(name = "rules_rust", version = "0.49.2") ``` #### WORKSPACE ```python load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_rust", integrity = "sha256-5r5uj7WUevWfVgA45OWPa0brUJilfa0KOKHsVLcQBmA=", urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.49.2/rules_rust-v0.49.2.tar.gz"], ) ``` Additional documentation can be found at: https://bazelbuild.github.io/rules_rust/#setup #### What's Changed - Introduce feature `rules_rust_link_cc`. by [@​yuzhy8701](https://togithub.com/yuzhy8701) in [https://github.com/bazelbuild/rules_rust/pull/2723](https://togithub.com/bazelbuild/rules_rust/pull/2723) - Fix up fake resolve roots for proc macros by [@​illicitonion](https://togithub.com/illicitonion) in [https://github.com/bazelbuild/rules_rust/pull/2784](https://togithub.com/bazelbuild/rules_rust/pull/2784) - Release 0.49.2 by [@​illicitonion](https://togithub.com/illicitonion) in [https://github.com/bazelbuild/rules_rust/pull/2785](https://togithub.com/bazelbuild/rules_rust/pull/2785) **Full Changelog**: https://github.com/bazelbuild/rules_rust/compare/0.49.1...0.49.2
--- ### 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 this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/bazel-contrib/toolchains_llvm). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- tests/WORKSPACE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/WORKSPACE b/tests/WORKSPACE index 36247628..ce31fffe 100644 --- a/tests/WORKSPACE +++ b/tests/WORKSPACE @@ -188,8 +188,8 @@ go_download_sdk( http_archive( name = "rules_rust", - sha256 = "bcf710126f6974dc2db56d9ec5ec4c7c6c4e2c53b0728b44c35b770a48024bc9", - urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.49.1/rules_rust-v0.49.1.tar.gz"], + sha256 = "e6be6e8fb5947af59f560038e4e58f6b46eb5098a57dad0a38a1ec54b7100660", + urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.49.2/rules_rust-v0.49.2.tar.gz"], ) load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")