From fd3c5ac552d447c3f7d5bcf54ca01530f8a82239 Mon Sep 17 00:00:00 2001 From: Brentley Jones Date: Fri, 25 Oct 2024 08:07:00 -0500 Subject: [PATCH] Remove unnecessary `SwiftBinaryInfo` required provider from `plugins` attribute (#1445) I incorrectly added this as part of the cherry-pick in 5f6ac77099eda1838c36c7e3c7b4e88309caad1d. --------- Signed-off-by: Brentley Jones --- swift/internal/attrs.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift/internal/attrs.bzl b/swift/internal/attrs.bzl index dec20bdb7..6a6b19c4d 100644 --- a/swift/internal/attrs.bzl +++ b/swift/internal/attrs.bzl @@ -15,7 +15,7 @@ """Common attributes used by multiple Swift build rules.""" load("@bazel_skylib//lib:dicts.bzl", "dicts") -load("//swift:providers.bzl", "SwiftBinaryInfo", "SwiftInfo") +load("//swift:providers.bzl", "SwiftInfo") load(":providers.bzl", "SwiftCompilerPluginInfo") def swift_common_rule_attrs( @@ -147,7 +147,7 @@ Swift 5.9+. A list of `swift_compiler_plugin` targets that should be loaded by the compiler when compiling this module and any modules that directly depend on it. """, - providers = [[SwiftBinaryInfo, SwiftCompilerPluginInfo]], + providers = [SwiftCompilerPluginInfo], ), "srcs": attr.label_list( allow_empty = not requires_srcs,