mirror of
https://github.com/ProtonMail/ios-mail.git
synced 2026-06-14 09:54:45 +00:00
21 lines
651 B
Swift
21 lines
651 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "InboxKeychain",
|
|
platforms: [.iOS(.v17)],
|
|
products: [
|
|
.library(name: "InboxKeychain", targets: ["InboxKeychain"]),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../InboxCore"),
|
|
.package(path: "../../ProtonPackages/proton_app_uniffi")
|
|
],
|
|
targets: [
|
|
.target(name: "InboxKeychain", dependencies: ["InboxCore", "proton_app_uniffi"]),
|
|
.testTarget(name: "InboxKeychainTests", dependencies: ["InboxKeychain"]),
|
|
]
|
|
)
|