Files
2025-08-26 10:30:02 +00:00

22 lines
788 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: "TestableNotificationService",
platforms: [.iOS(.v17)],
products: [
.library(name: "TestableNotificationService", targets: ["TestableNotificationService"])
],
dependencies: [
.package(path: "../InboxCore"),
.package(path: "../InboxKeychain"),
.package(path: "../../ProtonPackages/proton_app_uniffi"),
],
targets: [
.target(name: "TestableNotificationService", dependencies: ["InboxCore", "InboxKeychain", "proton_app_uniffi"]),
.testTarget(name: "NotificationServiceTests", dependencies: ["TestableNotificationService"]),
]
)