forked from wtg/Shuttle-Tracker-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
105 lines (103 loc) · 1.97 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
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Shuttle Tracker Server",
platforms: [
.macOS(.v12)
],
dependencies: [
.package(
url: "https://github.com/vapor/vapor.git",
from: "4.65.0"
),
.package(
url: "https://github.com/vapor/queues.git",
from: "1.8.0"
),
.package(
url: "https://github.com/vapor/fluent.git",
from: "4.4.0"
),
.package(
url:"https://github.com/vapor/fluent-sqlite-driver.git",
from: "4.0.0"
),
.package(
url: "https://github.com/vapor/fluent-postgres-driver.git",
from: "2.2.0"
),
.package(
url: "https://github.com/m-barthelemy/vapor-queues-fluent-driver.git",
from: "1.0.0"
),
.package(
url: "https://github.com/malcommac/UAParserSwift.git",
from: "1.2.0"
),
.package(
url: "https://github.com/mapbox/turf-swift.git",
from: "2.2.0"
),
.package(
url: "https://github.com/Gerzer/JSONParser.git",
from: "1.3.0"
),
.package(
url: "https://github.com/Gerzer/CoreGPX.git",
revision: "6ef3abe863a82a3be7552734f20080749554eae1"
)
],
targets: [
.target(
name: "App",
dependencies: [
.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: "CoreGPX",
package: "CoreGPX"
),
.product(
name: "JSONParser",
package: "JSONParser"
),
.product(
name: "UAParserSwift",
package: "UAParserSwift"
),
.product(
name: "Turf",
package: "turf-swift"
)
]
),
.executableTarget(
name: "Runner",
dependencies: [
.target(name: "App")
]
)
]
)