-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
68 lines (58 loc) · 3.12 KB
/
Package.swift
File metadata and controls
68 lines (58 loc) · 3.12 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "Users",
platforms: [
.macOS(.v12)
],
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0"),
// 🖋 Non-blocking, event-driven Swift client for PostgreSQL.
.package(url: "https://github.com/vapor/fluent.git", from: "4.0.0"),
// 🐘 Swift ORM (queries, models, relations, etc) built on PostgreSQL.
.package(url: "https://github.com/vapor/fluent-postgres-driver.git", from: "2.1.0"),
// 🗄 Fluent driver for SQLite.
.package(url: "https://github.com/vapor/fluent-sqlite-driver.git", from: "4.0.0"),
// 🔏 JSON Web Token signing and verification (HMAC, RSA).
.package(url: "https://github.com/vapor/jwt.git", from: "4.0.0"),
// 🔑 Google Recaptcha for securing anonymous endpoints.
.package(url: "https://github.com/Mikroservices/Recaptcha.git", from: "2.0.0"),
// 📘 Custom logger handlers.
.package(url: "https://github.com/Mikroservices/ExtendedLogging.git", from: "1.0.0"),
// 📒 Library provides mechanism for reading configuration files.
.package(url: "https://github.com/Mikroservices/ExtendedConfiguration.git", from: "1.0.0"),
// 🐞 Custom error middleware for Vapor.
.package(url: "https://github.com/Mikroservices/ExtendedError.git", from: "2.0.0"),
// 📖 Apple logger hander.
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
],
targets: [
.target(
name: "App",
dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "Fluent", package: "fluent"),
.product(name: "FluentPostgresDriver", package: "fluent-postgres-driver"),
.product(name: "FluentSQLiteDriver", package: "fluent-sqlite-driver"),
.product(name: "JWT", package: "jwt"),
.product(name: "Logging", package: "swift-log"),
.product(name: "ExtendedLogging", package: "ExtendedLogging"),
.product(name: "ExtendedError", package: "ExtendedError"),
.product(name: "ExtendedConfiguration", package: "ExtendedConfiguration"),
.product(name: "Recaptcha", package: "Recaptcha")
],
swiftSettings: [
// Enable better optimizations when building in Release configuration. Despite the use of
// the `.unsafeFlags` construct required by SwiftPM, this flag is recommended for Release
// builds. See <https://github.com/swift-server/guides#building-for-production> for details.
.unsafeFlags(["-cross-module-optimization"], .when(configuration: .release))
]
),
.executableTarget(name: "Run", dependencies: [.target(name: "App")]),
.testTarget(name: "AppTests", dependencies: [
.target(name: "App"),
.product(name: "XCTVapor", package: "vapor")
])
]
)