-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
19 lines (16 loc) · 809 Bytes
/
Package.swift
File metadata and controls
19 lines (16 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import PackageDescription
let package = Package(
name: "Na4lapyAPI",
targets: [
Target(name: "Server", dependencies: [.Target(name: "Na4LapyCore")]),
Target(name: "Na4LapyCore")
],
dependencies: [
.Package(url: "https://github.com/IBM-Swift/Kitura-Session.git", majorVersion: 1),
.Package(url: "https://github.com/IBM-Swift/Kitura-CORS.git", majorVersion: 1),
.Package(url: "https://github.com/IBM-Swift/HeliumLogger.git", majorVersion: 1),
.Package(url: "https://github.com/vapor/postgresql", majorVersion: 1),
.Package(url: "https://github.com/IBM-Swift/Kitura-MustacheTemplateEngine.git", majorVersion: 1),
.Package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", majorVersion: 0)
]
)