From b3414e8d6e3dcacec9e72b4dbb0b1c12a3641cba Mon Sep 17 00:00:00 2001 From: Brentley Jones Date: Thu, 7 Sep 2023 09:30:10 -0500 Subject: [PATCH] Update rules_xcodeproj (#306) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It has a new transitive dependency, so it’s worth seeing that in the example. Signed-off-by: Brentley Jones --- .gitignore | 2 ++ tutorial/WORKSPACE | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index de3e19d6b..c3b40ed69 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ bazel-* .settings/ # Maven target/ +# Xcode +*.xcodeproj diff --git a/tutorial/WORKSPACE b/tutorial/WORKSPACE index e7b5312c0..e59622436 100644 --- a/tutorial/WORKSPACE +++ b/tutorial/WORKSPACE @@ -40,8 +40,8 @@ apple_support_dependencies() http_archive( name = "rules_xcodeproj", - sha256 = "7967b372bd1777214ce65c87a82ac0630150b7504b443de0315ea52e45758e0c", - url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/1.3.3/release.tar.gz", + sha256 = "bc8b1ae066b7333a151fd3a9ebee0d51d7779886bfb8cf9fc6e0f9d6c110fc83", + url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/1.10.1/release.tar.gz", ) load( @@ -51,6 +51,10 @@ load( xcodeproj_rules_dependencies() +load("@bazel_features//:deps.bzl", "bazel_features_deps") + +bazel_features_deps() + # rules required by backend http_archive(