diff --git a/Packages/PushNotifications/Package.swift b/Packages/PushNotifications/Package.swift index aa1efd40..8fc9df22 100644 --- a/Packages/PushNotifications/Package.swift +++ b/Packages/PushNotifications/Package.swift @@ -14,11 +14,17 @@ let package = Package( name: "PushNotifications", targets: ["PushNotifications"]), ], + dependencies: [ + .package(path: "../UserAccounts"), + .package(path: "../Pachyderm"), + ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. // Targets can depend on other targets in this package and products from dependencies. .target( - name: "PushNotifications"), + name: "PushNotifications", + dependencies: ["UserAccounts", "Pachyderm"] + ), .testTarget( name: "PushNotificationsTests", dependencies: ["PushNotifications"]),