-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Package.swift
32 lines (31 loc) · 1.12 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
29
30
31
32
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "toolbox",
platforms: [
.macOS(.v10_15),
],
products: [
.executable(name: "vapor", targets: ["Executable"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.18.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.6"),
.package(url: "https://github.com/vapor-community/mustache.git", from: "0.2.0"),
.package(url: "https://github.com/vapor/console-kit.git", from: "4.2.0"),
],
targets: [
.target(name: "VaporToolbox", dependencies: [
.product(name: "ConsoleKit", package: "console-kit"),
.product(name: "Mustache", package: "mustache"),
.product(name: "NIO", package: "swift-nio"),
.product(name: "Yams", package: "Yams"),
]),
.testTarget(name: "VaporToolboxTests", dependencies: [
.target(name: "VaporToolbox"),
]),
.executableTarget(name: "Executable", dependencies: [
.target(name: "VaporToolbox"),
]),
]
)