-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 742 Bytes
/
Package.swift
File metadata and controls
20 lines (18 loc) · 742 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
import PackageDescription
let package = Package(
name: "SteamPress",
products: [
.library(name: "SteamPress", targets: ["SteamPress"]),
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.0.0"),
.package(url: "https://github.com/vapor-community/markdown.git", from: "0.4.0"),
.package(url: "https://github.com/vapor/auth.git", from: "2.0.0"),
],
targets: [
.target(name: "SteamPress", dependencies: ["Vapor", "SwiftSoup", "SwiftMarkdown", "Authentication"]),
.testTarget(name: "SteamPressTests", dependencies: ["SteamPress"]),
]
)