Created
April 23, 2021 16:03
-
-
Save ydnar/771a553acf6b7b88bb5ea0832cd661e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// swift-tools-version:5.3 | |
import PackageDescription | |
let package = Package( | |
name: "Packages", | |
platforms: [ | |
.macOS(.v10_15), | |
.iOS(.v13), | |
], | |
products: [ | |
.library(name: "Packages", targets: ["Packages"]), | |
], | |
dependencies: [ | |
.package(path: "../../packages/Core"), | |
.package(name: "Nuke", url: "https://github.com/kean/Nuke.git", from: "8.4.1"), | |
.package(name: "Sentry", url: "https://github.com/getsentry/sentry-cocoa.git", from: "6.0.12"), | |
.package(name: "Stevia", url: "https://github.com/freshOS/Stevia.git", from: "5.1.1"), | |
.package(name: "UIImageColors", url: "https://github.com/jathu/UIImageColors.git", from: "2.2.0"), | |
], | |
targets: [ | |
.target( | |
name: "Packages", | |
dependencies: [ | |
"Core", | |
.product(name: "Nuke", package: "Nuke"), | |
.product(name: "Sentry", package: "Sentry"), | |
.product(name: "Stevia", package: "Stevia"), | |
.product(name: "UIImageColors", package: "UIImageColors"), | |
], | |
path: "./" | |
), | |
] | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file exists to prevent Swift or Xcode from complaining about no sources for an empty package. | |
struct stub {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment