-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
28 lines (26 loc) · 1.14 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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "SwiftServe",
platforms: [
.macOS(.v10_12),
],
products: [
.library(name: "SwiftServe", targets: ["SwiftServe"]),
],
dependencies: [
.package(url: "https://github.com/drewag/swift-postgresql.git", from: "5.0.0"),
.package(url: "https://github.com/drewag/command-line-parser.git", from: "3.0.0"),
.package(url: "https://github.com/drewag/Stencil.git", from: "0.11.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Markdown.git", from: "3.0.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.0.0"),
.package(url: "https://github.com/drewag/Decree.git", from: "4.0.0"),
.package(url: "https://github.com/drewag/SwiftlierCLI.git", from: "6.0.0"),
],
targets: [
.target(name: "SwiftServe", dependencies: [
"PostgreSQL", "CommandLineParser", "Stencil", "PerfectMarkdown", "CryptoSwift", "Decree", "SwiftlierCLI",
], path: "Sources"),
.testTarget(name: "SwiftServeTests", dependencies: ["SwiftServe"]),
]
)