Created
October 6, 2022 02:16
-
-
Save alexandre-g/ce5067b3cf5b5b66b15a5d713f6485e6 to your computer and use it in GitHub Desktop.
Dependency package for Scipio
This file contains hidden or 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.7 | |
// The swift-tools-version declares the minimum version of Swift required to build this package. | |
import PackageDescription | |
let package = Package( | |
name: "Dependencies", | |
platforms: [ | |
.iOS(.v13), | |
], | |
products: [], | |
dependencies: [ | |
.package(url: "https://github.com/PSPDFKit/PSPDFKit-SP", exact: "11.5.2"), | |
], | |
targets: [ | |
.target( | |
name: "Dependencies", | |
dependencies: [ | |
.product(name: "PSPDFKit", package: "PSPDFKit-SP"), | |
]), | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment