-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
115 lines (113 loc) · 2.17 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Shuttle Tracker Server",
platforms: [
.macOS(.v13)
],
dependencies: [
.package(
url: "https://github.com/apple/swift-algorithms.git",
from: "1.2.0"
),
.package(
url: "https://github.com/vapor/vapor.git",
from: "4.92.0"
),
.package(
url: "https://github.com/vapor/queues.git",
from: "1.13.0"
),
.package(
url: "https://github.com/vapor/fluent.git",
from: "4.9.0"
),
.package(
url: "https://github.com/vapor/fluent-sqlite-driver.git",
from: "4.6.0"
),
.package(
url: "https://github.com/vapor/fluent-postgres-driver.git",
from: "2.8.0"
),
.package(
url: "https://github.com/vapor/apns.git",
from: "4.0.0"
),
.package(
url: "https://github.com/m-barthelemy/vapor-queues-fluent-driver.git",
from: "3.0.0-beta.1"
),
.package(
url: "https://github.com/malcommac/UAParserSwift.git",
from: "1.2.0"
),
.package(
url: "https://github.com/mapbox/turf-swift.git",
from: "2.8.0"
),
.package(
url: "https://github.com/wtg/JSONParser.git",
from: "1.3.0"
),
.package(
url: "https://github.com/vincentneo/CoreGPX.git",
from: "0.9.2"
)
],
targets: [
.executableTarget(
name: "Server",
dependencies: [
.product(
name: "Algorithms",
package: "swift-algorithms"
),
.product(
name: "Vapor",
package: "vapor"
),
.product(
name: "Queues",
package: "queues"
),
.product(
name: "Fluent",
package: "fluent"
),
.product(
name: "FluentSQLiteDriver",
package: "fluent-sqlite-driver"
),
.product(
name: "FluentPostgresDriver",
package: "fluent-postgres-driver"
),
.product(
name: "QueuesFluentDriver",
package: "vapor-queues-fluent-driver"
),
.product(
name: "VaporAPNS",
package: "apns"
),
.product(
name: "CoreGPX",
package: "CoreGPX"
),
.product(
name: "JSONParser",
package: "JSONParser"
),
.product(
name: "UAParserSwift",
package: "UAParserSwift"
),
.product(
name: "Turf",
package: "turf-swift"
)
]
)
]
)