-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
35 lines (33 loc) · 1.1 KB
/
Package.swift
File metadata and controls
35 lines (33 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// 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: "WMATAUI",
platforms: [
.iOS(.v15),
.macOS(.v12),
.tvOS(.v15),
.visionOS(.v1),
.watchOS(.v8)
],
products: [
.library(
name: "WMATAUI",
targets: ["WMATAUI"])
],
dependencies: [
// dependencies incorporating software will directly use should be minimums
.package(url: "https://github.com/emma-k-alexandra/WMATA.swift", from: "15.2.0"),
// documentation and test dependencies should be exact
.package(url: "https://github.com/nalexn/ViewInspector", exact: "0.10.0"),
.package(url: "https://github.com/apple/swift-docc-plugin", exact: "1.4.6")
],
targets: [
.target(
name: "WMATAUI",
dependencies: [.product(name: "WMATA", package: "WMATA.swift")]),
.testTarget(
name: "WMATAUITests",
dependencies: ["WMATAUI", "ViewInspector"])
]
)