-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
22 lines (21 loc) · 986 Bytes
/
Package.swift
File metadata and controls
22 lines (21 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import PackageDescription
let package = Package(
name: "RoomBookingWS",
targets: [
Target(
name: "RoomBookingWS",
dependencies: []),
Target(
name: "RoomBookingWSExe",
dependencies: ["RoomBookingWS"]),
],
dependencies: [
.Package(url: "https://github.com/PerfectlySoft/Perfect-Session-PostgreSQL.git", majorVersion: 3),
.Package(url: "https://github.com/SwiftORM/Postgres-StORM.git", majorVersion: 3),
.Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 3),
.Package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", majorVersion: 3),
.Package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", majorVersion: 3),
.Package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", majorVersion: 3),
.Package(url: "https://github.com/iamjono/SwiftRandom.git", majorVersion: 0)
]
)