-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
52 lines (46 loc) · 2.23 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "Emails",
platforms: [
.macOS(.v12)
],
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0"),
// 📖 Apple logger handler.
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
// 📘 Custom logger handlers.
.package(url: "https://github.com/Mikroservices/ExtendedLogging.git", from: "1.0.0"),
// 🐞 Custom error middleware for Vapor.
.package(url: "https://github.com/Mikroservices/ExtendedError.git", from: "2.0.0"),
// 📒 Library provides mechanism for reading configuration files.
.package(url: "https://github.com/Mikroservices/ExtendedConfiguration.git", from: "1.0.0"),
// ✉️ SMTP protocol support for the Vapor web framework.
.package(url: "https://github.com/Mikroservices/Smtp.git", from: "3.0.0")
],
targets: [
.target(
name: "App",
dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "Logging", package: "swift-log"),
.product(name: "ExtendedError", package: "ExtendedError"),
.product(name: "ExtendedLogging", package: "ExtendedLogging"),
.product(name: "ExtendedConfiguration", package: "ExtendedConfiguration"),
.product(name: "Smtp", package: "Smtp")
],
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")
])
]
)