-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
48 lines (43 loc) · 1.19 KB
/
Package.swift
File metadata and controls
48 lines (43 loc) · 1.19 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
36
37
38
39
40
41
42
43
44
45
46
47
48
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Tube Status",
platforms: [
.iOS(.v13),
.macOS(.v10_15)
],
products: [
.library(name: "TubeKit", targets: ["TubeKit"]),
.library(name: "TubeUI", targets: ["TubeUI"]),
],
dependencies: [
.package(url: "https://github.com/danielctull/PublisherView", .branch("main")),
.package(url: "https://github.com/danielctull/Resourceful", from: "1.0.0"),
.package(name: "Tagged", url: "https://github.com/pointfreeco/swift-tagged", from: "0.5.0"),
],
targets: [
.target(
name: "TubeKit",
dependencies: [
"Resourceful",
"Tagged",
]),
.testTarget(
name: "TubeKitTests",
dependencies: [
"Resourceful",
"TubeKit",
],
resources: [
.copy("Responses"),
]),
.target(
name: "TubeUI",
dependencies: [
"PublisherView",
"Resourceful",
"Tagged",
"TubeKit",
]),
]
)