forked from vapor/vapor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
181 lines (158 loc) Β· 7.41 KB
/
Copy pathPackage.swift
File metadata and controls
181 lines (158 loc) Β· 7.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "vapor",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(name: "Vapor", targets: ["Vapor"]),
.library(name: "XCTVapor", targets: ["XCTVapor"]),
.library(name: "VaporTesting", targets: ["VaporTesting"]),
],
dependencies: [
// HTTP client library built on SwiftNIO
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.24.0"),
// Sugary extensions for the SwiftNIO library
.package(url: "https://github.com/vapor/async-kit.git", from: "1.15.0"),
// π» APIs for creating interactive CLI tools.
.package(url: "https://github.com/vapor/console-kit.git", from: "4.14.0"),
// π Hashing (SHA2, HMAC), encryption (AES), public-key (RSA), and random data generation.
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "5.0.0"),
// π High-performance trie-node router.
.package(url: "https://github.com/vapor/routing-kit.git", from: "4.9.0"),
// Event-driven network application framework for high performance protocol servers & clients, non-blocking.
.package(url: "https://github.com/apple/swift-nio.git", from: "2.81.0"),
// Bindings to OpenSSL-compatible libraries for TLS support in SwiftNIO
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.34.0"),
// HTTP/2 support for SwiftNIO
.package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.28.0"),
// Useful code around SwiftNIO.
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.24.0"),
// Swift logging API
.package(url: "https://github.com/apple/swift-log.git", from: "1.8.0"),
// Swift metrics API
.package(url: "https://github.com/apple/swift-metrics.git", from: "2.5.0"),
// Swift tracing API
.package(url: "https://github.com/apple/swift-distributed-tracing.git", from: "1.1.0"),
// Swift service context
.package(url: "https://github.com/apple/swift-service-context.git", from: "1.0.0"),
// Swift collection algorithms
.package(url: "https://github.com/apple/swift-algorithms.git", from: "1.0.0"),
// WebSocket client library built on SwiftNIO
.package(url: "https://github.com/vapor/websocket-kit.git", from: "2.13.0"),
// MultipartKit, Multipart encoding and decoding
.package(url: "https://github.com/vapor/multipart-kit.git", from: "4.2.1"),
// Low-level atomic operations
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.1.0"),
// X509 certificate types for the Swift ecosystem
.package(url: "https://github.com/apple/swift-certificates.git", from: "1.14.0"),
// Work with certificate encoding schemes
.package(url: "https://github.com/apple/swift-asn1.git", from: "1.0.0")
],
targets: [
// C helpers
.target(name: "CVaporBcrypt"),
// Vapor
.target(
name: "Vapor",
dependencies: [
.product(name: "AsyncHTTPClient", package: "async-http-client"),
.product(name: "AsyncKit", package: "async-kit"),
.target(name: "CVaporBcrypt"),
.product(name: "ConsoleKit", package: "console-kit"),
.product(name: "Logging", package: "swift-log"),
.product(name: "Metrics", package: "swift-metrics"),
.product(name: "Tracing", package: "swift-distributed-tracing"),
.product(name: "ServiceContextModule", package: "swift-service-context"),
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOConcurrencyHelpers", package: "swift-nio"),
.product(name: "NIOCore", package: "swift-nio"),
.product(name: "NIOExtras", package: "swift-nio-extras"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
.product(name: "NIOHTTPCompression", package: "swift-nio-extras"),
.product(name: "NIOHTTP1", package: "swift-nio"),
.product(name: "NIOHTTP2", package: "swift-nio-http2"),
.product(name: "NIOSSL", package: "swift-nio-ssl"),
.product(name: "NIOWebSocket", package: "swift-nio"),
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "Algorithms", package: "swift-algorithms"),
.product(name: "RoutingKit", package: "routing-kit"),
.product(name: "WebSocketKit", package: "websocket-kit"),
.product(name: "MultipartKit", package: "multipart-kit"),
.product(name: "Atomics", package: "swift-atomics"),
.product(name: "_NIOFileSystem", package: "swift-nio"),
.product(name: "_NIOFileSystemFoundationCompat", package: "swift-nio"),
.product(name: "X509", package: "swift-certificates"),
.product(name: "SwiftASN1", package: "swift-asn1"),
],
swiftSettings: swiftSettings
),
// Development
.executableTarget(
name: "Development",
dependencies: [
.target(name: "Vapor"),
],
resources: [.copy("Resources")],
swiftSettings: swiftSettings
),
// Testing
.target(
name: "VaporTestUtils",
dependencies: [
.target(name: "Vapor"),
],
swiftSettings: swiftSettings
),
.target(
name: "VaporTesting",
dependencies: [
.target(name: "VaporTestUtils"),
.target(name: "Vapor"),
],
swiftSettings: swiftSettings
),
.target(
name: "XCTVapor",
dependencies: [
.target(name: "VaporTestUtils"),
.target(name: "Vapor"),
],
swiftSettings: swiftSettings
),
.testTarget(
name: "VaporTests",
dependencies: [
.product(name: "NIOTestUtils", package: "swift-nio"),
.product(name: "SwiftASN1", package: "swift-asn1"),
.target(name: "XCTVapor"),
.target(name: "VaporTesting"),
.target(name: "Vapor"),
],
resources: [
.copy("Utilities/foo.txt"),
.copy("Utilities/index.html"),
.copy("Utilities/SubUtilities/"),
.copy("Utilities/foo bar.html"),
.copy("Utilities/test.env"),
.copy("Utilities/my-secret-env-content"),
.copy("Utilities/expired.crt"),
.copy("Utilities/expired.key"),
.copy("Utilities/long-test-file.txt"),
],
swiftSettings: swiftSettings
),
]
)
var swiftSettings: [SwiftSetting] { [
//.enableUpcomingFeature("ExistentialAny"),
//.enableUpcomingFeature("InternalImportsByDefault"),
.enableUpcomingFeature("MemberImportVisibility"),
.enableUpcomingFeature("InferIsolatedConformances"),
//.enableUpcomingFeature("NonisolatedNonsendingByDefault"),
.enableUpcomingFeature("ImmutableWeakCaptures"),
] }