-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
69 lines (66 loc) · 3.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "Uitsmijter",
platforms: [
.macOS(.v13)
],
products: [
.executable(name: "Uitsmijter", targets: ["Uitsmijter"])
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "4.106.1"),
.package(url: "https://github.com/vapor/redis.git", from: "4.0.0"),
.package(url: "https://github.com/vapor/leaf.git", from: "4.0.0"),
.package(url: "https://github.com/vapor/jwt.git", from: "4.1.0"),
.package(url: "https://github.com/swift-server-community/SwiftPrometheus.git", from: "1.0.0-alpha"),
.package(url: "https://github.com/aus-der-Technik/JXKit.git", branch: "main"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.6.0")),
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.1"),
.package(url: "https://github.com/soto-project/soto.git", from: "6.0.0"),
.package(url: "https://github.com/swiftkube/client.git", from: "0.15.0"),
.package(url: "https://github.com/aus-der-Technik/FileMonitor.git", from: "1.1.0"),
.package(url: "https://github.com/DimaRU/PackageBuildInfo", from: "1.0.1"),
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.9.0")
],
targets: [
.target(
name: "Server",
dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "Redis", package: "redis"),
.product(name: "Leaf", package: "leaf"),
.product(name: "JWT", package: "jwt"),
.product(name: "SotoS3", package: "soto"),
"SwiftPrometheus",
"JXKit",
"CryptoSwift",
"Yams",
.product(name: "SwiftkubeClient", package: "client"),
.product(name: "FileMonitor", package: "FileMonitor"),
.product(name: "AsyncHTTPClient", package: "async-http-client"),
],
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/blob/main/docs/building.md#building-for-production>
// for details.
.unsafeFlags(["-cross-module-optimization"], .when(configuration: .release)),
.unsafeFlags(["-warnings-as-errors"])
],
plugins: [
.plugin(name: "PackageBuildInfoPlugin", package: "PackageBuildInfo")
]
),
.testTarget(name: "ServerTests", dependencies: [
.target(name: "Server"),
.product(name: "XCTVapor", package: "vapor")
], exclude: ["Entities/Loader/Stubs"]),
.executableTarget(
name: "Uitsmijter",
dependencies: [.target(name: "Server")],
plugins: []
)
]
)