-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (29 loc) · 1.8 KB
/
Package.swift
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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(name: "TroutUI",
platforms: [.macOS(.v13), .iOS(.v16), .watchOS(.v9)],
products: [
.library(name: "TroutUI",
targets: ["TroutUI"]),
],
dependencies: [
.package(url: "https://github.com/openalloc/SwiftCompactor", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.4"),
.package(url: "https://github.com/gym-routine-tracker/TroutLib.git", from: "1.1.0"),
.package(url: "https://github.com/open-trackers/TrackerUI.git", from: "1.0.0"),
.package(url: "https://github.com/openalloc/SwiftTextFieldPreset.git", from: "1.0.0"),
],
targets: [
.target(name: "TroutUI",
dependencies: [
.product(name: "TroutLib", package: "TroutLib"),
.product(name: "TrackerUI", package: "TrackerUI"),
.product(name: "Compactor", package: "SwiftCompactor"),
.product(name: "Collections", package: "swift-collections"),
.product(name: "TextFieldPreset", package: "SwiftTextFieldPreset"),
],
path: "Sources"),
.testTarget(name: "TroutUITests",
dependencies: ["TroutUI"],
path: "Tests"),
])