forked from bludesign/FaxServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
46 lines (45 loc) · 1.91 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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "Server",
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "3.0.0")),
.package(url: "https://github.com/vapor/jwt.git", .upToNextMajor(from: "3.0.0-rc")),
.package(url: "https://github.com/vapor/leaf.git", .upToNextMajor(from: "3.0.0-rc")),
.package(url: "https://github.com/vapor/console.git", .upToNextMajor(from: "3.0.0")),
.package(url: "https://github.com/vapor/websocket", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/vapor/validation.git", .upToNextMajor(from: "2.0.0")),
.package(url: "https://github.com/vapor-community/clibressl.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/vapor-community/copenssl.git", .upToNextMajor(from: "1.0.0-rc")),
.package(url: "https://github.com/OpenKitten/MongoKitten.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/BrettRToomey/Jobs.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/reaumur/CCurl.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/tadija/AEXML.git", .upToNextMajor(from: "4.0.0"))
],
targets: [
.target(name: "Server",
dependencies: [
"Vapor",
"JWT",
"Leaf",
"Console",
"WebSocket",
"Validation",
"CLibreSSL",
"COpenSSL",
"MongoKitten",
"Jobs",
"CCurl",
"AEXML"
],
exclude: [
"Config",
"Deploy",
"Public",
"Resources",
"Tests",
"Database"
]),
.target(name: "App", dependencies: ["Server"])
]
)