-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathPackage.swift
More file actions
executable file
·26 lines (25 loc) · 993 Bytes
/
Package.swift
File metadata and controls
executable file
·26 lines (25 loc) · 993 Bytes
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: 5.7.1
import PackageDescription
let package = Package(
name: "Perfect-Blog-Mustache",
dependencies: [
.package(url: "https://github.com/PerfectlySoft/Perfect-SQLite.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", from: "3.0.0"),
.package(url: "https://github.com/iamjono/SwiftString.git", from: "2.0.0"),
],
targets: [
.executableTarget(
name: "Blog",
dependencies: [
.product(name: "PerfectSQLite", package: "Perfect-SQLite"),
.product(name: "PerfectHTTPServer", package: "Perfect-HTTPServer"),
.product(name: "PerfectMustache", package: "Perfect-Mustache"),
.product(name: "SwiftString", package: "SwiftString"),
],
resources: [
.copy("Resources"),
]
)
]
)