Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7d6fdc0

Browse files
juergwcopybara-github
authored andcommittedNov 27, 2024·
Use new json_keyset_reader location in tink objc.
PiperOrigin-RevId: 700647418 Change-Id: I16e52b1dedc6a1bed8bb9b291e69d9e9126995a4
1 parent 34f8ce2 commit 7d6fdc0

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed
 

‎MODULE.bazel

+1-5
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,19 @@ bazel_dep(
1010
version = "1.15.1",
1111
repo_name = "build_bazel_apple_support",
1212
)
13-
1413
bazel_dep(
1514
name = "rules_apple",
1615
version = "3.5.1",
1716
repo_name = "build_bazel_rules_apple",
1817
)
19-
2018
bazel_dep(
2119
name = "rules_cc",
2220
version = "0.0.9",
2321
)
24-
2522
bazel_dep(
2623
name = "tink_cc",
27-
version = "2.2.0",
24+
version = "2.3.0",
2825
)
29-
3026
bazel_dep(
3127
name = "abseil-cpp",
3228
version = "20230802.1",

‎Tink/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ objc_library(
226226
"//Tink/util:strings",
227227
"@com_google_absl//absl/status",
228228
"@com_google_absl//absl/strings",
229-
"@tink_cc//tink:json_keyset_reader",
229+
"@tink_cc//tink/json:json_keyset_reader",
230230
],
231231
)
232232

‎Tink/core/TINKJSONKeysetReader.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include "absl/status/status.h"
2727
#include "absl/strings/string_view.h"
28-
#include "tink/json_keyset_reader.h"
28+
#include "tink/json/json_keyset_reader.h"
2929
#include "Tink/proto_redirect/tink_cc_pb_redirect.h"
3030

3131
@implementation TINKJSONKeysetReader

0 commit comments

Comments
 (0)
Please sign in to comment.