This repository was archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPackage.swift
56 lines (54 loc) · 2.09 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
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift-lambda-runtime",
products: [
.library(
name: "LambdaRuntime",
targets: ["LambdaRuntime"]
),
.library(
name: "LambdaEvents",
targets: ["LambdaEvents"]
),
.library(
name: "LambdaRuntimeTestUtils",
targets: ["LambdaRuntimeTestUtils"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.13.0")),
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.1.1")),
.package(url: "https://github.com/swift-server/async-http-client.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/fabianfett/swift-base64-kit.git", .upToNextMajor(from: "0.2.0")),
],
targets: [
.target(name: "LambdaEvents", dependencies: [
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
.product(name: "Base64Kit", package: "swift-base64-kit")
]),
.target(name: "LambdaRuntime", dependencies: [
.byName(name: "LambdaEvents"),
.product(name: "AsyncHTTPClient", package: "async-http-client"),
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
.product(name: "NIOFoundationCompat", package: "swift-nio"),
.product(name: "Logging", package: "swift-log"),
]),
.target(name: "LambdaRuntimeTestUtils", dependencies: [
.byName(name: "LambdaRuntime"),
.product(name: "NIOHTTP1", package: "swift-nio"),
]),
.testTarget(name: "LambdaRuntimeTests", dependencies: [
.byName(name: "LambdaEvents"),
.byName(name: "LambdaRuntime"),
.byName(name: "LambdaRuntimeTestUtils"),
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOTestUtils", package: "swift-nio"),
.product(name: "Logging", package: "swift-log"),
])
]
)