-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
26 lines (24 loc) · 949 Bytes
/
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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "StarsOnKitura",
products: [
.executable(
name: "StarsOnKitura",
targets: ["StarsOnKitura"]
)
],
dependencies: [
.package(url: "https://github.com/Bersaelor/KDTree", .upToNextMinor(from: "1.0.2")),
.package(url: "https://github.com/Bersaelor/SwiftyHYGDB", .upToNextMinor(from: "0.6.0")),
.package(url: "https://github.com/IBM-Swift/Kitura.git", .upToNextMinor(from: "1.7.8")),
.package(url: "https://github.com/IBM-Swift/HeliumLogger.git", .upToNextMinor(from: "1.7.1")),
.package(url: "https://github.com/IBM-Swift/Kitura-StencilTemplateEngine.git", .upToNextMinor(from: "1.8.3"))
],
targets: [
.target(
name: "StarsOnKitura",
dependencies: ["KDTree", "Kitura", "KituraStencil", "HeliumLogger", "SwiftyHYGDB"]
)
]
)