forked from RealDeviceMap/RealDeviceMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 1.33 KB
/
Copy pathPackage.swift
File metadata and controls
24 lines (22 loc) · 1.33 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
// swift-tools-version:4.1
import PackageDescription
let package = Package(
name: "RealDeviceMap",
products: [],
dependencies: [
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", from: "3.0.18"),
.package(url: "https://github.com/123FLO321/Perfect-Session-MySQL.git", from: "3.1.6"),
.package(url: "https://github.com/123FLO321/Perfect-MySQL.git", from: "3.2.2"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Thread.git", from: "3.0.5"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", from: "3.0.2"),
.package(url: "https://github.com/PerfectlySoft/Perfect-CURL.git", from: "3.0.7"),
.package(url: "https://github.com/stormpath/Turnstile.git", from: "1.0.6"),
.package(url: "https://github.com/crossroadlabs/Regex.git", from: "1.1.0"),
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.2.0"),
.package(url: "https://github.com/123FLO321/POGOProtos-Swift.git", from: "1.1.0"),
.package(url: "https://github.com/123FLO321/turf-swift.git", from: "0.3.1")
],
targets: [
.target(name: "RealDeviceMap", dependencies: ["PerfectHTTPServer","PerfectSessionMySQL","PerfectMySQL","PerfectThread","PerfectMustache","PerfectCURL","Turnstile","Regex","POGOProtos","Turf"])
]
)