From b896f867b9df95b0046f20a8c335789f5c4104f9 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Tue, 4 Feb 2025 16:35:05 +0100 Subject: [PATCH] Advertise CrateInfo and DepInfo from the import macro (#3220) Otherwise aspects can't see through it Co-authored-by: UebelAndre --- rust/private/transitions.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/private/transitions.bzl b/rust/private/transitions.bzl index cbc6a06e30..740fa0e7c7 100644 --- a/rust/private/transitions.bzl +++ b/rust/private/transitions.bzl @@ -45,4 +45,5 @@ alias_with_import_macro_bootstrapping_mode = rule( default = Label("//tools/allowlists/function_transition_allowlist"), ), }, + provides = [rust_common.crate_info, rust_common.dep_info], )