-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
86 lines (84 loc) · 2.29 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// swift-tools-version:5.9
// 📜 https://github.com/apple/swift-package-manager/blob/main/Documentation/PackageDescription.md
import PackageDescription
let package = Package(
name: "swift-hoods",
platforms: [
.macOS(.v13),
.iOS(.v15)
],
products: [
.library(
name: "Hoods",
targets: ["Hoods"]
),
.library(
name: "HoodsTestsTools",
targets: ["HoodsTestsTools"]
)
],
dependencies: [
.package(
url: "https://github.com/dirtyhenry/swift-blocks",
branch: "main"
),
.package(
url: "https://github.com/apple/swift-argument-parser",
from: "1.3.0"
),
.package(
url: "https://github.com/pointfreeco/swift-composable-architecture",
from: "1.6.0"
),
.package(
url: "https://github.com/jpsim/Yams.git",
from: "5.0.6"
),
.package(
url: "https://github.com/vapor/jwt-kit.git",
from: "5.0.0"
)
],
targets: [
.target(
name: "Hoods",
dependencies: [
.product(
name: "Blocks",
package: "swift-blocks"
),
.product(
name: "ArgumentParser",
package: "swift-argument-parser"
),
.product(
name: "ComposableArchitecture",
package: "swift-composable-architecture"
),
.product(
name: "Yams",
package: "Yams"
),
.product(
name: "JWTKit",
package: "jwt-kit"
)
]
),
.target(
name: "HoodsTestsTools",
dependencies: [
"Hoods",
.product(
name: "ComposableArchitecture",
package: "swift-composable-architecture"
)
]
),
.testTarget(
name: "HoodsTests",
dependencies: ["Hoods", "HoodsTestsTools"],
resources: [.process("Resources")]
)
]
)