From abc9a453f9aa988956e2117207a7e25bd6a404ce Mon Sep 17 00:00:00 2001 From: Ronaldo Gomes Date: Thu, 6 Jun 2024 14:00:36 +1000 Subject: [PATCH] included KeychainAccess --- Package.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 05004ed..70a6597 100644 --- a/Package.swift +++ b/Package.swift @@ -13,12 +13,14 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/krzyzanowskim/OpenSSL.git", .upToNextMinor(from: "3.1.4000")), - .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0") + .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0"), + .package(url: "https://github.com/kishikawakatsumi/KeychainAccess.git", from: "4.2.2") ], targets: [ .target(name: "TyroTapToPaySDKPackage", dependencies: [ .product(name: "OpenSSL", package: "OpenSSL"), + .product(name: "KeychainAccess", package: "KeychainAccess"), .target(name: "TyroTapToPaySDK"), .target(name: "MobileMPOSSDK"), .target(name: "MobileConfiguration"),