From 30dd71c125f472cb48ef6f20cb782892da4af736 Mon Sep 17 00:00:00 2001 From: Zemnmez's Renovate Bot Date: Fri, 4 Oct 2024 05:55:20 -0700 Subject: [PATCH] chore(deps): update dependency rules_rust to v0.52.0 ##### [`v0.52.0](https://github.com/bazelbuild/rules_rust/releases/tag/0.52.0) ### 0.52.0 #### Bzlmod ```python bazel_dep(name = "rules_rust", version = "0.52.0") ``` #### WORKSPACE ```python load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_rust", integrity = "sha256-eTHntUQQe2ICm/L8cuefnXdSOtZQ1ELZPD/M6a1ewes=", urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.52.0/rules_rust-v0.52.0.tar.gz"], ) ``` Additional documentation can be found at: https://bazelbuild.github.io/rules_rust/#setup #### What's Changed - Allowlist more clang flags in bindgen by [@hlopko](https://github.com/hlopko) in https://github.com/bazelbuild/rules_rust/pull/2902 - Allow `+` in repo names by [@fmeum](https://github.com/fmeum) in https://github.com/bazelbuild/rules_rust/pull/2908 - Added utility for parsing action Args param files by [@UebelAndre](https://github.com/UebelAndre) in https://github.com/bazelbuild/rules_rust/pull/2897 - Updated platform triple mapping to support T3 platforms without `std`. by [@UebelAndre](https://github.com/UebelAndre) in https://github.com/bazelbuild/rules_rust/pull/2899 - Fix `override_targets` keys in docs by [@max-heller](https://github.com/max-heller) in https://github.com/bazelbuild/rules_rust/pull/2905 - Use absolute path with "-fsanitize-ignorelist" by [@vitalybuka](https://github.com/vitalybuka) in https://github.com/bazelbuild/rules_rust/pull/2911 - Fix platform validation for wasm32-wasip1 target by [@c16a](https://github.com/c16a) in https://github.com/bazelbuild/rules_rust/pull/2894 - Update `cargo_build_script` to always render custom runfiles dirs. by [@UebelAndre](https://github.com/UebelAndre) in https://github.com/bazelbuild/rules_rust/pull/2891 - Check target tags before ignore tags for lint/fmt aspects by [@UebelAndre](https://github.com/UebelAndre) in https://github.com/bazelbuild/rules_rust/pull/2913 - Get rolling releases CI green by [@illicitonion](https://github.com/illicitonion) in https://github.com/bazelbuild/rules_rust/pull/2916 - Avoid uses of shell to improve Windows tests by [@UebelAndre](https://github.com/UebelAndre) in https://github.com/bazelbuild/rules_rust/pull/2912 - Prep release 0.52.0 by [@illicitonion](https://github.com/illicitonion) in https://github.com/bazelbuild/rules_rust/pull/2910 #### New Contributors - [@fmeum](https://github.com/fmeum) made their first contribution in https://github.com/bazelbuild/rules_rust/pull/2908 - [@max-heller](https://github.com/max-heller) made their first contribution in https://github.com/bazelbuild/rules_rust/pull/2905 - [@vitalybuka](https://github.com/vitalybuka) made their first contribution in https://github.com/bazelbuild/rules_rust/pull/2911 - [@c16a](https://github.com/c16a) made their first contribution in https://github.com/bazelbuild/rules_rust/pull/2894 **Full Changelog**: https://github.com/bazelbuild/rules_rust/compare/0.51.0...0.52.0 --- bzl/deps.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bzl/deps.bzl b/bzl/deps.bzl index ba4c2b7a15..69004fb705 100644 --- a/bzl/deps.bzl +++ b/bzl/deps.bzl @@ -126,8 +126,8 @@ exports_files(glob(["**/*"], exclude_directories=0)) http_archive( name = "rules_rust", - sha256 = "042acfb73469b2d1848fe148d81c3422c61ea47a9e1900f1c9ec36f51e8e7193", - urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.51.0/rules_rust-v0.51.0.tar.gz"], + sha256 = "7931e7b544107b62029bf2fc72e79f9d77523ad650d442d93c3fcce9ad5ec1eb", + urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.52.0/rules_rust-v0.52.0.tar.gz"], ) # Got no idea why but MS doesn't publish versions of this...