-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 804 Bytes
/
Copy pathPackage.swift
File metadata and controls
20 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Mongli-Server",
dependencies: [
.package(url: "https://github.com/IBM-Swift/Kitura", from: "2.9.1"),
.package(url: "https://github.com/IBM-Swift/SwiftKueryMySQL.git", from: "2.0.2"),
.package(url: "https://github.com/IBM-Swift/HeliumLogger.git", from: "1.9.0"),
.package(url: "https://github.com/IBM-Swift/Swift-JWT.git", from: "3.6.1")
],
targets: [
.target(name: "Mongli-Server",
dependencies: ["Kitura", "SwiftKueryMySQL", "HeliumLogger", "SwiftJWT"]),
.testTarget(name: "Mongli-ServerTests" ,
dependencies: [.target(name: "Mongli-Server"), "Kitura" ])
]
)