-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
43 lines (42 loc) · 1.51 KB
/
Package.swift
File metadata and controls
43 lines (42 loc) · 1.51 KB
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
33
34
35
36
37
38
39
40
41
42
43
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "PerfectLocalAuthentication",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "PerfectLocalAuthentication",
targets: ["PerfectLocalAuthentication"]
),
],
dependencies: [
.package(
url: "https://github.com/ryancoyne/JSONConfig.git",
from: "4.0.0"),
.package(
url: "https://github.com/ryancoyne/Perfect-RequestLogger.git",
from: "4.0.0"),
.package(
url: "https://github.com/ryancoyne/Perfect-SMTP.git",
from: "4.0.0"),
.package(
url: "https://github.com/ryancoyne/Postgres-StORM-ryan.git",
from: "4.0.0"),
.package(
url: "https://github.com/ryancoyne/Perfect-Session-PostgreSQL.git",
from: "4.0.0"),
.package(
url: "https://github.com/ryancoyne/Perfect-Mustache.git",
from: "4.0.0"),
.package(
url: "https://github.com/ryancoyne/Perfect-HTTP.git",
from: "4.0.0"),
],
targets: [
.target(
name: "PerfectLocalAuthentication",
dependencies: ["JSONConfig", "PerfectRequestLogger", "PerfectSMTP", "PostgresStORM", "PerfectSessionPostgreSQL", "PerfectMustache", "PerfectHTTP"],
path: "Sources/PerfectLocalAuthentication"
),
]
)