forked from RealDeviceMap/RealDeviceMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
51 lines (49 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
// swift-tools-version:4.1
import PackageDescription
let package = Package(
name: "RealDeviceMap",
products: [],
dependencies: [
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", .upToNextMinor(from: "3.0.22")),
.package(url: "https://github.com/123FLO321/Perfect-Session-MySQL.git", .upToNextMinor(from: "3.2.4")),
.package(url: "https://github.com/123FLO321/Perfect-MySQL.git", .upToNextMinor(from: "3.2.2")),
.package(url: "https://github.com/PerfectlySoft/Perfect-Thread.git", .upToNextMinor(from: "3.0.6")),
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", .upToNextMinor(from: "3.0.2")),
.package(url: "https://github.com/PerfectlySoft/Perfect-CURL.git", .upToNextMinor(from: "3.1.0")),
.package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", .upToNextMinor(from: "3.3.0")),
.package(url: "https://github.com/PerfectlySoft/Perfect-Crypto.git", .upToNextMinor(from: "3.2.0")),
.package(url: "https://github.com/123FLO321/Turnstile.git", .upToNextMinor(from: "1.2.3")),
.package(url: "https://github.com/crossroadlabs/Regex.git", .upToNextMinor(from: "1.1.0")),
.package(url: "https://github.com/apple/swift-protobuf.git", .upToNextMinor(from: "1.5.0")),
.package(url: "https://github.com/123FLO321/turf-swift.git", .upToNextMinor(from: "0.3.1")),
.package(url: "https://github.com/123FLO321/S2Geometry.git", .upToNextMinor(from: "0.3.1")),
.package(url: "https://github.com/123FLO321/POGOProtos-Swift.git", .upToNextMinor(from: "1.23.0"))
],
targets: [
.target(
name: "RealDeviceMap",
dependencies: [
"PerfectHTTPServer",
"PerfectSessionMySQL",
"PerfectMySQL",
"PerfectThread",
"PerfectMustache",
"PerfectCURL",
"PerfectSMTP",
"PerfectCrypto",
"Turnstile",
"Regex",
"POGOProtos",
"Turf",
"S2Geometry"
]
),
.testTarget(
name: "RealDeviceMapTests",
dependencies: [
"RealDeviceMap"
]
)
],
swiftLanguageVersions: [4]
)