2022-04-02 23:28:10 +00:00
|
|
|
// swift-tools-version: 5.6
|
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "Pachyderm",
|
|
|
|
platforms: [
|
2023-10-26 22:30:31 +00:00
|
|
|
.iOS(.v15),
|
2022-04-02 23:28:10 +00:00
|
|
|
],
|
|
|
|
products: [
|
|
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
|
|
.library(
|
|
|
|
name: "Pachyderm",
|
|
|
|
targets: ["Pachyderm"]),
|
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
// Dependencies declare other packages that this package depends on.
|
2024-08-12 04:27:33 +00:00
|
|
|
.package(url: "https://github.com/karwa/swift-url.git", exact: "0.4.2"),
|
2022-04-02 23:28:10 +00:00
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
|
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
|
|
|
.target(
|
|
|
|
name: "Pachyderm",
|
|
|
|
dependencies: [
|
|
|
|
.product(name: "WebURL", package: "swift-url"),
|
2022-04-07 01:50:07 +00:00
|
|
|
.product(name: "WebURLFoundationExtras", package: "swift-url"),
|
2022-04-02 23:28:10 +00:00
|
|
|
]),
|
|
|
|
.testTarget(
|
|
|
|
name: "PachydermTests",
|
|
|
|
dependencies: ["Pachyderm"]),
|
|
|
|
]
|
|
|
|
)
|